*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0d0f14;
  --bg-alt: #111318;
  --card: #161920;
  --border: #2a2d36;
  --text: #f5f5f5;
  --muted: #888;
  --heading: #ffffff;
  --logo-color: #ffffff;
  --nav-bg: rgba(13, 15, 20, 0.92);
  --pro-accent: #f3bd00;
  --green: #f3bd00;
  --green-glow: rgba(243, 189, 0, 0.25);
  --orange: #e8602f;
  --accent: #f3bd00;
  --shine-color: rgba(255, 255, 255, 0.35);
  --shine-soft: rgba(255, 255, 255, 0.08);
  --card-inner-bg: linear-gradient(to bottom, #000, #1e1e2f);
  --cursor-glow-color: rgba(243, 189, 0, 0.15);
  --cursor-follower-color: #f3bd00;
}

html.light-mode {
  --bg: #f8f9fa;
  --bg-alt: #ffffff;
  --card: #ffffff;
  --border: #e9ecef;
  --text: #1c1c1e;
  --muted: #6c757d;
  --heading: #0d0f14;
  --logo-color: #0d0f14;
  --nav-bg: rgba(255, 255, 255, 0.92);
  --green: #f3bd00;
  --card-inner-bg: linear-gradient(to bottom, #ffffff, #f8f9fa);
  --shine-color: rgba(255, 255, 255, 0.75);
  --shine-soft: rgba(255, 255, 255, 0.2);
  --cursor-glow-color: rgba(243, 189, 0, 0.1);
  --cursor-follower-color: #e6a800;
  /* Darker gold for light mode visibility */
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffd124 0%, #f3bd00 60%, #e6a800 100%);
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #f3bd00 #f1f1f1;
}

::selection {
  background-color: var(--accent);
  color: #000;
}

::-moz-selection {
  background-color: var(--accent);
  color: #000;
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* .preloader-logo {
  animation: preloaderPulse 2s infinite ease-in-out;
} */

.preloader-logo img {
  width: 250px;
}

/* ── EDTECH PROGRESS LOADER ── */
.loader-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.loader-track {
  width: 200px;
  height: 3px;
  background: rgba(243, 189, 0, 0.15);
  border-radius: 100px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 50%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--green) 40%,
    var(--green) 60%,
    transparent
  );
  border-radius: 100px;
  animation: loaderSlide 1.6s ease-in-out infinite;
}

@keyframes loaderSlide {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(500%);
  }
}

.loader-tagline {
  font-size: 0.75rem;
  color: rgba(128, 128, 128, 0.7);
  letter-spacing: 0.04em;
  margin: 0;
}

.loader-dots span {
  display: inline-block;
  animation: dotBounce 1.4s ease-in-out infinite;
  color: var(--green);
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.18s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes dotBounce {
  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

body.loading {
  overflow: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

/* ── CUSTOM CURSOR ── */
.cursor-glow,
.cursor-follower {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.3s ease,
    transform 0.1s ease-out;
  opacity: 0;
}

.cursor-glow {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    var(--cursor-glow-color) 0%,
    transparent 70%
  );
  filter: blur(40px);
}

.cursor-follower {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 2px solid var(--cursor-follower-color);
  box-shadow: 0 0 10px var(--cursor-glow-color);
}

/* Hide default cursor only if cursor elements are present and supported */
@media (pointer: fine) {
  /* Optional:  if we want to replace it entirely, 
     but keeping it for now for accessibility unless asked. */

  /* body {
    cursor: none;
  } */
}

/* Show elements when mouse moves */
body:hover .cursor-glow,
body:hover .cursor-follower {
  opacity: 1;
}

/* ── NAV ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  z-index: 1200;
  transition:
    transform 0.3s ease-in-out,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

nav.nav-hidden {
  transform: translateY(-100%);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 220px;
  /* transition: all 0.3s ease;
  filter: drop-shadow(0 4px 16px rgba(243, 189, 0, 0.18)); */
}

/* .logo img:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 20px rgba(243, 189, 0, 0.32));
}

html.light-mode .logo img {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

html.light-mode .logo img:hover {
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
} */

.logo-white {
  display: block;
}

.logo-dark {
  display: none;
}

html.light-mode .logo-white {
  display: none;
}

html.light-mode .logo-dark {
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  margin-left: auto;
  margin-right: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--pro-accent);
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
}

.nav-dropbtn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  /* backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); */
  min-width: 350px;
  box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  /* transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); */
  z-index: 50000;
}

.nav-dropdown-content::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: var(--nav-bg);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.nav-dropdown-content a {
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  display: block;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}

.nav-dropdown-content a:hover {
  /* background-color: var(--border); */
  color: var(--pro-accent);
  /* transform: translateX(4px); */
}

@media (min-width: 1025px) {
  .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none !important;
  }

  .fs-menu {
    display: flex;
  }
}

/* ── PRIMARY ── */
.btn-primary {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1c1c1e;
  background: var(--green);
  border: none;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(243, 189, 0, 0.3);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 130%;
}

.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(243, 189, 0, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 18px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  nav {
    padding: 1.2rem 1.5rem;
  }

  .navbar-cta {
    display: none;
  }
  .nav-cta {
    display: none;
  }

  .theme-toggle {
    margin-left: 0.5rem;
  }
}

/* ── MENU TOGGLE (HAMBURGER) ── */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 1rem;
  z-index: 210;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover span {
  background: var(--pro-accent);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── FS MENU ── */
.fs-menu {
  position: fixed;
  top: var(--header-height, 73px);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height, 73px));
  background: var(--nav-bg);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 2rem 3rem;
  overflow-y: auto;
}

.fs-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fs-menu-close {
  display: none;
}

.fs-menu-content {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.fs-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fs-link {
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading);
  text-decoration: none;
  transition: color 0.3s;
}

.fs-link:hover {
  color: var(--pro-accent);
}

.fs-dropdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fs-dropdown-btn {
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading);
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fs-dropdown-btn:hover {
  color: var(--pro-accent);
}

.fs-dropdown .chevron {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.fs-dropdown.active .chevron {
  transform: rotate(180deg);
}

.fs-dropdown-content {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: max-height 0.4s;
}

.fs-dropdown.active .fs-dropdown-content {
  max-height: 600px;
}

.fs-dropdown-content a {
  font-size: 1.2rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.fs-dropdown-content a:hover {
  color: var(--pro-accent);
}

.fs-menu-cta {
  width: 100%;
  padding: 1.2rem !important;
  font-size: 1.1rem !important;
  margin-top: 1rem;
}

@media (min-width: 767px) {
  .fs-menu-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .fs-menu {
    padding: 1rem 1.5rem;
  }

  .fs-link,
  .fs-dropdown-btn {
    font-size: 1.5rem;
  }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  opacity: 0.4;
}

.breadcrumb-current {
  color: var(--accent);
}

@media (max-width: 640px) {
  .breadcrumb {
    padding: 1rem 1.5rem 0;
  }
}

.hero-section {
  background: #0d1117;
  position: relative;
  overflow: hidden;
  color: white;
}

/* ── HERO ── */
.course-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 3rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-areas:
    "left right"
    "meta right"
    "tags right";
  column-gap: 3.5rem;
  row-gap: 0;
  align-items: start;
}

.course-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(0, 196, 140, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(243, 189, 0, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.course-hero-left {
  grid-area: left;
}

.hero-form-card {
  grid-area: right;
}

.course-meta {
  grid-area: meta;
}

.hero-tags {
  grid-area: tags;
}

@media (max-width: 900px) {
  .course-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right"
      "meta"
      "tags";
    padding: 2rem 1.5rem 2.5rem;
    gap: 1rem;
  }

  .hero-form-card {
    position: static !important;
  }
}

.course-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  font-size: 0.7rem;
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
}

.course-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -120%;
  width: 50%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    var(--shine-soft) 40%,
    var(--shine-color) 50%,
    var(--shine-soft) 60%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: sweepShine 3s linear infinite;
  pointer-events: none;
}

.course-badge span {
  color: var(--accent);
}

@keyframes sweepShine {
  from {
    left: -120%;
  }

  to {
    left: 140%;
  }
}

.course-title {
  font-family: "Poppins", serif;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  /* color: var(--heading); */
}

.course-title em {
  font-style: italic;
  color: var(--accent);
  font-family: "Satisfy";
}

.course-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  max-width: 600px;
}

/* ── HERO STATS PILL ── */
.hero-stats-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(13, 17, 23, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.6rem 1.2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  /* margin-bottom: 2.5rem; */
  gap: 0.5rem;
}

.stats-pill-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.stats-pill-item.google-link {
  cursor: pointer;
}

/* .stats-pill-item.google-link:hover {
  opacity: 0.8;
} */

.pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pill-icon.user-icon {
  background: linear-gradient(135deg, #00c48c, #00996d);
  color: white;
  font-size: 0.9rem;
}

.stats-pill-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  margin: 0 0.5rem;
}

.stats-pill-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-pill-text strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.stats-pill-text span {
  font-size: 0.75rem;
  color: #a1a1aa;
  line-height: 1.2;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pill-stars {
  color: #fbbc05;
  font-size: 0.7rem;
  display: flex;
  gap: 1.5px;
  margin-top: -1px;
}

@media (max-width: 640px) {
  .hero-stats-pill {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    padding: 1rem 1.2rem;
    gap: 1rem;
  }
  .stats-pill-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0)
    );
    margin: 0;
  }
}
.course-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  /* margin-bottom: 2rem; */
  align-items: center;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  /* color: var(--text); */
}

.meta-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-tag {
  background: rgba(243, 189, 0, 0.01);
  border: 1px solid #f3bd00;
  /* color: var(--text); */
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── HERO INLINE FORM CARD ── */
.hero-form-card {
  background: rgba(22, 27, 34, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  /* position: sticky;
  top: 90px; */
  transition:
    background-color 0.3s,
    border-color 0.3s;
  min-height: 500px;
}

@keyframes shimmerBar {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hfc-header {
  padding: 1.6rem 1.8rem 1rem;
  position: relative;
  z-index: 1;
}

.hfc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(243, 189, 0, 0.1);
  border: 1px solid rgba(243, 189, 0, 0.25);
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}

.hfc-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseBadge 1.5s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.65);
  }
}

.hfc-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  /* color: var(--heading); */
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.hero-form-title {
  font-weight: 500;
  font-size: 1rem;
}

.hfc-title em {
  font-style: italic;
  color: var(--accent);
  font-family: "Satisfy";
  font-size: 1.35rem;
}

.hfc-sub {
  font-size: 0.8rem;
  /* color: var(--muted); */
  line-height: 1.55;
}

.hfc-body {
  padding: 0 1.8rem 1.8rem;
  position: relative;
  z-index: 1;
}

.hfc-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.8rem;
  gap: 1rem;
}

.hfc-success.show {
  display: flex;
}

.hfc-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(243, 189, 0, 0.1);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.hfc-success h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading);
}

.hfc-success p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.hfc-success-note {
  font-size: 0.77rem;
  color: var(--muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  width: 100%;
}

@media (max-width: 900px) {
  .course-desc {
    margin-bottom: 1rem;
  }

  .hero-tags {
    margin-bottom: 0rem;
  }
}

/* ── COURSE QUICK STATS ── */
.course-stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 3rem;
  transition: background-color 0.3s;
}

.course-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text);
}

.stat-pill svg {
  color: var(--accent);
}

.stat-pill strong {
  color: var(--heading);
}

@media (max-width: 640px) {
  .course-stats-bar {
    padding: 1rem 1.5rem;
  }

  .course-stats-inner {
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

/* ── TABS NAV ── */
.tabs-nav {
  position: sticky;
  top: var(--header-height, 73px);
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition:
    background-color 0.3s,
    border-color 0.3s,
    top 0.3s ease-in-out;
}

.tabs-nav.nav-hidden {
  top: 0;
}

.tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  display: flex;
  align-items: center;
}

.tabs-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}

.tabs-inner::-webkit-scrollbar {
  display: none;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn svg,
.next-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}
.prev-btn:hover,
.next-btn:hover {
  background: #f3bd00;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 1rem 1.25rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  margin-bottom: -1px;
}

.tab-btn:hover {
  color: var(--text);
}

.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (max-width: 640px) {
  .tabs-inner {
    padding: 0 1.5rem;
  }
}

/* ── SECTION BASE ── */
section[id] {
  scroll-margin-top: 130px; /* Accounts for nav (~73px) + tabs (~49px) */
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

@media (max-width: 640px) {
  .section-inner {
    padding: 3.5rem 1.5rem;
  }
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--accent);
}

.section-heading {
  font-family: "Poppins", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ── OVERVIEW HIGHLIGHTS ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.highlight-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s;
}

.highlight-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243, 189, 0, 0.1);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  background: rgba(243, 189, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.highlight-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
}

.highlight-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── OUTCOMES ── */
.outcomes-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 0.75rem;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  transition: border-color 0.2s;
}

.outcome-item:hover {
  border-color: rgba(243, 189, 0, 0.3);
}

.outcome-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: rgba(243, 189, 0, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 1px;
}

/* ── CURRICULUM ── */
.curriculum-section {
  background: var(--bg);
}

/* .curriculum-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
      } */
/* @media (max-width: 800px) {
  .curriculum-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
} */

.module-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.module-item {
  border: 1px solid var(--border);
  border-radius: 0;
  transition: all 0.3s;
  overflow: hidden;
}

.module-item:first-child {
  border-radius: 16px 16px 0 0;
}

.module-item:last-child {
  border-radius: 0 0 16px 16px;
}

.module-item + .module-item {
  border-top: none;
}

.module-item.open {
  border-color: var(--accent);
  z-index: 1;
  position: relative;
}

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  background: var(--card);
  gap: 1rem;
  transition: background 0.2s;
  user-select: none;
}

.module-header:hover {
  background: rgba(243, 189, 0, 0.03);
}

.module-item.open .module-header {
  background: rgba(243, 189, 0, 0.06);
}

.module-hd-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.module-num {
  font-family: "Satisfy", serif;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.module-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading);
}

.module-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

.module-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--muted);
}

.module-item.open .module-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--card);
}

.module-item.open .module-body {
  max-height: 600px;
}

.module-topics {
  padding: 0 1.4rem 1.4rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-topics li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

html.light-mode .module-topics li {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.module-topics li:last-child {
  border-bottom: none;
}

.topic-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.curriculum-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition:
    background-color 0.3s,
    border-color 0.3s;
}

.sidebar-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 1rem;
}

.tech-stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-badge {
  background: rgba(243, 189, 0, 0.1);
  border: 1px solid rgba(243, 189, 0, 0.2);
  color: var(--text);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}

.tech-badge:hover {
  background: rgba(243, 189, 0, 0.2);
  border-color: var(--accent);
}

.timeline-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: rgba(243, 189, 0, 0.2);
  margin-top: 4px;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-text h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.2rem;
}

.timeline-text p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── WHO IS THIS FOR ── */
.who-section {
  background: var(--bg-alt);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.2rem;
}

.who-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s;
}

.who-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(243, 189, 0, 0.1);
}

.who-emoji {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
}

.who-emoji img {
  width: 6rem;
  height: 6rem;
}

.who-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading);
}

.who-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.who-tag {
  margin-top: auto;
  display: inline-block;
  background: rgba(243, 189, 0, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  text-transform: uppercase;
  border: 1px solid rgba(243, 189, 0, 0.25);
  width: fit-content;
}

/* ── MENTORS ── */
.mentors-section {
  background: var(--bg-alt);
  transition: background-color 0.3s;
}

.mentor-section .section-inner {
  padding-bottom: 2rem;
}

.mentor-section {
  background: var(--bg-alt);
  padding-bottom: 5rem;
}

.mentor-container-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.mentor-container-wrapper:hover .mentor-scroll-btn {
  opacity: 1;
}

/* Scroll Buttons */
.mentor-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mentor-container-wrapper:hover .mentor-scroll-btn {
  opacity: 1;
}

.mentor-scroll-btn:hover {
  background: #f3bd00;
  box-shadow: 0 4px 16px 0 #f3bd00;
}

.mentor-scroll-btn-left {
  left: 10px;
}

.mentor-scroll-btn-right {
  right: 10px;
}

.mentor-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  justify-content: space-between;
  scroll-behavior: smooth;
  scrollbar-width: none;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 3rem;
}

.mentor-card {
  min-width: 350px;
  width: 100%;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: all 0.3s;
}

.mentor-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(243, 189, 0, 0.1);
}

.mentor-card-content {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.mentor-image-container {
  position: relative;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  margin: 0 auto;
  margin-bottom: 16px;
}

.mentor-image-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgb(243 189 0 / 0.2);
  transition: all 0.3s ease;
}

.linkedin-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #0077b5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.linkedin-badge:hover {
  transform: scale(1.1);
}

.linkedin-icon {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.mentor-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-card:hover .mentor-image-wrapper {
  border-color: var(--accent);
}

.mentor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  gap: 8px;
  flex-shrink: 0;
}

.mentor-info .mentor-position {
  margin-bottom: 0px !important;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
}

.mentor-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  transition: color 0.2s;
}

.mentor-card:hover .mentor-name {
  color: var(--accent);
}

.mentor-description {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  flex-grow: 1;
  min-height: 60px;
}

.expertise-section {
  margin-bottom: 24px;
  flex-shrink: 0;
}

.expertise-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  min-height: 80px;
  align-items: flex-start;
}

.badge {
  background: rgb(243 189 0 / 0.1);
  color: #f3bd00;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid #fff0;
}

.badge:hover {
  background: #f3bd00;
  color: #fff;
}

.connect-button {
  width: 100%;
  background: #f3bd00;
  color: #1c1c1e;
  border: none;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  margin-top: auto;
}

.connect-button:hover {
  background: rgb(243 189 0 / 0.9);
  box-shadow: 0 4px 12px rgb(243 189 0 / 0.3);
}

.card:hover .connect-button {
  box-shadow: 0 8px 25px rgb(243 189 0 / 0.4);
}

@media (max-width: 768px) {
  .mentor-container {
    gap: 1rem;
    padding: 0.5rem 3rem;
    /* Keep aligned with header */
  }

  @media (max-width: 640px) {
    .mentor-container {
      padding: 0.5rem 1.5rem;
      /* Match section-inner mobile padding */
    }
  }

  .mentor-card {
    min-width: 350px;
    height: auto;
    min-height: 420px;
  }

  .mentor-card-content {
    padding: 20px;
  }

  .mentor-image-container {
    position: relative;
    margin-bottom: 12px;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-bottom: 16px;
  }

  .mentor-image-wrapper {
    width: 80px;
    height: 80px;
    border: 3px solid rgb(243 189 0 / 0.2);
  }

  .linkedin-badge {
    border: 1px solid #fff;
    width: 24px;
    height: 24px;
  }

  .linkedin-icon {
    width: 14px;
    height: 14px;
    fill: #fff;
  }

  .mentor-image-wrapper {
    width: 80px;
    height: 80px;
  }

  .mentor-name {
    font-size: 18px;
  }

  .mentor-description {
    font-size: 13px;
  }

  .expertise-tags {
    min-height: 70px;
  }

  .mentor-scroll-btn-left {
    left: 0px;
  }

  .mentor-scroll-btn-right {
    right: 0px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .mentor-card {
    min-width: 350px;
    height: 500px;
  }
}

@media (max-width: 480px) {
  .mentor-card {
    min-width: min(350px, 80vw);
    min-height: auto;
  }
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  overflow: hidden;
  padding: 5rem 0;
}

.testimonials-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 3rem;
}

@media (max-width: 640px) {
  .testimonials-header {
    padding: 0 1.5rem;
  }
}

.marquee-wrapper {
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  will-change: transform;
  animation: marquee-left 35s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.t-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stars {
  color: #f5c842;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.t-card blockquote {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  overflow: hidden;
  background: rgba(243, 189, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 0.85rem;
  color: var(--heading);
  font-weight: 500;
}

.author-role {
  font-size: 0.8rem;
  color: var(--muted);
}

.video-slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.video-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-nav-btn:hover {
  background: #f3bd00;
  box-shadow: 0 4px 16px 0 #f3bd00;
}

.video-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  filter: grayscale(1);
}

.video-nav-btn.prev {
  left: -20px;
}

.video-nav-btn.next {
  right: -20px;
}

@media (max-width: 1100px) {
  .video-nav-btn.prev {
    left: 10px;
  }

  .video-nav-btn.next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .video-slider-wrapper {
    margin-top: 40px;
    margin-bottom: 80px;
    margin-left: 20px;
  }

  .video-nav-btn {
    opacity: 1;
    top: auto;
    bottom: -70px;
    transform: none;
  }

  .video-nav-btn.prev {
    left: calc(50% - 60px);
    right: auto;
  }

  .video-nav-btn.next {
    right: calc(50% - 60px);
  }
}

.video-container {
  display: flex;
  max-width: 920px;
  /* 3 videos (280px) + 2 gaps (20px) + side padding (40px) */
  margin: 2rem auto 0rem;
  padding: 0 20px;
  gap: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.video-wrapper {
  flex-shrink: 0;
  border: 1px solid #f3bd00;
  border-radius: 10px;
  scroll-snap-align: start;
  width: 280px;
  height: 500px;
  overflow: hidden;
}

/* --- Video Loader & Spinner --- */
.video-loader {
  width: 280px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 10px;
}

.video-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(243, 189, 0, 0.1);
  border-left-color: #f3bd00;
  border-radius: 50%;
  animation: video-spin 1s linear infinite;
}

@keyframes video-spin {
  to {
    transform: rotate(360deg);
  }
}

.video-container::-webkit-scrollbar {
  display: none;
}

.video-wrapper {
  flex-shrink: 0;
  border: 1px solid #f3bd00;
  border-radius: 10px;
}

/* --- Video Facade --- */
.video-facade {
  position: relative;
  width: 280px;
  height: 500px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  background-color: #000;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .video-facade:hover img {
    transform: scale(1.05);
  }
}

/* --- Play Button --- */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 1);
}

.play-btn::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #000;
}

/* --- Loaded iframe --- */
.video-frame {
  display: block;
  border-radius: 10px;
  width: 280px;
  height: 500px;
}

/* ── FAQs ── */
.faq-section {
  background: var(--bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:first-child {
  border-radius: 16px 16px 0 0;
}

.faq-item:last-child {
  border-radius: 0 0 16px 16px;
}

.faq-item + .faq-item {
  border-top: none;
}

.faq-item.open {
  border-color: rgba(243, 189, 0, 0.4);
  z-index: 1;
  position: relative;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading);
  background: var(--card);
  user-select: none;
  transition: background 0.2s;
}

.faq-q:hover {
  background: rgba(243, 189, 0, 0.03);
}

.faq-item.open .faq-q {
  color: var(--accent);
  background: rgba(243, 189, 0, 0.05);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(243, 189, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s,
    background 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--accent);
}

.faq-chevron svg {
  width: 11px;
  height: 11px;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
  transition: stroke 0.2s;
}

.faq-item.open .faq-chevron svg {
  stroke: #000;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--card);
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  padding: 1rem 1.6rem 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── CTA SECTION ── */
/* ── CTA SECTION ── */
.cta-section {
  /* background: var(--bg); */
  /* padding: 5rem 3rem; */
}

.cta-inner {
  /* max-width: 1200px; */
  margin: 0 auto;
  background: #0d0f14;
  /* border: 1px solid var(--border); */
  /* border-radius: 28px; */
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(243, 189, 0, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1rem;
}

.cta-heading {
  font-family: "Poppins", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-heading em {
  font-style: italic;
  color: var(--accent);
  font-family: "Satisfy";
}

.cta-sub {
  font-size: 1rem;
  color: #888;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #888;
}

.cta-button-outline {
  color: #fff;
}

/* ── FOOTER ── */
.footer-overlap {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 2rem 1.5rem;
}

.main-footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.brand-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brand-section .logo-container {
  margin-bottom: 16px;
}

.brand-section .logo-container img {
  height: 32px;
  width: auto;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--green);
}

.social-links i {
  font-size: 20px;
  cursor: pointer;
}

.footer-section h4 {
  font-size: 18px !important;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text);
  font-family: "Poppins", sans-serif;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px !important;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
  display: block;
}

.footer-section ul li a:hover {
  color: var(--green);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px !important;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item a:hover {
  color: var(--green);
}

.contact-item i {
  color: var(--green);
  margin-right: 8px;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.address-item address i {
  color: var(--green);
  margin-right: 8px;
}

.address-item address {
  color: var(--text);
  font-size: 14px !important;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

.bottom-section {
  border-top: 1px solid var(--border);
  margin-top: 1rem;
  padding-top: 1rem;
}

.bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.copyright {
  color: var(--text);
  font-size: 14px !important;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.footer-links {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: var(--text);
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--green);
}

@media (min-width: 640px) {
  .main-footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .footer-section h4 {
    font-size: 20px;
  }

  .footer-section ul li a {
    font-size: 16px;
  }

  .contact-item a {
    font-size: 16px;
  }

  .address-item address {
    font-size: 16px;
  }

  .bottom-content {
    flex-direction: row;
    gap: 0;
  }

  .copyright {
    text-align: left;
  }

  .footer-links {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .main-footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-overlap {
    padding: 4rem 3rem 2.5rem;
  }
}

/* ── UTILITIES ── */
.divider {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
         ENROLL MODAL
         ══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  width: 100%;
  max-width: 520px;
  min-height: 546px;
  /* Match form height for consistency */
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(243, 189, 0, 0.08);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

@keyframes shimmerBar {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.modal-header {
  padding: 2rem 2rem 1.25rem;
  position: relative;
  z-index: 1;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(243, 189, 0, 0.1);
  border: 1px solid rgba(243, 189, 0, 0.25);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.modal-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.modal-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.modal-title em {
  font-style: italic;
  color: var(--accent);
  font-family: "Satisfy";
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
}

.modal-close:hover {
  background: var(--border);
  color: var(--text);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.modal-body {
  padding: 0 2rem 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Form fields */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  /* color: var(--text); */
  letter-spacing: 0.03em;
}

.form-label span {
  color: var(--accent);
  margin-left: 2px;
}

.form-input,
.form-select {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
/* 
html.light-mode .form-input,
html.light-mode .form-select {
  background: #f8f9fa;
} */

.form-input::placeholder {
  color: var(--muted);
  font-size: 0.85rem;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(243, 189, 0, 0.12);
  background: var(--bg-alt);
}

.form-input.error,
.form-select.error {
  border-color: #e8602f;
  box-shadow: 0 0 0 3px rgba(232, 96, 47, 0.1);
}

/* Custom select arrow */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--muted);
  pointer-events: none;
  transition: border-top-color 0.2s;
}

.select-wrapper:focus-within::after {
  border-top-color: var(--accent);
}

.form-select {
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--card);
  color: var(--text);
}

/* Phone with country code */
.phone-group {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.5rem;
}

.country-code {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  padding: 0.8rem 0.6rem;
  text-align: center;
  font-weight: 600;
  cursor: default;
  transition: border-color 0.3s;
}

/* html.light-mode .country-code {
  background: #f8f9fa;
} */

/* Error messages */
.field-error {
  font-size: 0.74rem;
  color: #e8602f;
  display: none;
  align-items: center;
  gap: 0.3rem;
}

.field-error.show {
  display: flex;
}

.field-error svg {
  flex-shrink: 0;
}

/* Submit button */
.modal-submit {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
  border-radius: 14px;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.modal-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.modal-submit .btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-left-color: #1c1c1e;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.modal-submit.loading .btn-text {
  display: none;
}

.modal-submit.loading .btn-spinner {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success state */
.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem 2.5rem;
  gap: 1rem;
}

.modal-success.show {
  display: flex;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(243, 189, 0, 0.1);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon svg {
  color: var(--accent);
}

.success-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading);
}

.success-msg {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
}

.success-note {
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  width: 100%;
}

/* OTP Container */
.otp-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.otp-input {
  width: 60px;
  height: 64px;
  background: var(--bg);
  border: 2.5px solid var(--border);
  border-radius: 16px;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html.light-mode .otp-input {
  background: #f8f9fa;
}

.otp-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(243, 189, 0, 0.15);
  transform: translateY(-2px);
  background: var(--bg-alt);
}

.otp-input.error {
  border-color: #e8602f;
  box-shadow: 0 0 0 4px rgba(232, 96, 47, 0.1);
}

/* Privacy note */
.modal-privacy {
  margin-top: 0.85rem;
  font-size: 0.73rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.modal-privacy a {
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 480px) {
  .modal-overlay {
    padding: 1rem;
    align-items: center;
  }

  .modal-box {
    border-radius: 24px 24px 16px 16px;
    max-width: 100%;
  }

  .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .modal-body {
    padding: 0 1.5rem 1.5rem;
  }
}

.text-highlight {
  color: var(--green);
  position: relative;
  display: inline-block;
}

.text-highlight img {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 10px;
  overflow: clip;
}

.custom-scrollbar {
  width: 10%;
  height: 6px;
  background-color: #e5e7eb;
  border-radius: 3px;
  margin: 20px 0;
  position: relative;
  cursor: pointer;
  margin: 30px auto;
  margin-bottom: 0;
}

.scrollbar-thumb {
  height: 100%;
  background-color: #f3bd00;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.2s ease;
  cursor: grab;
}

.scrollbar-thumb:hover {
  background-color: #f3bd00;
}

.scrollbar-thumb:active {
  cursor: grabbing;
  background-color: #f3bd00;
}

@media screen and (max-width: 768px) {
  .custom-scrollbar {
    width: 30%;
  }
}

/* ── SESSION STRUCTURE ── */
/* ── Section wrapper ── */
.session-section {
  background: #0d0f14;
  position: relative;
  overflow: hidden;
}

.session-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    rgba(243, 189, 0, 0.05),
    transparent
  );
  pointer-events: none;
}

/* ── Board header row ── */
.board-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.board-col-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.2rem;
}

.bcl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bcl-name {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
}

.bcl-count {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 700;
  color: #888;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
}

/* Column accent colors */
.col-standup .bcl-dot {
  background: #f3bd00;
  box-shadow: 0 0 8px rgba(243, 189, 0, 0.6);
}
.col-progress .bcl-dot {
  background: #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}
.col-review .bcl-dot {
  background: #8b5cf6;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}
.col-done .bcl-dot {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

/* ── Kanban Board ── */
.kanban-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: start;
}

.kb-col {
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid #2a2d36;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.kb-col:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

/* Thin top accent line per column */
.kb-col-top {
  height: 3px;
  width: 100%;
}
.col-standup .kb-col-top {
  background: linear-gradient(90deg, #f3bd00, rgba(243, 189, 0, 0.2));
}
.col-progress .kb-col-top {
  background: linear-gradient(90deg, #3b82f6, rgba(59, 130, 246, 0.2));
}
.col-review .kb-col-top {
  background: linear-gradient(90deg, #8b5cf6, rgba(139, 92, 246, 0.2));
}
.col-done .kb-col-top {
  background: linear-gradient(90deg, #10b981, rgba(16, 185, 129, 0.2));
}

.kb-cards {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* ── Individual card ── */
.kb-card {
  background: #161920;
  border: 1px solid #2a2d36;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  cursor: default;
  transition: all 0.28s;
  position: relative;
  overflow: hidden;
}

/* Left border accent on hover */
.kb-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.col-standup .kb-card::before {
  background: var(--accent);
}
.col-progress .kb-card::before {
  background: #3b82f6;
}
.col-review .kb-card::before {
  background: #8b5cf6;
}
.col-done .kb-card::before {
  background: #10b981;
}

.kb-card:hover::before {
  transform: scaleY(1);
}
.kb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Tag pill */
.kb-tag {
  display: inline-block;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.6rem;
}
.col-standup .kb-tag {
  background: rgba(243, 189, 0, 0.1);
  color: #f3bd00;
}
.col-progress .kb-tag {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
}
.col-review .kb-tag {
  background: rgba(139, 92, 246, 0.1);
  color: #a78bfa;
}
.col-done .kb-tag {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
}

.kb-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.kb-card-desc {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.65;
}

.kb-card-footer {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.kb-time {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.kb-time::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #888;
  opacity: 0.5;
  flex-shrink: 0;
}

.col-standup .kb-time::before {
  background: var(--accent);
  opacity: 0.8;
}
.col-progress .kb-time::before {
  background: #60a5fa;
  opacity: 0.8;
}
.col-review .kb-time::before {
  background: #a78bfa;
  opacity: 0.8;
}
.col-done .kb-time::before {
  background: #34d399;
  opacity: 0.8;
}

/* Avatar cluster */
.kb-avatars {
  display: flex;
}
.kb-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #161920;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  margin-left: -6px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.kb-avatar:first-child {
  margin-left: 0;
}
.kb-avatars:hover .kb-avatar {
  transform: translateX(2px);
}

.av-y {
  background: linear-gradient(
    135deg,
    rgba(243, 189, 0, 0.4),
    rgba(243, 189, 0, 0.15)
  );
  color: var(--accent);
}
.av-t {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.4),
    rgba(59, 130, 246, 0.15)
  );
  color: #60a5fa;
}
.av-a {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.4),
    rgba(16, 185, 129, 0.15)
  );
  color: #34d399;
}

/* ── Extra chip row on some cards ── */
.kb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.55rem;
}
.kb-chip {
  font-size: 0.6rem;
  font-weight: 500;
  color: #888;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.18rem 0.55rem;
  border-radius: 5px;
}

/* ── Bottom summary bar ── */
.board-footer {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.2rem 1.6rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #2a2d36;
  border-radius: 14px;
}

.bf-stat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: #888;
}
.bf-stat strong {
  color: #fff;
}
.bf-stat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(243, 189, 0, 0.5);
}

.bf-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(243, 189, 0, 0.07);
  border: 1px solid rgba(243, 189, 0, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .kanban-board {
    grid-template-columns: repeat(2, 1fr);
  }
  .board-header {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .kanban-board {
    grid-template-columns: 1fr;
  }
  .board-header {
    grid-template-columns: 1fr;
  }
}

.roles-section {
  background: var(--bg-alt);
}

.roles-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.role-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  background: var(--card);
  cursor: default;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.role-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -120%;
  width: 50%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    var(--shine-soft) 40%,
    var(--shine-color) 50%,
    var(--shine-soft) 60%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.role-pill:hover::after {
  left: 140%;
}

.role-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(243, 189, 0, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 189, 0, 0.12);
}

.role-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.25s;
}

.role-pill:hover .role-pill-dot {
  opacity: 1;
}

/* .section-inner{max-width:1200px;margin:0 auto;padding:5rem 3rem;}
.section-label{font-size:0.72rem;letter-spacing:0.16em;text-transform:uppercase;margin-bottom:1rem;font-weight:500;color:var(--accent);}
.section-heading{font-size:clamp(1.8rem,4vw,2.8rem);font-weight:600;color:var(--heading);line-height:1.1;letter-spacing:-0.02em;margin-bottom:1rem;}
.section-sub{font-size:1rem;color:var(--muted);line-height:1.75;max-width:580px;margin-bottom:3rem;}
.text-highlight{color:var(--accent);position:relative;display:inline-block;} */

:root {
  --card: #161920;
  --border: #2a2d36;
  --text: #f5f5f5;
  --muted: #888;
  --heading: #ffffff;
  --accent: #f3bd00;
  --shine-color: rgba(255, 255, 255, 0.35);
  --shine-soft: rgba(255, 255, 255, 0.08);
}

/* ── GRID ── */
.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ── CARD: ALTERNATING LAYOUT ── */
.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: all 0.3s ease;
  position: relative;
  min-height: 300px;
  align-items: stretch;
}

/* Alternate layout - odd cards: image on left, even cards: image on right */
.project-card:nth-child(odd) {
  grid-template-columns: 1fr 1fr;
}

.project-card:nth-child(odd) .project-thumb {
  order: -1;
}

.project-card:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.project-card:nth-child(even) .project-thumb {
  order: 1;
}
/* ── THUMBNAIL ── */
.project-thumb {
  width: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.project-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

/* .project-card:hover .project-thumb-img {
  transform: scale(1.08);
} */

/* Type badge */
.project-type-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(243, 189, 0, 0.12);
  border: 1px solid rgba(243, 189, 0, 0.3);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* ── BODY ── */
.project-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: center;
}

.project-num {
  font-family: "Satisfy", serif;
  font-size: 1.2rem;
  color: rgba(243, 189, 0, 0.45);
  line-height: 1;
  transition: color 0.3s ease;
}

.project-card:hover .project-num {
  color: rgba(243, 189, 0, 0.7);
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
}

.project-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0.5rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(243, 189, 0, 0.1);
}

.tech-tag {
  background: rgba(243, 189, 0, 0.08);
  border: 1px solid rgba(243, 189, 0, 0.18);
  color: var(--text);
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tech-tag:hover {
  background: rgba(243, 189, 0, 0.15);
  border-color: rgba(243, 189, 0, 0.35);
  color: var(--accent);
}

/* ── HIDDEN CARDS & ANIMATION ── */
.project-card.hidden {
  display: none;
}

.project-card.reveal {
  animation: projectReveal 0.5s ease forwards;
}

@keyframes projectReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── VIEW MORE BUTTON ── */
.projects-view-more {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.btn-view-more {
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: #0d1117;
  background: var(--green);
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 6px 24px rgba(52, 211, 153, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-view-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn-view-more:hover::before {
  left: 130%;
}

.btn-view-more:hover {
  box-shadow: 0 8px 32px rgba(52, 211, 153, 0.35);
  transform: translateY(-3px);
  /* background: #2ed5a1; */
}

.btn-view-more:active {
  transform: translateY(-1px);
}

.btn-view-more .vm-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-view-more.expanded .vm-icon {
  transform: rotate(180deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .project-card {
    min-height: 320px;
  }

  .project-body {
    padding: 1.6rem;
  }

  .project-title {
    font-size: 1.3rem;
  }

  .section-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  /* .project-section {
    padding: 3.5rem 1.5rem;
  } */

  .project-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .project-card:nth-child(odd),
  .project-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  /* Image always on top on mobile */
  .project-card:nth-child(odd) .project-thumb {
    order: 0;
    grid-row: 1;
  }

  .project-card:nth-child(odd) .project-body {
    order: 1;
    grid-row: 2;
  }

  .project-card:nth-child(even) .project-thumb {
    order: 0;
    grid-row: 1;
  }

  .project-card:nth-child(even) .project-body {
    order: 1;
    grid-row: 2;
  }

  .project-thumb {
    min-height: 240px;
  }

  .project-body {
    padding: 1.5rem;
  }

  .project-title {
    font-size: 1.2rem;
  }

  .project-desc {
    font-size: 0.9rem;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .section-sub {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  /* .project-section {
    padding: 2.5rem 1rem;
  } */

  .project-body {
    padding: 1.2rem;
  }

  .project-title {
    font-size: 1rem;
  }

  .project-num {
    font-size: 1rem;
  }

  .project-desc {
    font-size: 0.85rem;
  }

  .tech-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }

  .btn-view-more {
    padding: 12px 24px;
    font-size: 0.9rem;
    gap: 0.6rem;
  }

  .btn-view-more .vm-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 560px) {
  /* .projects-grid {
    grid-template-columns: 1fr;
  } */
  .section-inner {
    padding: 3.5rem 1.5rem;
  }
}

.companies-track-wrapper {
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  overflow: hidden;
}

.companies-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
  align-items: center;
  animation: companies-scroll 30s linear infinite;
  margin-top: 2rem;
  overflow: hidden;
}

.companies-track:hover {
  animation-play-state: paused;
}

@keyframes companies-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  transition: opacity 0.2s;
  cursor: default;
  height: auto;
}

.company-logo img {
  width: 120px;
  filter: grayscale(1) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.company-logo img:hover {
  filter: grayscale(0) drop-shadow(0 6px 15px rgba(243, 189, 0, 0.3));
  transform: translateY(-3px) scale(1.05);
}

/* html.dark-mode .company-logo img {
  filter: invert(1) brightness(1.5);
} */

.company-logo:hover {
  opacity: 1 !important;
}

.company-logo svg {
  height: 22px;
  width: auto;
  fill: var(--muted);
  opacity: 0.45;
  transition:
    fill 0.3s,
    opacity 0.3s;
}

.company-logo:hover svg {
  fill: var(--pro-accent);
  opacity: 0.9;
}

/* Text-based fallback logos (used below) */
.company-logo span {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.4;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition:
    color 0.3s,
    opacity 0.3s;
}

.company-logo:hover span {
  color: var(--pro-accent);
  opacity: 0.9;
}

/* ── MARQUEE ── */
.marquee-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  /* padding-bottom: 5rem; */
}

.marquee-row {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.tech-stack-marquee-track {
  display: flex;
  gap: 1.1rem;
  width: 100%;
  will-change: transform;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.office-stack-marquee-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  will-change: transform;
  align-items: center;
}

/* .marquee-row:nth-child(1) .tech-stack-marquee-track {
  animation: goLeft 30s linear infinite;
}
.marquee-row:nth-child(2) .tech-stack-marquee-track {
  animation: goRight 26s linear infinite;
}
.marquee-row:nth-child(3) .tech-stack-marquee-track {
  animation: goLeft 34s linear infinite;
}
.marquee-row:nth-child(4) .tech-stack-marquee-track {
  animation: goRight 28s linear infinite;
}

.marquee-row:hover .tech-stack-marquee-track {
  animation-play-state: paused;
} */

.office-stack-marquee-track {
  animation: goLeft 28s linear infinite;
}

.office-stack-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes goLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes goRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ── ICON CHIP ── */
.m-chip {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: default;
  transition: all 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.m-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -120%;
  width: 50%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 40%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0.06) 60%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left 0.45s ease;
  pointer-events: none;
}
.m-chip:hover::after {
  left: 140%;
}
.m-chip:hover {
  border-color: rgba(243, 189, 0, 0.5);
  background: rgba(243, 189, 0, 0.07);
  box-shadow: 0 12px 28px rgba(243, 189, 0, 0.15);
}

/* Tech SVG icons via inline img from CDN */
.m-chip img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: transform 0.3s;
  filter: grayscale(20%);
}
.m-chip:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Tooltip on hover */
.m-chip {
  position: relative;
}
.m-chip-tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s;
  z-index: 10;
}
.m-chip-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--border);
}
.m-chip:hover .m-chip-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.overview-section,
.tech-stack-section {
  background-color: var(--bg-alt);
}

.tech-stack-section .sefade-inction-inner {
  padding-bottom: 2rem;
}

@media (max-width: 900px) {
  .mobile-break {
    display: none;
  }
}

.curriculum-card-container {
  display: flex;
  gap: 20px;
  margin-top: 60px;
  overflow: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-scrollbar: none;
  -ms-overflow-style: none;
}
.accordion,
.curriculum-card,
.curriculum-card-description,
.cta-button {
  overflow: hidden;
}
.curriculum-card {
  display: flex;
  align-items: center;
  min-width: 300px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px 16px 0px 0px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  padding: 2rem;
  height: 160px;
  position: relative;
}
.curriculum-card:hover {
  background-color: var(--card);
}
.accordion-header:hover,
.curriculum-card.active {
  background-color: rgb(243 189 0 / 0.15);
}
.curriculum-card.active {
  border-radius: 16px 16px 0 0;
  border: 2px solid #f3bd00;
  z-index: 10;
  padding-right: 20px;
  border-bottom: none;
  padding-bottom: 2rem;
  height: auto;
}
.curriculum-card-number {
  position: absolute;
  left: -50px;
  font-weight: 700;
  font-size: 150px;
  line-height: 1;
  color: rgb(0 0 0 / 0.05);
  pointer-events: none;
  user-select: none;
  transition: color 0.2s ease-in-out;
}
.curriculum-card:hover .curriculum-card-number {
  color: rgb(243 189 0 / 0.15);
}
html.dark-mode .curriculum-card.active .curriculum-card-number {
  color: rgb(255 255 255 / 0.2);
}

html.light-mode .curriculum-card.active .curriculum-card-number {
  color: rgb(255 255 255 / 0.8);
}
.curriculum-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}
.curriculum-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 4px;
  transition: 0.2s ease-in-out;
}
.curriculum-card.active .curriculum-card-header,
.curriculum-card:hover .curriculum-card-header {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.curriculum-card-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  /* color: #fff; */
  transition: color 0.2s ease-in-out;
}

.curriculum-card-duration {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: var(--text);
  white-space: nowrap;
}
.curriculum-card-description {
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--text);
  display: none;
  --webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.curriculum-card.active .curriculum-card-description,
.curriculum-card:hover .curriculum-card-description {
  display: -webkit-box;
}
.accordion {
  border-radius: 0 0 16px 16px;
  border: 2px solid #f3bd00;
}
.accordion-header,
.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-item:last-child {
  border-bottom: none;
}
.accordion-header {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}
.accordion-body {
  padding: 25px;
}
.accordion-toggle {
  font-size: 1.2em;
  transition: transform 0.3s;
}
.accordion-header.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content.active {
  max-height: 500px;
}

/* ══════════════════════════════
   PROMPT KIT BANNER
   ══════════════════════════════ */
.kit-banner {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: #1c1c1e;
}

.kit-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 30%,
    rgba(243, 189, 0, 0.6) 50%,
    var(--accent) 70%,
    transparent 100%
  );
}

/* Noise texture overlay */
.kit-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Radial gold glow center */
.kit-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(243, 189, 0, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Dot grid pattern */
.kit-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(243, 189, 0, 0.12) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  mask-image: radial-gradient(
    ellipse 85% 100% at 50% 50%,
    black 0%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 85% 100% at 50% 50%,
    black 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* Diagonal stripe texture left & right */
.kit-stripe-l,
.kit-stripe-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
  background-image: repeating-linear-gradient(
    55deg,
    transparent,
    transparent 12px,
    rgba(243, 189, 0, 0.03) 12px,
    rgba(243, 189, 0, 0.03) 13px
  );
  pointer-events: none;
}
.kit-stripe-l {
  left: 0;
}
.kit-stripe-r {
  right: 0;
}

/* ── INNER ── */
.kit-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 3rem;
}

/* Left */
.kit-left {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.kit-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.kit-eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.kit-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.kit-heading em {
  font-style: normal;
  color: var(--accent);
  font-family: "Poppins", serif;
  font-weight: 600;
  font-size: 1.15em;
}

.kit-sub {
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.7;
  max-width: 420px;
}

.kit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.kit-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 0.28rem 0.7rem;
  font-size: 0.72rem;
}

/* Right */
.kit-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  justify-content: center;
}

.kit-btn {
  width: 100%;
}

.kit-meta {
  font-size: 0.7rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.kit-meta::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

/* Bottom line */
.kit-banner-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(243, 189, 0, 0.15),
    transparent
  );
}
/* ── KIT ILLUSTRATION ── */
.kit-preview {
  flex-shrink: 0;
}

.kit-illustration {
  width: 100%;
  height: auto;
  display: block;
  /* Tint the illustration to match your gold accent */
  filter: drop-shadow(0 8px 24px rgba(243, 189, 0, 0.15));
  height: 240px;
}

@media (max-width: 720px) {
  .kit-left {
    align-items: center;
  }
  .kit-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .kit-eyebrow,
  .kit-chips {
    justify-content: center;
  }
  .kit-sub {
    max-width: 100%;
  }
  .kit-inner {
    padding: 0 1.5rem;
  }
}

.pricing-section {
  background: var(--bg-alt);
}

/* ── LAYOUT ── */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ── LEFT: Value props ── */
.pricing-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}
.value-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(243, 189, 0, 0.08);
  border: 1px solid rgba(243, 189, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.value-text-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.2rem;
}
.value-text-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Compare value pill */
.value-compare {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(243, 189, 0, 0.05);
  border: 1px solid rgba(243, 189, 0, 0.15);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin-top: 0.5rem;
}
.compare-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.compare-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.compare-text strong {
  color: var(--accent);
}

/* ── RIGHT: Pricing card ── */
.pricing-card {
  border: 1px solid rgba(243, 189, 0, 0.35);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

/* Top glow */
.pricing-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(243, 189, 0, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Header */
.pricing-header {
  padding: 2rem 2.2rem 0rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

/* Badge */
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #000;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.pricing-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
  opacity: 0.5;
  animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.15;
  }
}

.pricing-plan-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.pricing-amount {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pricing-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 0.4rem;
}
.pricing-number {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-note {
  font-size: 0.78rem;
  color: var(--muted);
}
.pricing-note span {
  color: var(--accent);
}

/* Features list */
.pricing-body {
  padding: 1.5rem 2.2rem 2rem;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  /* margin-bottom:2rem; */
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text);
}
.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 700;
}

/* CTA */
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 14px;
  padding: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.pricing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.pricing-cta:hover::before {
  opacity: 1;
}
.pricing-cta:hover {
  background: #e6a800;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(243, 189, 0, 0.4);
}
.pricing-cta svg {
  flex-shrink: 0;
  transition: transform 0.25s;
}
.pricing-cta:hover svg {
  transform: translateX(3px);
}

.pricing-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--muted);
}
.pricing-reassurance::before {
  content: "🔒";
  font-size: 0.8rem;
}

@media (max-width: 860px) {
  .pricing-layout {
    grid-template-columns: 1fr;
  }
  .pricing-left {
    order: 2;
  }
  .pricing-card {
    order: 1;
  }
  .section-inner {
    padding: 3.5rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero-cta {
    display: none;
  }
}

.hero-form-input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #e6edf3;
  font-size: 0.88rem;
  font-family: "Poppins", sans-serif;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
}

.hero-country-code {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e6edf3;
}

.hero-form-input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}
.hero-form-input::placeholder {
  color: #ccc;
}

/* ── Portrait Grid ── */
.portrait-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  align-items: end;
}

.portrait-card {
  border-radius: 24px;
  overflow: hidden;
  cursor: default;
  position: relative;
  border: 1px solid var(--border);
  transition:
    transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.4s,
    border-color 0.3s;
}

/* Staggered heights */
.portrait-card:nth-child(1) {
  height: 350px;
}
.portrait-card:nth-child(2) {
  height: 320px;
}
.portrait-card:nth-child(3) {
  height: 350px;
}
.portrait-card:nth-child(4) {
  height: 280px;
}
.portrait-card:nth-child(5) {
  height: 350px;
}

.portrait-card:hover {
  /* transform:translateY(-14px) scale(1.025); */
  z-index: 5;
  box-shadow: var(--shadow-card);
  border-color: var(--accent-border);
}

/* ── Photo layer ── */
.card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition:
    transform 0.55s ease,
    filter 0.4s;
  filter: grayscale(25%) brightness(0.82);
  will-change: transform;
}
[data-theme="light"] .card-photo {
  filter: grayscale(15%) brightness(0.88);
}

.portrait-card:hover .card-photo {
  transform: scale(1.07);
  filter: grayscale(0%) brightness(0.85);
}
[data-theme="light"] .portrait-card:hover .card-photo {
  filter: grayscale(0%) brightness(0.92);
}

/* Background images are set per-card via inline style in HTML for contextual accuracy */

/* ── Gradient overlay ── */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.15) 75%,
    transparent 100%
  );
  transition: background 0.3s;
}
.portrait-card:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.65) 45%,
    rgba(0, 0, 0, 0.2) 80%,
    transparent 100%
  );
}

/* ── Top corner number ── */
.card-num {
  position: absolute;
  top: 1.4rem;
  left: 1.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.28);
  z-index: 2;
  transition: color 0.3s;
}
.portrait-card:hover .card-num {
  color: rgba(255, 255, 255, 0.5);
}

/* ── Accent colour dot ── */
.card-dot {
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px currentColor;
  transition: transform 0.3s;
}
.portrait-card:hover .card-dot {
  transform: scale(1.4);
}
.portrait-card:nth-child(1) .card-dot {
  background: #f3bd00;
  color: #f3bd00;
}
.portrait-card:nth-child(2) .card-dot {
  background: #818cf8;
  color: #818cf8;
}
.portrait-card:nth-child(3) .card-dot {
  background: #2dd4bf;
  color: #2dd4bf;
}
.portrait-card:nth-child(4) .card-dot {
  background: #f472b6;
  color: #f472b6;
}

/* ── Bottom content ── */
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 1.6rem 1.8rem;
  z-index: 2;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 6px;
  margin-bottom: 0.7rem;
}
.portrait-card:nth-child(1) .card-tag {
  background: rgba(243, 189, 0, 0.18);
  color: #f3bd00;
  border: 1px solid rgba(243, 189, 0, 0.35);
}
.portrait-card:nth-child(2) .card-tag {
  background: rgba(129, 140, 248, 0.18);
  color: #c7d2fe;
  border: 1px solid rgba(129, 140, 248, 0.35);
}
.portrait-card:nth-child(3) .card-tag {
  background: rgba(45, 212, 191, 0.18);
  color: #a7f3d0;
  border: 1px solid rgba(45, 212, 191, 0.35);
}
.portrait-card:nth-child(4) .card-tag {
  background: rgba(244, 114, 182, 0.18);
  color: #fbcfe8;
  border: 1px solid rgba(244, 114, 182, 0.35);
}

/* Pulsing dot inside tag */
.tag-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.portrait-card:nth-child(1) .tag-pulse {
  background: #f3bd00;
}
.portrait-card:nth-child(2) .tag-pulse {
  background: #c7d2fe;
}
.portrait-card:nth-child(3) .tag-pulse {
  background: #a7f3d0;
}
.portrait-card:nth-child(4) .tag-pulse {
  background: #fbcfe8;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.card-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.35s ease;
}
.portrait-card:hover .card-desc {
  max-height: 100px;
  opacity: 1;
}

/* Animated underline on title */
.card-title-wrap {
  position: relative;
  display: inline-block;
}
.card-title-wrap::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 0;
  border-radius: 2px;
  transition: width 0.35s ease;
}
.portrait-card:nth-child(1) .card-title-wrap::after {
  background: #f3bd00;
}
.portrait-card:nth-child(2) .card-title-wrap::after {
  background: #818cf8;
}
.portrait-card:nth-child(3) .card-title-wrap::after {
  background: #2dd4bf;
}
.portrait-card:nth-child(4) .card-title-wrap::after {
  background: #f472b6;
}
.portrait-card:hover .card-title-wrap::after {
  width: 100%;
}

/* ── Chips that appear on hover ── */
.card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s 0.05s ease,
    opacity 0.3s 0.1s ease;
}
.portrait-card:hover .card-chips {
  max-height: 60px;
  opacity: 1;
}
.card-chip {
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
}

@media (max-width: 900px) {
  .portrait-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portrait-card:nth-child(1) {
    height: 320px;
  }
  .portrait-card:nth-child(2) {
    height: 280px;
  }
  .portrait-card:nth-child(3) {
    height: 300px;
  }
  .portrait-card:nth-child(4) {
    height: 260px;
  }
}
@media (max-width: 500px) {
  .portrait-grid {
    grid-template-columns: 1fr;
  }
  .portrait-card {
    height: 260px !important;
  }
}

@media (max-width: 768px) {
  .logos {
    justify-content: center;
  }

  .hero-tags {
    display: none;
  }
}

.company-card {
  max-width: 500px;
  width: 400px;
}

/* ══════════════════════════════════════════════════════════════════════
   CURRICULUM — NEW DESIGN
   Add these rules to assets/css/new-program-page.css.
   They replace/override the old .curriculum-layout, .curriculum-card-*,
   .accordion-*, and .curriculum-design rules.
   ══════════════════════════════════════════════════════════════════════ */

/* ── Category colour tokens ── */
.c-fe {
  color: #7fc12a;
}
.c-be {
  color: #60a5fa;
}
.c-db {
  color: #a78bfa;
}
.c-ai {
  color: var(--accent);
}
.c-dx {
  color: #f472b6;
}

.dot-fe {
  background: #7fc12a;
}
.dot-be {
  background: #60a5fa;
}
.dot-db {
  background: #a78bfa;
}
.dot-ai {
  background: var(--accent);
}
.dot-dx {
  background: #f472b6;
}

.badge-fe {
  background: rgba(127, 193, 42, 0.1);
  color: #7fc12a;
  border: 1px solid rgba(127, 193, 42, 0.2);
}
.badge-be {
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.2);
}
.badge-db {
  background: rgba(167, 139, 250, 0.1);
  color: #a78bfa;
  border: 1px solid rgba(167, 139, 250, 0.2);
}
.badge-ai {
  background: rgba(243, 189, 0, 0.1);
  color: var(--accent);
  border: 1px solid rgba(243, 189, 0, 0.2);
}
.badge-dx {
  background: rgba(244, 114, 182, 0.1);
  color: #f472b6;
  border: 1px solid rgba(244, 114, 182, 0.2);
}

/* ── Wrappers ── */
.curriculum-section {
  background: var(--bg);
}

.curr-desktop {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem 5rem;
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}

/* ── LEFT panel ── */
.curr-left {
  width: 280px;
  flex-shrink: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: sticky;
  /* top: 130px;         nav + tabs height */
  max-height: 650px;
}

.left-top {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.left-top p {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.left-top h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--heading);
  margin-top: 0.15rem;
}

.module-list {
  flex: 1;
  overflow-y: auto;
  padding: 0.4rem 0;
  scrollbar-width: none;
}
.module-list::-webkit-scrollbar {
  display: none;
}

.mod-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  gap: 0.8rem;
  position: relative;
  transition: background 0.2s;
}
.mod-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.25s;
  border-radius: 0 2px 2px 0;
}
.mod-btn.active::before {
  background: var(--accent);
}
.mod-btn.active {
  background: rgba(243, 189, 0, 0.05);
}
.mod-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.02);
}

html.light-mode .mod-btn:hover:not(.active) {
  background: rgba(0, 0, 0, 0.03);
}

.mb-num {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 16px;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  opacity: 0.5;
}
.mod-btn.active .mb-num {
  color: var(--accent);
  opacity: 1;
}

.mb-info {
  flex: 1;
  text-align: left;
}
.mb-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.2;
  transition: color 0.2s;
}
.mod-btn.active .mb-title,
.mod-btn:hover .mb-title {
  color: var(--heading);
}

.mb-cat {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.15rem;
  display: block;
}

/* ── RIGHT panel ── */
.curr-right {
  flex: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 650px;
}

.detail-view {
  flex: 1;
  position: relative;
}

.detail-panel {
  position: absolute;
  inset: 0;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
  overflow: hidden;
}
.detail-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dp-scrollable {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  padding-bottom: 1rem;
}
.dp-scrollable::-webkit-scrollbar {
  display: none;
}

.dp-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.dp-phase {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.dp-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.03em;
  line-height: 1;
}
.dp-badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.dp-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.dp-project {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  margin-bottom: 1.8rem;
}
.dp-proj-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.dp-proj-label {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.15rem;
}
.dp-proj-name {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--heading);
}

.dp-topics-label {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
  opacity: 0.7;
}
.dp-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.dp-topic {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.7rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 9px;
  transition: border-color 0.2s;
  cursor: default;
}
.dp-topic:hover {
  border-color: rgba(243, 189, 0, 0.2);
}
.dp-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.dp-topic span {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}
.dp-topic:hover span {
  color: var(--text);
}

.dp-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.dp-counter {
  font-size: 0.72rem;
  color: var(--muted);
}
.dp-counter b {
  color: var(--heading);
}
.dp-btns {
  display: flex;
  gap: 0.5rem;
}
.dp-btn {
  background: var(--green);
  border: 1px solid var(--border);
  color: #1c1c1e;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.dp-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-primary:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* ── MOBILE accordion ── */
.curr-accordion {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
}

.curr-acc-item {
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
}
.curr-acc-item:first-child {
  border-radius: 16px 16px 0 0;
}
.curr-acc-item:last-child {
  border-radius: 0 0 16px 16px;
}
.curr-acc-item + .curr-acc-item {
  border-top: none;
}
.curr-acc-item.open {
  border-color: rgba(243, 189, 0, 0.35);
  z-index: 1;
  position: relative;
}

.curr-acc-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.3rem;
  cursor: pointer;
  background: var(--bg-alt);
  user-select: none;
  transition: background 0.2s;
}
.curr-acc-head:hover {
  background: rgba(243, 189, 0, 0.03);
}
.curr-acc-item.open .curr-acc-head {
  background: rgba(243, 189, 0, 0.06);
}

.curr-acc-num {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 18px;
  opacity: 0.6;
}
.curr-acc-item.open .curr-acc-num {
  color: var(--accent);
  opacity: 1;
}

.curr-acc-htitle {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.curr-acc-item.open .curr-acc-htitle {
  color: var(--heading);
}

.curr-acc-hcat {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.curr-acc-chevron {
  font-size: 0.8rem;
  color: var(--muted);
  transition: transform 0.3s;
}
.curr-acc-item.open .curr-acc-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.curr-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-alt);
}
.curr-acc-item.open .curr-acc-body {
  max-height: 900px;
}

.curr-acc-content {
  padding: 1.2rem 1.3rem 1.5rem;
}
.curr-acc-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.curr-acc-project {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.2rem;
}
.curr-acc-proj-label {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.1rem;
}
.curr-acc-proj-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--heading);
}

.curr-acc-topics {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.curr-acc-topic {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.75rem;
  color: var(--muted);
  padding: 0.35rem 0;
}
.curr-acc-topic::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
  opacity: 0.6;
}

/* ── Responsive breakpoints ── */
@media (max-width: 860px) {
  .curr-desktop {
    display: none !important;
  }
  .curr-accordion {
    display: block;
  }
}
@media (min-width: 861px) {
  .curr-accordion {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .dp-topics {
    grid-template-columns: 1fr;
  }
}

/* ── SECTION 5: INCLUDED — BENTO GRID ── */
.s-included {
  background: #0d0f14;
}
.s-inc-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.s-inc-inner .eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.s-inc-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  line-height: 1.1;
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1px;
  background: #1a1d25;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #1c1c1e;
}
.bento-cell {
  background: #111318;
  padding: 2rem;
  transition: background 0.25s;
}
.bento-cell:hover {
  background: #141720;
}
.bento-cell.wide {
  grid-column: span 2;
}
.bento-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: block;
}
.bento-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.bento-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.bento-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: #666;
}
.bento-item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.6;
}
.bento-cell:hover .bento-item {
  color: #aaa;
}
.bento-cell.featured {
  background: #161308;
}
.bento-cell.featured .bento-title {
  color: var(--accent);
}

.s-batches {
  background: #0d0f14;
}
.s-bat-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.s-bat-inner .eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.s-bat-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  line-height: 1.1;
}
.batch-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #1e2128;
  border-radius: 24px;
  overflow: hidden;
}
.batch-pane {
  padding: 3rem;
  position: relative;
}
.batch-pane:first-child {
  border-right: 1px solid #1e2128;
}
.bp-num {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(243, 189, 0, 0.06);
  line-height: 1;
  letter-spacing: -0.06em;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
}
.bp-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 0.8rem;
}
.bp-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.bp-time {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.bp-time-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.bp-time-suffix {
  font-size: 0.78rem;
  color: #555;
}
.bp-days {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.bp-day {
  padding: 0.35rem 0.9rem;
  border: 1px solid #2a2d36;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #777;
}

@media (max-width: 900px) {
  .s-overview-inner,
  .s-fees-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .outcomes-cols,
  .batch-split {
    grid-template-columns: 1fr;
  }
  .bento {
    grid-template-columns: 1fr;
  }
  .bento-cell.wide {
    grid-column: span 1;
  }
  /* .s-overview,.s-curriculum,.s-outcomes,.s-batches,.s-included,.s-fees{padding:4rem 1.5rem} */
  .s-curr-header {
    padding: 0 1.5rem;
  }
  .curr-track-wrap {
    padding: 0 1.5rem;
  }
}

/* ── GALLERY MARQUEE ── */
/* 

.gallery-section .section-inner {
  padding-bottom: 2rem;
} */

.gallery-section {
  background: #0d0f14;
}

.gallery-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  padding: 1rem 0;
}

.gallery-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: gallery-marquee-left 45s linear infinite;
}

.gallery-marquee-wrapper:hover .gallery-marquee-track {
  animation-play-state: paused;
}

@keyframes gallery-marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gallery-marquee-set {
  display: flex;
  gap: 1.5rem;
  padding-right: 1.5rem;
}

.gallery-marquee-set img {
  width: 350px;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.gallery-marquee-set img:hover {
  transform: scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(243, 189, 0, 0.15);
}

@media (max-width: 768px) {
  .gallery-marquee-set img {
    width: 280px;
    height: 180px;
  }
}

/* ── EXPERIENCE PORTAL SECTION ── */
.portal-section {
  background: var(--bg);
  /* padding: 5rem 0; */
  overflow: hidden;
}

.portal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.portal-content {
  display: flex;
  flex-direction: column;
}

.portal-content .section-sub {
  margin-bottom: 2.5rem;
}

.portal-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.p-feature-icon {
  background: rgba(243, 189, 0, 0.1);
  color: var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(243, 189, 0, 0.2);
}

.p-feature-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.25rem;
}

.p-feature-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.portal-visual {
  position: relative;
  width: 100%;
}

.portal-video-wrapper {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  aspect-ratio: 16 / 10.5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .portal-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/* ── KEY HIGHLIGHTS ── */
.highlights-section {
  background: var(--bg-alt);
}
.kh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.kh-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.kh-card:hover {
  border-color: rgba(243, 189, 0, 0.3);
  box-shadow: 0 6px 20px rgba(243, 189, 0, 0.08);
}
.kh-check {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  flex-shrink: 0;
  background: rgba(243, 189, 0, 0.1);
  border: 1px solid rgba(243, 189, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}
.kh-text {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.55;
}
@media (max-width: 860px) {
  .kh-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .kh-grid {
    grid-template-columns: 1fr;
  }
}
