/* ============================================================
   CAREERCLINIC — GLOBAL STYLESHEET
   central file — har page yahi link kare
   ============================================================ */

/* ── GOOGLE FONTS (import here ya page ke head mein rakh sakte ho) ──
   <link href="https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&family=Sora:wght@300;400;500;600&display=swap" rel="stylesheet">
   <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@3.5.0/tabler-icons.min.css">
*/


/* ============================================================
   1. DESIGN TOKENS — CSS VARIABLES
   ============================================================ */
:root {
  /* Brand Colours */
  --indigo:         #4f46e5;
  --indigo-dark:    #3730a3;
  --indigo-light:   #818cf8;
  --purple:         #7c3aed;
  --violet:         #ede9fe;
  --navy:           #1e1b4b;

  /* Neutral / Background */
  --white:          #ffffff;
  --bg:             #f8f7ff;
  --bg2:            #f1f0fe;

  /* Text */
  --text:           #1e1b4b;
  --text-muted:     #6b7280;

  /* Border */
  --border:         #e5e3f8;

  /* Status Colours */
  --green:          #22c55e;
  --amber:          #f59e0b;
  --red:            #ef4444;

  /* Shadows */
  --card-shadow:       0 2px 20px rgba(79,70,229,0.08);
  --card-shadow-hover: 0 12px 40px rgba(79,70,229,0.18);

  /* Gradients (reusable) */
  --grad-primary:   linear-gradient(135deg, #4f46e5, #7c3aed);
  --grad-navy:      linear-gradient(90deg, #1e1b4b 0%, #3730a3 100%);
  --grad-cta:       linear-gradient(135deg, #1e1b4b 0%, #3730a3 50%, #4f46e5 100%);
  --grad-hero-overlay: linear-gradient(135deg, rgba(30,27,75,0.45) 0%, rgba(79,70,229,0.25) 60%, rgba(124,58,237,0.25) 100%);
  --grad-school-cta: linear-gradient(135deg, #ede9fe, #dbeafe);
}


/* ============================================================
   2. BASE RESET & TYPOGRAPHY
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { 
     overflow-x: hidden;  
} 
body {
  font-family: 'Sora', sans-serif;
  background: var(--white);
  color: var(--text);
}

.page-wrapper {
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5 {
  font-family: 'Clash Display', sans-serif;
}

a { text-decoration: none; }

img { display: block; max-width: 100%; }


/* ============================================================
   3. ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-30px); }
}

/* Scroll Reveal — JS adds .visible class */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   4. LAYOUT — SECTIONS & CONTAINERS
   ============================================================ */

/* Main content container — max-width centred */
.section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Full-width section wrapper */
.section-full { padding: 80px 5%; }

/* Background variants */
.bg-alt   { background: var(--bg); }
.bg-navy  { background: var(--navy); }
.bg-white { background: var(--white); }

/* Section Label (pill above heading) */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--indigo);
  background: var(--violet);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Section Headings */
.section-h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.15;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 540px;
}


/* ============================================================
   5. BUTTONS
   ============================================================ */

/* Primary — indigo gradient */
.btn-primary {
  font-size: 13px;
  color: #fff;
  background: var(--grad-primary);
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

/* Ghost — outline style */
.btn-ghost {
  font-size: 13px;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border);
  padding: 7px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-ghost:hover { border-color: var(--indigo); color: var(--indigo); }

/* Hero Primary — large, with shadow */
.btn-hero-primary {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(79,70,229,0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79,70,229,0.5); }

/* Hero Outline — glass style for dark backgrounds */
.btn-hero-outline {
  background: rgba(255,255,255,0.1);
  color: #e0e7ff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

/* CTA White — for dark section CTAs */
.btn-cta-white {
  background: #fff;
  color: #1e1b4b;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.25); }

/* CTA Outline — for dark section CTAs */
.btn-cta-outline {
  background: none;
  color: #a5b4fc;
  border: 1.5px solid rgba(165,180,252,0.4);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* School CTA Button 1 */
.btn-school-1 {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-school-1:hover { opacity: 0.9; transform: translateY(-1px); }

/* School CTA Button 2 */
.btn-school-2 {
  background: none;
  color: #5b21b6;
  border: 1.5px solid #c4b5fd;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-school-2:hover { background: rgba(196,181,253,0.15); transform: translateY(-1px); }

/* Book Button — used in counsellor cards etc */
.btn-book {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--grad-primary);
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-book:hover { opacity: 0.85; transform: scale(1.05); }

/* Announce Bar Button */
.announce-btn {
  background: var(--indigo);
  color: #fff;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0; 
}
.announce-btn:hover { background: #6366f1; }


/* ============================================================
   6. ANNOUNCE BAR
   ============================================================ */
.announce-bar {
  background: var(--grad-navy);
  color: #c7d2fe;
  font-size: 12px;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  overflow: hidden;
}
.announce-bar span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.announce-bar i { color: #a5b4fc; flex-shrink: 0; }
.announce-btn   { flex-shrink: 0; }



/* ============================================================
   7. NAVBAR
   ============================================================ */
/* Site header wrapper — sticky container for announce bar + navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  box-shadow: 0 1px 12px rgba(79,70,229,0.06);
}

.nav-logo {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;           /* 18 → 20 */
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  padding: 8px 0;
  gap: 9px;
  text-decoration: none;
}

.nav-logo-dot {
  width: 32px;               /* 30 → 32 */
  height: 32px;
  background: var(--grad-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-dot i { font-size: 17px; color: #fff; }

.nav-links { display: flex; align-items: center; gap: 24px; }

.nav-link {
  font-size: 14px;           /* 13 → 14 */
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover  { color: var(--indigo); }
.nav-link.active {
  color: var(--indigo);
  font-weight: 700;
  position: relative;
}
/* Active underline indicator */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: 24px;           /* 22 → 24 */
}

/* Mobile Menu */
/* ── MOBILE MENU — STICKY FIX ─────────────────────────────── */
.mobile-menu {
  display: none;
  width: 100%;
  background: #fff;        /* ← ye add karo */
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;   /* ← ye add karo */
}
.mobile-menu a {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}


/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero-wrapper {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  max-width: 100%;        /* ← ye add karo */
  width: 100%;            /* ← ye add karo */
}
/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.18) saturate(1.5);
  z-index: 0;
}

/* Gradient overlay on hero */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: var(--grad-hero-overlay);
  z-index: 1;
}

/* Animated floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; background: #4f46e5; top: -100px; right: -80px; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: #7c3aed; bottom: -60px; left: 20%; animation-delay: 3s; }
.orb-3 { width: 200px; height: 200px; background: #06b6d4; top: 30%; left: -60px; animation-delay: 6s; }

/* Hero content grid */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Badge pill on hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #c7d2fe;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
  animation: fadeInDown 0.8s ease both;
}
.hero-badge i { color: #a5b4fc; }

/* Hero Heading */
.hero-h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
/* Gradient text span inside hero heading */
.hero-h1 span {
  background: linear-gradient(90deg, #a5b4fc, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 15px;
  color: rgba(199,210,254,0.85);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 440px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s ease 0.3s both;
}

/* Hero stats row */
.hero-stats {
  display: flex;
  gap: 32px;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.hero-stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
.hero-stat-lbl { font-size: 12px; color: #a5b4fc; margin-top: 2px; }

/* Hero right-side card wrapper */
.hero-card-wrap { animation: fadeInRight 0.9s ease 0.3s both; }


/* ============================================================
   9. DASHBOARD MOCK (Hero right-side card)
   ============================================================ */
.dashboard-mock {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dash-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.dash-title  { font-size: 13px; font-weight: 600; color: #fff; }
.dash-pill   { font-size: 10px; background: rgba(165,180,252,0.25); color: #c4b5fd; padding: 3px 10px; border-radius: 20px; font-weight: 600; }

.dash-charts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dash-chart-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 12px; }

.chart-lbl { font-size: 10px; color: rgba(199,210,254,0.7); margin-bottom: 10px; font-weight: 500; }

/* Bar chart rows — used in both hero dashboard & report preview */
.bar-row   { display: flex; align-items: center; gap: 7px; margin-bottom: 6px; }
.bar-label { font-size: 10px; color: rgba(199,210,254,0.7); width: 70px; flex-shrink: 0; }
.bar-track { flex: 1; height: 5px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.bar-fill  { height: 100%; border-radius: 10px; transition: width 1.5s ease; }
.bar-pct   { font-size: 10px; color: rgba(199,210,254,0.7); width: 28px; text-align: right; }

.dash-score-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.score-card  { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 10px; text-align: center; }
.score-num   { font-family: 'Clash Display', sans-serif; font-size: 18px; font-weight: 700; }
.score-lbl   { font-size: 9px; color: rgba(199,210,254,0.6); margin-top: 3px; }

.dash-report-strip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 12px; display: flex; align-items: center; gap: 10px; }
.report-icon  { width: 32px; height: 32px; background: rgba(165,180,252,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.report-icon i { font-size: 16px; color: #a5b4fc; }
.report-name  { font-size: 12px; font-weight: 600; color: #fff; }
.report-sub   { font-size: 10px; color: rgba(199,210,254,0.6); margin-top: 2px; }
.report-badge { font-size: 10px; background: rgba(34,197,94,0.2); color: #86efac; padding: 3px 10px; border-radius: 20px; font-weight: 600; }


/* ============================================================
   10. TRUST BAR
   ============================================================ */
.trust-section {
  padding: 28px 5%;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-label { font-size: 11px; color: var(--text-muted); text-align: center; margin-bottom: 18px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 18px;
  transition: all 0.2s;
}
.trust-logo-item:hover { border-color: var(--indigo-light); background: var(--violet); transform: translateY(-2px); }
.trust-logo-item i { font-size: 18px; color: var(--indigo); }
.trust-logo-text { font-size: 13px; font-weight: 600; color: var(--text); }


/* ============================================================
   11. WHO WE ARE / TWO-COLUMN INFO GRID
   ============================================================ */
.who-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.who-cards { display: flex; flex-direction: column; gap: 14px; }

.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}
.who-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }
.who-card-icon  { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.who-card-icon i { font-size: 20px; }
.who-card-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.who-card-text  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }


/* ============================================================
   12. PROBLEM / SOLUTION CARDS
   ============================================================ */
.prob-sol { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.prob-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--card-shadow);
}
.prob-col-title { font-size: 13px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.prob-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.prob-dot  { width: 7px; height: 7px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.prob-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }


/* ============================================================
   13. FEATURES GRID
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }

.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s;
}
.feat-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.feat-card:hover::before { opacity: 1; }

.feat-icon  { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feat-icon i { font-size: 22px; }
.feat-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.feat-text  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }


/* ============================================================
   14. STEPS / PROCESS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
}
.steps-connector {
  position: absolute;
  top: 22px;
  left: 10%; right: 10%;
  height: 2px;
  background: var(--grad-primary);
  opacity: 0.2;
  z-index: 0;
}
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-family: 'Clash Display', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(79,70,229,0.35);
  transition: transform 0.3s;
}
.step-item:hover .step-num { transform: scale(1.15); }
.step-title { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.step-text  { font-size: 11px; color: var(--text-muted); line-height: 1.55; }


/* ============================================================
   15. CAREERS GRID
   ============================================================ */
.careers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; }

.career-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: all 0.3s;
}
.career-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hover); border-color: var(--indigo-light); }
.career-icon   { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.career-icon i { font-size: 22px; }
.career-name   { font-size: 13px; font-weight: 700; color: var(--text); }
.career-cnt    { font-size: 11px; color: var(--text-muted); }


/* ============================================================
   16. COUNSELLORS CARDS
   ============================================================ */
.counsellors-section { padding: 80px 5%; }
.counsellors-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }

.counsellor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.35s;
  cursor: pointer;
}
.counsellor-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(79,70,229,0.15); }
.counsellor-img  { width: 100%; height: 200px; object-fit: cover; display: block; }
.counsellor-body { padding: 18px; }
.counsellor-img-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-primary);
  color: #fff;
  font-family: 'Clash Display', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.counsellor-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--indigo);
  background: var(--violet);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.counsellor-name  { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.counsellor-role  { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.counsellor-stats { display: flex; gap: 12px; margin-bottom: 14px; }
.c-stat     { display: flex; flex-direction: column; }
.c-stat-num { font-size: 14px; font-weight: 700; color: var(--indigo); }
.c-stat-lbl { font-size: 10px; color: var(--text-muted); }

.counsellor-expertise { display: flex; flex-wrap: wrap; gap: 6px; }
.expertise-tag {
  font-size: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 500;
}
.counsellor-footer { padding: 12px 18px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.counsellor-rating { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: var(--text); }
.counsellor-rating i { color: var(--amber); }


/* ============================================================
   17. SHOWCASE / PLATFORM PREVIEW
   ============================================================ */
.showcase {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  margin-top: 32px;
  box-shadow: var(--card-shadow);
}
.showcase-top { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.showcase-title { font-size: 14px; font-weight: 700; color: var(--text); }
.showcase-tabs  { display: flex; gap: 8px; flex-wrap: wrap; }
.s-tab {
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.s-tab.active { background: var(--violet); color: var(--indigo); border-color: var(--indigo-light); }
.s-tab:hover  { border-color: var(--indigo-light); }

.showcase-body { display: grid; grid-template-columns: 1fr 1.3fr; gap: 20px; }

/* Report preview block inside showcase */
.report-preview { background: var(--bg); border-radius: 12px; padding: 18px; }
.rp-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.rp-avatar { width: 38px; height: 38px; background: var(--violet); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--indigo); }
.rp-name   { font-size: 13px; font-weight: 700; color: var(--text); }
.rp-sub    { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

.rp-score-row  { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rp-score-ring { width: 56px; height: 56px; border-radius: 50%; border: 3px solid var(--indigo); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rp-score-num  { font-family: 'Clash Display', sans-serif; font-size: 16px; font-weight: 700; color: var(--indigo); }
.rp-score-label { font-size: 12px; font-weight: 700; color: var(--text); }
.rp-score-sub   { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* Light-mode bar overrides for report preview */
.rp-bars .bar-label { color: var(--text-muted); }
.rp-bars .bar-pct   { color: var(--text-muted); }
.rp-bars .bar-track { background: var(--border); }

/* Analytics column */
.showcase-analytics { display: flex; flex-direction: column; gap: 12px; }
.anal-card  { background: var(--bg); border-radius: 12px; padding: 14px; }
.anal-title { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.anal-bars  { display: flex; flex-direction: column; gap: 8px; }
.anal-bar-row { display: flex; align-items: center; gap: 8px; }
.anal-lbl   { font-size: 11px; color: var(--text-muted); width: 90px; flex-shrink: 0; }
.anal-track { flex: 1; height: 6px; background: var(--border); border-radius: 10px; overflow: hidden; }
.anal-fill  { height: 100%; border-radius: 10px; }
.anal-pct   { font-size: 11px; color: var(--text-muted); width: 32px; text-align: right; font-weight: 600; }


/* ============================================================
   18. BENEFITS GRID
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.benefit-icon   { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.benefit-icon i { font-size: 20px; }
.benefit-title  { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.benefit-text   { font-size: 12px; color: var(--text-muted); line-height: 1.65; }


/* ============================================================
   19. TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.testi-stars  { color: var(--amber); font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text   { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.testi-name   { font-size: 12px; font-weight: 700; color: var(--text); }
.testi-role   { font-size: 11px; color: var(--text-muted); margin-top: 2px; }


/* ============================================================
   20. STATS GRID
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 16px; }

.stat-big {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}
.stat-big:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.stat-big-num   { font-family: 'Clash Display', sans-serif; font-size: 38px; font-weight: 700; color: var(--indigo); margin-bottom: 6px; }
.stat-big-lbl   { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ── GALLERY ── */
/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 16px; }
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg);
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.gallery-item iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Extra items — default hidden, JS unveils on "Show More" */
.gallery-item-extra { display: none; }
.gallery-item-extra.visible { display: block; }

.gallery-more-wrap { display: flex; justify-content: center; margin-top: 28px; }
.gallery-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.gallery-more-btn:hover { background: var(--bg); border-color: var(--indigo); }
.gallery-more-btn i { font-size: 16px; }



/* ============================================================
   21. SCHOOL CTA BANNER
   ============================================================ */
.school-cta {
  background: var(--grad-school-cta);
  border: 1px solid #c4b5fd;
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.school-cta-text h4 { font-size: 16px; font-weight: 700; color: #3b0764; margin-bottom: 6px; }
.school-cta-text p  { font-size: 13px; color: #6b21a8; line-height: 1.65; max-width: 500px; }
.school-cta-btns    { display: flex; gap: 10px; flex-shrink: 0; }


/* ============================================================
   22. FAQ ACCORDION
   ============================================================ */
.faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}
.faq-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
}
.faq-q i { font-size: 16px; color: var(--text-muted); transition: transform 0.3s; }
.faq-q.open i { transform: rotate(180deg); color: var(--indigo); }
.faq-a { font-size: 13px; color: var(--text-muted); line-height: 1.75; padding: 0 20px 16px; display: none; }
.faq-a.open { display: block; }


/* ============================================================
   23. FINAL CTA SECTION
   ============================================================ */
.cta-final {
  background: var(--grad-cta);
  border-radius: 24px;
  padding: 70px 60px;
  text-align: center;
  margin: 0 5% 80px;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -100px; right: -60px;
}
.cta-final h2 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 14px; position: relative; }
.cta-final p  { font-size: 15px; color: #a5b4fc; margin-bottom: 36px; line-height: 1.75; position: relative; }
.cta-btns     { display: flex; gap: 14px; justify-content: center; position: relative; }


/* ============================================================
   24. FOOTER
   ============================================================ */
.footer { background: var(--navy); padding: 56px 5% 28px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }

.footer-brand-name { font-family: 'Clash Display', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-brand-dot  { width: 22px; height: 22px; background: var(--grad-primary); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.footer-brand-dot i { font-size: 13px; color: #fff; }

.footer-tagline  { font-size: 13px; color: rgba(165,180,252,0.7); line-height: 1.75; margin-bottom: 20px; }
.footer-socials  { display: flex; gap: 10px; }
.social-icon     { width: 34px; height: 34px; border: 1px solid rgba(165,180,252,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s;   text-decoration: none;        /* a tag ki underline hatao */
  color: rgba(165,180,252,0.7); }
.social-icon:hover { background: rgba(165,180,252,0.1); border-color: rgba(165,180,252,0.4); transform: translateY(-2px); }
.social-icon i   { font-size: 15px; color: rgba(165,180,252,0.7); }

.footer-col-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-link      { font-size: 13px; color: rgba(165,180,252,0.65); display: block; margin-bottom: 10px; cursor: pointer; transition: color 0.2s; text-decoration: none; }
.footer-link:hover { color: #c7d2fe; }

.footer-bottom { border-top: 1px solid rgba(165,180,252,0.1); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy   { font-size: 12px; color: rgba(165,180,252,0.4); }
.footer-legal  { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(165,180,252,0.4); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(165,180,252,0.8); }


/* ============================================================
   25. UTILITY / HELPER CLASSES
   ============================================================ */

/* Text colours */
.text-indigo  { color: var(--indigo); }
.text-muted   { color: var(--text-muted); }
.text-white   { color: #fff; }
.text-navy    { color: var(--navy); }

/* Font weights */
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* Display font */
.font-display { font-family: 'Clash Display', sans-serif; }

/* Flex helpers */
.d-flex        { display: flex; }
.align-center  { align-items: center; }
.justify-center { justify-content: center; }
.gap-8   { gap: 8px; }
.gap-12  { gap: 12px; }
.gap-16  { gap: 16px; }
.gap-20  { gap: 20px; }

/* Margin helpers */
.mt-12  { margin-top: 12px; }
.mt-16  { margin-top: 16px; }
.mt-20  { margin-top: 20px; }
.mt-28  { margin-top: 28px; }
.mt-32  { margin-top: 32px; }
.mt-40  { margin-top: 40px; }
.mb-12  { margin-bottom: 12px; }
.mb-16  { margin-bottom: 16px; }
.mb-20  { margin-bottom: 20px; }

/* Border radius */
.rounded-sm  { border-radius: 8px; }
.rounded-md  { border-radius: 12px; }
.rounded-lg  { border-radius: 16px; }
.rounded-xl  { border-radius: 24px; }
.rounded-full { border-radius: 9999px; }

/* Card base — reusable white bordered card */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}
.card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-3px); }

/* Icon box — coloured icon container */
.icon-box {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box i { font-size: 22px; }

/* Tag / pill badge */
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--indigo);
  background: var(--violet);
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Two-col grid */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
/* Three-col grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
/* Four-col grid */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }


/* ============================================================
   26. RESPONSIVE — BREAKPOINTS
   ============================================================ */

/* ── TABLET ── */
@media (max-width: 1024px) {
  .hero-h1          { font-size: 38px; }
  .counsellors-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .careers-grid     { grid-template-columns: repeat(4, 1fr); }
}

/* ── MOBILE ── */
@media (max-width: 768px) {

  /* Navbar */
  .nav-links, .nav-actions { display: none; }
  .hamburger                { display: block; }

  /* Mobile menu mein buttons add */
  .mobile-menu-btns {
    display: flex;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu-btns .btn-primary,
  .mobile-menu-btns .btn-ghost {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  /* Section padding */
  .section       { padding: 48px 5%; }
  .section-full  { padding: 48px 5%; }
  .section-h2    { font-size: 28px; }

  /* Hero */
  .hero-content   { grid-template-columns: 1fr; gap: 40px; padding: 60px 5%; }
  .hero-h1        { font-size: 32px; }
  .hero-stats     { gap: 20px; }
  .hero-card-wrap { display: none; }
  .hero-btns      { flex-wrap: wrap; }
  .hero-btns button { flex: 1; justify-content: center; min-width: 140px; }

  /* Who grid */
  .who-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Problem solution */
  .prob-sol { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; }

  /* Steps */
  .steps           { grid-template-columns: 1fr; gap: 20px; }
  .steps-connector { display: none; }

  /* Careers */
  .careers-grid { grid-template-columns: repeat(2, 1fr); }

  /* Counsellors */
  .counsellors-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Benefits */
.benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Showcase */
  .showcase-body { grid-template-columns: 1fr; }

  /* School CTA */
  .school-cta      { flex-direction: column; }
  .school-cta-btns { flex-direction: row; flex-wrap: wrap; }
  .school-cta-btns button { flex: 1; min-width: 140px; justify-content: center; }

  /* Final CTA */
  .cta-final      { padding: 48px 24px; margin: 0 4% 60px; }
  .cta-final h2   { font-size: 26px; }
  .cta-btns       { flex-wrap: wrap; gap: 10px; }
  .cta-btns button { flex: 1; min-width: 160px; justify-content: center; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Utility grids */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {

  /* Announce bar */
  .announce-bar { gap: 8px; padding: 8px 12px; font-size: 11px; }
.announce-btn { font-size: 10px; padding: 3px 10px; }
  .announce-bar span { text-align: center; }

  /* Section padding */
  .section      { padding: 40px 4%; }
  .section-full { padding: 40px 4%; }
  .section-h2   { font-size: 24px; }

  /* Hero */
  .hero-content  { padding: 48px 4%; }
  .hero-h1       { font-size: 28px; }
  .hero-stat-num { font-size: 20px; }
  .hero-btns button { flex: 1 1 100%; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Careers */
  .careers-grid { grid-template-columns: repeat(2, 1fr); }

  /* Counsellors */
  .counsellors-grid { grid-template-columns: 1fr; }

  /* Benefits */
.benefits-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; gap: 14px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Trust logos */
  .trust-logos { gap: 8px; }
  .trust-logo-item { padding: 8px 12px; }
  .trust-logo-text { font-size: 12px; }

  /* School CTA */
  .school-cta-btns { flex-direction: column; }
  .school-cta-btns button { width: 100%; }

  /* Final CTA */
  .cta-final    { padding: 40px 20px; margin: 0 3% 48px; }
  .cta-final h2 { font-size: 22px; }
  .cta-btns button { flex: 1 1 100%; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal  { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* Utility grids */
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* Showcase */
  .showcase { padding: 16px; }
  .showcase-body { grid-template-columns: 1fr; }
  .anal-lbl { width: 70px; }
  .s-tab { font-size: 11px; padding: 4px 10px; }
/* ============================================================
   GLOBAL.CSS — ADDITIONS FOR FEATURES PAGE
   In apni global.css file ke end mein add kar do
   ============================================================ */


/* ============================================================
   27. FEATURES PAGE — HERO
   ============================================================ */


/* ============================================================
   28. FEATURES PAGE — STICKY CATEGORY NAV
   ============================================================ */
.feat-nav-wrap {
  position: sticky;
  top: 60px; /* navbar height */
  z-index: 90;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
}
.feat-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 10px 0;
}
.feat-nav::-webkit-scrollbar { display: none; }

.feat-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: 1px solid transparent;
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.22s;
  font-family: 'Sora', sans-serif;
}
.feat-nav-btn i { font-size: 14px; }
.feat-nav-btn:hover {
  background: var(--bg);
  color: var(--indigo);
  border-color: var(--border);
}
.feat-nav-btn.active {
  background: var(--violet);
  color: var(--indigo);
  border-color: var(--indigo-light);
}


/* ============================================================
   29. FEATURES PAGE — FEATURE SECTION BLOCKS
   (each feature category = one section block)
   ============================================================ */

/* Feature block heading area */
.feat-block-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.feat-block-header .section-sub { max-width: 480px; }

/* Icon banner strip — small coloured icon row above heading */
.feat-block-icon-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--violet);
  border: 1px solid var(--indigo-light);
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 14px;
}
.feat-block-icon-strip i { font-size: 18px; color: var(--indigo); }
.feat-block-icon-strip span {
  font-size: 12px;
  font-weight: 700;
  color: var(--indigo);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Feature detail card — larger card with icon, title, desc, tag list */
.feat-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: var(--card-shadow);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
/* Animated top-border reveal on hover */
.feat-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
/* Animated shimmer sweep on hover */
.feat-detail-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(79,70,229,0.04) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.feat-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--indigo-light);
}
.feat-detail-card:hover::before { transform: scaleX(1); }
.feat-detail-card:hover::after  { transform: translateX(100%); }

.feat-detail-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feat-detail-card:hover .feat-detail-icon { transform: scale(1.12) rotate(-4deg); }
.feat-detail-icon i { font-size: 24px; }

.feat-detail-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.feat-detail-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Small feature tag pills inside cards */
.feat-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.feat-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--indigo);
  background: var(--violet);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}
.feat-detail-card:hover .feat-tag {
  background: var(--indigo);
  color: #fff;
}


/* ============================================================
   30. FEATURES PAGE — SPLIT LAYOUT (text left, visual right)
   ============================================================ */
.feat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feat-split.reverse { direction: rtl; }
.feat-split.reverse > * { direction: ltr; }

.feat-split-text { display: flex; flex-direction: column; gap: 0; }
.feat-split-text .section-h2 { margin-bottom: 14px; }
.feat-split-text .section-sub { margin-bottom: 24px; }

/* Checklist inside split text */
.feat-checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feat-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.feat-check-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--violet);
  border: 1.5px solid var(--indigo-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.25s;
}
.feat-check-dot i { font-size: 11px; color: var(--indigo); }
.feat-check-item:hover .feat-check-dot {
  background: var(--indigo);
  border-color: var(--indigo);
}
.feat-check-item:hover .feat-check-dot i { color: #fff; }
.feat-check-item:hover { color: var(--text); }

/* Visual mock panel (right side of split) */
.feat-visual-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s;
}
.feat-visual-panel:hover { box-shadow: var(--card-shadow-hover); }

/* Panel topbar — mimics a mini dashboard header */
.feat-panel-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.feat-panel-title { font-size: 13px; font-weight: 700; color: var(--text); }
.feat-panel-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(34,197,94,0.12);
  color: #15803d;
}

/* Stat row inside panel */
.feat-panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.feat-panel-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  transition: all 0.25s;
}
.feat-panel-stat:hover { border-color: var(--indigo-light); transform: translateY(-2px); }
.feat-panel-stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--indigo);
}
.feat-panel-stat-lbl { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

/* Row list inside panel — student rows, class rows etc */
.feat-panel-list { display: flex; flex-direction: column; gap: 8px; }
.feat-panel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  transition: all 0.25s;
}
.feat-panel-row:hover {
  border-color: var(--indigo-light);
  background: var(--violet);
  transform: translateX(4px);
}
.feat-panel-row-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-panel-row-icon i { font-size: 14px; }
.feat-panel-row-name { font-size: 12px; font-weight: 600; color: var(--text); flex: 1; }
.feat-panel-row-sub  { font-size: 10px; color: var(--text-muted); }
.feat-panel-row-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
}

/* Progress bar inside panel */
.feat-panel-progress { margin-top: 14px; }
.feat-panel-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.feat-panel-bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}
.feat-panel-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: var(--grad-primary);
  transition: width 1.2s ease;
}


/* ============================================================
   31. FEATURES PAGE — COMPARISON TABLE
   ============================================================ */
.feat-compare-wrap {
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.feat-compare-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--navy);
  padding: 16px 24px;
  gap: 12px;
}
.feat-compare-head-cell {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.feat-compare-head-cell:first-child { text-align: left; color: #a5b4fc; }

.feat-compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 14px 24px;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s;
  align-items: center;
}
.feat-compare-row:last-child { border-bottom: none; }
.feat-compare-row:hover { background: var(--bg); }
.feat-compare-cell { text-align: center; }
.feat-compare-cell:first-child { text-align: left; font-size: 13px; font-weight: 600; color: var(--text); }
.feat-compare-cell i.ti-check { color: #15803d; font-size: 16px; }
.feat-compare-cell i.ti-x     { color: #dc2626; font-size: 16px; }
.feat-compare-cell .feat-tag  { display: inline-block; }


/* ============================================================
   32. FEATURES PAGE — REPORT CARD SHOWCASE
   ============================================================ */
.feat-report-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--card-shadow);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feat-report-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.feat-report-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.feat-report-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.feat-report-name  { font-size: 13px; font-weight: 700; color: var(--text); }
.feat-report-meta  { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.feat-report-status {
  margin-left: auto;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}


/* ============================================================
   33. FEATURES PAGE — COUNSELLING SESSION CARD
   ============================================================ */
.feat-session-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feat-session-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--indigo-light);
}
.feat-session-top  { display: flex; align-items: center; gap: 12px; }
.feat-session-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; flex-shrink: 0;
}
.feat-session-name  { font-size: 13px; font-weight: 700; color: var(--text); }
.feat-session-role  { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.feat-session-badge {
  margin-left: auto;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  background: rgba(79,70,229,0.1); color: var(--indigo);
}
.feat-session-meta {
  display: flex;
  gap: 16px;
}
.feat-session-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
}
.feat-session-meta-item i { font-size: 13px; color: var(--indigo-light); }
.feat-session-topics { display: flex; flex-wrap: wrap; gap: 6px; }
.feat-session-topic {
  font-size: 10px;
  font-weight: 600;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 3px 9px;
  border-radius: 20px;
  transition: all 0.2s;
}
.feat-session-card:hover .feat-session-topic {
  background: var(--violet);
  border-color: var(--indigo-light);
  color: var(--indigo);
}


/* ============================================================
   34. FEATURES PAGE — FAMILY FEATURE CARDS
   ============================================================ */
.feat-family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.feat-family-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.feat-family-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.feat-family-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--indigo-light);
}
.feat-family-card:hover::after { transform: scaleX(1); }

.feat-family-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feat-family-card:hover .feat-family-icon { transform: scale(1.15) rotate(-5deg); }
.feat-family-icon i { font-size: 26px; }
.feat-family-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feat-family-text  { font-size: 13px; color: var(--text-muted); line-height: 1.7; }


/* ============================================================
   35. FEATURES PAGE — HIGHLIGHT BANNER (mid-page CTA strip)
   ============================================================ */
.feat-highlight-banner {
  background: var(--grad-primary);
  border-radius: 18px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 0 0;
  position: relative;
  overflow: hidden;
}
.feat-highlight-banner::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -80px; right: -60px;
  pointer-events: none;
}
.feat-highlight-text h3 {
  font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px;
}
.feat-highlight-text p {
  font-size: 14px; color: #c7d2fe; line-height: 1.6;
}
.feat-highlight-btns { display: flex; gap: 10px; flex-shrink: 0; }


/* ============================================================
   RESPONSIVE — Features page additions
   ============================================================ */
@media (max-width: 1024px) {
  .feat-hero-h1    { font-size: 40px; }
  .feat-split      { grid-template-columns: 1fr; gap: 36px; }
  .feat-split.reverse { direction: ltr; }
  .feat-family-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .feat-hero        { padding: 70px 5% 56px; }
  .feat-hero-h1     { font-size: 30px; }
  .feat-hero-btns   { flex-direction: column; align-items: center; }
  .feat-nav-wrap    { top: 0; }
  .feat-block-header { flex-direction: column; gap: 12px; }
  .feat-panel-stats { grid-template-columns: repeat(3, 1fr); }
  .feat-family-grid { grid-template-columns: 1fr 1fr; }
  .feat-highlight-banner { flex-direction: column; padding: 32px 24px; text-align: center; }
  .feat-highlight-btns { justify-content: center; }
  .feat-compare-head { grid-template-columns: 1.5fr 1fr 1fr; }
  .feat-compare-row  { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 480px) {
  .feat-hero-h1     { font-size: 26px; }
  .feat-family-grid { grid-template-columns: 1fr; }
  .feat-panel-stats { grid-template-columns: repeat(3, 1fr); }
  .feat-compare-head { padding: 12px 16px; }
  .feat-compare-row  { padding: 12px 16px; }
  .feat-highlight-banner { padding: 28px 20px; }
}



/* ============================================================
   FEATURES PAGE — NEW CSS COMPONENTS
   Ye sab global.css ke end mein add karo
   (existing sections ke baad, §FEATURES label ke saath)

   Path: frontend/assets/css/global.css
   ============================================================ */


/* ── FEATURES PAGE HERO ──────────────────────────────────── */
/* .feat-hero — simple centered hero, white bg, no image */
.feat-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 72px 5% 60px;
  text-align: center;
}
.feat-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.feat-hero-h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeInDown 0.7s ease both;
}
.feat-hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  animation: fadeInUp 0.7s ease 0.1s both;
}


/* ── FEAT BLOCK — alternating left/right layout ─────────── */
/* .feat-block — base two-column row */
.feat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
 border: none;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
transition: box-shadow 0.3s ease;
}
.feat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feat-block:hover {
  box-shadow: var(--card-shadow-hover);
}
.feat-block:hover::before { opacity: 1; }
/* .feat-block-flip — reverses column order (icon right, text left) */
.feat-block-flip {
  direction: rtl;
}
.feat-block-flip > * {
  direction: ltr;
}

/* Visual side */
.feat-block-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Large icon container */
.feat-block-icon-wrap {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(79,70,229,0.15);
  box-shadow: var(--card-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.feat-block-icon-wrap:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--indigo-light);
}

/* Content side */
.feat-block-content {}

.feat-block-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--indigo);
  background: var(--violet);
  border: 1px solid var(--indigo-light);
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feat-block-h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}

.feat-block-p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}


/* ── FEAT POINTS — animated checklist ───────────────────── */
/* JS adds .visible class staggered per item */
.feat-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}
.feat-point.visible {
  opacity: 1;
  transform: translateX(0);
}
.feat-point.visible:hover {
  background: var(--violet);
  border-color: var(--indigo-light);
  color: var(--indigo-dark);
  transform: translateX(5px);
}
.feat-point i {
  color: var(--indigo);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── MINI ANALYTICS CARD (class-wise feature) ────────────── */
.feat-mini-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  width: 100%;
  max-width: 320px;
  box-shadow: var(--card-shadow);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feat-mini-card:hover {
  border-color: var(--indigo-light);
  transform: translateY(-4px);
  box-shadow: 0 0 0 4px rgba(79,70,229,0.07), var(--card-shadow-hover);
}
.feat-mini-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.feat-mini-bar-wrap { display: flex; flex-direction: column; gap: 8px; }
.feat-mini-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
}
.feat-mini-row span:first-child { width: 64px; flex-shrink: 0; }
.feat-mini-row span:last-child  { width: 32px; text-align: right; font-weight: 600; }
.feat-mini-track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.feat-mini-fill {
  height: 100%;
  border-radius: 10px;
  width: 0%;               /* starts at 0, JS animates to target */
}


/* ── STAT ROW (bulk management feature) ─────────────────── */
.feat-stat-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.feat-stat-mini {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  min-width: 88px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.feat-stat-mini:hover {
  transform: translateY(-4px);
  border-color: var(--indigo-light);
  box-shadow: 0 0 0 4px rgba(79,70,229,0.07), var(--card-shadow-hover);
}
.feat-stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--indigo);
}
.feat-stat-lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}


/* ── STUDENT JOURNEY STEPS (individual flow feature) ────── */
.feat-journey {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 280px;
}
.feat-journey-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.25s;
  cursor: default;
}
.feat-journey-step:hover {
  border-color: var(--indigo-light);
  background: var(--violet);
  color: var(--indigo);
  transform: translateX(5px);
}
.feat-journey-step.active {
  border-color: var(--indigo);
  background: var(--violet);
  color: var(--indigo);
  font-weight: 700;
}
.feat-journey-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--text-muted);
}
.feat-journey-step.active .feat-journey-num {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}


/* ── INTELLIGENCE BADGES (MI feature) ───────────────────── */
.feat-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 300px;
}
.feat-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.feat-badge:hover {
  transform: translateY(-2px) scale(1.07);
  border-color: rgba(79,70,229,0.25);
  box-shadow: 0 4px 12px rgba(79,70,229,0.12);
}


/* ── REPORT TIERS (reports feature) ─────────────────────── */
.feat-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 280px;
}
.feat-tier-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: all 0.25s;
  cursor: default;
}
.feat-tier-card:hover {
  border-color: var(--indigo-light);
  transform: translateX(5px);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.07);
}
.feat-tier-card.active {
  border-color: var(--indigo);
  background: var(--violet);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1), var(--card-shadow);
}
.feat-tier-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.feat-tier-desc {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.feat-tier-card.active .feat-tier-desc { color: var(--indigo); font-weight: 600; }


/* ── SESSION STATUS (counselling feature) ────────────────── */
.feat-session-status {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 240px;
}
.feat-ss-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.feat-ss-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}


/* ── REVEAL DELAY VARIANT ────────────────────────────────── */
/* .reveal-delay-1 — same as .reveal but JS gives 150ms delay */
.reveal-delay-1 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-delay-1.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── RESPONSIVE — FEATURES PAGE ─────────────────────────── */
@media (max-width: 900px) {
  .feat-block,
  .feat-block-flip {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr;
  }
  .feat-block-flip > * { direction: ltr; }
  .feat-block-visual { order: -1; }
  .feat-hero-h1 { font-size: 34px; }
  .feat-block-h3 { font-size: 24px; }
}

@media (max-width: 480px) {
  .feat-hero { padding: 48px 5% 40px; }
  .feat-hero-h1 { font-size: 28px; }
  .feat-hero-sub { font-size: 14px; }
  .feat-block-icon-wrap { width: 100px; height: 100px; }
  .feat-block-icon-wrap i { font-size: 38px !important; }
}



/* ============================================================
   36. FEATURES PAGE — VISUAL MOCK ADDITIONS
   New additions — minimal, targeted
   ============================================================ */

/* Feature page top hero — page identity */
.feat-page-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 80px 5% 72px;
  text-align: center;
}
.feat-page-hero-inner { max-width: 620px; margin: 0 auto; }
.feat-page-hero .section-tag { margin-bottom: 18px; }
.feat-page-hero-h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeInDown 0.7s ease both;
}
.feat-page-hero-h1 span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.feat-page-hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  animation: fadeInUp 0.7s ease 0.1s both;
}

/* Wrapper that removes section-full padding top/bottom duplication */
/* Each feature block sits in its own section-full — no change needed */

/* Dashboard mock used inside feat-block-visual (school management) */
.feat-dash-mock {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  width: 100%;
  max-width: 340px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.feat-dash-mock:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.feat-dash-topbar {
  background: var(--navy);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feat-dash-topbar-title { font-size: 12px; font-weight: 700; color: #e0e7ff; }
.feat-dash-topbar-pill {
  font-size: 10px;
  font-weight: 700;
  background: var(--grad-primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
}
.feat-dash-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.feat-dash-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 12px;
  transition: all 0.2s;
}
.feat-dash-row:hover { border-color: var(--indigo-light); background: var(--violet); transform: translateX(3px); }
.feat-dash-row-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.feat-dash-row-label { font-size: 12px; font-weight: 600; color: var(--text); flex: 1; }
.feat-dash-row-val   { font-size: 11px; color: var(--text-muted); font-weight: 600; }

/* Responsive for feat-page-hero */
@media (max-width: 768px) {
  .feat-page-hero { padding: 56px 5% 48px; }
  .feat-page-hero-h1 { font-size: 32px; }
  .feat-page-hero-sub { font-size: 14px; }
}
@media (max-width: 480px) {
  .feat-page-hero-h1 { font-size: 26px; }
}


/* ── WHATSAPP FLOATING BUTTON ─────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(34,197,94,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 32px rgba(34,197,94,0.55);
}

@media (max-width: 480px) {
  .wa-float { bottom: 18px; right: 18px; width: 50px; height: 50px; font-size: 22px; }
}