/* =========================================================
   Codebegun Web 2.0 — Global Styles
   Bootstrap 5.3 theme overrides + custom components
   ========================================================= */

:root,
[data-bs-theme="light"] {
  --cb-primary: #051D64;
  --cb-secondary: #359AAD;
  --cb-gradient: linear-gradient(135deg, #051D64 0%, #359AAD 100%);
  --cb-gradient-soft: linear-gradient(135deg, rgba(5, 29, 100, 0.10) 0%, rgba(53, 154, 173, 0.10) 100%);

  --cb-bg: #f2f3f7;
  --cb-surface: #ffffff;
  --cb-surface-2: #ebedf4;
  --cb-text: #051D64;
  --cb-text-muted: #5b6884;
  --cb-border: #e0e4ef;
  --cb-shadow: 0 10px 40px rgba(5, 29, 100, 0.08);
  --cb-shadow-lg: 0 20px 60px rgba(5, 29, 100, 0.12);

  --cb-hero-bg: #051D64;
  --cb-hero-text: #ffffff;
}

[data-bs-theme="dark"] {
  --cb-primary: #4a7ee8;
  --cb-secondary: #5ac8dd;
  --cb-gradient: linear-gradient(135deg, #4a7ee8 0%, #5ac8dd 100%);
  --cb-gradient-soft: linear-gradient(135deg, rgba(74, 126, 232, 0.18) 0%, rgba(90, 200, 221, 0.18) 100%);

  --cb-bg: #0b1230;
  --cb-surface: #141d44;
  --cb-surface-2: #1a2553;
  --cb-text: #e8ecf8;
  --cb-text-muted: #9aa6c9;
  --cb-border: #25305e;
  --cb-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  --cb-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);

  --cb-hero-bg: #0a1130;
  --cb-hero-text: #ffffff;
}

/* ---------- Base ---------- */
html { height: 100%; overflow-x: hidden; }
body { height: 100%; overflow-x: hidden; max-width: 100vw; }

body {
  background: var(--cb-bg);
  color: var(--cb-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  transition: background-color .3s ease, color .3s ease;
}

a { color: var(--cb-primary); text-decoration: none; }
a:hover { color: var(--cb-secondary); }

.text-muted, .text-secondary { color: var(--cb-text-muted) !important; }

/* ---------- Brand ---------- */
.cb-brand-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cb-gradient);
  color: #fff; font-weight: 800; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: .5px; box-shadow: 0 6px 18px rgba(102, 80, 216, .35);
}
.cb-brand-mark.sm { width: 32px; height: 32px; border-radius: 9px; font-size: 13px; }
.cb-brand-mark.lg { width: 56px; height: 56px; border-radius: 14px; font-size: 22px; }

.cb-gradient-text {
  background: var(--cb-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn-cb-gradient {
  background: var(--cb-gradient);
  color: #fff; border: 0; font-weight: 600;
  padding: .75rem 1.5rem; border-radius: .75rem;
  box-shadow: 0 6px 18px rgba(102, 80, 216, .35);
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn-cb-gradient:hover, .btn-cb-gradient:focus {
  color: #fff; transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(102, 80, 216, .45);
}
.btn-cb-gradient:active { transform: translateY(0); opacity: .95; }

.btn-cb-outline {
  border: 1px solid var(--cb-border);
  background: var(--cb-surface);
  color: var(--cb-text);
  border-radius: .75rem;
  padding: .65rem 1.25rem; font-weight: 500;
}
.btn-cb-outline:hover {
  border-color: var(--cb-primary); color: var(--cb-primary);
}

/* ---------- Navbar ---------- */
.cb-navbar {
  background: color-mix(in srgb, var(--cb-bg) 85%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--cb-border);
}
.cb-navbar .nav-link { color: var(--cb-text-muted); font-weight: 500; }
.cb-navbar .nav-link:hover, .cb-navbar .nav-link.active { color: var(--cb-primary); }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--cb-border); background: var(--cb-surface);
  color: var(--cb-text); display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease, color .2s ease, border-color .2s ease;
}
.theme-toggle:hover { color: var(--cb-primary); border-color: var(--cb-primary); transform: rotate(15deg); }

/* ---------- Cards / Surfaces ---------- */
.cb-card {
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  border-radius: 1.25rem;
  box-shadow: var(--cb-shadow);
}
.cb-card-lg { border-radius: 1.5rem; box-shadow: var(--cb-shadow-lg); }

.cb-feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cb-gradient-soft);
  color: var(--cb-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}

/* ---------- Forms ---------- */
.form-control, .form-select {
  background: var(--cb-surface-2);
  border: 1px solid var(--cb-border);
  color: var(--cb-text);
  border-radius: .75rem;
  padding: .75rem 1rem;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .2s ease;
}
.form-control:focus, .form-select:focus {
  background: var(--cb-surface);
  border-color: var(--cb-primary);
  color: var(--cb-text);
  box-shadow: 0 0 0 .2rem rgba(102, 80, 216, .2);
}
.form-control::placeholder { color: var(--cb-text-muted); opacity: .8; }

.input-group-text {
  background: var(--cb-surface-2);
  border: 1px solid var(--cb-border);
  color: var(--cb-text-muted);
  border-radius: .75rem;
}

.form-label { font-weight: 500; color: var(--cb-text); margin-bottom: .4rem; }
.form-check-input:checked { background-color: var(--cb-primary); border-color: var(--cb-primary); }

/* ---------- Auth Layout (login / register) ---------- */
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .auth-shell { grid-template-columns: 1.05fr 1fr; }
}

.auth-hero {
  position: relative;
  background: var(--cb-hero-bg);
  color: var(--cb-hero-text);
  padding: 3rem 2.5rem;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 320px;
}
.auth-hero::before {
  content: ""; position: absolute; top: -120px; left: -120px;
  width: 520px; height: 420px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(102, 80, 216, .55), transparent 70%);
  pointer-events: none;
}
.auth-hero::after {
  content: ""; position: absolute; bottom: -180px; right: -100px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(56, 189, 248, .35), transparent 70%);
  pointer-events: none;
}
.auth-hero > * { position: relative; z-index: 1; }

.auth-hero h1 {
  font-size: clamp(1.75rem, 2.4vw + 1rem, 2.75rem);
  font-weight: 700; line-height: 1.15; margin-bottom: .75rem;
}
.auth-hero p.lead { color: rgba(255,255,255,.78); max-width: 460px; }

.auth-feature {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 1rem 1.1rem;
  display: flex; gap: .85rem; align-items: center;
  transition: background-color .2s ease, transform .2s ease;
}
.auth-feature:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.auth-feature .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--cb-gradient); display: inline-flex;
  align-items: center; justify-content: center; flex: 0 0 40px;
  color: #fff;
}
.auth-feature .title { font-weight: 600; font-size: .95rem; }
.auth-feature .desc  { font-size: .82rem; color: rgba(255,255,255,.7); }

.auth-form-wrap {
  display: flex; align-items: center; justify-content: center;
  padding: 2.5rem 1.25rem;
}
.auth-form-card {
  width: 100%; max-width: 460px;
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  border-radius: 1.25rem;
  box-shadow: var(--cb-shadow);
  padding: 2rem;
}
@media (min-width: 576px) { .auth-form-card { padding: 2.5rem; } }

.auth-divider {
  display: flex; align-items: center; gap: .75rem;
  color: var(--cb-text-muted); font-size: .85rem; margin: 1.25rem 0;
}
.auth-divider::before, .auth-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--cb-border);
}

.btn-social {
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  color: var(--cb-text);
  border-radius: .75rem; padding: .6rem .9rem; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem; width: 100%;
}
.btn-social:hover { border-color: var(--cb-primary); color: var(--cb-primary); }

/* ---------- Hero (landing) ---------- */
.cb-hero {
  position: relative; overflow: hidden;
  padding: 6rem 0 5rem;
  background:
    radial-gradient(1200px 500px at 10% 0%, rgba(102, 80, 216, .18), transparent 60%),
    radial-gradient(900px 400px at 90% 20%, rgba(56, 189, 248, .18), transparent 60%);
}
.cb-hero h1 {
  font-size: clamp(2rem, 2.5vw + 1.25rem, 3.5rem);
  font-weight: 800; line-height: 1.1;
}
.cb-hero .lead { color: var(--cb-text-muted); font-size: 1.1rem; max-width: 620px; }

.cb-hero-card {
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  border-radius: 1.5rem;
  box-shadow: var(--cb-shadow-lg);
  padding: 1rem;
}
.cb-hero-card .preview {
  border-radius: 1rem; overflow: hidden;
  background: var(--cb-hero-bg);
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cb-primary); margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.6rem, 1.4vw + 1rem, 2.4rem);
  font-weight: 700; margin-bottom: .75rem;
}

/* ---------- Footer ---------- */
.cb-footer {
  background: var(--cb-surface);
  border-top: 1px solid var(--cb-border);
  color: var(--cb-text-muted);
  padding: 3rem 0 2rem;
}
.cb-footer a { color: var(--cb-text-muted); }
.cb-footer a:hover { color: var(--cb-primary); }

/* ---------- Dashboard ---------- */
.cb-stat-card {
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  border-radius: 1rem;
  padding: 1.25rem;
}
.cb-stat-card .value { font-size: 1.6rem; font-weight: 700; }
.cb-stat-card .label { color: var(--cb-text-muted); font-size: .85rem; }

/* ---------- Utility ---------- */
.bg-cb-gradient { background: var(--cb-gradient) !important; color: #fff; }
.border-cb { border-color: var(--cb-border) !important; }
.rounded-cb { border-radius: 1rem !important; }
.shadow-cb { box-shadow: var(--cb-shadow) !important; }

/* Scrollbar (subtle) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--cb-border); border-radius: 8px; }

/* =========================================================
   Pill Navigation (CodeBegun fixed-top style)
   ========================================================= */
:root,
[data-bs-theme="light"] {
  --cb-nav-bg: rgba(255, 255, 255, 0.85);
  --cb-nav-bg-scrolled: #ffffff;
  --cb-nav-border: #e6eaf2;
  --cb-nav-pill-border: #e2e6f0;
  --cb-nav-pill-text: #1a2a5e;
  --cb-nav-accent: #14b8a6; /* teal dot */
  --cb-nav-cta-bg: #0a1f5c;
  --cb-nav-cta-text: #ffffff;
}
[data-bs-theme="dark"] {
  --cb-nav-bg: rgba(11, 18, 48, 0.78);
  --cb-nav-bg-scrolled: #0e1740;
  --cb-nav-border: #25305e;
  --cb-nav-pill-border: #2a376b;
  --cb-nav-pill-text: #e8ecf8;
  --cb-nav-accent: #2dd4bf;
  --cb-nav-cta-bg: #ffffff;
  --cb-nav-cta-text: #0a1f5c;
}

.cb-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1030;
  padding: .9rem 1rem;
  background: transparent;
  transition: background-color .25s ease, box-shadow .25s ease, padding .2s ease;
}
.cb-nav.is-scrolled {
  background: var(--cb-nav-bg-scrolled);
  box-shadow: 0 6px 24px rgba(10, 31, 92, .08);
  padding: .55rem 1rem;
}
[data-bs-theme="dark"] .cb-nav.is-scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .5);
}

.cb-nav-inner {
  max-width: 1240px; margin: 0 auto;
  background: var(--cb-nav-bg);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid var(--cb-nav-border);
  border-radius: 999px;
  padding: .55rem .65rem .55rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 8px 28px rgba(10, 31, 92, .06);
}

.cb-nav-brand {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--cb-nav-pill-text); text-decoration: none;
  font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em;
  white-space: nowrap;
}
.cb-nav-brand:hover { color: var(--cb-nav-pill-text); opacity: .9; }
.cb-nav-brand .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--cb-nav-accent);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, .18);
}
/* Logo image in nav */
.cb-nav-logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Logo on dark backgrounds (footer, auth hero) — white pill container */
.cb-logo-dark-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.92);
  border-radius: 6px;
  padding: 3px 10px;
  line-height: 0;
}
.cb-logo-dark-wrap img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

.cb-nav-links {
  display: none;
  align-items: center; gap: .4rem;
  list-style: none; margin: 0; padding: 0;
}
@media (min-width: 992px) {
  .cb-nav-links { display: inline-flex; flex: 1; justify-content: center; }
}
.cb-nav-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .5rem 1rem;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: var(--cb-nav-pill-text);
  background: transparent;
  text-decoration: none; font-size: .92rem; font-weight: 500;
  transition: border-color .15s ease, color .15s ease;
}
.cb-nav-pill:hover,
.cb-nav-pill.active {
  border-bottom-color: var(--cb-nav-accent);
  color: var(--cb-nav-pill-text);
  background: transparent;
}
[data-bs-theme="dark"] .cb-nav-pill:hover,
[data-bs-theme="dark"] .cb-nav-pill.active {
  background: transparent;
}
.cb-nav-pill .caret { font-size: .65rem; opacity: .7; }

.cb-nav-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-left: auto;
}

.cb-btn-ghost {
  display: inline-flex; align-items: center;
  padding: .55rem 1.05rem;
  border: 1.5px solid var(--cb-nav-cta-bg);
  border-radius: 12px;
  background: transparent;
  color: var(--cb-nav-cta-bg);
  font-weight: 600; font-size: .92rem;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.cb-btn-ghost:hover {
  background: var(--cb-nav-cta-bg); color: var(--cb-nav-cta-text);
}
[data-bs-theme="dark"] .cb-btn-ghost { color: #ffffff; border-color: #ffffff; }
[data-bs-theme="dark"] .cb-btn-ghost:hover { background: #ffffff; color: #0a1f5c; }

.cb-btn-apply {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.15rem;
  border-radius: 12px; border: 1.5px solid var(--cb-nav-cta-bg);
  background: var(--cb-nav-cta-bg);
  color: var(--cb-nav-cta-text);
  font-weight: 600; font-size: .92rem;
  text-decoration: none;
  animation: cbPulse 2.4s ease-in-out infinite;
  transition: transform .15s ease, box-shadow .2s ease;
}
.cb-btn-apply:hover {
  color: var(--cb-nav-cta-text);
  transform: translateY(-1px);
}
.cb-btn-apply .arrow { transition: transform .2s ease; }
.cb-btn-apply:hover .arrow { transform: translateX(3px); }

@keyframes cbPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10, 31, 92, .35); }
  50%      { box-shadow: 0 0 0 10px rgba(10, 31, 92, 0); }
}
[data-bs-theme="dark"] .cb-btn-apply {
  animation-name: cbPulseDark;
}
@keyframes cbPulseDark {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .35); }
  50%      { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .cb-btn-apply { animation: none; }
}

/* Mobile toggle */
.cb-nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--cb-nav-pill-border);
  border-radius: 999px;
  background: transparent; color: var(--cb-nav-pill-text);
  flex-shrink: 0;
}
@media (min-width: 992px) { .cb-nav-toggle { display: none; } }

/* On mobile: logo must never shrink; hide the Apply Now button from the
   pill bar (it lives in the mobile dropdown already) */
@media (max-width: 991px) {
  .cb-nav-brand { flex-shrink: 0; }
  .cb-nav-cta .cb-btn-apply { display: none; }
  .cb-nav-inner { gap: .5rem; }
}

/* Mobile dropdown panel */
.cb-nav-mobile {
  display: none;
  margin: .5rem auto 0;
  max-width: 1240px;
  background: var(--cb-surface);
  border: 1px solid var(--cb-nav-border);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 12px 32px rgba(10, 31, 92, .12);
}
.cb-nav-mobile.show { display: block; }
.cb-nav-mobile .cb-nav-pill { width: 100%; justify-content: space-between; margin-bottom: .4rem; }
.cb-nav-mobile .cb-nav-cta { margin: .75rem 0 0; flex-direction: column; align-items: stretch; gap: .5rem; }
.cb-nav-mobile .cb-btn-ghost,
.cb-nav-mobile .cb-btn-apply { justify-content: center; }
@media (min-width: 992px) { .cb-nav-mobile { display: none !important; } }

/* When the new fixed nav is used, push content down */
body.has-cb-nav { padding-top: 96px; }
@media (min-width: 992px) { body.has-cb-nav { padding-top: 104px; } }

/* Theme toggle slot inside new nav */
.cb-nav .theme-toggle {
  width: 38px; height: 38px;
  border-color: var(--cb-nav-pill-border);
  background: transparent;
  color: var(--cb-nav-pill-text);
}
.cb-nav .theme-toggle:hover { color: var(--cb-nav-cta-bg); border-color: var(--cb-nav-cta-bg); }

::-webkit-scrollbar-thumb:hover { background: var(--cb-primary); }

/* =========================================================
   Floating / Sticky Elements
   ========================================================= */

/* --- Batch Countdown Strip (top banner) --- */
.cb-batch-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: #0a1f5c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .45rem 2.5rem .45rem 1rem; /* right padding leaves room for × */
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-align: center;
  flex-wrap: nowrap;    /* stay on one line */
  white-space: nowrap;
  overflow: hidden;
}
.cb-batch-strip .strip-accent { color: var(--cb-nav-accent); font-weight: 700; }
.cb-batch-strip .strip-cta {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .22em .85em;
  border-radius: 50px;
  background: var(--cb-nav-accent);
  color: #fff;
  font-size: .78rem; font-weight: 700;
  text-decoration: none;
  transition: background .18s;
}
.cb-batch-strip .strip-cta:hover { background: #0f9e8e; color: #fff; }
.cb-batch-strip-close {
  position: absolute;
  right: .9rem; top: 50%; transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,.5);
  font-size: 1.1rem; line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color .15s;
}
.cb-batch-strip-close:hover { color: #fff; }

/* When strip is visible, push nav + body down */
body.has-strip .cb-nav { top: 36px; }
body.has-strip { padding-top: calc(96px + 36px); }
@media (min-width: 992px) {
  body.has-strip { padding-top: calc(104px + 36px); }
}

/* Mobile: keep strip on one row — hide the CTA button (Apply Now is
   already prominent in the nav bar and hero section) */
@media (max-width: 767px) {
  .cb-batch-strip {
    font-size: .76rem;
    gap: .35rem;
    padding-right: 2.25rem;
  }
  .cb-batch-strip .strip-cta { display: none; }
}

/* --- WhatsApp Chat Bubble (bottom-right) --- */
.cb-wa-bubble {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .65em 1.2em .65em .9em;
  border-radius: 50px;
  background: #25d366;
  color: #fff;
  font-size: .88rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: transform .2s ease, box-shadow .2s ease, background .18s;
  white-space: nowrap;
}
.cb-wa-bubble:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37,211,102,.5);
}
.cb-wa-bubble svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  fill: #fff;
}
@media (max-width: 575px) {
  /* On mobile collapse to icon-only when sticky bar is visible */
  .cb-wa-bubble .wa-label { display: none; }
  .cb-wa-bubble { padding: .75rem; border-radius: 50%; bottom: 5.5rem; }
}

/* =========================================================
   Legal Pages (privacy, terms, cookies, etc.)
   ========================================================= */
.cb-legal-hero {
  padding: 7rem 0 3.5rem;
  background: var(--cb-bg);
  border-bottom: 1px solid var(--cb-border);
}
.cb-legal-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cb-primary); margin: 0 0 .6rem;
}
.cb-legal-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800;
  color: var(--cb-text); margin: 0 0 .75rem; line-height: 1.15;
}
.cb-legal-effective {
  font-size: .82rem; color: var(--cb-text-muted); margin: 0;
}
.cb-legal-main { padding: 3.5rem 0 6rem; }
.cb-legal-body {
  max-width: 780px;
}
.cb-legal-body h2 {
  font-size: 1.15rem; font-weight: 700; color: var(--cb-text);
  margin: 2.25rem 0 .6rem; padding-top: .25rem;
  border-top: 1px solid var(--cb-border);
}
.cb-legal-body h2:first-child { border-top: none; margin-top: 0; }
.cb-legal-body h3 { font-size: 1rem; font-weight: 700; color: var(--cb-text); margin: 1.25rem 0 .4rem; }
.cb-legal-body p { color: var(--cb-text-muted); line-height: 1.85; margin: 0 0 .9rem; }
.cb-legal-body ul, .cb-legal-body ol {
  color: var(--cb-text-muted); line-height: 1.85;
  padding-left: 1.4rem; margin: 0 0 .9rem;
}
.cb-legal-body li { margin-bottom: .3rem; }
.cb-legal-body strong { color: var(--cb-text); }
.cb-legal-body a { color: var(--cb-primary); text-decoration: underline; }
.cb-legal-body .cb-info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem; margin: 1.25rem 0;
}
.cb-legal-body .cb-info-card {
  background: var(--cb-card-bg); border: 1.5px solid var(--cb-border);
  border-radius: 14px; padding: 1.25rem 1.1rem;
}
.cb-legal-body .cb-info-card h3 { margin: 0 0 .35rem; font-size: .9rem; }
.cb-legal-body .cb-info-card p { margin: 0; font-size: .88rem; }
.cb-legal-body .cb-value-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin: 1.25rem 0;
}
.cb-legal-body .cb-value-card {
  background: var(--cb-card-bg); border: 1.5px solid var(--cb-border);
  border-radius: 14px; padding: 1.25rem 1.1rem;
}
.cb-legal-body .cb-value-card .cb-value-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.cb-legal-body .cb-value-card h3 { margin: 0 0 .35rem; font-size: .95rem; color: var(--cb-primary); }
.cb-legal-body .cb-value-card p { margin: 0; font-size: .84rem; }

/* --- Sticky Apply Bar (mobile, bottom-center) --- */
.cb-sticky-bar {
  display: none; /* shown via JS after scroll */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1040;
  background: #0a1f5c;
  border-top: 2px solid var(--cb-nav-accent);
  padding: .7rem 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .cb-sticky-bar { display: none !important; } /* desktop: never show */
}
.cb-sticky-bar.is-visible { display: block; }
.cb-sticky-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
}
.cb-sticky-bar-text {
  font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.7);
}
.cb-btn-sticky-apply {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .5em 1.4em;
  border-radius: 8px;
  background: var(--cb-nav-accent);
  color: #fff;
  font-size: .88rem; font-weight: 700;
  text-decoration: none;
  border: none;
  transition: background .18s;
}
.cb-btn-sticky-apply:hover { background: #0f9e8e; color: #fff; }

/* =========================================================
   Footer — Section 17
   ========================================================= */
.cb-footer-v2 {
  background: #07132e;
  padding: 3rem 0 0;
}
[data-bs-theme="light"] .cb-footer-v2 { background: #071530; }

.cb-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 991px) {
  .cb-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 575px) {
  .cb-footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }

  /* Guarantee left/right breathing room on small phones */
  .cb-footer-v2 .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .cb-footer-tagline { max-width: 100%; }

  /* Bottom bar: stack and center on phones */
  .cb-footer-bar {
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-align: center;
  }
}

/* Brand col */
.cb-footer-brand {
  margin-bottom: .85rem;
}
.cb-footer-tagline {
  font-size: .84rem;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
  max-width: 280px;
}
.cb-footer-socials {
  display: flex; gap: .55rem; flex-wrap: wrap;
}
.cb-footer-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .38em 1.05em;
  border-radius: 50px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: .8rem; font-weight: 600;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.cb-footer-social-btn:hover {
  background: var(--cb-nav-accent);
  color: #fff;
}

/* Link columns */
.cb-footer-col-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cb-nav-accent);
  margin-bottom: .9rem;
}
.cb-footer-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .6rem;
}
.cb-footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .18s;
}
.cb-footer-links a:hover { color: #fff; }

/* Contact col */
.cb-footer-contact-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .55rem;
}
.cb-footer-contact-list li {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.cb-footer-contact-list a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .18s;
}
.cb-footer-contact-list a:hover { color: #fff; }

/* Bottom bar */
.cb-footer-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.cb-footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.cb-footer-legal {
  display: flex; flex-wrap: wrap; gap: .5rem .9rem;
  justify-content: flex-end;
  /* keep links clear of the fixed WhatsApp bubble (≈170px wide + 1.5rem offset) */
  padding-right: 11.5rem;
}
.cb-footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .18s;
}
.cb-footer-legal a:hover { color: rgba(255,255,255,.8); }
@media (max-width: 767px) {
  .cb-footer-legal { padding-right: 0; justify-content: center; }
}

/* =========================================================
   Weekly Tech Battle — Homepage Banner
   ========================================================= */
.cb-wtb-section {
  padding: 4.5rem 0 0;
  background: linear-gradient(135deg, #060e2a 0%, #091640 50%, #060e2a 100%);
  position: relative; overflow: hidden;
}
.cb-wtb-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(20,184,166,.13), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(99,102,241,.10), transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(246,192,38,.06), transparent 35%);
  pointer-events: none;
}
.cb-wtb-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem; align-items: start;
  position: relative; z-index: 1;
  padding-bottom: 2.5rem;
}
@media (max-width: 991px) { .cb-wtb-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Badge */
.cb-wtb-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35em 1em;
  border: 1.5px solid rgba(20,184,166,.5); border-radius: 50px;
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: #14b8a6; margin-bottom: 1rem;
}
.cb-wtb-badge i { font-size: .78rem; }

/* Title */
.cb-wtb-title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.02;
  color: #fff; letter-spacing: -.02em; margin-bottom: .5rem;
}
.cb-wtb-title-gold { color: #359AAD; display: block; }

/* Tagline */
.cb-wtb-tagline {
  font-size: .82rem; color: rgba(255,255,255,.55);
  margin-bottom: .75rem; letter-spacing: .06em; text-transform: uppercase;
}
.cb-wtb-tagline strong { color: #14b8a6; }

.cb-wtb-desc {
  font-size: .93rem; color: rgba(255,255,255,.6);
  line-height: 1.7; max-width: 460px; margin-bottom: 1.5rem;
}

/* 4 Feature boxes */
.cb-wtb-features {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .6rem; margin-bottom: 1.75rem;
}
.cb-wtb-feat {
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  padding: .85rem .5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; text-align: center;
  transition: background .18s, border-color .18s;
}
.cb-wtb-feat:hover { background: rgba(20,184,166,.1); border-color: rgba(20,184,166,.3); }
.cb-wtb-feat i    { font-size: 1.3rem; color: #14b8a6; }
.cb-wtb-feat span { font-size: .71rem; color: rgba(255,255,255,.75); font-weight: 600; line-height: 1.3; }

/* CTAs */
.cb-wtb-ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.cb-btn-wtb-primary {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .8rem 1.75rem;
  background: #359AAD; color: #fff;
  border-radius: 50px; font-weight: 800; font-size: .95rem;
  text-decoration: none; transition: background .18s, transform .18s;
  box-shadow: 0 8px 24px rgba(53,154,173,.3);
}
.cb-btn-wtb-primary:hover { background: #2a7a8d; color: #fff; transform: translateY(-2px); }
.cb-btn-wtb-ghost {
  display: inline-flex; align-items: center;
  padding: .78rem 1.5rem;
  border: 1.5px solid rgba(20,184,166,.55); color: #14b8a6;
  border-radius: 50px; font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: border-color .18s, background .18s, color .18s;
}
.cb-btn-wtb-ghost:hover { background: rgba(20,184,166,.1); border-color: #14b8a6; color: #fff; }

/* Social proof */
.cb-wtb-social { display: flex; align-items: center; gap: .75rem; }
.cb-wtb-avatars { display: flex; }
.cb-wtb-av {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #060e2a; display: block; flex-shrink: 0;
}
.cb-wtb-av + .cb-wtb-av { margin-left: -10px; }
.cb-wtb-av1 { background: linear-gradient(135deg, #f472b6, #ec4899); }
.cb-wtb-av2 { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.cb-wtb-av3 { background: linear-gradient(135deg, #34d399, #10b981); }
.cb-wtb-social p { font-size: .82rem; color: rgba(255,255,255,.55); margin: 0; }
.cb-wtb-social strong { color: #fff; }

/* Prizes column */
.cb-wtb-prizes { display: flex; flex-direction: column; gap: .9rem; }
.cb-wtb-prizes-label {
  text-align: center; font-size: .72rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; color: #14b8a6; margin-bottom: .1rem;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.cb-wtb-prizes-label i { font-size: .8rem; }
.cb-wtb-prize-cards {
  display: flex; align-items: flex-end; gap: .8rem; justify-content: center; margin-bottom: .75rem;
}
.cb-wtb-prize-card {
  flex: 1; border-radius: 16px;
  padding: 1.1rem .85rem 1rem; text-align: center;
  border: 1.5px solid; position: relative;
}
.cb-wtb-prize-gold {
  background: linear-gradient(160deg, #051D64, #0a2d4a);
  border-color: #359AAD;
  transform: translateY(-14px);
  box-shadow: 0 20px 44px rgba(53,154,173,.2);
}
.cb-wtb-prize-silver {
  background: linear-gradient(160deg, #111827, #0d1525);
  border-color: rgba(99,125,170,.5);
}
.cb-wtb-prize-bronze {
  background: linear-gradient(160deg, #111827, #0d1525);
  border-color: rgba(99,125,170,.5);
}
.cb-wtb-prize-crown { font-size: 1.3rem; line-height: 1; margin-bottom: .15rem; }
.cb-wtb-prize-medal { font-size: 2rem; line-height: 1; margin-bottom: .2rem; }
.cb-wtb-prize-amt { font-size: 1.6rem; font-weight: 900; line-height: 1; margin-bottom: .2rem; }
.cb-wtb-prize-gold   .cb-wtb-prize-amt { color: #359AAD; }
.cb-wtb-prize-silver .cb-wtb-prize-amt { color: #94a3b8; }
.cb-wtb-prize-bronze .cb-wtb-prize-amt { color: #cd7f32; }
.cb-wtb-prize-name {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.8); margin-bottom: .4rem;
}
.cb-wtb-prize-extras { font-size: .68rem; color: rgba(255,255,255,.45); line-height: 1.55; }

/* Topic section */
.cb-wtb-topics-hd {
  text-align: center; font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: #14b8a6;
  display: flex; align-items: center; gap: .6rem;
}
.cb-wtb-topics-hd::before,
.cb-wtb-topics-hd::after { content: ""; flex: 1; height: 1px; background: rgba(20,184,166,.25); }
.cb-wtb-topics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .55rem; margin-bottom: .5rem;
}
.cb-wtb-topic {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  padding: .75rem .5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px; text-align: center;
  transition: background .18s;
}
.cb-wtb-topic:hover { background: rgba(255,255,255,.09); }
.cb-wtb-topic i    { font-size: 1.35rem; display: block; }
.cb-wtb-topic span { font-size: .7rem; color: rgba(255,255,255,.75); font-weight: 600; }

/* Bottom stats bar */
.cb-wtb-stats {
  display: flex; align-items: center; justify-content: space-around;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08); border-bottom: none;
  border-radius: 16px 16px 0 0;
  padding: 1.1rem 1.5rem;
  margin-top: 2rem;
  position: relative; z-index: 1;
  flex-wrap: wrap; gap: .75rem;
}
.cb-wtb-stat { display: flex; align-items: center; gap: .6rem; }
.cb-wtb-stat i { font-size: 1.2rem; color: #14b8a6; flex-shrink: 0; }
.cb-wtb-stat-top { display: block; font-size: .78rem; font-weight: 700; color: #fff; line-height: 1; }
.cb-wtb-stat-bot { display: block; font-size: .67rem; color: rgba(255,255,255,.4); margin-top: .1rem; }
.cb-wtb-stat-div { width: 1px; height: 32px; background: rgba(255,255,255,.12); flex-shrink: 0; }

@media (max-width: 1024px) {
  .cb-wtb-inner { gap: 2rem; }
}
@media (max-width: 767px) {
  .cb-wtb-features { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .cb-wtb-topics { grid-template-columns: repeat(2, 1fr); }
  .cb-wtb-stat-div { display: none; }
  .cb-wtb-stats { justify-content: flex-start; gap: 1rem 1.5rem; border-radius: 12px; border-bottom: 1px solid rgba(255,255,255,.08); padding: 1rem 1.25rem; }
  .cb-wtb-prize-card { padding: .9rem .65rem; }
  .cb-wtb-prize-medal { font-size: 1.8rem; }
  .cb-wtb-prize-amt { font-size: 1.4rem; }
  .cb-wtb-ctas { flex-direction: column; gap: .65rem; }
  .cb-btn-wtb-primary, .cb-btn-wtb-ghost { width: 100%; justify-content: center; }
}
@media (max-width: 575px) {
  .cb-wtb-section { padding: 3rem 0 0; }
  .cb-wtb-inner { padding-bottom: 2rem; }
  .cb-wtb-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
  .cb-wtb-desc { max-width: 100%; font-size: .88rem; }
  .cb-wtb-features { grid-template-columns: 1fr; gap: .5rem; }
  .cb-wtb-feat { padding: .75rem .5rem; }
  .cb-wtb-feat i { font-size: 1.1rem; }
  .cb-wtb-feat span { font-size: .68rem; }
  .cb-wtb-ctas { gap: .55rem; margin-bottom: 1rem; }
  .cb-btn-wtb-primary, .cb-btn-wtb-ghost { padding: .7rem 1.25rem; font-size: .88rem; }
  .cb-wtb-prize-cards { gap: .4rem; flex-direction: row; }
  .cb-wtb-prize-card { padding: .75rem .45rem; flex: 1; min-width: 0; }
  .cb-wtb-prize-gold { transform: translateY(-10px); }
  .cb-wtb-prize-medal { font-size: 1.6rem; margin-bottom: .15rem; }
  .cb-wtb-prize-amt { font-size: 1.1rem; }
  .cb-wtb-prize-name { font-size: .65rem; }
  .cb-wtb-prize-extras { font-size: .6rem; }
  .cb-wtb-topics { grid-template-columns: repeat(2, 1fr); gap: .4rem; }
  .cb-wtb-topic { padding: .6rem .4rem; }
  .cb-wtb-topic i { font-size: 1.2rem; }
  .cb-wtb-topic span { font-size: .65rem; }
  .cb-wtb-stats { gap: .8rem 1rem; padding: .85rem 1rem; }
  .cb-wtb-stat { gap: .5rem; }
  .cb-wtb-stat i { font-size: 1rem; }
  .cb-wtb-stat-top { font-size: .7rem; }
  .cb-wtb-stat-bot { font-size: .6rem; }
}

/* =========================================================
   Final CTA — Section 16
   ========================================================= */
.cb-final-cta {
  padding: 4rem 0;
  background: var(--cb-surface);
}
.cb-final-cta-wrap {
  background: #0a1f5c;
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
}
[data-bs-theme="dark"] .cb-final-cta-wrap { background: #07132e; }

.cb-final-cta-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cb-nav-accent);
  margin-bottom: .9rem;
}
.cb-final-cta-heading {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.cb-final-cta-sub-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  margin-bottom: 2rem;
}
.cb-final-cta-sub-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.18);
}
.cb-final-cta-sub-line:first-child  { width: min(520px, 72%); }
.cb-final-cta-sub-line:last-child   { width: min(380px, 52%); }

/* CTA buttons row */
.cb-final-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.cb-btn-cta-apply {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .75em 1.8em;
  border-radius: 10px;
  background: var(--cb-nav-accent);
  color: #fff;
  font-size: .97rem;
  font-weight: 800;
  border: none;
  text-decoration: none;
  transition: background .18s, transform .18s, box-shadow .18s;
}
.cb-btn-cta-apply:hover {
  background: #0f9e8e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(20,184,166,.4);
}
.cb-btn-cta-talk {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .75em 1.8em;
  border-radius: 10px;
  background: transparent;
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
  font-size: .97rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .18s, background .18s;
}
.cb-btn-cta-talk:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* Urgency pills row */
.cb-final-cta-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.cb-final-cta-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35em 1em;
  border-radius: 50px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 600;
}
.cb-final-cta-pill::before {
  content: "\25CF"; /* filled circle */
  font-size: .55rem;
  color: var(--cb-nav-accent);
}

.cb-final-cta-copy {
  max-width: 760px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  line-height: 1.8;
}

.cb-final-cta-feels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.25rem;
}
.cb-final-cta-feels span {
  padding: .55rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 600;
  text-transform: none;
}

/* =========================================================
   FAQ Accordion — Section 15
   ========================================================= */
.cb-faq-section {
  padding: 4.5rem 0;
  background: var(--cb-bg);
}

/* Header row — full width */
.cb-faq-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.cb-faq-header .cb-faq-stats {
  justify-content: center;
}

/* Left panel */
.cb-faq-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cb-text-muted);
  margin-bottom: .65rem;
}
.cb-faq-heading {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--cb-text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
/* Left panel sub-text */
.cb-faq-sub {
  font-size: .9rem;
  color: var(--cb-text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* Quick-stats row in FAQ left panel */
.cb-faq-stats {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding: 1rem 1.1rem;
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  border-radius: 10px;
}
.cb-faq-stat {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.cb-faq-stat-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--cb-text);
  line-height: 1;
}
.cb-faq-stat-lbl {
  font-size: .72rem;
  color: var(--cb-text-muted);
  font-weight: 500;
}

.cb-btn-counsellor {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6em 1.35em;
  border-radius: 8px;
  border: 1.5px solid var(--cb-border);
  background: transparent;
  color: var(--cb-text);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .18s, color .18s;
}
.cb-btn-counsellor:hover {
  border-color: var(--cb-nav-accent);
  color: var(--cb-nav-accent);
}

/* 2-column accordion grid */
.cb-faq-accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  align-items: start;
}
@media (max-width: 767px) {
  .cb-faq-accordion { grid-template-columns: 1fr; }
}
.cb-faq-item {
  border: 1.5px solid var(--cb-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .18s;
}
.cb-faq-item.is-open {
  border-color: var(--cb-nav-accent);
}
.cb-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .97rem;
  font-weight: 700;
  color: var(--cb-text);
  transition: color .18s;
}
.cb-faq-item.is-open .cb-faq-btn {
  color: var(--cb-nav-accent);
}
.cb-faq-icon {
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cb-text-muted);
  flex-shrink: 0;
  transition: transform .25s ease;
  line-height: 1;
}
.cb-faq-item.is-open .cb-faq-icon {
  transform: rotate(45deg);
  color: var(--cb-nav-accent);
}
.cb-faq-body {
  display: none;
  padding: 0 1.25rem 1.15rem;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--cb-text-muted);
}
.cb-faq-item.is-open .cb-faq-body { display: block; }

/* Bullet list inside FAQ answers */
.cb-faq-list {
  list-style: none;
  padding: 0;
  margin: .65rem 0 .5rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.cb-faq-list li {
  font-size: .88rem;
  color: var(--cb-text-muted);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.5;
}
.cb-faq-list li::before {
  content: "›";
  color: var(--cb-nav-accent);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: -.05rem;
}

/* =========================================================
   Media & Recognition — Section 14
   ========================================================= */
.cb-media-section {
  padding: 3.25rem 0;
  background: var(--cb-surface);
}
.cb-media-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cb-text-muted);
  text-align: center;
  margin-bottom: 1.75rem;
}
.cb-media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.cb-media-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: .9rem 1.5rem;
  border: 1.5px dashed var(--cb-border);
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--cb-text-muted);
  font-family: monospace;
  background: transparent;
  transition: border-color .18s, color .18s;
  text-align: center;
}
.cb-media-logo-card:hover {
  border-color: var(--cb-nav-accent);
  color: var(--cb-text);
}
@media (max-width: 575px) {
  .cb-media-logo-card { min-width: calc(50% - .5rem); }
}

/* =========================================================
   Founder Section — Section 13
   ========================================================= */
.cb-founder-section {
  padding: 4.5rem 0;
  background: var(--cb-bg);
}

/* Bootstrap handles the grid — only keep photo and content styles */

/* Mobile: keep portrait ratio so full photo is visible */
@media (max-width: 991px) {
  .cb-founder-photo {
    aspect-ratio: 3 / 4;
    max-height: none;
  }
}

/* Mobile: tighten everything */
@media (max-width: 767px) {
  .cb-founder-section       { padding: 2.5rem 0; }
  .cb-founder-bio p         { font-size: .88rem; }
  .cb-founder-mission p     { font-size: .9rem; }
  .cb-founder-list li       { font-size: .84rem; }
  .cb-founder-note          { font-size: .84rem; }
  .cb-founder-vision-bridge { font-size: .88rem; }
  .cb-founder-badges        { gap: .4rem; }
  .cb-founder-badge-teal,
  .cb-founder-badge-outline { font-size: .72rem; padding: .26em .72em; }
  .cb-founder-ctas    { flex-direction: column; gap: .55rem; }
  .cb-btn-founder-outline,
  .cb-btn-founder-solid {
    width: 100%;
    justify-content: center;
    font-size: .92rem;
    padding: .72em 1rem;
  }
}

/* Left — photo */
.cb-founder-photo {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cb-surface-2);
  border: 1.5px solid var(--cb-border);
  position: relative;
  width: 100%;
}
.cb-founder-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Right — content starts from top */
.cb-founder-content {
  padding-top: 0;
}
.cb-founder-photo-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  color: var(--cb-text-muted);
  line-height: 1.4;
  font-family: monospace;
}

/* Right — content */
.cb-founder-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cb-nav-accent);
  margin-bottom: .9rem;
}

/* Pull quote */
.cb-founder-quote {
  border-left: 4px solid var(--cb-nav-accent);
  padding-left: 1.25rem;
  margin: 0 0 1.5rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-style: italic;
  font-weight: 600;
  color: #0a1f5c;
  line-height: 1.5;
}
[data-bs-theme="dark"] .cb-founder-quote { color: var(--cb-text); }

.cb-founder-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cb-text);
  margin-bottom: .5rem;
}

/* Title pill */
.cb-founder-title-pill {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--cb-text-muted);
  border: 1.5px solid var(--cb-border);
  border-radius: 50px;
  padding: .28em 1em;
  margin-bottom: 1.1rem;
}

/* Sticky photo column on desktop */
@media (min-width: 992px) {
  .cb-founder-photo-col {
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }
}

/* Bio paragraphs */
.cb-founder-bio {
  margin-bottom: 1.25rem;
}
.cb-founder-bio p {
  font-size: .95rem;
  color: var(--cb-text-muted);
  line-height: 1.75;
  margin: 0 0 .75rem;
}
.cb-founder-bio p:last-child { margin-bottom: 0; }

/* Mission statement */
.cb-founder-mission {
  background: color-mix(in srgb, var(--cb-nav-cta-bg) 6%, transparent);
  border-left: 4px solid var(--cb-nav-cta-bg);
  border-radius: 0 8px 8px 0;
  padding: .9rem 1.2rem;
  margin-bottom: 1.5rem;
}
.cb-founder-mission p {
  font-size: .97rem;
  font-weight: 600;
  font-style: italic;
  color: var(--cb-nav-cta-bg);
  line-height: 1.55;
  margin: 0;
}
[data-bs-theme="dark"] .cb-founder-mission p { color: var(--cb-secondary); }

/* List blocks (focus areas / training tracks / building) */
.cb-founder-list-block {
  margin-bottom: 1.25rem;
}
.cb-founder-list-heading {
  font-size: .82rem;
  font-weight: 700;
  color: var(--cb-text);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .55rem;
}
.cb-founder-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.cb-founder-list li {
  font-size: .88rem;
  color: var(--cb-text-muted);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.5;
}
.cb-founder-list li::before {
  content: "→";
  color: var(--cb-nav-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}
/* Two-column list variant (training tracks) */
.cb-founder-list--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem .75rem;
}
@media (max-width: 575px) {
  .cb-founder-list--two-col { grid-template-columns: 1fr; }
}

/* Differentiator note */
.cb-founder-note {
  font-size: .88rem;
  color: var(--cb-text-muted);
  line-height: 1.7;
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  border-radius: 8px;
  padding: .85rem 1rem;
  margin-bottom: 1.25rem;
}

/* Vision block */
.cb-founder-vision {
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cb-founder-vision-label {
  font-size: .82rem;
  color: var(--cb-text-muted);
  margin-bottom: .5rem;
}
.cb-founder-vision-bridge {
  font-size: .97rem;
  font-weight: 800;
  color: var(--cb-nav-cta-bg);
  letter-spacing: .01em;
  line-height: 1.5;
  margin: 0;
}
[data-bs-theme="dark"] .cb-founder-vision-bridge { color: var(--cb-secondary); }

/* Expertise tags section */
.cb-founder-tags-section {
  margin-bottom: 1.75rem;
}

/* Badges row */
.cb-founder-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.cb-founder-badge-teal {
  display: inline-block;
  padding: .32em .9em;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  background: var(--cb-nav-accent);
  color: #fff;
}
.cb-founder-badge-outline {
  display: inline-block;
  padding: .32em .9em;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  border: 1.5px solid var(--cb-border);
  color: var(--cb-text-muted);
}

/* CTA buttons */
.cb-founder-ctas {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.cb-btn-founder-outline {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6em 1.35em;
  border-radius: 8px;
  border: 1.5px solid var(--cb-border);
  background: transparent;
  color: var(--cb-text);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .18s, color .18s;
}
.cb-btn-founder-outline:hover {
  border-color: var(--cb-nav-accent);
  color: var(--cb-nav-accent);
}
.cb-btn-founder-solid {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6em 1.35em;
  border-radius: 8px;
  border: none;
  background: var(--cb-nav-cta-bg);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s, transform .18s;
}
.cb-btn-founder-solid:hover {
  background: #14b8a6;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================================
   For Recruiters — B2B Section 12
   ========================================================= */
.cb-b2b-section {
  padding: 4rem 0;
  background: var(--cb-surface);
}

/* Outer navy container */
.cb-b2b-wrap {
  background: #0a1f5c;
  border-radius: 20px;
  padding: 2.5rem 2.5rem 2.25rem;
}
[data-bs-theme="dark"] .cb-b2b-wrap { background: #07132e; }

/* Header row */
.cb-b2b-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cb-b2b-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cb-nav-accent);
  margin-bottom: .5rem;
}
.cb-b2b-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0;
  margin-bottom: .75rem;
}

/* Intro paragraph under headline */
.cb-b2b-intro {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}

/* CTA button */
.cb-btn-b2b {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7em 1.5em;
  border-radius: 10px;
  background: var(--cb-nav-accent);
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  transition: background .18s, transform .18s, box-shadow .18s;
  flex-shrink: 0;
  align-self: flex-start;
}
.cb-btn-b2b:hover {
  background: #0f9e8e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20,184,166,.35);
}

/* Secondary button variant */
.cb-btn-b2b-secondary {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
}
.cb-btn-b2b-secondary:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 8px 20px rgba(255,255,255,.1);
}

/* CTA button group */
.cb-b2b-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 768px) {
  .cb-b2b-cta-group {
    flex-direction: column;
    gap: .75rem;
  }
  .cb-b2b-cta-group .cb-btn-b2b {
    width: 100%;
    justify-content: center;
  }
}

/* 2-col inner grid */
.cb-b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 575px) {
  .cb-b2b-grid { grid-template-columns: 1fr; }
  .cb-b2b-wrap { padding: 1.75rem 1.25rem; }
}

/* Inner panel cards */
.cb-b2b-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-top: 3px solid var(--cb-nav-accent);
  border-radius: 12px;
  padding: 1.4rem 1.5rem 1.5rem;
}
.cb-b2b-panel-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.1rem;
}

.cb-b2b-panel-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cb-b2b-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.cb-b2b-list li {
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  display: flex;
  align-items: baseline;
  gap: .55rem;
  line-height: 1.4;
}
.cb-b2b-list li::before {
  content: "\2192";
  flex-shrink: 0;
  color: var(--cb-nav-accent);
  font-weight: 700;
}

/* =========================================================
   Placed Students Carousel + Student Videos — Sections 11 & 12
   ========================================================= */
.cb-ps-section { padding: 4.5rem 0 2.5rem; background: var(--cb-bg); }
.cb-sv-section { padding: 0 0 4.5rem; background: var(--cb-bg); }

/* Shared section header */
.cb-ps-hd {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.cb-ps-title { font-size: 1.75rem; font-weight: 800; color: var(--cb-text); margin-bottom: .25rem; }
.cb-ps-sub   { font-size: .9rem; color: var(--cb-text-muted); margin: 0; }
.cb-ps-viewall {
  display: inline-flex; align-items: center;
  padding: .5rem 1.1rem;
  border: 1.5px solid var(--cb-border); border-radius: 8px;
  font-size: .85rem; font-weight: 600;
  color: var(--cb-text); text-decoration: none; white-space: nowrap;
  transition: border-color .18s, color .18s; flex-shrink: 0;
}
.cb-ps-viewall:hover { border-color: var(--cb-nav-accent); color: var(--cb-nav-accent); }

/* Carousel — auto-scroll marquee */
.cb-ps-carousel-wrap { overflow-x: clip; overflow-y: visible; position: relative; padding: 8px 0 20px; contain: layout; }
.cb-ps-track {
  display: flex; gap: 1.1rem;
  width: max-content;
  animation: cb-ps-marquee 120s linear infinite;
  will-change: transform;
}
.cb-ps-track:hover { animation-play-state: paused; }
@keyframes cb-ps-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cb-ps-arrow { display: none; }

/* Student card */
.cb-ps-card {
  flex: 0 0 210px; scroll-snap-align: start;
  background: var(--cb-card-bg); border: 1.5px solid var(--cb-border);
  border-radius: 18px; padding: 1.5rem 1.1rem 1.1rem;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: .25rem;
  transition: transform .2s, box-shadow .2s;
}
.cb-ps-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.1); }

/* Avatar */
.cb-ps-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: .55rem;
}
.cb-ps-avatar--photo { object-fit: cover; display: block; }
.cb-av-blue   { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.cb-av-pink   { background: linear-gradient(135deg, #f472b6, #db2777); }
.cb-av-teal   { background: linear-gradient(135deg, #2dd4bf, #0d9488); }
.cb-av-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.cb-av-orange { background: linear-gradient(135deg, #fb923c, #ea580c); }
.cb-av-green  { background: linear-gradient(135deg, #4ade80, #16a34a); }

.cb-ps-name   { font-size: .98rem; font-weight: 800; color: var(--cb-text); margin: 0 0 .1rem; }
.cb-ps-role   { font-size: .76rem; color: var(--cb-text-muted); margin: 0 0 .5rem; }

/* Company name logos */
.cb-ps-company { font-weight: 800; font-size: 1rem; margin-bottom: .45rem; }
.cb-co-infosys   { color: #007CC3; font-style: italic; }
.cb-co-tcs       { color: #e5202e; text-transform: lowercase; letter-spacing: .06em; font-size: 1.15rem; }
.cb-co-wipro     { background: linear-gradient(90deg,#e53935,#7b1fa2,#1976d2,#00897b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cb-co-cognizant { color: #1a5ca8; }
.cb-co-techmah   { color: #ed1c24; }
.cb-co-tbd       { color: #9ca3af; font-weight: 500; font-size: .85rem; }

.cb-ps-salary {
  display: inline-flex; align-items: center; gap: .2em;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46; font-size: .75rem; font-weight: 800;
  border-radius: 50px; padding: .2em .75em;
  margin: .1rem 0 .3rem; letter-spacing: .02em;
}
.cb-ps-salary-icon { font-style: normal; }
.cb-ps-stars  { font-size: .9rem; color: #f59e0b; letter-spacing: .05em; margin: 0 0 .3rem; line-height: 1; }
.cb-ps-quote  { font-size: .74rem; color: var(--cb-text-muted); line-height: 1.5; margin: 0 0 .6rem; flex: 1; font-style: italic; }
/* Company logo inside student card */
.cb-ps-co-wrap { display: flex; flex-direction: column; align-items: center; gap: .2rem; margin: .1rem 0 .35rem; }
.cb-ps-co-logo { max-width: 80px; max-height: 28px; object-fit: contain; }
.cb-ps-co-name { font-size: .68rem; font-weight: 700; color: var(--cb-text-muted); }
.cb-ps-batch  {
  font-size: .72rem; font-weight: 600; color: var(--cb-text-muted);
  border: 1.5px solid var(--cb-border); border-radius: 50px;
  padding: .25em .9em; margin-top: auto; white-space: nowrap;
}

/* ── Video Carousel (marquee) ── */
.cb-sv-carousel-wrap {
  overflow-x: clip; overflow-y: visible;
  position: relative; padding: 8px 0 20px;
  contain: layout;
}
.cb-sv-track {
  display: flex; gap: 1.25rem;
  width: max-content;
  animation: cb-sv-marquee 90s linear infinite;
  will-change: transform;
}
.cb-sv-track:hover { animation-play-state: paused; }
@keyframes cb-sv-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cb-sv-card {
  flex: 0 0 260px;
  border-radius: 14px; overflow: hidden;
  border: 1.5px solid var(--cb-border); background: var(--cb-card-bg);
  transition: transform .2s, box-shadow .2s;
}
.cb-sv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }

.cb-sv-thumb {
  position: relative; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.cb-sv-t1 { background: linear-gradient(135deg, #1a3a5c, #2d6a9a); }
.cb-sv-t2 { background: linear-gradient(135deg, #1a4a3c, #2d8a6a); }
.cb-sv-t3 { background: linear-gradient(135deg, #3c2a1a, #8a6a2d); }
.cb-sv-t4 { background: linear-gradient(135deg, #3a1a4a, #7a3a9a); }
.cb-sv-t5 { background: linear-gradient(135deg, #1a2a4a, #3a5a8a); }

.cb-sv-play {
  position: relative; z-index: 3;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #1a2a5e; cursor: pointer;
  transition: transform .18s, background .18s;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.cb-sv-play:hover { transform: scale(1.12); background: #fff; }
.cb-sv-dur {
  position: absolute; z-index: 2; bottom: .5rem; right: .6rem;
  background: rgba(0,0,0,.72); color: #fff;
  font-size: .67rem; font-weight: 600; border-radius: 4px; padding: .1rem .4rem;
}

.cb-sv-info   { padding: .75rem .85rem .85rem; }
.cb-sv-name   { font-size: .88rem; font-weight: 700; color: var(--cb-text); margin: 0 0 .1rem; }
.cb-sv-placed { font-size: .76rem; color: var(--cb-text-muted); margin: 0 0 .2rem; display: flex; align-items: center; gap: .25rem; }
.cb-sv-sal    { font-size: .9rem; font-weight: 700; color: #0d9488; margin: 0; }

.cb-sv-student-review {
  font-size: 1.05rem;
  font-weight: 800;
  background: linear-gradient(90deg, #0d9488, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: .15rem 0 0;
  line-height: 1.25;
  letter-spacing: .01em;
}

.cb-sv-upcoming { opacity: .5; pointer-events: none; }
.cb-sv-soon {
  color: #fff; font-size: .75rem; font-weight: 600; letter-spacing: .04em;
  background: rgba(0,0,0,.45); padding: .25rem .6rem; border-radius: 20px;
}

@media (max-width: 767px) {
  .cb-ps-card { flex: 0 0 78vw; }
  .cb-ps-arrow { display: none; }
  .cb-sv-card  { flex: 0 0 200px; }
}

/* =========================================================
   3-Step Placement Process
   ========================================================= */
.cb-placement-section {
  padding: 4.5rem 0;
  background: var(--cb-surface);
}

.cb-placement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .cb-placement-grid { grid-template-columns: 1fr; }
}

/* Base card */
.cb-place-card {
  border-radius: 16px;
  padding: 1.75rem 1.6rem;
  display: flex; flex-direction: column; gap: .55rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cb-place-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

/* Step 01 — deep navy */
.cb-place-card.step-1 {
  background: #0a1f5c;
  border: 1.5px solid #0a1f5c;
}
/* Step 02 — medium navy */
.cb-place-card.step-2 {
  background: #1a3a8c;
  border: 1.5px solid #1a3a8c;
}
/* Step 03 — teal accent tint */
.cb-place-card.step-3 {
  background: rgba(45, 212, 191, .12);
  border: 1.5px solid rgba(45, 212, 191, .45);
}

[data-bs-theme="dark"] .cb-place-card.step-1 { background: #07122e; border-color: #07122e; }
[data-bs-theme="dark"] .cb-place-card.step-2 { background: #0f2260; border-color: #0f2260; }
[data-bs-theme="dark"] .cb-place-card.step-3 {
  background: rgba(45, 212, 191, .08);
  border-color: rgba(45, 212, 191, .35);
}

.cb-place-card .place-step-num {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
}
.cb-place-card.step-1 .place-step-num,
.cb-place-card.step-2 .place-step-num { color: var(--cb-nav-accent); }
.cb-place-card.step-3 .place-step-num { color: var(--cb-nav-accent); }

.cb-place-card .place-title {
  font-size: 1.3rem; font-weight: 800; line-height: 1.2;
  margin: .2rem 0 .5rem;
}
.cb-place-card.step-1 .place-title,
.cb-place-card.step-2 .place-title { color: #fff; }
.cb-place-card.step-3 .place-title { color: var(--cb-text); }

.cb-place-card .place-desc {
  font-size: .88rem; line-height: 1.6;
  margin-bottom: .75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.cb-place-card.step-1 .place-desc,
.cb-place-card.step-2 .place-desc { color: rgba(255,255,255,.65); }
.cb-place-card.step-3 .place-desc {
  color: var(--cb-text-muted);
  border-bottom-color: rgba(45,212,191,.2);
}

.cb-place-card .place-points {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .45rem;
}
.cb-place-card .place-points li {
  font-size: .9rem; font-weight: 500;
  display: flex; align-items: baseline; gap: .45rem;
}
.cb-place-card.step-1 .place-points li,
.cb-place-card.step-2 .place-points li { color: rgba(255,255,255,.88); }
.cb-place-card.step-3 .place-points li { color: var(--cb-text); }

.cb-place-card .place-points li::before {
  content: "\2192"; /* → */
  flex-shrink: 0;
  color: var(--cb-nav-accent);
  font-weight: 700;
}

/* =========================================================
   Industry Mentors — Trainers
   ========================================================= */
.cb-mentors-section {
  padding: 4.5rem 0;
  background: var(--cb-bg);
}

/* 4-col grid → 2-col tablet → 1-col mobile (carousel via scroll) */
.cb-mentors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1099px) { .cb-mentors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  {
  .cb-mentors-grid {
    grid-template-columns: repeat(4, 78vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: .25rem;
  }
  .cb-mentors-grid::-webkit-scrollbar { display: none; }
}

.cb-mentor-card {
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  scroll-snap-align: start;
  cursor: pointer;
}
.cb-mentor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cb-shadow-lg);
  border-color: var(--cb-nav-accent);
}

/* Photo area */
.cb-mentor-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    repeating-conic-gradient(var(--cb-surface-2) 0% 25%, var(--cb-bg) 0% 50%)
    0 0 / 22px 22px;
  border-bottom: 1px solid var(--cb-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--cb-text-muted); font-size: .8rem;
  position: relative;
}
.cb-mentor-photo img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}

/* Card body */
.cb-mentor-body { padding: 1rem 1.1rem 1.1rem; }
.cb-mentor-name {
  font-size: 1rem; font-weight: 800;
  color: var(--cb-text); margin-bottom: .5rem;
}
.cb-mentor-role {
  font-size: .82rem; color: var(--cb-text-muted);
  margin-bottom: .75rem;
}

/* Badge row */
.cb-mentor-badges { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }

.cb-company-badge {
  display: inline-flex; align-items: center;
  padding: .35rem .9rem;
  border-radius: 999px;
  background: var(--cb-nav-accent);
  color: #fff;
  font-size: .75rem; font-weight: 700;
}

.cb-exp-pill {
  display: inline-flex; align-items: center;
  padding: .3rem .8rem;
  border-radius: 999px;
  border: 1.5px solid var(--cb-border);
  color: var(--cb-text-muted);
  font-size: .78rem; font-weight: 600;
  background: var(--cb-surface);
}

/* =========================================================
   Curriculum Preview — Tech Stack
   ========================================================= */
.cb-stack-section {
  padding: 4rem 0;
  background: var(--cb-bg);
}

.cb-stack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 4rem;
  align-items: start;
}
@media (min-width: 768px) {
  .cb-stack-grid { grid-template-columns: 1fr 1fr; }
}

.cb-stack-left .stack-desc {
  color: var(--cb-text-muted);
  font-size: .95rem; line-height: 1.65;
  max-width: 420px;
  margin-bottom: 1.75rem;
}

/* Download syllabus button */
.cb-btn-syllabus {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.4rem;
  border-radius: 10px;
  border: 2px solid var(--cb-nav-cta-bg);
  background: transparent;
  color: var(--cb-nav-cta-bg);
  font-weight: 700; font-size: .95rem;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.cb-btn-syllabus:hover {
  background: var(--cb-nav-cta-bg); color: #fff;
}
[data-bs-theme="dark"] .cb-btn-syllabus { border-color: #fff; color: #fff; }
[data-bs-theme="dark"] .cb-btn-syllabus:hover { background: #fff; color: #0a1f5c; }

/* Tech pill tags */
.cb-stack-pills {
  display: flex; flex-wrap: wrap; gap: .55rem;
}

.cb-stack-pill {
  display: inline-flex; align-items: center;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  font-size: .88rem; font-weight: 600;
  border: 1.5px solid var(--cb-border);
  color: var(--cb-text);
  background: var(--cb-surface);
  transition: border-color .15s ease, background-color .15s ease, color .15s ease, transform .15s ease;
  cursor: default;
}
.cb-stack-pill:hover {
  border-color: var(--cb-nav-accent);
  color: var(--cb-nav-accent);
  transform: translateY(-2px);
}

/* Flagship/highlighted pill */
.cb-stack-pill.primary {
  background: var(--cb-nav-cta-bg);
  color: #fff;
  border-color: var(--cb-nav-cta-bg);
  font-weight: 700;
}
.cb-stack-pill.primary:hover {
  background: #0d2872;
  border-color: #0d2872;
  color: #fff;
  transform: translateY(-2px);
}
[data-bs-theme="dark"] .cb-stack-pill.primary {
  background: var(--cb-secondary);
  border-color: var(--cb-secondary);
  color: #0a1f5c;
}

/* Row spacing between pill rows */
.cb-stack-row { display: contents; }

/* =========================================================
   Training Model — 7-Step Flow
   ========================================================= */
.cb-pipeline-section {
  padding: 4rem 0;
  background: var(--cb-surface);
}

/* Horizontal scrollable row on all sizes, flex on large */
.cb-steps-row {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  align-items: stretch;
}
.cb-steps-row::-webkit-scrollbar { display: none; }

/* Individual step */
.cb-step {
  flex: 0 0 auto;
  min-width: 148px;
  background: var(--cb-bg);
  border: 1.5px solid var(--cb-border);
  border-radius: 14px;
  padding: 1.1rem 1.1rem 1rem;
  display: flex; flex-direction: column; gap: .35rem;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
@media (min-width: 992px) {
  .cb-step { flex: 1 1 0; min-width: 0; }
}
.cb-step:hover {
  box-shadow: var(--cb-shadow);
  border-color: var(--cb-nav-accent);
}

/* Featured last step */
.cb-step.featured {
  background: #0a1f5c;
  border-color: #0a1f5c;
}
[data-bs-theme="dark"] .cb-step.featured {
  background: #07122e;
  border-color: #1a3070;
}
.cb-step.featured .step-num  { color: var(--cb-nav-accent); }
.cb-step.featured .step-name { color: #ffffff; }
.cb-step.featured:hover { border-color: var(--cb-nav-accent); }

/* Arrow connector between steps */
.cb-step-arrow {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  color: var(--cb-border);
  font-size: 1.1rem;
  padding: 0 .1rem;
  align-self: center;
  margin-bottom: 0;
}
[data-bs-theme="dark"] .cb-step-arrow { color: var(--cb-nav-pill-border); }

.step-num {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cb-nav-accent);
  margin-bottom: .1rem;
}
.step-name {
  font-size: .98rem; font-weight: 800;
  color: var(--cb-text);
  line-height: 1.2;
}

/* Mobile: vertical stacked timeline */
@media (max-width: 767px) {
  .cb-steps-row {
    flex-direction: column;
    overflow-x: visible;
    gap: 0;
  }
  .cb-step {
    min-width: 0; flex: none;
    flex-direction: row; align-items: center; gap: 1rem;
    border-radius: 12px;
    padding: 1rem 1.25rem;
  }
  .cb-step-arrow {
    display: flex;
    transform: rotate(90deg);
    padding: .2rem 1.5rem;
    color: var(--cb-border);
  }
  .step-num { margin-bottom: 0; }
}

/* =========================================================
   Why CodeBegun — Differentiators (7-card grid)
   ========================================================= */
.cb-diff-section {
  padding: 4.5rem 0;
  background: var(--cb-surface);
}

.cb-diff-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .cb-diff-header { grid-template-columns: 1fr 1fr; align-items: end; }
}
.cb-diff-header .pull-quote {
  font-style: italic;
  font-size: .95rem;
  color: var(--cb-text-muted);
  line-height: 1.6;
  text-align: right;
}
@media (max-width: 767px) {
  .cb-diff-header .pull-quote { text-align: left; }
}

/* Grid: 4 cols desktop, 2 mobile */
.cb-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px)  { .cb-diff-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .cb-diff-grid { grid-template-columns: repeat(4, 1fr); } }

/* Individual differentiator card */
.cb-diff-card {
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-border);
  border-radius: 14px;
  padding: 1.35rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  border-top: 3px solid var(--cb-border);
}
.cb-diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cb-shadow-lg);
  border-top-color: var(--cb-nav-accent);
  border-color: var(--cb-nav-accent);
}

/* Featured (navy) card — last item */
.cb-diff-card.featured {
  background: #0a1f5c;
  border-color: #0a1f5c;
  border-top-color: var(--cb-nav-accent);
}
[data-bs-theme="dark"] .cb-diff-card.featured {
  background: #07122e;
  border-color: #1a2f6e;
  border-top-color: var(--cb-nav-accent);
}
.cb-diff-card.featured .diff-title { color: #fff; }
.cb-diff-card.featured .diff-body  { color: rgba(255,255,255,.62); }

/* Number badge */
.cb-diff-badge {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cb-nav-accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  flex-shrink: 0;
}

.diff-title {
  font-size: 1rem; font-weight: 800;
  color: var(--cb-text);
  margin: 0;
}
.diff-body {
  font-size: .85rem; line-height: 1.6;
  color: var(--cb-text-muted);
  margin: 0;
}

/* =========================================================
   Programs — Tabbed Course Selector
   ========================================================= */
.cb-programs-section {
  padding: 4rem 0 5rem;
  background: var(--cb-bg);
}

/* Custom tab list (underline style) */
.cb-prog-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--cb-border);
  margin-bottom: 2.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.cb-prog-tabs::-webkit-scrollbar { display: none; }

.cb-prog-tab {
  flex: 0 0 auto;
  padding: .75rem 1.4rem;
  font-size: .95rem; font-weight: 500;
  color: var(--cb-text-muted);
  background: transparent; border: 0;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}
.cb-prog-tab:hover { color: var(--cb-text); }
.cb-prog-tab.active {
  color: var(--cb-text);
  font-weight: 700;
  border-bottom-color: var(--cb-nav-cta-bg);
}
[data-bs-theme="dark"] .cb-prog-tab.active { border-bottom-color: var(--cb-secondary); }

/* Tab panel */
.cb-prog-panel { display: none; }
.cb-prog-panel.active { display: block; }

/* Course card */
.cb-course-card {
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex; flex-direction: column;
  height: 100%;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.cb-course-card:hover {
  box-shadow: var(--cb-shadow-lg);
  border-color: var(--cb-primary);
  transform: translateY(-3px);
}

/* Duration pill */
.cb-duration-pill {
  display: inline-flex; align-items: center;
  padding: .35rem .9rem;
  border-radius: 999px;
  background: var(--cb-nav-cta-bg);
  color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase;
  width: fit-content;
}
[data-bs-theme="dark"] .cb-duration-pill { background: var(--cb-surface-2); color: var(--cb-secondary); }

/* Popular badge */
.cb-popular-badge {
  display: inline-flex; align-items: center;
  padding: .3rem .8rem;
  border-radius: 999px;
  background: var(--cb-nav-accent);
  color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}

/* Course title */
.cb-course-card .course-title {
  font-size: 1.2rem; font-weight: 800;
  color: var(--cb-text);
  margin: .85rem 0 .5rem;
}

/* Description skeleton lines or real text */
.cb-course-card .course-desc {
  color: var(--cb-text-muted);
  font-size: .88rem; line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1rem;
}

/* Tech stack tags */
.cb-tech-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
.cb-tech-tag {
  display: inline-flex; align-items: center;
  padding: .28rem .75rem;
  border-radius: 999px;
  background: var(--cb-nav-accent);
  color: #fff;
  font-size: .75rem; font-weight: 600;
}
.cb-tech-tag.more {
  background: transparent;
  border: 1.5px solid var(--cb-border);
  color: var(--cb-text-muted);
}

/* Fee + CTA row */
.cb-course-footer {
  border-top: 1px solid var(--cb-border);
  padding-top: 1rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; margin-top: auto;
}
.cb-course-footer .fee-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cb-text-muted);
  margin-bottom: .2rem;
}
.cb-course-footer .fee-amount {
  font-size: 1.15rem; font-weight: 800;
  color: var(--cb-text);
}

.cb-btn-explore {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.25rem;
  border-radius: 10px;
  background: var(--cb-nav-cta-bg); color: #fff;
  font-weight: 700; font-size: .9rem;
  text-decoration: none; border: 0; white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease;
}
.cb-btn-explore:hover {
  color: #fff; transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(10,31,92,.28);
}
.cb-btn-explore .arrow { transition: transform .2s ease; }
.cb-btn-explore:hover .arrow { transform: translateX(3px); }
[data-bs-theme="dark"] .cb-btn-explore { background: #fff; color: #0a1f5c; }
[data-bs-theme="dark"] .cb-btn-explore:hover { box-shadow: 0 8px 20px rgba(255,255,255,.18); }

/* Featured (popular) card — teal border */
.cb-course-card.featured {
  border-color: var(--cb-nav-accent);
  box-shadow: 0 0 0 1px var(--cb-nav-accent), 0 4px 16px rgba(20,184,166,.12);
}

/* Course stats row */
.cb-course-stats {
  display: flex; align-items: center; gap: 0;
  border-top: 1px solid var(--cb-border);
  border-bottom: 1px solid var(--cb-border);
  margin-bottom: 1rem;
  padding: .7rem 0;
}
.cb-course-stat {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .1rem;
}
.cb-course-stat + .cb-course-stat {
  border-left: 1px solid var(--cb-border);
}
.cb-course-stat .cs-val {
  font-size: 1.1rem; font-weight: 800; color: var(--cb-text); line-height: 1.1;
}
.cb-course-stat .cs-lbl {
  font-size: .68rem; font-weight: 500; color: var(--cb-text-muted); white-space: nowrap;
}

/* Next batch in footer */
.cb-course-footer .batch-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cb-text-muted);
  margin-bottom: .2rem;
}
.cb-course-footer .batch-date {
  font-size: .98rem; font-weight: 800; color: var(--cb-text);
}

/* =========================================================
   Hiring Logos — Companies that hired our graduates
   ========================================================= */
.cb-logos-section {
  padding: 3.5rem 0;
  background: var(--cb-surface);
  overflow: hidden;
}
.cb-logos-section .eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--cb-text-muted);
  margin-bottom: .65rem;
}
.cb-logos-section h2 {
  font-size: clamp(1.3rem, 1.5vw + .8rem, 1.9rem);
  font-weight: 800; color: var(--cb-text);
  margin-bottom: 2rem;
}

/* Marquee track */
.cb-marquee-wrap {
  position: relative;
  /* allow vertical hover lift + shadow to breathe; clip only horizontal overflow */
  overflow-x: clip;
  overflow-y: visible;
  padding: 10px 0 18px;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.cb-marquee-track {
  display: flex;
  width: max-content;
  animation: cbMarquee 28s linear infinite;
  gap: 1rem;
}
.cb-marquee-wrap:hover .cb-marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .cb-marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .cb-marquee-wrap { mask-image: none; -webkit-mask-image: none; }
}
@keyframes cbMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Logo card */
.cb-logo-card {
  flex: 0 0 auto;
  width: 160px; height: 108px;
  border: 1.5px solid var(--cb-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 12px 10px;
  background: var(--cb-surface);
  /* subtle fade, NO greyscale — show real brand colours */
  filter: opacity(.72);
  transition: filter .25s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: default;
  user-select: none;
}
.cb-logo-card:hover {
  filter: opacity(1);
  transform: translateY(-3px);
  border-color: var(--cb-primary);
  box-shadow: 0 8px 24px rgba(102,80,216,.15);
}
/* Logo image */
.cb-logo-card img {
  max-width: 110px; max-height: 38px;
  object-fit: contain; display: block;
  flex-shrink: 0;
}
/* Company name below logo */
.cb-logo-name {
  font-size: .62rem;
  font-weight: 600;
  color: var(--cb-text-muted);
  letter-spacing: .02em;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

/* View all link */
.cb-logos-viewall {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1.75rem;
  font-size: .9rem; font-weight: 600; color: var(--cb-primary);
  text-decoration: none;
  transition: gap .2s ease;
}
.cb-logos-viewall:hover { gap: .6rem; color: var(--cb-primary); }

/* =========================================================
   Proof Strip — Placement Numbers
   ========================================================= */
.cb-proof-strip {
  background: #0a1f5c;
  padding: 3rem 0;
}
[data-bs-theme="dark"] .cb-proof-strip {
  background: #07122e;
}

.cb-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) {
  .cb-proof-grid { grid-template-columns: repeat(4, 1fr); }
}

.cb-proof-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, .1);
}
.cb-proof-stat:last-child { border-right: 0; }
@media (max-width: 767px) {
  .cb-proof-stat:nth-child(even)  { border-right: 0; }
  .cb-proof-stat:nth-child(1),
  .cb-proof-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
}

.cb-proof-num {
  font-size: clamp(2.4rem, 4vw + 1rem, 3.5rem);
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: .05em;
}
.cb-proof-num .unit {
  color: #2dd4bf;
  font-weight: 900;
}
.cb-proof-num .prefix {
  color: #2dd4bf;
  font-size: .72em;
  font-weight: 900;
}

.cb-proof-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: .6rem;
}

/* =========================================================
   Hero Section — "We build engineers companies want to hire."
   ========================================================= */
.cb-hero-v2 {
  padding: 1rem 0 4rem;
  background: var(--cb-bg);
  overflow-x: hidden;
}

/* Batch badge */
.cb-batch-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem 1rem .45rem .65rem;
  border: 1.5px solid var(--cb-nav-accent);
  border-radius: 999px;
  font-size: .82rem; font-weight: 600; letter-spacing: .01em;
  color: var(--cb-text);
  background: transparent;
  margin-bottom: 1.5rem;
}
.cb-batch-badge .dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cb-nav-accent);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, .22);
  flex-shrink: 0;
}
.cb-batch-badge .sep { color: var(--cb-text-muted); font-weight: 400; }

/* Headline */
.cb-hero-v2 h1 {
  font-size: clamp(2rem, 2.8vw + 1rem, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cb-text);
  margin-bottom: 1.25rem;
}
.cb-hero-v2 h1 em {
  font-style: italic;
  font-weight: 800;
  color: var(--cb-nav-cta-bg);   /* dark navy */
}
[data-bs-theme="dark"] .cb-hero-v2 h1 em { color: var(--cb-secondary); }

/* Sub-copy */
.cb-hero-v2 .sub-copy {
  font-size: 1.05rem; color: var(--cb-text-muted);
  line-height: 1.65; max-width: 540px; margin-bottom: 1.75rem;
}

/* Stats row */
.cb-hero-stats {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cb-border);
}
.cb-hero-stats .stat .num {
  font-size: 1.25rem; font-weight: 800;
  color: var(--cb-text);
}
.cb-hero-stats .stat .lbl {
  font-size: .78rem; color: var(--cb-text-muted); margin-top: .1rem;
}

/* CTA row */
.cb-hero-v2 .cb-cta-row {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
}

/* Apply button (hero variant — same style as nav CTA) */
.cb-btn-apply-lg {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .75rem 1.5rem;
  border-radius: 12px; border: 2px solid var(--cb-nav-cta-bg);
  background: var(--cb-nav-cta-bg); color: #fff;
  font-weight: 700; font-size: 1rem;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease;
}
.cb-btn-apply-lg:hover {
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 31, 92, .3);
}
.cb-btn-apply-lg .arrow { transition: transform .2s ease; }
.cb-btn-apply-lg:hover .arrow { transform: translateX(3px); }
[data-bs-theme="dark"] .cb-btn-apply-lg { background: #fff; color: #0a1f5c; border-color: #fff; }
[data-bs-theme="dark"] .cb-btn-apply-lg:hover { box-shadow: 0 10px 28px rgba(255,255,255,.2); }

/* Hire button */
.cb-btn-hire {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .73rem 1.5rem;
  border-radius: 12px; border: 2px solid var(--cb-nav-cta-bg);
  background: transparent; color: var(--cb-nav-cta-bg);
  font-weight: 700; font-size: 1rem;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.cb-btn-hire:hover {
  background: var(--cb-nav-cta-bg); color: #fff;
}
[data-bs-theme="dark"] .cb-btn-hire { border-color: #fff; color: #fff; }
[data-bs-theme="dark"] .cb-btn-hire:hover { background: #fff; color: #0a1f5c; }

/* Divider under CTA */
.cb-hero-v2 .hero-divider {
  margin-top: 2rem;
  border-top: 1px solid var(--cb-border);
}

/* ---- Right column: media + floating review card ---- */
.cb-hero-media {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;        /* lets flex:1 on media-frame resolve properly */
}
.cb-hero-media .media-frame {
  position: relative;
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(5, 29, 100, 0.14);
}

.cb-hero-media .media-frame .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 28px;
}
/* Play/pause overlay button */
.cb-hero-media .media-frame .play-btn {
  position: relative;
  z-index: 2;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--cb-nav-cta-bg); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; cursor: pointer; border: none;
  box-shadow: 0 8px 24px rgba(10, 31, 92, .35);
  transition: transform .2s ease, opacity .2s ease;
  opacity: .9;
}
.cb-hero-media .media-frame .play-btn:hover { transform: scale(1.08); opacity: 1; }
/* Hide button when video is playing (class toggled by JS) */
.cb-hero-media .media-frame.is-playing .play-btn { opacity: 0; pointer-events: none; }
.cb-hero-media .media-frame:hover .play-btn { opacity: 1 !important; pointer-events: auto !important; }

/* Floating review card */
.cb-review-float {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  min-width: 210px;
  box-shadow: var(--cb-shadow-lg);
  z-index: 2;
}
.cb-review-float .rating-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cb-text-muted);
  margin-bottom: .4rem;
}
.cb-review-float .rating-label .star { color: #f59e0b; margin-right: .3rem; }
.cb-review-float .rating-bar {
  height: 8px; border-radius: 999px;
  background: var(--cb-surface-2); overflow: hidden;
  margin-bottom: .5rem;
}
.cb-review-float .rating-bar .fill {
  height: 100%; width: 96%;
  border-radius: 999px;
  background: var(--cb-nav-cta-bg);
}
[data-bs-theme="dark"] .cb-review-float .rating-bar .fill { background: var(--cb-secondary); }
.cb-review-float .rating-sub {
  font-size: .75rem; color: var(--cb-text-muted);
}
/* ---- Hero mobile / responsive overrides ---- */

/* Tablet: tighten row gap when columns stack */
@media (max-width: 991px) {
  /* Reduce horizontal gutter to match container padding (prevents row overflow) */
  .cb-hero-v2 .row.g-5 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 2rem; }
  .cb-hero-media { margin-top: 0; }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
  .cb-hero-v2 {
    padding: 1.25rem 0 2.5rem;
  }

  /* Reduce vertical gap between stacked columns */
  .cb-hero-v2 .row.g-5 { --bs-gutter-y: 1.5rem; }

  /* Headline a touch smaller so it doesn't crowd */
  .cb-hero-v2 h1 {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
    margin-bottom: 1rem;
  }

  /* Sub-copy comfortable line length */
  .cb-hero-v2 .sub-copy {
    font-size: .97rem;
    margin-bottom: 1.25rem;
  }

  /* Stats: 2 × 2 grid so no orphan stat */
  .cb-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
  }

  /* CTA buttons full-width, stacked */
  .cb-hero-v2 .cb-cta-row {
    flex-direction: column;
    gap: .6rem;
  }
  .cb-btn-apply-lg,
  .cb-btn-hire {
    width: 100%;
    justify-content: center;
    font-size: .97rem;
    padding: .8rem 1rem;
  }

  /* Hide decorative divider on mobile — no right column to separate */
  .cb-hero-v2 .hero-divider { display: none; }

  /* Review float: pull out of absolute positioning → sits below image */
  .cb-review-float {
    position: static;
    margin-top: .85rem;
    min-width: unset;
    width: 100%;
    border-radius: 12px;
  }
}

/* Small phones (≤ 400px) */
@media (max-width: 400px) {
  .cb-hero-v2 h1 { font-size: 1.65rem; }
  .cb-hero-stats .stat .num { font-size: 1.1rem; }
  .cb-batch-badge { font-size: .75rem; }
}

/* =========================================================
   Enquiry Card (inline lead form)
   ========================================================= */
.cb-enquiry-section {
  padding: 0 0 3rem;
  background: var(--cb-bg);
}
.cb-enquiry-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-border);
  border-radius: 20px;
  padding: 2rem 2rem 2rem 2.25rem;
  box-shadow: 0 8px 32px rgba(5,16,43,.07);
  min-height: 220px;
}
@media (max-width: 767px) {
  .cb-enquiry-card { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem; }
}

/* Left pitch */
.cb-enquiry-eyebrow {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--cb-nav-accent); margin-bottom: .4rem;
}
.cb-enquiry-title {
  font-size: 1.25rem; font-weight: 800;
  color: var(--cb-text); line-height: 1.25;
  margin-bottom: .4rem;
}
.cb-enquiry-sub {
  font-size: .85rem; color: var(--cb-text-muted); margin-bottom: .9rem;
}
.cb-enquiry-trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .3rem;
}
.cb-enquiry-trust li {
  font-size: .8rem; color: var(--cb-text-muted);
  display: flex; align-items: center; gap: .4rem;
}
.cb-enquiry-trust .bi { color: #16a34a; font-size: .85rem; }

/* 2×2 fields grid */
.cb-enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1rem;
  margin-bottom: .9rem;
}
@media (max-width: 575px) {
  .cb-enquiry-grid { grid-template-columns: 1fr; }
}

/* Shared field/input/label styles */
.cb-lead-form { display: flex; flex-direction: column; }
.cb-lead-field { display: flex; flex-direction: column; gap: .28rem; }
.cb-lead-label {
  font-size: .78rem; font-weight: 700; color: var(--cb-text);
}
.cb-lead-req { color: #dc2626; }
.cb-lead-eyebrow {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--cb-nav-accent);
  margin-bottom: .4rem;
}
.cb-lead-title {
  font-size: 1.5rem; font-weight: 800;
  color: var(--cb-text); line-height: 1.2;
  margin-bottom: .4rem;
}
.cb-lead-sub {
  font-size: .88rem; color: var(--cb-text-muted); margin: 0;
}

.cb-lead-form { display: flex; flex-direction: column; gap: 1rem; }
.cb-lead-field { display: flex; flex-direction: column; gap: .3rem; }
.cb-lead-label {
  font-size: .82rem; font-weight: 700; color: var(--cb-text);
}
.cb-lead-req { color: #dc2626; }
.cb-lead-input {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--cb-border);
  border-radius: 10px;
  background: var(--cb-surface);
  color: var(--cb-text);
  font-size: .92rem;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  appearance: none;
}
.cb-lead-input:focus {
  border-color: var(--cb-nav-accent);
  box-shadow: 0 0 0 3px rgba(var(--cb-nav-accent-rgb, 0,91,187), .12);
}
.cb-lead-input--err {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1) !important;
}
.cb-lead-err {
  font-size: .74rem; color: #dc2626; font-weight: 600; min-height: 1em;
}
.cb-lead-submit {
  width: 100%;
  padding: .8rem 1.5rem;
  background: var(--cb-nav-cta-bg);
  color: #fff;
  border: none; border-radius: 10px;
  font-size: 1rem; font-weight: 700;
  cursor: pointer;
  transition: opacity .18s, transform .15s;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.cb-lead-submit:hover:not(:disabled) { opacity: .88; transform: translateY(-1px); }
.cb-lead-submit:disabled { opacity: .6; cursor: not-allowed; }

/* Success state — spans full card width and centers vertically */
.cb-lead-success {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.cb-lead-success-icon {
  font-size: 3rem; color: #16a34a; display: block; margin-bottom: .75rem;
}
.cb-lead-success h3 {
  font-size: 1.25rem; font-weight: 800; color: var(--cb-text); margin-bottom: .5rem;
}
.cb-lead-success p {
  font-size: .9rem; color: var(--cb-text-muted); margin-bottom: 1.25rem;
}
.cb-lead-wa-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .65rem 1.4rem;
  background: #25d366; color: #fff;
  border-radius: 10px; font-weight: 700; font-size: .92rem;
  text-decoration: none;
  transition: opacity .18s;
}
.cb-lead-wa-btn:hover { opacity: .88; color: #fff; }

/* =========================================================
   Course Detail Page — Full Stack Engineering
   ========================================================= */

/* ── Breadcrumb ── */
.cd-breadcrumb-bar {
  background: var(--cb-surface);
  border-bottom: 1px solid var(--cb-border);
  padding: .6rem 0;
  font-size: .82rem;
  color: var(--cb-text-muted);
}
.cd-breadcrumb-bar a { color: var(--cb-text-muted); text-decoration: none; }
.cd-breadcrumb-bar a:hover { color: var(--cb-primary); }
.cd-breadcrumb-bar .sep { margin: 0 .4rem; opacity: .5; }
.cd-breadcrumb-bar .current { color: var(--cb-text); font-weight: 600; }

/* ── Course Hero ── */
.cd-hero {
  background: #0a1f5c;
  color: #fff;
  padding: 2.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.cd-hero::before {
  content: "";
  position: absolute; top: -140px; right: -100px;
  width: 600px; height: 500px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(102,80,216,.35), transparent 70%);
  pointer-events: none;
}
.cd-hero-badges {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  margin-bottom: 1rem;
}
.cd-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .28em .9em;
  border-radius: 50px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.cd-badge-popular {
  background: #16a34a; color: #fff;
}
.cd-badge-outline {
  border: 1.5px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
  background: transparent;
}
.cd-hero h1 {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  font-weight: 800; line-height: 1.1;
  color: #fff; margin-bottom: .75rem;
}
.cd-hero-desc {
  font-size: 1rem; color: rgba(255,255,255,.75);
  max-width: 640px; margin-bottom: 1.75rem; line-height: 1.65;
}
.cd-stats-row {
  display: flex; flex-wrap: wrap; gap: 1.25rem 2.5rem;
  margin-bottom: 2rem;
}
.cd-stat-item { display: flex; flex-direction: column; gap: .15rem; }
.cd-stat-item .s-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.cd-stat-item .s-val {
  font-size: 1rem; font-weight: 700; color: #fff;
}
.cd-stat-item .s-val .s-icon { margin-right: .25rem; }
.cd-hero-ctas {
  display: flex; flex-wrap: wrap; gap: .65rem;
}
.cd-btn-enroll {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .75rem 1.75rem;
  border-radius: 12px;
  background: #14b8a6; color: #fff;
  font-weight: 700; font-size: .95rem;
  text-decoration: none; border: 0;
  transition: background .18s, transform .15s;
}
.cd-btn-enroll:hover { background: #0d9488; color: #fff; transform: translateY(-1px); }
.cd-btn-syllabus {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .72rem 1.4rem;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.35);
  background: transparent; color: #fff;
  font-weight: 600; font-size: .92rem;
  text-decoration: none;
  transition: background .18s, border-color .18s;
}
.cd-btn-syllabus:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); }
.cd-btn-advisor {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .72rem 1.4rem;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.25);
  background: transparent; color: rgba(255,255,255,.8);
  font-weight: 600; font-size: .92rem;
  text-decoration: none;
  transition: background .18s;
}
.cd-btn-advisor:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ── Sticky Tab Bar ── */
.cd-tab-bar {
  position: sticky; top: 80px; z-index: 900;
  background: var(--cb-surface);
  border-bottom: 2px solid var(--cb-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cd-tab-bar::-webkit-scrollbar { display: none; }
.cd-tab-bar-inner {
  display: flex; min-width: max-content;
  padding: 0 1rem;
  max-width: 1320px; margin: 0 auto;
}
@media (min-width: 576px) { .cd-tab-bar-inner { padding: 0 1.5rem; } }
.cd-tab-btn {
  display: inline-flex; align-items: center;
  padding: .9rem 1.1rem;
  border: none; border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--cb-text-muted);
  font-size: .88rem; font-weight: 600;
  white-space: nowrap;
  cursor: pointer; margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}
.cd-tab-btn:hover { color: var(--cb-primary); }
.cd-tab-btn.active { color: var(--cb-primary); border-bottom-color: var(--cb-primary); }

/* ── Main layout ── */
.cd-main { padding: 2.5rem 0 4rem; }

/* ── Section heading inside content ── */
.cd-section-title {
  font-size: 1.15rem; font-weight: 700;
  color: var(--cb-text); margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1.5px solid var(--cb-border);
}

/* ── Feature checklist ── */
.cd-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-bottom: 2rem;
}
@media (max-width: 480px) { .cd-feature-grid { grid-template-columns: 1fr; } }
.cd-feature-item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .9rem; font-weight: 500; color: var(--cb-text);
}
.cd-feature-item .cd-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(20,184,166,.15); color: #14b8a6;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .7rem; flex-shrink: 0;
}

/* ── Curriculum ── */
.cd-curriculum-head {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: .5rem; margin-bottom: 1rem;
}
.cd-curriculum-head h3 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.cd-curriculum-link {
  font-size: .83rem; font-weight: 600; color: var(--cb-primary);
  text-decoration: none; display: inline-flex; align-items: center; gap: .3rem;
}
.cd-curriculum-link:hover { text-decoration: underline; }

.cd-module {
  border: 1.5px solid var(--cb-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: .55rem;
  background: var(--cb-surface);
  transition: border-color .2s;
}
.cd-module:hover { border-color: var(--cb-primary); }
.cd-module.is-open { border-color: var(--cb-primary); }

.cd-module-header {
  width: 100%; text-align: left;
  display: flex; align-items: center; gap: .85rem;
  padding: .9rem 1.1rem;
  background: none; border: none; cursor: pointer;
  color: var(--cb-text);
}
.cd-module-num {
  font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  color: var(--cb-primary); min-width: 24px;
}
.cd-module-info { flex: 1; text-align: left; }
.cd-module-name { font-size: .95rem; font-weight: 700; display: block; }
.cd-module-sub  { font-size: .78rem; color: var(--cb-text-muted); margin-top: .1rem; display: block; }
.cd-module-dur {
  font-size: .72rem; font-weight: 700; padding: .22em .7em;
  border-radius: 50px; background: var(--cb-surface-2); color: var(--cb-text-muted);
  white-space: nowrap;
}
.cd-module-chevron {
  color: var(--cb-text-muted); font-size: .8rem;
  transition: transform .2s; flex-shrink: 0;
}
.cd-module.is-open .cd-module-chevron { transform: rotate(180deg); }

.cd-module-body {
  display: none; padding: 0 1.1rem 1rem 1.1rem;
}
.cd-module.is-open .cd-module-body { display: block; }
.cd-module-topics {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.cd-module-topics li {
  font-size: .8rem; padding: .22em .7em;
  border-radius: 6px;
  background: var(--cb-gradient-soft); color: var(--cb-primary);
  font-weight: 500;
}

.cd-show-more-btn {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  width: 100%;
  padding: .75rem;
  border: 1.5px dashed var(--cb-border);
  border-radius: 12px;
  background: transparent; color: var(--cb-primary);
  font-size: .88rem; font-weight: 600;
  cursor: pointer; margin-top: .55rem;
  transition: background .18s, border-color .18s;
}
.cd-show-more-btn:hover { background: var(--cb-gradient-soft); border-color: var(--cb-primary); }

/* ── Projects ── */
.cd-projects-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .85rem; margin-top: .5rem;
}
@media (max-width: 576px) { .cd-projects-grid { grid-template-columns: 1fr; } }

.cd-project-card {
  border: 1.5px solid var(--cb-border);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  background: var(--cb-surface);
  transition: border-color .2s, box-shadow .2s;
}
.cd-project-card:hover { border-color: var(--cb-primary); box-shadow: 0 6px 20px rgba(102,80,216,.1); }
.cd-project-card.capstone {
  border-color: var(--cb-primary);
  background: var(--cb-gradient-soft);
}
.cd-proj-label {
  font-size: .65rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cb-text-muted); margin-bottom: .35rem;
}
.cd-project-card.capstone .cd-proj-label { color: var(--cb-primary); }
.cd-proj-name { font-size: .98rem; font-weight: 700; color: var(--cb-text); margin-bottom: .3rem; }
.cd-proj-tags { font-size: .76rem; color: var(--cb-text-muted); }

/* ── Market Insights ── */
.cd-market-section {
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 2rem;
}
.cd-market-eyebrow {
  font-size: .65rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cb-primary); margin-bottom: .5rem;
}
.cd-market-heading {
  font-size: 1.25rem; font-weight: 800; color: var(--cb-text);
  margin-bottom: 1.25rem;
}
.cd-market-demand-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3em .9em;
  border-radius: 50px;
  background: rgba(22,163,74,.12); color: #16a34a;
  font-size: .78rem; font-weight: 700;
  margin-bottom: 1rem;
}

.cd-market-stats-row {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .85rem; margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .cd-market-stats-row { grid-template-columns: repeat(4, 1fr); }
}
.cd-mstat {
  background: var(--cb-surface-2);
  border-radius: 12px; padding: 1rem;
}
.cd-mstat-val { font-size: 1.4rem; font-weight: 800; color: var(--cb-text); line-height: 1.1; }
.cd-mstat-label { font-size: .72rem; color: var(--cb-text-muted); margin-top: .2rem; }
.cd-mstat-sub { font-size: .7rem; color: #16a34a; font-weight: 600; margin-top: .15rem; }

/* Bar chart visual */
.cd-chart-title { font-size: .82rem; font-weight: 700; color: var(--cb-text-muted); margin-bottom: .75rem; }
.cd-bar-chart-horiz { display: flex; flex-direction: column; gap: .5rem; }
.cd-bar-row { display: flex; align-items: center; gap: .75rem; }
.cd-bar-label { font-size: .78rem; color: var(--cb-text-muted); min-width: 80px; text-align: right; }
.cd-bar-label-left { font-size: .78rem; color: var(--cb-text-muted); min-width: 80px; text-align: left; }
.cd-bar-track { flex: 1; height: 8px; border-radius: 99px; background: var(--cb-border); overflow: hidden; }
.cd-bar-fill { height: 100%; border-radius: 99px; background: var(--cb-gradient); }
.cd-bar-value { font-size: .78rem; font-weight: 700; color: var(--cb-text); min-width: 48px; }

/* Vertical bar chart (hiring demand by year) */
.cd-vbar-chart {
  display: flex; align-items: flex-end; gap: .5rem;
  height: 120px; padding-bottom: .5rem;
  border-bottom: 2px solid var(--cb-border);
}
.cd-vbar-col { display: flex; flex-direction: column; align-items: center; flex: 1; gap: .25rem; }
.cd-vbar { width: 100%; border-radius: 6px 6px 0 0; background: var(--cb-gradient); min-width: 24px; }
.cd-vbar-yr { font-size: .68rem; color: var(--cb-text-muted); margin-top: .3rem; }
.cd-vbar-col.active .cd-vbar { background: #14b8a6; }

/* Hiring companies + cities */
.cd-hiring-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-top: 1.5rem;
}
@media (max-width: 576px) { .cd-hiring-grid { grid-template-columns: 1fr; } }
.cd-hiring-title { font-size: .82rem; font-weight: 700; color: var(--cb-text); margin-bottom: .75rem; }
.cd-hiring-company-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .3rem 0;
  border-bottom: 1px solid var(--cb-border);
}
.cd-hiring-company-row:last-child { border-bottom: none; }
.cd-hc-name { font-size: .85rem; font-weight: 600; color: var(--cb-text); }
.cd-hc-roles { font-size: .78rem; color: var(--cb-text-muted); }

/* ── Outcomes vs Market ── */
.cd-outcomes-section { margin-top: 2rem; }
.cd-outcomes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .cd-outcomes-grid { grid-template-columns: repeat(4, 1fr); } }
.cd-outcome-card {
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-border);
  border-radius: 14px;
  padding: 1.25rem 1rem;
}
.cd-outcome-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--cb-text-muted); margin-bottom: .5rem; }
.cd-outcome-val { font-size: 1.7rem; font-weight: 800; color: var(--cb-text); line-height: 1.1; }
.cd-outcome-sub { font-size: .72rem; color: #16a34a; font-weight: 600; margin-top: .2rem; }
.cd-outcome-compare { font-size: .72rem; color: var(--cb-text-muted); margin-top: .15rem; }
.cd-outcome-bar-wrap { margin-top: .65rem; }
.cd-outcome-bars { display: flex; gap: .3rem; align-items: flex-end; }
.cd-outcome-bar-us {
  flex: 1; border-radius: 4px 4px 0 0;
  background: var(--cb-gradient);
}
.cd-outcome-bar-mkt {
  flex: 1; border-radius: 4px 4px 0 0;
  background: var(--cb-border);
}
.cd-legend { display: flex; gap: .75rem; margin-top: .35rem; flex-wrap: wrap; }
.cd-legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 3px; }
.cd-legend-text { font-size: .65rem; color: var(--cb-text-muted); }

/* ── Alumni Cards ── */
.cd-alumni-section { margin-top: 2rem; }
.cd-alumni-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) { .cd-alumni-grid { grid-template-columns: repeat(3, 1fr); } }
.cd-alumni-card {
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-border);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: .85rem;
}
.cd-alumni-header { display: flex; align-items: center; gap: .75rem; }
.cd-alumni-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cb-gradient); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 800; flex-shrink: 0;
}
.cd-alumni-name { font-size: .92rem; font-weight: 700; color: var(--cb-text); }
.cd-alumni-meta { font-size: .75rem; color: var(--cb-text-muted); }
.cd-alumni-quote {
  font-size: .84rem; color: var(--cb-text-muted); line-height: 1.55;
  font-style: italic; flex: 1;
}
.cd-alumni-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .75rem; border-top: 1px solid var(--cb-border);
}
.cd-alumni-company { font-size: .75rem; font-weight: 600; color: var(--cb-text); }
.cd-alumni-ctc { font-size: .78rem; font-weight: 800; color: var(--cb-primary); }

/* ── Sidebar ── */
.cd-sidebar-sticky {
  position: sticky; top: 140px;
}
.cd-sidebar-card {
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--cb-shadow);
}
.cd-sidebar-fee-label {
  font-size: .65rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cb-text-muted); margin-bottom: .25rem;
}
.cd-sidebar-fee {
  font-size: 2rem; font-weight: 800; color: var(--cb-text); line-height: 1.1;
  margin-bottom: .2rem;
}
.cd-sidebar-emi { font-size: .78rem; color: var(--cb-text-muted); margin-bottom: 1.1rem; }
.cd-sidebar-emi span { color: var(--cb-primary); font-weight: 600; }

.cd-sidebar-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  width: 100%; padding: .85rem 1rem;
  border-radius: 12px;
  background: #14b8a6; color: #fff; border: 0;
  font-weight: 700; font-size: .95rem;
  text-decoration: none;
  transition: background .18s, transform .15s;
  margin-bottom: .55rem;
}
.cd-sidebar-btn-primary:hover { background: #0d9488; color: #fff; transform: translateY(-1px); }
.cd-sidebar-btn-secondary {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  width: 100%; padding: .72rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--cb-border);
  background: transparent; color: var(--cb-text);
  font-weight: 600; font-size: .9rem;
  text-decoration: none;
  transition: border-color .18s, color .18s;
  margin-bottom: 1.1rem;
}
.cd-sidebar-btn-secondary:hover { border-color: var(--cb-primary); color: var(--cb-primary); }

.cd-sidebar-meta {
  display: flex; flex-direction: column; gap: .6rem;
  padding: .9rem 0; border-top: 1px solid var(--cb-border);
  border-bottom: 1px solid var(--cb-border); margin-bottom: 1.1rem;
}
.cd-meta-row { display: flex; align-items: center; justify-content: space-between; }
.cd-meta-key { font-size: .78rem; color: var(--cb-text-muted); display: flex; align-items: center; gap: .35rem; }
.cd-meta-val { font-size: .83rem; font-weight: 700; color: var(--cb-text); }

.cd-seats-bar {
  height: 5px; border-radius: 99px;
  background: var(--cb-border); overflow: hidden; margin-top: .3rem;
}
.cd-seats-bar-fill {
  height: 100%; border-radius: 99px;
  background: #ef4444;
  width: 23%;
}

.cd-sidebar-mentors-title {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cb-text-muted); margin-bottom: .75rem;
}
.cd-mentor-item {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .65rem;
}
.cd-mentor-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cb-gradient); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; flex-shrink: 0;
}
.cd-mentor-name { font-size: .88rem; font-weight: 700; color: var(--cb-text); }
.cd-mentor-meta { font-size: .72rem; color: var(--cb-text-muted); }

.cd-sidebar-advisor {
  background: var(--cb-surface-2);
  border-radius: 12px;
  padding: .9rem; margin-top: .75rem; text-align: center;
}
.cd-sidebar-advisor p {
  font-size: .8rem; color: var(--cb-text-muted); margin-bottom: .6rem; line-height: 1.4;
}
.cd-sidebar-advisor a {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem 1.1rem;
  border-radius: 10px; border: 1.5px solid var(--cb-border);
  background: var(--cb-surface); color: var(--cb-text);
  font-size: .82rem; font-weight: 600; text-decoration: none;
  transition: border-color .18s, color .18s;
}
.cd-sidebar-advisor a:hover { border-color: var(--cb-primary); color: var(--cb-primary); }

/* ── Bottom CTA ── */
.cd-bottom-cta {
  background: #0a1f5c;
  padding: 2.5rem 0;
}
.cd-bottom-cta-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem;
}
.cd-bottom-cta h2 { color: #fff; font-size: 1.4rem; font-weight: 800; margin: 0; }
.cd-bottom-cta p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }
.cd-bottom-cta-btns {
  display: flex; flex-wrap: wrap; gap: .65rem;
  justify-content: center; margin-top: .5rem;
}

/* ── FAQs (reuse cd-module accordion style) ── */
.cd-faq { margin-bottom: .5rem; }
.cd-faq-header {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.1rem;
  background: var(--cb-surface); border: 1.5px solid var(--cb-border);
  border-radius: 12px;
  color: var(--cb-text); font-size: .93rem; font-weight: 600;
  cursor: pointer; transition: border-color .2s;
}
.cd-faq.is-open .cd-faq-header { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-color: var(--cb-primary); }
.cd-faq-header .ci { transition: transform .2s; font-size: .8rem; color: var(--cb-text-muted); flex-shrink: 0; }
.cd-faq.is-open .cd-faq-header .ci { transform: rotate(180deg); }
.cd-faq-body {
  display: none;
  background: var(--cb-surface); border: 1.5px solid var(--cb-primary);
  border-top: none; border-radius: 0 0 12px 12px;
  padding: .85rem 1.1rem;
  font-size: .88rem; color: var(--cb-text-muted); line-height: 1.6;
}
.cd-faq.is-open .cd-faq-body { display: block; }

/* ── Concept Mapping Cards ─────────────────────────────── */
.cd-concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .875rem;
  margin-top: 1.25rem;
}
.cd-concept-card {
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-border);
  border-radius: 14px;
  padding: 1.125rem 1.25rem;
  transition: border-color .18s, box-shadow .18s;
}
.cd-concept-card:hover { border-color: rgba(20,184,166,.5); box-shadow: 0 4px 18px rgba(20,184,166,.1); }
.cd-concept-header { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .5rem; }
.cd-concept-num {
  font-size: .65rem; font-weight: 800; color: var(--cb-primary);
  background: rgba(5,29,100,.08);
  min-width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cd-concept-name { font-weight: 700; font-size: .88rem; color: var(--cb-text); line-height: 1.3; margin-bottom: .3rem; }
.cd-concept-proj { display: inline-block; background: rgba(20,184,166,.12); color: #0d9488; font-size: .68rem; font-weight: 700; padding: .12rem .55rem; border-radius: .25rem; letter-spacing: .02em; }
.cd-concept-why { font-size: .82rem; color: var(--cb-text-muted); margin: 0; line-height: 1.55; }
@media (max-width: 640px) { .cd-concept-grid { grid-template-columns: 1fr; } }

/* ── Weekly Tech Battle sidebar widget ─────────────────── */
.cd-wtb-sidebar-card {
  background: linear-gradient(135deg, #051D64, #0ea5e9);
  border-radius: 14px; padding: 1.25rem; color: #fff; margin-top: 1rem;
}
.cd-wtb-sb-eyebrow { font-size: .68rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; opacity: .8; margin-bottom: .4rem; }
.cd-wtb-sb-date { font-weight: 700; font-size: .97rem; margin-bottom: .12rem; }
.cd-wtb-sb-time { font-size: .8rem; opacity: .75; margin-bottom: .9rem; }
.cd-wtb-sb-btn {
  display: inline-block; background: #fff; color: #051D64;
  font-weight: 700; font-size: .8rem;
  padding: .4rem 1.1rem; border-radius: .375rem; text-decoration: none;
}
.cd-wtb-sb-btn:hover { background: #e8eefa; color: #051D64; }

/* Dark mode adjustments */
[data-bs-theme="dark"] .cd-hero { background: #07132e; }
[data-bs-theme="dark"] .cd-bottom-cta { background: #07132e; }
[data-bs-theme="dark"] .cd-badge-outline { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.75); }
[data-bs-theme="dark"] .cd-module:hover,
[data-bs-theme="dark"] .cd-module.is-open { border-color: var(--cb-primary); }
[data-bs-theme="dark"] .cd-project-card.capstone { background: rgba(102,80,216,.12); }

/* =========================================================
   Alumni Success Stories Page  (alumni.html)
   ========================================================= */

/* ── Hero ── */
.as-hero {
  background: #0a1f5c;
  color: #fff;
  padding: 3rem 0 2.5rem;
  position: relative; overflow: hidden;
}
.as-hero::before {
  content: ""; position: absolute; top: -120px; right: -80px;
  width: 520px; height: 420px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(20,184,166,.28), transparent 70%);
  pointer-events: none;
}
.as-hero::after {
  content: ""; position: absolute; bottom: -160px; left: -100px;
  width: 480px; height: 380px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(102,80,216,.25), transparent 70%);
  pointer-events: none;
}
.as-hero > .container { position: relative; z-index: 1; }
.as-eyebrow {
  display: inline-block;
  font-size: .7rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: #14b8a6; margin-bottom: .75rem;
}
.as-hero h1 {
  font-size: clamp(1.8rem, 3vw + .8rem, 2.8rem);
  font-weight: 800; line-height: 1.1; color: #fff;
  margin-bottom: .6rem;
}
.as-hero-sub {
  font-size: .95rem; color: rgba(255,255,255,.68);
  max-width: 580px; line-height: 1.6; margin-bottom: 2rem;
}
.as-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 576px) { .as-stats-row { grid-template-columns: repeat(4, 1fr); } }
.as-stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}
.as-stat-val {
  font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1;
  margin-bottom: .25rem;
}
.as-stat-lbl {
  font-size: .72rem; color: rgba(255,255,255,.55); font-weight: 500;
}

/* ── Filter section ── */
.as-filter-section {
  background: var(--cb-surface);
  border-bottom: 1px solid var(--cb-border);
  padding: 1.25rem 0;
  position: sticky; top: 80px; z-index: 800;
}
.as-filter-bar {
  display: flex; flex-wrap: wrap; gap: .6rem; align-items: center;
  margin-bottom: .75rem;
}
.as-search-wrap {
  position: relative; flex: 1; min-width: 180px;
}
.as-search-wrap .bi {
  position: absolute; left: .85rem; top: 50%; transform: translateY(-50%);
  color: var(--cb-text-muted); font-size: .9rem; pointer-events: none;
}
.as-search-input {
  width: 100%;
  padding: .6rem .9rem .6rem 2.4rem;
  border-radius: 10px;
  border: 1.5px solid var(--cb-border);
  background: var(--cb-surface);
  color: var(--cb-text);
  font-size: .88rem;
  transition: border-color .15s;
}
.as-search-input:focus {
  outline: none;
  border-color: var(--cb-primary);
  box-shadow: 0 0 0 3px rgba(102,80,216,.15);
}
.as-filter-select {
  padding: .58rem .9rem;
  border-radius: 10px;
  border: 1.5px solid var(--cb-border);
  background: var(--cb-surface);
  color: var(--cb-text);
  font-size: .86rem;
  min-width: 120px;
  transition: border-color .15s;
  cursor: pointer;
}
.as-filter-select:focus { outline: none; border-color: var(--cb-primary); }
.as-filter-apply {
  padding: .6rem 1.25rem;
  border-radius: 10px;
  background: #0a1f5c; color: #fff; border: 0;
  font-size: .88rem; font-weight: 700; cursor: pointer;
  transition: background .18s;
  white-space: nowrap;
}
.as-filter-apply:hover { background: #0d2775; }

/* Quick pills */
.as-quick-pills {
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
}
.as-quick-lbl {
  font-size: .72rem; font-weight: 700; color: var(--cb-text-muted);
  margin-right: .2rem; letter-spacing: .04em; white-space: nowrap;
}
.as-quick-pill {
  display: inline-flex; align-items: center;
  padding: .28rem .85rem;
  border-radius: 999px;
  border: 1.5px solid var(--cb-border);
  background: transparent;
  color: var(--cb-text-muted);
  font-size: .78rem; font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.as-quick-pill:hover { border-color: var(--cb-primary); color: var(--cb-primary); }
.as-quick-pill.active {
  background: #14b8a6; border-color: #14b8a6; color: #fff;
}

/* ── Featured card ── */
.as-featured-card {
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-border);
  border-left: 4px solid #14b8a6;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .as-featured-card { grid-template-columns: 1fr auto; }
}
.as-featured-badges {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  margin-bottom: .85rem;
}
.as-badge-featured {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .25em .75em;
  border-radius: 999px;
  background: #14b8a6; color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.as-badge-year {
  font-size: .75rem; font-weight: 600; color: var(--cb-text-muted);
}
.as-featured-quote {
  font-size: clamp(.95rem, 1.4vw + .5rem, 1.15rem);
  font-style: italic; font-weight: 500;
  color: var(--cb-text); line-height: 1.55;
  margin-bottom: 1.1rem;
}
.as-featured-person {
  display: flex; align-items: center; gap: .75rem;
}
.as-featured-name { font-size: .92rem; font-weight: 700; color: var(--cb-text); }
.as-featured-meta { font-size: .75rem; color: var(--cb-text-muted); }

.as-featured-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .6rem; min-width: 200px;
}
@media (min-width: 768px) { .as-featured-stats-grid { min-width: 220px; } }
.as-feat-stat {
  background: var(--cb-surface-2);
  border-radius: 10px; padding: .75rem .85rem;
}
.as-feat-stat-lbl {
  font-size: .6rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cb-text-muted); margin-bottom: .2rem;
}
.as-feat-stat-val { font-size: .98rem; font-weight: 800; color: var(--cb-text); }
.as-feat-stat-val.teal { color: #14b8a6; }

/* ── Grid controls ── */
.as-grid-controls {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
  margin-bottom: 1.25rem;
}
.as-showing {
  font-size: .88rem; color: var(--cb-text-muted);
}
.as-showing strong { color: var(--cb-text); font-weight: 700; }
.as-showing-sub { font-size: .75rem; color: var(--cb-text-muted); margin-top: .1rem; }
.as-controls-right { display: flex; align-items: center; gap: .5rem; }
.as-sort-select {
  padding: .48rem .85rem;
  border-radius: 10px;
  border: 1.5px solid var(--cb-border);
  background: var(--cb-surface);
  color: var(--cb-text);
  font-size: .84rem;
  cursor: pointer;
}
.as-sort-select:focus { outline: none; border-color: var(--cb-primary); }
.as-view-toggle {
  display: flex; border: 1.5px solid var(--cb-border);
  border-radius: 10px; overflow: hidden;
}
.as-view-btn {
  width: 36px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: none; background: transparent; color: var(--cb-text-muted);
  cursor: pointer; font-size: .85rem;
  transition: background .15s, color .15s;
}
.as-view-btn.active {
  background: #0a1f5c; color: #fff;
}
.as-view-btn:not(.active):hover { background: var(--cb-surface-2); }

/* ── Story card ── */
.as-story-card {
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 100%;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.as-story-card:hover {
  box-shadow: var(--cb-shadow);
  border-color: var(--cb-primary);
  transform: translateY(-3px);
}
.as-track-strip { height: 5px; }
.as-track-fs  { background: #14b8a6; }
.as-track-da  { background: #6650d8; }
.as-track-qa  { background: #ec4899; }

.as-card-header {
  padding: .9rem 1rem .65rem;
  display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem;
}
.as-card-person { display: flex; align-items: center; gap: .65rem; }
.as-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.as-av-teal    { background: #14b8a6; }
.as-av-purple  { background: #6650d8; }
.as-av-pink    { background: #ec4899; }
.as-av-indigo  { background: #6366f1; }
.as-av-green   { background: #16a34a; }
.as-av-amber   { background: #d97706; }

.as-card-name { font-size: .9rem; font-weight: 700; color: var(--cb-text); }
.as-card-batch {
  font-size: .7rem; color: var(--cb-text-muted);
  display: flex; align-items: center; gap: .3rem; margin-top: .1rem;
}
.as-verified {
  display: inline-flex; align-items: center; gap: .2rem;
  font-size: .68rem; font-weight: 700; color: #16a34a;
  white-space: nowrap; flex-shrink: 0;
}
.as-verified::before {
  content: "✓"; font-weight: 800;
}

.as-card-quote {
  padding: 0 1rem .75rem;
  font-size: .83rem; color: var(--cb-text-muted);
  line-height: 1.6; flex: 1;
  /* clamp to 4 lines */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.as-card-footer {
  padding: .75rem 1rem;
  border-top: 1px solid var(--cb-border);
  display: flex; align-items: flex-end; justify-content: space-between; gap: .5rem;
  margin-top: auto;
}
.as-card-placed-lbl {
  font-size: .6rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cb-text-muted); margin-bottom: .15rem;
}
.as-card-placed-val { font-size: .92rem; font-weight: 800; color: var(--cb-text); }
.as-card-ctc-lbl {
  font-size: .6rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cb-text-muted); margin-bottom: .15rem;
  text-align: right;
}
.as-card-ctc-val { font-size: .92rem; font-weight: 800; color: #14b8a6; text-align: right; }

.as-card-tags {
  padding: 0 1rem .75rem;
  display: flex; flex-wrap: wrap; gap: .35rem;
}
.as-tag {
  display: inline-flex; align-items: center;
  padding: .2em .65em;
  border-radius: 6px;
  font-size: .68rem; font-weight: 600;
  background: var(--cb-surface-2);
  color: var(--cb-text-muted);
}
.as-tag.career { background: rgba(20,184,166,.12); color: #0d9488; }
.as-tag.product { background: rgba(102,80,216,.1); color: var(--cb-primary); }

/* ── Where alumni work ── */
.as-companies-section {
  background: var(--cb-surface);
  border: 1.5px solid var(--cb-border);
  border-radius: 18px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.as-companies-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem;
}
.as-companies-title { font-size: 1.05rem; font-weight: 800; color: var(--cb-text); margin: 0; }
.as-companies-sub { font-size: .78rem; color: var(--cb-text-muted); margin-top: .2rem; }
.as-companies-meta { font-size: .78rem; color: var(--cb-text-muted); text-align: right; }
.as-company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
@media (min-width: 576px) { .as-company-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .as-company-grid { grid-template-columns: repeat(6, 1fr); } }
.as-company-tile {
  background: var(--cb-surface-2);
  border-radius: 12px;
  padding: .85rem .75rem;
  text-align: center;
  border: 1.5px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.as-company-tile:hover { border-color: var(--cb-border); box-shadow: var(--cb-shadow); }
.as-company-tile.more {
  background: transparent;
  border: 1.5px dashed var(--cb-border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.as-company-name { font-size: .85rem; font-weight: 700; color: var(--cb-text); }
.as-company-count { font-size: .7rem; color: var(--cb-text-muted); margin-top: .2rem; }
.as-company-tile.more .as-company-name { color: var(--cb-primary); }

/* ── Pagination ── */
.as-pagination-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem; margin-top: 2rem;
}
.as-pag-info { font-size: .82rem; color: var(--cb-text-muted); }
.as-pag-btns { display: flex; align-items: center; gap: .3rem; }
.as-pag-btn {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1.5px solid var(--cb-border);
  background: var(--cb-surface);
  color: var(--cb-text);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .84rem; font-weight: 600;
  cursor: pointer; transition: background .15s, border-color .15s, color .15s;
  text-decoration: none;
}
.as-pag-btn:hover { border-color: var(--cb-primary); color: var(--cb-primary); }
.as-pag-btn.active { background: #0a1f5c; border-color: #0a1f5c; color: #fff; }
.as-pag-btn.arrow { font-size: .8rem; }

/* ── Bottom CTA ── */
.as-bottom-cta {
  background: #0a1f5c;
  padding: 2.75rem 0;
  position: relative; overflow: hidden;
}
.as-bottom-cta::before {
  content: ""; position: absolute; top: -80px; right: -60px;
  width: 420px; height: 350px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(20,184,166,.22), transparent 70%);
  pointer-events: none;
}
.as-bottom-cta > .container { position: relative; z-index: 1; }
.as-cta-inner { max-width: 600px; }
.as-cta-inner h2 {
  font-size: clamp(1.3rem, 2vw + .6rem, 1.8rem);
  font-weight: 800; color: #fff; margin-bottom: .5rem;
}
.as-cta-inner p { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 1.25rem; }
.as-cta-btns { display: flex; flex-wrap: wrap; gap: .65rem; }
.as-cta-btn-primary {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .75rem 1.5rem; border-radius: 12px;
  background: #14b8a6; color: #fff; border: 0;
  font-weight: 700; font-size: .92rem; text-decoration: none;
  transition: background .18s, transform .15s;
}
.as-cta-btn-primary:hover { background: #0d9488; color: #fff; transform: translateY(-1px); }
.as-cta-btn-outline {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .72rem 1.4rem; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.35);
  background: transparent; color: #fff;
  font-weight: 600; font-size: .9rem; text-decoration: none;
  transition: background .18s, border-color .18s;
}
.as-cta-btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* Dark mode */
[data-bs-theme="dark"] .as-hero { background: #07132e; }
[data-bs-theme="dark"] .as-filter-section { background: var(--cb-surface); }
[data-bs-theme="dark"] .as-search-input,
[data-bs-theme="dark"] .as-filter-select,
[data-bs-theme="dark"] .as-sort-select { background: var(--cb-surface-2); border-color: var(--cb-border); color: var(--cb-text); }
[data-bs-theme="dark"] .as-stat { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
[data-bs-theme="dark"] .as-feat-stat { background: var(--cb-surface-2); }
[data-bs-theme="dark"] .as-companies-section { background: var(--cb-surface); }
[data-bs-theme="dark"] .as-company-tile { background: var(--cb-surface-2); }
[data-bs-theme="dark"] .as-bottom-cta { background: #07132e; }
