/* Index Page - Unified with Navbar Color System */
.main {
  background-color: white;
}

/* Video Section */
.video {
  padding: 3rem 0;
  background-color: white;
}

.video-sub-heading {
  color: var(--app-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.video-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.text-primary {
  color: var(--app-primary) !important;
}

.video-desc {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1.5rem;
}

.video-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(45, 60, 156, 0.1);
}

.video-frame iframe {
  width: 100%;
  height: 315px;
  border: none;
}

.video-content {
  padding-right: 2rem;
}

.btn-gradient-primary {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-gradient-primary:hover {
  background: linear-gradient(135deg, var(--gradient-mid) 0%, var(--gradient-end) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 60, 156, 0.25);
}

/* FAQ Section */
.faq {
  background: var(--dark-blue);
  padding: 0px 0px;
  color: #fff;
  margin: 0rem;
  background-color: white;
}

.faq .fs-1 {
  color: var(--dark-blue);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.faq .fs-5 {
  color: var(--app-primary);
  font-weight: 600;
}

.faq small {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Section Gap */
.section-gap {
  height: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .quick-heading-box::after {
    display: none;
  }

  .section-gap {
    height: 2rem;
  }

  .video .container {
    padding: 1.5rem;
  }

  .video-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

/* Expertise Spotlight Section - Navbar-aligned Design */
.path-spotlight-container {
  background: linear-gradient(180deg,
    rgba(45, 60, 156, 0.02) 0%,
    rgba(123, 106, 184, 0.03) 50%,
    rgba(212, 145, 94, 0.02) 100%);
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.section-header {
  position: relative;
  margin-bottom: 3rem;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  border-radius: 2px;
}

.section-subtitle {
  color: #4a5568;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Spotlight icon decorations */
.section-header:before {
  content: '\f002';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  font-size: 6rem;
  color: rgba(45, 60, 156, 0.04);
  top: -60px;
  left: 50%;
  transform: translateX(-200px) rotate(-20deg);
  z-index: 0;
}

.section-header:after {
  content: '\f5fc';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  font-size: 5rem;
  color: rgba(123, 106, 184, 0.04);
  top: -50px;
  left: 50%;
  transform: translateX(120px) rotate(15deg);
  z-index: 0;
}

.expertise-carousel {
  position: relative;
  margin-bottom: 2rem;
  z-index: 1;
  padding-top: 15px;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 10;
  transform: translateY(-50%);
}

.carousel-prev,
.carousel-next {
  position: absolute;
  background-color: white;
  border: 1px solid rgba(45, 60, 156, 0.15);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--gradient-start);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
  z-index: 10;
}

.carousel-prev {
  left: -20px;
}

.carousel-next {
  right: -20px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 100%);
  color: white;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(45, 60, 156, 0.3);
}

/* Expertise Cards */
.expertise-cards-wrapper {
  overflow: hidden;
  padding: 15px 0;
  position: relative;
}

.expertise-cards {
  display: flex;
  gap: 1.5rem;
  padding: 0 1rem;
  width: 100%;
  transition: transform 0.5s ease;
  justify-content: flex-start;
}

/* Path Cards - Navbar-aligned Styling */
.path-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  min-height: 160px;
  flex: 0 0 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid rgba(45, 60, 156, 0.1);
  box-shadow: 0 2px 8px rgba(45, 60, 156, 0.05);
  position: relative;
  z-index: 1;
}

.path-icon {
  font-size: 2rem;
  color: var(--app-primary);
  margin-bottom: 1rem;
  transition: all 0.25s ease;
}

.path-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 0;
  line-height: 1.3;
  transition: all 0.25s ease;
}

/* Active Card - Navbar Gradient */
.path-card.active {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
  box-shadow: 0 8px 24px rgba(45, 60, 156, 0.25);
  transform: translateY(-10px);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.path-card.active .path-icon {
  color: white;
}

.path-card.active h3 {
  color: white;
}

.path-card:hover:not(.active) {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(45, 60, 156, 0.12);
  border-color: rgba(93, 113, 234, 0.2);
  z-index: 2;
}

.path-card:hover:not(.active) .path-icon {
  color: var(--gradient-start);
  transform: scale(1.1);
}

/* Expertise Details Container */
.expertise-details {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(45, 60, 156, 0.1);
  box-shadow: 0 2px 12px rgba(45, 60, 156, 0.06);
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.expertise-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.expertise-details h4 {
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--dark-blue);
  font-size: 1.8rem;
  line-height: 1.3;
}

.expertise-description {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.expertise-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.stat-item {
  display: flex;
  align-items: center;
  color: #4a5568;
  font-size: 1.05rem;
}

.stat-item i {
  color: var(--app-primary);
  margin-right: 0.7rem;
  font-size: 1.2rem;
}

/* Price Button - Navbar Gradient */
.expertise-price {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: white;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(45, 60, 156, 0.2);
  margin-top: 1rem;
  transition: all 0.25s ease;
}

.expertise-price:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(45, 60, 156, 0.3);
}

/* Video Styling */
.expertise-video {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background-color: #000;
}

.expertise-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .expertise-cards {
    justify-content: center;
  }

  .path-card {
    min-width: 180px;
  }

  .expertise-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .expertise-video {
    order: -1;
    margin-bottom: 1rem;
  }

  .expertise-content {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .path-card {
    min-height: 140px;
    padding: 1.5rem 1rem;
  }

  .path-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .path-card h3 {
    font-size: 1rem;
  }

  .expertise-details h4 {
    font-size: 1.2rem;
  }

  .expertise-price {
    font-size: 1rem;
    padding: 0.5rem 2rem;
  }

  .expertise-details {
    padding: 1.5rem;
  }

  .expertise-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .expertise-carousel {
    margin: 0 1rem;
  }

  .path-card {
    min-height: 120px;
  }

  .expertise-details {
    padding: 1.5rem;
  }
}

/* Container consistency */
.container-padding {
  padding: 1rem 0;
}

/* Video Section Box */
.video .container {
  background: linear-gradient(135deg,
    rgba(45, 60, 156, 0.03) 0%,
    rgba(123, 106, 184, 0.04) 50%,
    rgba(212, 145, 94, 0.03) 100%);
  border-radius: 12px;
  border: 1px solid rgba(45, 60, 156, 0.08);
  box-shadow: 0 4px 16px rgba(45, 60, 156, 0.06);
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.video .container::before {
  display: none;
}

/* Expertise Spotlight Box */
.path-spotlight-container .container {
  background: linear-gradient(135deg,
    rgba(45, 60, 156, 0.03) 0%,
    rgba(123, 106, 184, 0.04) 50%,
    rgba(212, 145, 94, 0.03) 100%);
  border-radius: 12px;
  border: 1px solid rgba(45, 60, 156, 0.08);
  box-shadow: 0 4px 16px rgba(45, 60, 156, 0.06);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.path-spotlight-container .container::before {
  display: none;
}

/* FAQ Section Box */
.faq .container {
  background: linear-gradient(135deg,
    rgba(45, 60, 156, 0.03) 0%,
    rgba(123, 106, 184, 0.04) 50%,
    rgba(212, 145, 94, 0.03) 100%);
  border-radius: 12px;
  border: 1px solid rgba(45, 60, 156, 0.08);
  box-shadow: 0 4px 16px rgba(45, 60, 156, 0.06);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.faq .container::before {
  display: none;
}

/* Cards */
.card {
  border: 1px solid rgba(45, 60, 156, 0.1);
  box-shadow: 0 2px 8px rgba(45, 60, 156, 0.05);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(45, 60, 156, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .path-spotlight-container .container,
  .faq .container {
    padding: 1rem;
  }
}

/* Play Button for Learning Goals */
.goal-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-color) 0%, #0eab85 100%);
  color: white;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(17, 200, 156, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.goal-play-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  border-radius: 50%;
}

.goal-play-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(17, 200, 156, 0.45);
  background: linear-gradient(135deg, #14daa9 0%, var(--green-color) 100%);
  color: white;
}

.goal-play-btn:active {
  transform: scale(1.05);
}

.goal-play-btn i {
  font-size: 14px;
  margin-left: 2px;
}

/* Pulse animation */
@keyframes goal-play-pulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(17, 200, 156, 0.3); }
  50% { box-shadow: 0 2px 16px rgba(17, 200, 156, 0.5); }
}

.goal-card:first-child .goal-play-btn {
  animation: goal-play-pulse 2s ease-in-out 1;
}
