
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --ed-blue: #241442;
  --ed-purple: #5B3AEE;
  --ed-yellow: #F8BC24;
  --ed-gray: #4F536C;
  --ed-gray2: #445375;
  --black: #000;
  --white: #fff;
  --font-poppins: "Poppins", sans-serif;
}

body {
  font-family: var(--font-poppins);
}

a,
button,
img,
svg path {
  transition: 0.4s ease;
}

p {
  line-height: 1.75;
}

.ed-btn {
  background-color: var(--ed-purple);
  color: var(--white);
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.ed-btn:hover {
  background-color: var(--ed-blue);
}

.ed-section-sub-title {
  font-weight: 600;
  color: var(--ed-purple);
  text-transform: uppercase;
  padding-right: 10px;
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}
.ed-section-sub-title::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  width: 48px;
  background: linear-gradient(90deg, rgb(91, 58, 238) 3px, rgba(255, 255, 255, 0) 3px, rgba(255, 255, 255, 0) 8px, rgb(91, 58, 238) 8px, rgb(91, 58, 238) 13px, rgba(255, 255, 255, 0) 13px, rgba(255, 255, 255, 0) 18px, rgba(255, 255, 255, 0) 18px, rgb(91, 58, 238) 0);
}
.ed-section-sub-title--white {
  color: var(--white);
}
.ed-section-sub-title--white::before {
  background: linear-gradient(90deg, rgb(255, 255, 255) 3px, rgba(255, 255, 255, 0) 3px, rgba(255, 255, 255, 0) 8px, rgb(255, 255, 255) 8px, rgb(255, 255, 255) 13px, rgba(255, 255, 255, 0) 13px, rgba(255, 255, 255, 0) 18px, rgba(255, 255, 255, 0) 18px, rgb(255, 255, 255) 0);
}

.ed-section-title {
  font-weight: 600;
  font-size: 45px;
  color: var(--ed-blue);
  text-transform: capitalize;
  line-height: 1.29;
}
@media screen and (max-width: 1599px) {
  .ed-section-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1399px) {
  .ed-section-title {
    font-size: 35px;
  }
}
@media screen and (max-width: 1199px) {
  .ed-section-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 575px) {
  .ed-section-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 479px) {
  .ed-section-title {
    font-size: 25px;
  }
}

.ed-single-accordion-item {
  transition: 0.4s ease;
}

.ed-single-accordion-item.open .ed-single-accordion-item__header i {
  transform: rotate(90deg);
  color: var(--ed-purple);
}
.ed-single-accordion-item.open .ed-single-accordion-item__title {
  color: var(--ed-purple);
}
.ed-single-accordion-item.open .ed-single-accordion-item__body {
  grid-template-rows: 1fr;
  padding-top: 9px;
}

.ed-single-accordion-item__header i {
  transition: transform 0.4s ease;
}

.ed-single-accordion-item__body {
  transition: all 0.4s ease;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
}

.ed-single-accordion-item__body p {
  overflow: hidden;
}

/* Old header navigation styles removed - replaced with inline styles in header.ejs */

/* Old select and sticky styles removed */

.ed-sidebar.active > * {
  transform: translateX(0);
}

.mixitup-control-active {
  background-color: var(--ed-purple);
  color: var(--white);
}

.ed-countdown .number {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.ed-course-details-tab-navs button.active {
  background-color: var(--ed-purple);
  color: var(--white);
}
.ed-course-details-tabs .ed-tab {
  overflow: hidden;
  opacity: 0;
  height: 0;
  pointer-events: none;
}
.ed-course-details-tabs .ed-tab.active {
  opacity: 1;
  height: auto;
  pointer-events: all;
}

/* Interview Kit Sidebar Styling */
.w-\[510px\] {
  width: 510px !important;
}
.w-\[660px\] {
  width: 660px !important;
}
/* Icon spacing - larger margin for better readability */
.mr-\[40px\] {
  margin-right: 40px !important;
}

/* Additional spacing for icons next to text */
.fa-solid {
  display: inline-block;
}

/* Interview Kit Sidebar Container */
/* .interview-kit-sidebar {
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding-bottom: 20px;
} */

/* Smooth scrolling for sidebar */
.interview-kit-sidebar::-webkit-scrollbar {
  width: 8px;
}

.interview-kit-sidebar::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 8px;
}

.interview-kit-sidebar::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 8px;
}

.interview-kit-sidebar::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Icon Badge */
.interview-kit-sidebar .icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: #f3f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Filter Option Hover */
.interview-kit-sidebar .filter-option {
  padding: 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.interview-kit-sidebar .filter-option:hover {
  border-color: #e5e7eb;
  background-color: #f9fafb;
}

/* Difficulty Badges */
.difficulty-badge-easy {
  padding: 2px 8px;
  background-color: #dcfce7;
  color: #166534;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
}

.difficulty-badge-medium {
  padding: 2px 8px;
  background-color: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
}

.difficulty-badge-hard {
  padding: 2px 8px;
  background-color: #fee2e2;
  color: #991b1b;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
}

/* Enhanced Input Styling */
.interview-kit-sidebar input[type="text"] {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.interview-kit-sidebar input[type="text"]:focus {
  outline: none;
  border-color: var(--ed-purple);
  box-shadow: 0 0 0 3px #f3f0ff;
}

.interview-kit-sidebar input[type="text"]::placeholder {
  color: #9ca3af;
}

/* Radio and Checkbox Styling */
.interview-kit-sidebar input[type="radio"],
.interview-kit-sidebar input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--ed-purple);
}

/* Button Styling */
.interview-kit-sidebar .btn-apply {
    flex: 1;
    background-color: var(--ed-purple);
    color: white;
    padding: 13px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 11px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 6px -1px rgba(91, 58, 238, 0.2);
}

.interview-kit-sidebar .btn-apply:hover {
  background-color: #4a2dd4;
  box-shadow: 0 10px 15px -3px rgba(91, 58, 238, 0.3);
  transform: scale(1.02);
}

.interview-kit-sidebar .btn-reset {
    flex: 1;
    background-color: #f3f4f6;
    color: #374151;
    padding: 13px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 11px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.interview-kit-sidebar .btn-reset:hover {
  background-color: #e5e7eb;
  transform: scale(1.02);
}

/* Active Filters */
.interview-kit-sidebar .active-filters {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  margin-top: 20px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.interview-kit-sidebar .active-filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
}

/* Live Indicator Animation */
.live-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Section Headers */
.interview-kit-sidebar .section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.interview-kit-sidebar .section-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.interview-kit-sidebar .section-subtitle {
  font-size: 11px;
  color: #6b7280;
}

/* Spacing utilities for interview kit page */
.space-y-18 > * + * {
  margin-top: 18px;
}

.mb-28 {
  margin-bottom: 28px;
}

.mb-18 {
  margin-bottom: 18px;
}

.mb-20 {
  margin-bottom: 20px;
}

.gap-10 {
  gap: 10px;
}
.ml-14px {
  margin-left: 14px !important;
}

/* Hide sidebar on mobile */
@media (max-width: 767px) {
  aside[class*="w-[660px]"] {
    display: none;
  }
}

/* Old header responsive styles removed - replaced with inline styles in header.ejs */

/* ===========================
   Interview Kit Detail Page
   =========================== */

/* Responsive Typography */
@media (max-width: 1024px) {
  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 14px;
  }

  h4 {
    font-size: 12px;
  }

  p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 18px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 13px;
  }

  h4 {
    font-size: 11px;
  }

  p {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 16px;
  }

  h2 {
    font-size: 16px;
  }

  h3 {
    font-size: 12px;
  }

  h4 {
    font-size: 10px;
  }

  p {
    font-size: 11px;
  }
}

/* Detail Page Cards */
.detail-card {
  transition: all 0.3s ease;
}

.detail-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Section Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }
}

/* Pricing Card Mobile - Move below content */
@media (max-width: 1024px) {
  .pricing-card-mobile {
    margin-top: 24px;
  }
}

/* Stats Grid Responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Content Breakdown Section */
.breakdown-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
  transition: all 0.3s ease;
}

.breakdown-card:hover {
  border-color: currentColor;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Progress Bar */
.progress-bar {
  background: linear-gradient(90deg, currentColor 0%, rgba(0, 0, 0, 0.1) 100%);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .progress-bar {
    height: 5px;
  }
}

/* FAQ Section */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(79, 70, 229, 0.5);
  background: rgba(245, 243, 255, 0.5);
}

.faq-item-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Accordion Icon */
.accordion-icon {
  transition: transform 0.3s ease;
  font-size: 12px;
  color: #9ca3af;
}

.accordion-icon.active {
  transform: rotate(180deg);
  color: #4f46e5;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 1px solid rgba(79, 70, 229, 0.2);
}

/* Button Hover Effects */
.btn-primary:hover,
.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Icon Badge */
.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .icon-badge {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: center;
  font-size: 12px;
}

@media (max-width: 768px) {
  .trust-badges {
    gap: 16px;
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .trust-badges {
    gap: 12px;
    font-size: 10px;
  }
}

/* Sticky Pricing - Desktop Only */
@media (min-width: 1025px) {
  .sticky-pricing {
    position: sticky;
    top: 80px;
  }
}

/* Mobile Responsive Pricing Card */
@media (max-width: 1024px) {
  .pricing-card-detail {
    margin-top: 24px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pricing-card-detail {
    margin-top: 20px;
    margin-bottom: 24px;
    padding: 18px;
  }
}

@media (max-width: 640px) {
  .pricing-card-detail {
    margin-top: 16px;
    margin-bottom: 20px;
    padding: 16px;
  }
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 8px 0;
}

.breadcrumb-nav a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #1e40af;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .breadcrumb-nav {
    font-size: 12px;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .breadcrumb-nav {
    font-size: 11px;
    gap: 4px;
  }
}

/* Tags Container */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .tags-container {
    gap: 6px;
  }

  .tag-item {
    padding: 5px 10px;
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .tags-container {
    gap: 4px;
  }

  .tag-item {
    padding: 4px 8px;
    font-size: 10px;
  }
}

/* Section Spacing */
@media (max-width: 768px) {
  .section-spacing {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}

@media (max-width: 640px) {
  .section-spacing {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

/* Pricing Card Responsive Display */
.pricing-card-desktop {
  display: none;
}

/* Show on desktop (1024px and above) */
@media (min-width: 1024px) {
  .pricing-card-desktop {
    display: block;
  }

  .pricing-card-desktop {
    width: 320px;
  }
}

/* Extra large screens */
@media (min-width: 1280px) {
  .pricing-card-desktop {
    width: 340px;
  }
}

/* Mobile: show as full-width card below content */
@media (max-width: 1023px) {
  .pricing-card-desktop {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 32px auto;
  }
}

@media (max-width: 768px) {
  .pricing-card-desktop {
    margin: 24px auto;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .pricing-card-desktop {
    margin: 20px auto;
  }
}

/* Missing Tailwind Utility Classes */
.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink {
  flex-shrink: 1;
}

.line-through {
  text-decoration: line-through;
}

.rounded-full {
  border-radius: 9999px;
}

.inline-flex {
  display: inline-flex;
}

.inline-block {
  display: inline-block;
}

.sticky {
  position: sticky;
}

.top-\[80px\] {
  top: 80px;
}
.top-\[95px\] {
  top: 95px;
}
.mr-\[6px\] {
  margin-right: 6px;
}
.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.min-h-screen {
  min-height: 100vh;
}
.yellow-badge {
  padding: 6px 14px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #d97706;
}
.min-w-0 {
  min-width: 0;
}
.bg-green-600 {
  background-color: rgb(22 163 74);
}
.z-\[1\] {
  z-index: 1;
}
.mr-\[8px\] {
  margin-right: 8px;
}
.z-\[10\] {
  z-index: 10;
}

.z-\[100\] {
  z-index: 100;
}

.before\:absolute::before {
  content: '';
  position: absolute;
}

.before\:-z-\[1\]::before {
  z-index: -1;
}

.before\:inset-0::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* .before\:bg-edblue\/70::before {
  background-color: rgba(59, 130, 246, 0.7);
} */

.before\:pointer-events-none::before {
  pointer-events: none;
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-gray-50 {
  --tw-gradient-from: rgb(249 250 251);
}

.to-white {
  --tw-gradient-to: rgb(255 255 255);
}

.from-blue-50 {
  --tw-gradient-from: rgb(239 246 255);
}

.via-white {
  --tw-gradient-via: rgb(255 255 255);
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.bg-green-50 {
  background-color: rgb(240 253 250);
}

.border-green-200 {
  border-color: rgb(187 247 208);
}

.bg-blue-50 {
  background-color: rgb(239 246 255);
}

.border-blue-200 {
  border-color: rgb(191 219 254);
}

.bg-purple-50 {
  background-color: rgb(250 245 255);
}

.border-purple-200 {
  border-color: rgb(229 204 255);
}

.bg-orange-50 {
  background-color: rgb(255 247 237);
}

.border-orange-200 {
  border-color: rgb(fed7aa);
}

.bg-purple-\/10 {
  background-color: rgba(168, 85, 247, 0.1);
}

.text-green-600 {
  color: rgb(22 163 74);
}

.text-green-700 {
  color: rgb(20 83 45);
}

.text-orange-500 {
  color: rgb(249 115 22);
}

.text-blue-500 {
  color: rgb(59 130 246);
}

.text-blue-600 {
  color: rgb(37 99 235);
}

.bg-orange-500 {
  background-color: rgb(249 115 22);
}

.bg-blue-500 {
  background-color: rgb(59 130 246);
}

.text-white {
  color: rgb(255 255 255);
}

.hover\:bg-green-700:hover {
  background-color: rgb(20 83 45);
}

.hover\:bg-green-600:hover {
  background-color: rgb(22 163 74);
}

.hover\:text-edpurple:hover {
  color: #4f46e5;
}

.hover\:text-edblue:hover {
  color: #3b82f6;
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}