/* ================================================================
   FUATURE — Global Stylesheet
   Font   : Inter Tight
   Rules  : No gradients. No glassmorphism. Solid only.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ----------------------------------------------------------------
   1. VARIABLES
---------------------------------------------------------------- */
:root {
  --bg:         #060A12;
  --bg-2:       #0A1020;
  --bg-3:       #0D1526;
  --bg-card:    #0F1830;
  --bg-card-2:  #111D35;
  --blue:       #2563EB;
  --blue-dark:  #1B4FD8;
  --blue-dim:   #1E3A7A;
  --cyan:       #22D3EE;
  --white:      #FFFFFF;
  --off-white:  #E8EDF5;
  --muted:      #7A8AA0;
  --muted-2:    #4A5568;
  --border:     #1A2840;
  --border-2:   #121E32;

  --font: 'Inter Tight', sans-serif;

  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 999px;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --t:      all 0.25s var(--ease);
  --t-fast: all 0.15s var(--ease);

  --max:    1200px;
  --nav-h:  68px;
}

/* ----------------------------------------------------------------
   2. RESET
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); color: inherit; }
::selection { background: var(--blue); color: #fff; }

/* ----------------------------------------------------------------
   3. TYPOGRAPHY
---------------------------------------------------------------- */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; line-height: 1.25; letter-spacing: -0.02em; }
h4 { font-size: 0.98rem; font-weight: 600; letter-spacing: -0.01em; }
h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
p  { font-size: 0.93rem; color: var(--muted); line-height: 1.75; }

/* ----------------------------------------------------------------
   4. LAYOUT
---------------------------------------------------------------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ----------------------------------------------------------------
   5. SECTION LABEL
---------------------------------------------------------------- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 5px 14px;
  border-radius: 5px 10px 5px 10px;
  margin-bottom: 18px;
}
.label-dot { width: 5px; height: 5px; border-radius: 50%; background: #fff; flex-shrink: 0; }

/* ----------------------------------------------------------------
   6. BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.87rem;
  padding: 12px 24px;
  border-radius: 10px 5px 10px 5px;
  transition: var(--t);
  white-space: nowrap;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--off-white); border-color: var(--border); }
.btn-outline:hover { border-color: var(--muted); color: #fff; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--bg); border-color: #fff; }
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 0.93rem; border-radius: 5px 10px 5px 10px; }
.btn-sm { padding: 8px 16px; font-size: 0.78rem; border-radius: 5px 10px 5px 10px; }

/* ----------------------------------------------------------------
   7. TAGS
---------------------------------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 5px 10px 5px 10px;
  border: 1px solid var(--border);
  background: var(--bg-3);
  color: var(--muted);
}
.tag-blue { background: var(--blue-dim); color: #93c5fd; border-color: var(--blue-dim); }
.tag-cyan { background: #062535; color: var(--cyan); border-color: #0e3a50; }

/* ----------------------------------------------------------------
   8. DIVIDER
---------------------------------------------------------------- */
hr { border: none; border-top: 1px solid var(--border); }

/* ----------------------------------------------------------------
   9. NAVBAR
---------------------------------------------------------------- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: var(--t);
}
#nav.scrolled {
  background: var(--bg);
  border-bottom-color: var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo img { height: 34px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--t-fast);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 10px; }

.burger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.burger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }
.burger.on span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mob-nav {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 24px 28px 48px;
  flex-direction: column;
  gap: 2px;
  z-index: 999;
  overflow-y: auto;
}
.mob-nav.on { display: flex; }
.mob-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--t-fast);
}
.mob-nav a:hover { color: #fff; }
.mob-nav-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.mob-nav-btns .btn { justify-content: center; border-radius: 10px 5px 10px 5px; }

/* ----------------------------------------------------------------
   10. HERO
---------------------------------------------------------------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #1A2840 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.45;
  pointer-events: none;
}
.hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid #0e3a50;
  background: #050e18;
  padding: 6px 14px;
  border-radius: 5px 10px 5px 10px;
  margin-bottom: 22px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.hero-h1 { margin-bottom: 8px; color: #fff; }
.hero-slogan {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-desc {
  font-size: 0.93rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 34px;
  line-height: 1.78;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 28px; }
.hero-stat .num {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 3px;
}
.hero-stat .lbl { font-size: 0.72rem; color: var(--muted); font-weight: 400; }
.hero-stat-sep { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }

/* Hero panel */
.hero-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
}
.hero-panel-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.prog-cards { display: flex; flex-direction: column; gap: 8px; }
.prog-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 15px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--t);
  cursor: pointer;
}
.prog-card:hover { border-color: var(--blue); background: var(--bg-card-2); }
.prog-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.prog-info { flex: 1; }
.prog-name { font-size: 0.85rem; font-weight: 600; color: #fff; letter-spacing: -0.01em; }
.prog-sub  { font-size: 0.7rem; color: var(--muted); margin-top: 1px; }
.prog-arrow { color: var(--muted); font-size: 0.72rem; transition: var(--t-fast); }
.prog-card:hover .prog-arrow { color: #fff; }
.hero-panel-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-panel-foot span { font-size: 0.72rem; color: var(--muted); }

/* ----------------------------------------------------------------
   11. PROGRAMS SECTION
---------------------------------------------------------------- */
#programs { background: var(--bg-2); }

.programs-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}
.programs-top-left { max-width: 480px; }
.programs-top-left h2 { margin-bottom: 10px; }

/* The unique program display — two big bordered panels side by side */
.prog-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.prog-panel {
  background: var(--bg-2);
  padding: 52px 44px;
  position: relative;
  transition: var(--t);
  border-right: 1px solid var(--border);
}
.prog-panel:last-child { border-right: none; }
.prog-panel:hover { background: var(--bg-card); }

.prog-panel-num {
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
  transition: var(--t);
}
.prog-panel:hover .prog-panel-num { color: var(--blue-dim); }

.prog-panel-bar {
  width: 28px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 22px;
}
.prog-panel h3 { font-size: 1.4rem; margin-bottom: 6px; color: #fff; }
.prog-panel-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 26px; line-height: 1.65; }
.prog-panel-tracks { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }
.prog-panel-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.prog-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}
.prog-info-row i { width: 14px; color: var(--cyan); font-size: 0.72rem; flex-shrink: 0; }

/* ----------------------------------------------------------------
   12. WHY FUATURE
---------------------------------------------------------------- */
#why { background: var(--bg); }

.why-head { max-width: 520px; margin-bottom: 52px; }
.why-head h2 { margin-bottom: 12px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--border);
}
.why-cell {
  background: var(--bg);
  padding: 38px 32px;
  transition: var(--t);
}
.why-cell:hover { background: var(--bg-card); }
.why-cell-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.why-cell-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  background: var(--bg-3);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.why-cell h4 { margin-bottom: 8px; }
.why-cell p  { font-size: 0.83rem; line-height: 1.72; }

/* ----------------------------------------------------------------
   13. SUCCESS STORIES
---------------------------------------------------------------- */
#stories { background: var(--bg-2); }

.stories-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 24px;
}
.slider-outer { overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform 0.45s var(--ease);
}
.story-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--t);
}
.story-card:hover { border-color: var(--blue-dim); }
.story-head { display: flex; align-items: center; gap: 11px; }
.story-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--bg-3);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.story-av img { width: 100%; height: 100%; object-fit: cover; }
.story-av-ini { font-size: 0.82rem; font-weight: 700; color: var(--muted); }
.story-name { font-size: 0.88rem; font-weight: 600; color: #fff; }
.story-role { font-size: 0.73rem; color: var(--muted); margin-top: 1px; }
.story-move {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
}
.story-move .from { font-size: 0.73rem; color: var(--muted); }
.story-move .arr  { font-size: 0.62rem; color: var(--cyan); }
.story-move .to   { font-size: 0.73rem; font-weight: 600; color: #fff; }
.story-quote { font-size: 0.82rem; color: var(--muted); line-height: 1.72; flex: 1; }
.story-stars { font-size: 0.68rem; color: #f59e0b; letter-spacing: 2px; }

.slider-ctrl { display: flex; align-items: center; gap: 10px; margin-top: 28px; }
.s-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--t-fast);
}
.s-btn:hover { border-color: var(--blue); color: #fff; background: var(--blue); }
.s-dots { display: flex; gap: 5px; align-items: center; }
.s-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: var(--t-fast); }
.s-dot.on { background: var(--cyan); width: 18px; border-radius: 3px; }

/* ----------------------------------------------------------------
   14. BLOGS
---------------------------------------------------------------- */
#blogs { background: var(--bg); }

.blogs-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 24px;
}
.blogs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--t);
}
.blog-card:hover { border-color: var(--blue-dim); transform: translateY(-3px); }
.blog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-2);
  font-size: 2rem;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-date { font-size: 0.7rem; color: var(--muted-2); }
.blog-card h4 { font-size: 0.93rem; margin-bottom: 8px; color: #fff; line-height: 1.45; }
.blog-card p  { font-size: 0.81rem; flex: 1; margin-bottom: 16px; }
.blog-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--t-fast);
  margin-top: auto;
}
.blog-link:hover { gap: 9px; }

/* ----------------------------------------------------------------
   15. EVENTS
---------------------------------------------------------------- */
#events { background: var(--bg-2); }

.events-top { margin-bottom: 44px; }
.events-top h2 { margin-top: 8px; }
.events-list { display: flex; flex-direction: column; gap: 8px; }
.event-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--t);
}
.event-row:hover { border-color: var(--blue-dim); background: var(--bg-card-2); }
.event-date {
  min-width: 52px;
  border-right: 1px solid var(--border);
  padding-right: 20px;
  flex-shrink: 0;
  text-align: center;
}
.event-date .day  { font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.04em; }
.event-date .mon  { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); margin-top: 2px; }
.event-info { flex: 1; }
.event-info h4 { margin-bottom: 5px; color: #fff; }
.event-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 0.76rem; color: var(--muted); margin-bottom: 6px; }
.event-meta span { display: flex; align-items: center; gap: 4px; }
.event-meta i { font-size: 0.65rem; color: var(--cyan); }
.event-info p { font-size: 0.81rem; }
.event-cta { align-self: center; flex-shrink: 0; }

/* ----------------------------------------------------------------
   16. NETWORK
---------------------------------------------------------------- */
#network { background: var(--bg); }

.network-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.network-left h2 { margin-bottom: 12px; }
.network-left > p { margin-bottom: 36px; max-width: 380px; }

.net-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--border);
}
.net-stat { background: var(--bg); padding: 28px 22px; text-align: center; }
.net-stat .n { font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -0.04em; line-height: 1; margin-bottom: 5px; }
.net-stat .l { font-size: 0.76rem; color: var(--muted); }

.map-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.map-box svg { width: 100%; height: 100%; padding: 18px; }
.map-chips {
  position: absolute;
  bottom: 18px; right: 18px;
  display: flex; flex-direction: column; gap: 7px;
}
.map-chip {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 7px 13px;
  display: flex; align-items: center; gap: 8px;
}
.map-chip .v { font-size: 0.88rem; font-weight: 800; color: #fff; }
.map-chip .l { font-size: 0.66rem; color: var(--muted); }

/* ----------------------------------------------------------------
   17. HIRE FROM US
---------------------------------------------------------------- */
#hire { background: var(--bg-2); }

.hire-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 72px 60px;
  text-align: center;
}
.hire-box h2 { margin-bottom: 14px; }
.hire-box > p { max-width: 460px; margin: 0 auto 32px; }
.hire-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 32px; }
.hire-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 5px 10px 5px 10px;
  font-size: 0.8rem;
  font-weight: 500;
}
.hire-pill i { color: var(--cyan); font-size: 0.68rem; }
.hire-btns { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   18. CTA / ENROLL
---------------------------------------------------------------- */
#enroll {
  background: var(--bg);
  text-align: center;
}
#enroll h2 { margin-bottom: 12px; }
#enroll .sub { max-width: 420px; margin: 0 auto 32px; font-size: 0.93rem; color: var(--muted); }
.enroll-btns { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.enroll-note { font-size: 0.8rem; color: var(--muted-2); }
.enroll-note a { color: var(--muted); }
.enroll-note a:hover { color: #fff; }

/* ----------------------------------------------------------------
   19. FOOTER
---------------------------------------------------------------- */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-2);
}
.foot-brand img { height: 30px; margin-bottom: 14px; object-fit: contain; }
.foot-brand p { font-size: 0.83rem; max-width: 220px; margin-bottom: 18px; }
.foot-social { display: flex; gap: 7px; }
.foot-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  color: var(--muted);
  transition: var(--t-fast);
}
.foot-social a:hover { color: #fff; border-color: var(--blue); background: var(--blue); }
.foot-col h5 { color: #fff; margin-bottom: 16px; }
.foot-col a { display: block; font-size: 0.83rem; color: var(--muted); margin-bottom: 9px; transition: var(--t-fast); }
.foot-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.78rem;
  color: var(--muted-2);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--muted-2); }
.footer-bottom a:hover { color: var(--muted); }
.footer-links { display: flex; gap: 16px; }

/* ----------------------------------------------------------------
   20. ANIMATIONS
---------------------------------------------------------------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

[data-aos] { opacity: 0; transform: translateY(18px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
[data-aos].aos-in { opacity: 1; transform: translateY(0); }
[data-aos][data-d="100"] { transition-delay: 0.10s; }
[data-aos][data-d="200"] { transition-delay: 0.20s; }
[data-aos][data-d="300"] { transition-delay: 0.30s; }
[data-aos][data-d="400"] { transition-delay: 0.40s; }
[data-aos][data-d="500"] { transition-delay: 0.50s; }

.hero-eyebrow { animation: fadeUp 0.5s 0.1s var(--ease) both; }
.hero-h1      { animation: fadeUp 0.6s 0.15s var(--ease) both; }
.hero-slogan  { animation: fadeUp 0.6s 0.2s var(--ease) both; }
.hero-desc    { animation: fadeUp 0.6s 0.25s var(--ease) both; }
.hero-btns    { animation: fadeUp 0.6s 0.3s var(--ease) both; }
.hero-stats   { animation: fadeUp 0.6s 0.35s var(--ease) both; }
.hero-panel   { animation: fadeIn 0.7s 0.3s var(--ease) both; }

/* ----------------------------------------------------------------
   21. SCROLLBAR
---------------------------------------------------------------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ----------------------------------------------------------------
   22. RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel { max-width: 460px; }
  .network-wrap { grid-template-columns: 1fr; gap: 48px; }
  .map-box { max-width: 460px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .programs-top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 900px) {
  .prog-showcase { grid-template-columns: 1fr; }
  .prog-panel { border-right: none; border-bottom: 1px solid var(--border); }
  .prog-panel:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .story-slide { grid-template-columns: 1fr; }
  .blogs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 68px 0; }
  .nav-links, .nav-right { display: none; }
  .burger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .hire-box { padding: 36px 22px; }
  .stories-top, .blogs-top { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .event-row { flex-direction: column; }
  .event-date { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 10px; display: flex; align-items: baseline; gap: 6px; }
}
@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .hero-stat-sep { display: none; }
  .net-stats { grid-template-columns: 1fr 1fr; }
  .program-card { padding: 34px 26px; }
}

/* ----------------------------------------------------------------
   HERO PANEL — Ribbon style (no glassmorphism, solid)
---------------------------------------------------------------- */
.hero-panel {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  overflow: visible;
}

/* Ribbon badge — like Image 1 reference */
.hero-panel-ribbon {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px 16px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  min-width: 64px;
  text-align: center;
  line-height: 1.3;
}

/* ----------------------------------------------------------------
   EVENTS — Card grid
---------------------------------------------------------------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--t);
}
.event-card:hover {
  border-color: var(--blue-dim);
  background: var(--bg-card-2);
  transform: translateY(-3px);
}
.event-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.event-date-badge {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  text-align: center;
  min-width: 50px;
  flex-shrink: 0;
}
.event-date-badge .day {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.event-date-badge .mon {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 2px;
}
.event-card h4 { font-size: 0.92rem; color: #fff; line-height: 1.4; }
.event-meta-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.76rem;
  color: var(--muted);
}
.event-meta-row span { display: flex; align-items: center; gap: 5px; }
.event-meta-row i { font-size: 0.65rem; color: var(--cyan); }
.event-card p { font-size: 0.81rem; flex: 1; }
.event-card-btn { margin-top: auto; align-self: flex-start; }

/* ----------------------------------------------------------------
   NETWORK — Full-width India map with overlaid stats
---------------------------------------------------------------- */
.network-header {
  text-align: center;
  margin-bottom: 56px;
}
.network-header .label { display: inline-flex; }
.network-header h2 { margin-bottom: 10px; }
.network-header p { max-width: 480px; margin: 0 auto; }

.india-map-wrap {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--bg-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.india-svg {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  opacity: 0.85;
}

/* Stats row overlaid at bottom — like Image 2 */
.network-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card-2);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  gap: 0;
}
.net-big-stat {
  flex: 1;
  text-align: center;
}
.net-big-stat .n {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.net-big-stat .l {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
}
.net-big-sep {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 32px;
}

/* ----------------------------------------------------------------
   RESPONSIVE — new components
---------------------------------------------------------------- */
@media (max-width: 900px) {
  .events-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .events-grid { grid-template-columns: 1fr; }
  .network-stats-overlay { flex-direction: column; gap: 20px; padding: 24px; }
  .net-big-sep { width: 44px; height: 1px; margin: 0; }
}
@media (max-width: 540px) {
  .events-grid { grid-template-columns: 1fr; }
  .hero-panel-ribbon { right: 16px; }
}


/* ----------------------------------------------------------------
   CENTERED SECTION SUBTITLE
---------------------------------------------------------------- */
.section-sub-center {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
   HERO IMAGE (right side)
---------------------------------------------------------------- */
.hero-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

/* ----------------------------------------------------------------
   NETWORK STATS ROW (no map)
---------------------------------------------------------------- */
.network-stats-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--bg-card);
  padding: 48px 40px;
  margin-top: 0;
}
.net-big-stat {
  text-align: center;
  padding: 0 20px;
}
.net-big-stat .n {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.net-big-stat .l {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 400;
}
.net-big-sep {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
}

/* Programs + Why headings centered */
.programs-top-left { text-align: center; max-width: 600px; margin: 0 auto; }
.programs-top { flex-direction: column; align-items: center; gap: 24px; }
.why-head { text-align: center; }
.why-head h2 { text-align: center; }

/* Responsive — network stats */
@media (max-width: 900px) {
  .network-stats-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 0;
  }
  .net-big-sep { display: none; }
  .net-big-stat { padding: 24px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
  .net-big-stat:nth-child(2n) { border-right: none; }
  .net-big-stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 540px) {
  .network-stats-row { grid-template-columns: 1fr 1fr; padding: 0; }
  .hero-img { border-radius: 10px; }
}

/* ================================================================
   HERO EYEBROW — match hero bg (#060A12)
================================================================ */
.hero-eyebrow {
  background: #060A12;
  border-color: var(--border);
  color: var(--muted);
}
.hero-eyebrow-dot { background: var(--cyan); }

/* ================================================================
   WHY-HEAD + COMPANIES-HEAD — centered
================================================================ */
.why-head.text-center,
.companies-head.text-center { text-align: center; }
.why-head.text-center h2,
.companies-head.text-center h2 { text-align: center; }
.why-head.text-center .label { display: inline-flex; }
.why-head.text-center .section-sub-center,
.why-head.text-center p { margin: 8px auto 0; max-width: 520px; }

/* ================================================================
   PLACEMENT COMPANIES — logo marquee
================================================================ */
#companies { background: var(--bg-2); }

.companies-head { margin-bottom: 48px; }
.companies-head h2 { margin-bottom: 10px; }
.companies-head p  { max-width: 480px; margin: 0 auto; }

.logos-track-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--bg-card);
  padding: 32px 0;
  margin-bottom: 20px;
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 18s linear infinite;
  width: max-content;
  padding: 0 24px;
}
.logos-track:hover { animation-play-state: paused; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 100px;
  flex-shrink: 0;
  filter: brightness(0) invert(0.6);
  transition: filter 0.2s ease;
}
.logo-item:hover { filter: brightness(0) invert(1); }
.logo-item img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.companies-count {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ================================================================
   EVENTS CARD — with image
================================================================ */
.event-card-img {
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--bg-3);
  margin-bottom: 4px;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================================================================
   NAVBAR MEGA MENU
================================================================ */
.nav-links { position: relative; align-items: center; }

.nav-item {
  position: relative;
}
.nav-mega-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.15s ease;
  padding: 0;
}
.nav-mega-trigger:hover { color: #fff; }
.nav-mega-trigger[aria-expanded="true"] { color: #fff; }
.nav-chev {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
}
.nav-mega-trigger[aria-expanded="true"] .nav-chev { transform: rotate(180deg); }

.nav-plain {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s ease;
}
.nav-plain:hover { color: #fff; }

/* Mega menu dropdown */
.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mega-menu-sm { min-width: 300px; }
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.mega-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-inner {
  display: flex;
  gap: 24px;
}
.mega-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-col-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
  padding-left: 4px;
}
.mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  transition: background 0.15s ease;
  color: var(--white);
}
.mega-link:hover { background: var(--bg-3); }
.mega-link-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--cyan);
  flex-shrink: 0;
}
.mega-link-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.mega-link-sub {
  font-size: 0.73rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ================================================================
   FOOTER — 5-column grid
================================================================ */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
}

/* ================================================================
   UTILITY
================================================================ */
.text-center { text-align: center; }

/* ================================================================
   RESPONSIVE — new components
================================================================ */
@media (max-width: 1100px) {
  .mega-menu { min-width: 420px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; }
  .mega-menu { display: none; }
}

/* ================================================================
   EVENT CARD IMAGE OVERLAYS
================================================================ */
.event-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--bg-3);
  margin-bottom: 14px;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark scrim over image for overlay readability */
.event-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,10,18,0.45) 0%, transparent 60%);
  pointer-events: none;
}

/* Date — left top overlay */
.event-overlay-left {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  text-align: center;
  z-index: 2;
  min-width: 44px;
}
.event-overlay-left .day {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.event-overlay-left .mon {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 1px;
}

/* Tag — right top overlay */
.event-overlay-right {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.event-overlay-right .tag {
  font-size: 0.65rem;
  padding: 3px 9px;
  border-radius: 5px 10px 5px 10px;
}

/* Remove old event-card-top since overlays replace it */
.event-card-top { display: none; }

/* ================================================================
   NAVBAR MEGA MENU — hover sticky fix
================================================================ */

/* Bridge gap between trigger and menu so hover doesn't break */
.nav-item.has-mega {
  padding-bottom: 8px;
  margin-bottom: -8px;
}

/* Pseudo-element bridge between trigger and menu */
.nav-item.has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
}

.mega-menu {
  top: calc(100% + 8px);
}

/* Show on hover OR when .open class present (click) */
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu,
.mega-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ================================================================
   LOGOS MARQUEE — seamless infinite
================================================================ */
.logos-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  padding: 0 28px;
  animation: marquee-scroll 20s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   HERO — center Why Fuature label fix
================================================================ */
.why-head { margin-bottom: 48px; }
.why-head .label { display: inline-flex; }

/* ================================================================
   PROGRAMS TOP — center label
================================================================ */
.programs-top-left .label { display: inline-flex; }

/* ================================================================
   FOOTER — remove enroll section gap
================================================================ */
#footer { margin-top: 0; }


/* ================================================================
   COURSE PAGE — Convergence 1.0
================================================================ */

/* ---- Course Hero ---- */
.course-hero {
  background: var(--bg);
  padding-top: var(--nav-h);
  padding-bottom: 0;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}
.course-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
  padding: 64px 0 80px;
  width: 100%;
}
.course-hero-left { padding-right: 0; }
.course-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.course-breadcrumb a { color: var(--muted); transition: var(--t-fast); }
.course-breadcrumb a:hover { color: #fff; }
.course-breadcrumb i { font-size: 0.6rem; }
.course-tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.course-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.course-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.course-stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  margin-bottom: 28px;
}
.course-stat {
  flex: 1;
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.course-stat:last-child { border-right: none; }
.course-stat .cs-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.course-stat .cs-lbl { font-size: 0.72rem; color: var(--muted); }
.course-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sticky enroll card */
.enroll-card {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.enroll-card-body { padding: 24px; }
.enroll-card-cohort { font-size: 0.8rem; color: var(--muted); margin-bottom: 4px; }
.enroll-card-date { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.enroll-card-cost-label { font-size: 0.75rem; color: var(--muted); margin-bottom: 4px; }
.enroll-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.enroll-price {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
}
.enroll-price-old {
  font-size: 0.95rem;
  color: var(--muted-2);
  text-decoration: line-through;
}
.enroll-emi { font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; }
.enroll-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #a78bfa;
  background: #1a1040;
  border: 1px solid #2d1a6a;
  border-radius: var(--r-sm);
  padding: 8px 12px;
  margin-bottom: 20px;
}
.enroll-alert i { flex-shrink: 0; }
.enroll-card-footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
}
.enroll-card-footer p { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* Ribbon on card */
.enroll-card-ribbon {
  position: absolute;
  top: 0; right: 24px;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 8px 14px 18px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  text-align: center;
  min-width: 60px;
}
.enroll-card-ribbon .off-pct { font-size: 1.1rem; font-weight: 900; display: block; line-height: 1; }

/* ---- Names scroll ticker ---- */
.names-ticker-wrap {
  overflow: hidden;
  padding: 16px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.names-ticker-row {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.names-ticker-row:hover { animation-play-state: paused; }
.name-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.name-chip i { color: var(--cyan); font-size: 0.6rem; }

/* ---- Curriculum ---- */
.curriculum-section { background: var(--bg-2); }
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.week-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.week-card.featured {
  background: var(--bg-card-2);
  border-color: var(--blue-dim);
}
.week-card:hover { border-color: var(--blue-dim); transform: translateY(-2px); }
.week-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.week-card h4 { font-size: 1rem; color: #fff; margin-bottom: 14px; line-height: 1.35; }
.week-topics { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.week-topic { font-size: 0.8rem; color: var(--muted); display: flex; align-items: flex-start; gap: 7px; }
.week-topic::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; margin-top: 7px; }
.case-study-row { border-top: 1px solid var(--border-2); padding-top: 14px; }
.case-study-label { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 8px; }
.case-study-logos { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.case-study-logos img { height: 20px; width: auto; filter: brightness(0) invert(0.5); transition: var(--t-fast); }
.case-study-logos img:hover { filter: brightness(0) invert(0.9); }

/* Curriculum expand */
.curriculum-more { display: none; }
.curriculum-more.open { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
.btn-expand-curriculum {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--t-fast);
  margin-bottom: 24px;
}
.btn-expand-curriculum:hover { border-color: var(--blue); color: #fff; }
.btn-expand-curriculum i { transition: transform 0.3s ease; }
.btn-expand-curriculum.open i { transform: rotate(180deg); }

/* ---- AI Advantage ---- */
.ai-section { background: var(--bg); }
.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.ai-left { display: flex; flex-direction: column; gap: 10px; }
.ai-tab {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  cursor: pointer;
  transition: var(--t);
}
.ai-tab.active { border-color: var(--blue); background: var(--bg-card-2); }
.ai-tab h4 { font-size: 0.95rem; color: #fff; margin-bottom: 4px; }
.ai-tab p  { font-size: 0.82rem; }
.ai-right {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.ai-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}

/* ---- Schedule ---- */
.schedule-section { background: var(--bg-2); }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--t);
}
.schedule-card:hover { border-color: var(--blue-dim); background: var(--bg-card-2); }
.schedule-card-icon {
  width: 40px; height: 40px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.schedule-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: 16px; }
.schedule-card h4 { font-size: 0.88rem; color: #fff; margin-bottom: 4px; }
.schedule-card p  { font-size: 0.8rem; }

/* ---- Placement support ---- */
.placement-section { background: var(--bg); }
.placement-inner {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--bg-card);
  padding: 64px 48px;
}
.placement-inner h2 { margin-bottom: 10px; }
.placement-inner > p { max-width: 520px; margin: 0 auto 48px; }
.placement-feats {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.placement-feat { text-align: center; }
.placement-feat-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--cyan);
  margin: 0 auto 12px;
}
.placement-feat h5 { font-size: 0.82rem; color: var(--off-white); font-weight: 600; text-transform: none; letter-spacing: 0; }

/* ---- Salary cards ---- */
.salary-section { background: var(--bg-2); }
.salary-title-block { text-align: center; margin-bottom: 48px; }
.salary-title-block .future-label { font-size: 0.8rem; color: var(--muted); margin-bottom: 6px; }
.salary-title-block h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; letter-spacing: -0.04em; }
.salary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.salary-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
}
.salary-card .sal-label { font-size: 0.78rem; color: var(--muted); margin-bottom: 8px; }
.salary-card .sal-val { font-size: 1.8rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }

/* ---- Tools grid ---- */
.tools-section { background: var(--bg); }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.tool-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 16px;
  text-align: center;
  transition: var(--t);
}
.tool-item:hover { border-color: var(--blue-dim); transform: translateY(-2px); }
.tool-item img {
  height: 44px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}
.tool-item .tool-name { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

/* ---- Certificate ---- */
.cert-section { background: var(--bg-2); }
.cert-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cert-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.cert-img img { width: 100%; display: block; }
.cert-text h2 { margin-bottom: 16px; }
.cert-text p  { max-width: 400px; }

/* ---- Timeline ---- */
.timeline-section { background: var(--bg); }
.timeline-table {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  border-collapse: collapse;
  background: var(--bg-card);
}
.timeline-table th {
  background: var(--bg-3);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.timeline-table th:first-child { min-width: 80px; }
.timeline-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-2);
  vertical-align: top;
}
.timeline-table tr:last-child td { border-bottom: none; }
.timeline-table .week-cell {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.tl-event {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 11px;
  margin-bottom: 6px;
  font-size: 0.78rem;
  color: var(--off-white);
}
.tl-event:last-child { margin-bottom: 0; }
.tl-event .ev-title { font-weight: 600; margin-bottom: 2px; }
.tl-event .ev-time { font-size: 0.68rem; color: var(--muted); }
.tl-event.mentor { border-color: var(--blue-dim); background: #0d1d40; }

/* ---- FAQ ---- */
.faq-section { background: var(--bg-2); }
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  transition: var(--t-fast);
  font-family: var(--font);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q:hover { background: var(--bg-3); }
.faq-q i { font-size: 0.7rem; color: var(--muted); flex-shrink: 0; transition: transform 0.25s ease; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border-2);
  padding-top: 14px;
}
.faq-item.open .faq-a { display: block; }

/* ---- Sticky bottom bar ---- */
.course-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.course-sticky-bar.visible { transform: translateY(0); }
.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.sticky-bar-info { display: flex; align-items: center; gap: 32px; }
.sticky-bar-item { font-size: 0.8rem; color: var(--muted); }
.sticky-bar-item strong { display: block; font-size: 1rem; color: #fff; font-weight: 700; }
.sticky-bar-btns { display: flex; gap: 10px; }

/* ---- Future job titles ---- */
.jobs-section { background: var(--bg-2); }
.job-titles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.job-title-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 5px 10px 5px 10px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--off-white);
  transition: var(--t);
}
.job-title-chip:hover { border-color: var(--blue); color: #fff; }
.job-title-chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ---- Cohort look ---- */
.cohort-section { background: var(--bg); }
.cohort-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--border);
}
.cohort-stat { background: var(--bg-card); padding: 36px 28px; text-align: center; }
.cohort-stat .pct { font-size: 2.4rem; font-weight: 900; color: #fff; letter-spacing: -0.05em; margin-bottom: 6px; }
.cohort-stat .cst-lbl { font-size: 0.82rem; color: var(--muted); }

/* ================================================================
   COURSE PAGE RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .course-hero-inner { grid-template-columns: 1fr; }
  .enroll-card { position: relative; top: auto; }
  .ai-inner { grid-template-columns: 1fr; }
  .cert-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .curriculum-grid, .curriculum-more.open { grid-template-columns: 1fr 1fr; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .schedule-grid { grid-template-columns: 1fr; }
  .salary-grid { grid-template-columns: 1fr; }
  .cohort-stats { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .curriculum-grid, .curriculum-more.open { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .placement-feats { gap: 32px; }
  .course-stats-row { flex-wrap: wrap; }
  .course-stat { flex: 1 1 45%; border-bottom: 1px solid var(--border); }
}