/* ═══════════════════════════════════════════════════════════════════
   ITIkeGyani — Complete Design System v2.0
   Saffron + Navy brand identity for India's ITI platform
   ═══════════════════════════════════════════════════════════════════ */

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

:root {
  /* ── Brand Colors ── */
  --saffron:        #FF6B00;
  --saffron-dark:   #D45600;
  --saffron-deeper: #A83E00;
  --saffron-light:  #FFF3E8;
  --saffron-glow:   rgba(255,107,0,0.14);
  --navy:           #0A1628;
  --navy-mid:       #0F2040;
  --navy-light:     #162B50;
  --sky:            #1A91FF;
  --sky-light:      #E8F4FF;
  --green:          #00C978;
  --green-light:    #E6FBF3;
  --purple:         #7C3AED;
  --purple-light:   #F0EBFF;
  --gold:           #F5A623;
  --gold-light:     #FFF8E8;
  --red:            #EF4444;
  --red-light:      #FEF2F2;

  /* ── Neutrals ── */
  --white:      #FFFFFF;
  --off-white:  #F8F9FC;
  --bg:         #F3F5FA;
  --surface:    #FFFFFF;
  --border:     rgba(0,0,0,0.07);
  --border-md:  rgba(0,0,0,0.10);
  --border-lg:  rgba(0,0,0,0.14);

  /* ── Text ── */
  --text-primary:   #0F1629;
  --text-secondary: #4A4F6A;
  --text-muted:     #8B90A7;

  /* ── Shadows ── */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-orange: 0 8px 32px rgba(255,107,0,0.28);

  /* ── Radii ── */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-pill: 9999px;

  /* ── Fonts ── */
  --font-display: 'Sora', -apple-system, sans-serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  /* ── Dashboard vars ── */
  --sidebar-w:  240px;
  --topbar-h:   60px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
a { color: var(--saffron); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════════
   PUBLIC SITE COMPONENTS
══════════════════════════════════════════ */

/* ── Ticker ── */
.ticker-bar { background: var(--navy); color: #fff; padding: 8px 0; overflow: hidden; }
.ticker-inner { display: flex; align-items: center; gap: 16px; }
.ticker-badge {
  background: var(--saffron); color: #fff;
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: var(--r-pill); flex-shrink: 0;
  letter-spacing: 0.08em; font-family: var(--font-display);
  white-space: nowrap;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-scroll { display: flex; gap: 56px; animation: ticker-run 38s linear infinite; white-space: nowrap; }
.ticker-scroll:hover { animation-play-state: paused; }
.ticker-scroll a { color: rgba(255,255,255,0.78); font-size: 12.5px; font-weight: 500; }
.ticker-scroll a:hover { color: var(--saffron); text-decoration: none; }
@keyframes ticker-run { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Navbar ── */
.navbar-pub {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex; align-items: center; gap: 24px; height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--saffron), #FF9A3C);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.nav-logo-text { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--text-primary); }
.nav-logo-text span { color: var(--saffron); }
.nav-search {
  flex: 1; max-width: 360px; position: relative;
}
.nav-search-input {
  width: 100%; height: 38px;
  background: var(--bg); border: 1.5px solid var(--border-md);
  border-radius: var(--r-pill);
  padding: 0 14px 0 40px;
  font-size: 13.5px; color: var(--text-primary); font-family: inherit;
  transition: all 0.2s; outline: none;
}
.nav-search-input:focus { border-color: var(--saffron); background: var(--white); box-shadow: 0 0 0 3px var(--saffron-glow); }
.nav-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.nav-links-pub { display: flex; align-items: center; gap: 2px; list-style: none; margin-left: auto; }
.nav-links-pub a {
  color: var(--text-secondary); font-size: 13.5px; font-weight: 500;
  padding: 6px 11px; border-radius: var(--r-sm); text-decoration: none;
  transition: all 0.15s; white-space: nowrap;
}
.nav-links-pub a:hover { background: var(--bg); color: var(--text-primary); }
.nav-links-pub a.active { color: var(--saffron); font-weight: 700; }
.nav-ctas { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Dropdown */
.nav-drop-wrap { position: relative; }
.nav-drop-trigger {
  display: flex; align-items: center; gap: 4px;
  color: var(--text-secondary); font-size: 13.5px; font-weight: 500;
  padding: 6px 11px; border-radius: var(--r-sm);
  cursor: pointer; transition: all 0.15s;
  background: none; border: none; font-family: inherit;
  white-space: nowrap;
}
.nav-drop-trigger:hover { background: var(--bg); color: var(--text-primary); }
.nav-drop-trigger.active { color: var(--saffron); font-weight: 700; }
.nav-drop-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border-md);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  min-width: 220px; z-index: 500; padding: 8px;
}
.nav-drop-menu.open { display: block; }
.nav-drop-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; font-size: 13px; font-weight: 500;
  color: var(--text-secondary); border-radius: var(--r-sm);
  transition: all 0.12s; text-decoration: none;
}
.nav-drop-menu a:hover { background: var(--saffron-light); color: var(--saffron); }

/* Mobile nav */
.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; font-size: 22px; color: var(--text-primary); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 22px; border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 700; font-family: var(--font-display);
  cursor: pointer; border: 1.5px solid transparent;
  transition: all 0.2s; text-decoration: none; white-space: nowrap;
  line-height: 1; letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

.btn-primary { background: var(--saffron); color: #fff; border-color: var(--saffron); box-shadow: 0 4px 12px rgba(255,107,0,0.35); }
.btn-primary:hover { background: var(--saffron-dark); box-shadow: var(--shadow-orange); }
.btn-outline { background: transparent; color: var(--text-secondary); border-color: var(--border-lg); }
.btn-outline:hover { border-color: var(--saffron); color: var(--saffron); background: var(--saffron-light); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-ghost-white { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.22); }
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-danger { background: var(--red); color: #fff; border-color: var(--red); }
.btn-sm { padding: 6px 15px; font-size: 12.5px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-icon { width: 36px; height: 36px; padding: 0; border-radius: var(--r-sm); justify-content: center; }
.btn-icon-sm { width: 30px; height: 30px; padding: 0; border-radius: var(--r-sm); justify-content: center; font-size: 13px; }

/* ── Section Layout ── */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-bg { background: var(--off-white); }
.section-navy { background: var(--navy); }

.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--saffron);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-family: var(--font-display); margin-bottom: 10px;
}
.section-title { font-size: 30px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.section-title-lg { font-size: 36px; }
.section-title-dark { color: #fff; }
.section-sub { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.section-header { margin-bottom: 36px; }
.section-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }

/* ── Hero ── */
.hero {
  background: var(--navy); position: relative; overflow: hidden;
  padding: 80px 0 0;
}
.hero::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 550px; height: 550px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.18) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(ellipse, rgba(26,145,255,0.12) 0%, transparent 68%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,0.14); border: 1px solid rgba(255,107,0,0.28);
  color: #FF9A3C; font-size: 11px; font-weight: 700; padding: 5px 14px;
  border-radius: var(--r-pill); margin-bottom: 18px;
  font-family: var(--font-display); letter-spacing: 0.07em; text-transform: uppercase;
}
.hero-title { font-size: 50px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 18px; }
.hero-title .hl { color: var(--saffron); }
.hero-desc { color: rgba(255,255,255,0.62); font-size: 16px; line-height: 1.75; margin-bottom: 30px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; align-items: center; gap: 20px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-trust-val { font-family: var(--font-display); font-size: 21px; font-weight: 800; color: #fff; }
.hero-trust-lbl { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 1px; }
.hero-trust-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }
.hero-panel {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl); padding: 26px; backdrop-filter: blur(20px);
}
.hero-panel-title { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.hero-stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md); padding: 14px; text-align: center;
}
.hero-stat-val { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; }
.hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.42); margin-top: 3px; }
.hero-service-link {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md); padding: 12px 14px;
  text-decoration: none; transition: all 0.2s; margin-bottom: 8px;
}
.hero-service-link:last-child { margin-bottom: 0; }
.hero-service-link:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,107,0,0.3); text-decoration: none; transform: translateX(3px); }
.hero-service-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.hero-service-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.88); }
.hero-service-desc { font-size: 11px; color: rgba(255,255,255,0.4); }
.hero-wave { height: 56px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0C240 40 480 56 720 40C960 24 1200 0 1440 28L1440 56L0 56Z' fill='%23F8F9FC'/%3E%3C/svg%3E") no-repeat bottom; background-size: cover; margin-top: 60px; }

/* ── Update Columns ── */
.updates-3col { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.update-col {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.update-col-head {
  background: var(--navy); color: #fff; padding: 13px 18px;
  font-family: var(--font-display); font-size: 12.5px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.update-item {
  display: flex; gap: 10px; padding: 12px 18px;
  border-bottom: 1px solid var(--border); transition: background 0.15s;
  cursor: pointer; text-decoration: none;
}
.update-item:last-of-type { border-bottom: none; }
.update-item:hover { background: var(--off-white); }
.update-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--saffron); flex-shrink: 0; margin-top: 6px; }
.update-text { font-size: 12.5px; font-weight: 600; color: var(--text-primary); line-height: 1.5; }
.update-date { font-size: 10.5px; color: var(--text-muted); margin-top: 3px; }
.update-footer { padding: 11px 18px; border-top: 1px solid var(--border); background: var(--off-white); }
.update-footer a { font-size: 12px; font-weight: 700; color: var(--saffron); }

/* ── Service Cards ── */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px 22px; text-align: center;
  transition: all 0.25s; cursor: pointer; text-decoration: none;
  position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--saffron); transform: scaleX(0); transition: transform 0.25s; transform-origin: left; }
.service-card:hover { border-color: var(--saffron); box-shadow: 0 8px 32px rgba(255,107,0,0.1); transform: translateY(-4px); text-decoration: none; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap { width: 58px; height: 58px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 14px; }
.service-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.service-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }

/* ── Course Cards ── */
.courses-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.course-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; transition: all 0.25s;
  cursor: pointer; text-decoration: none; display: flex; flex-direction: column;
}
.course-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--saffron); text-decoration: none; }
.course-thumb { aspect-ratio: 16/9; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 46px; position: relative; overflow: hidden; }
.course-thumb img { width: 100%; height: 100%; object-fit: cover; }
.course-thumb-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--saffron); color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: var(--r-pill); font-family: var(--font-display);
}
.course-info { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.course-cat { font-size: 10px; font-weight: 700; color: var(--saffron); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
.course-title { font-family: var(--font-display); font-size: 13.5px; font-weight: 700; color: var(--text-primary); line-height: 1.45; margin-bottom: 7px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.course-instructor { font-size: 11.5px; color: var(--text-muted); margin-bottom: 8px; }
.course-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 11.5px; }
.course-rating { display: flex; align-items: center; gap: 3px; }
.star-icon { color: #F5A623; font-size: 11.5px; }
.rating-val { font-weight: 700; color: var(--text-primary); }
.rating-count { color: var(--text-muted); }
.course-price-row { margin-top: auto; display: flex; align-items: center; gap: 8px; }
.price-free { font-size: 14px; font-weight: 700; color: var(--green); font-family: var(--font-display); }
.price-paid { font-size: 14px; font-weight: 800; color: var(--text-primary); font-family: var(--font-display); }
.price-old { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; font-size: 10.5px; font-weight: 700;
  padding: 3px 9px; border-radius: var(--r-pill); font-family: var(--font-display);
  letter-spacing: 0.04em; white-space: nowrap;
}
.badge-free  { background: var(--green-light); color: #00885A; }
.badge-new   { background: var(--sky-light);   color: #0060B8; }
.badge-hot   { background: #FFF0E8; color: var(--saffron-dark); }
.badge-active    { background: var(--green-light); color: #00885A; }
.badge-pending   { background: var(--gold-light);  color: #B45309; }
.badge-rejected  { background: var(--red-light);   color: #B91C1C; }
.badge-suspended { background: var(--red-light);   color: #B91C1C; }
.badge-student   { background: var(--sky-light);   color: #0056CC; }
.badge-instructor{ background: var(--purple-light);color: #5B21B6; }
.badge-institute { background: var(--green-light); color: #065F46; }
.badge-admin     { background: var(--navy);        color: #fff;    }
.badge-hr        { background: #FEF9C3;            color: #713F12; }

/* ── Exam Cards ── */
.exam-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.exam-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px; transition: all 0.2s;
  cursor: pointer; text-decoration: none; display: flex; gap: 14px; align-items: flex-start;
}
.exam-card:hover { box-shadow: var(--shadow-md); border-color: var(--sky); transform: translateY(-2px); text-decoration: none; }
.exam-icon-box { width: 46px; height: 46px; border-radius: 11px; background: var(--sky-light); display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0; }
.exam-title { font-family: var(--font-display); font-size: 13.5px; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; }
.exam-meta-text { font-size: 11.5px; color: var(--text-muted); }
.exam-free-tag { display: inline-flex; background: var(--green-light); color: #00885A; font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: var(--r-pill); margin-top: 6px; font-family: var(--font-display); }

/* ── Toppers ── */
.toppers-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.topper-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px 14px; text-align: center; position: relative; transition: all 0.2s; }
.topper-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.topper-rank { position: absolute; top: 11px; right: 11px; background: var(--saffron); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: var(--r-pill); font-family: var(--font-display); }
.topper-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg,var(--saffron),#FF9A3C); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff; margin: 0 auto 11px; border: 3px solid var(--white); box-shadow: 0 3px 10px rgba(255,107,0,0.25); overflow: hidden; }
.topper-avatar img { width: 100%; height: 100%; object-fit: cover; }
.topper-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.topper-trade { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.topper-score { font-size: 13px; font-weight: 700; color: var(--green); }

/* ── Jobs List ── */
.job-row {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 15px 18px; display: flex; align-items: center; gap: 14px;
  transition: all 0.2s; cursor: pointer; text-decoration: none; margin-bottom: 10px;
}
.job-row:hover { box-shadow: var(--shadow-md); border-color: var(--saffron); text-decoration: none; }
.job-org-logo { width: 42px; height: 42px; border-radius: 9px; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; border: 1px solid var(--border); }
.job-title { font-family: var(--font-display); font-size: 13.5px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.job-org-text { font-size: 12px; color: var(--text-muted); }
.job-tags { display: flex; gap: 5px; margin-top: 6px; flex-wrap: wrap; }
.job-tag { font-size: 10.5px; font-weight: 600; padding: 2px 9px; border-radius: var(--r-pill); }
.tag-type { background: var(--sky-light); color: #0069CC; }
.tag-loc  { background: var(--green-light); color: #00885A; }
.tag-vac  { background: var(--saffron-light); color: var(--saffron-dark); }
.job-deadline { text-align: right; flex-shrink: 0; }
.job-deadline-lbl { font-size: 10px; color: var(--text-muted); }
.job-deadline-val { font-family: var(--font-display); font-size: 12.5px; font-weight: 700; color: var(--text-primary); }

/* ── Notice Board ── */
.notice-board { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.notice-head { background: linear-gradient(90deg,var(--navy),var(--navy-light)); color: #fff; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
.notice-head-title { font-family: var(--font-display); font-size: 13.5px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.notice-scroll { height: 300px; overflow-y: auto; }
.notice-scroll::-webkit-scrollbar { width: 4px; }
.notice-scroll::-webkit-scrollbar-thumb { background: var(--border-md); border-radius: 2px; }
.notice-item { display: flex; gap: 11px; padding: 12px 18px; border-bottom: 1px solid var(--border); transition: background 0.15s; cursor: pointer; }
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: var(--off-white); }
.notice-icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.notice-title { font-size: 12.5px; font-weight: 600; color: var(--text-primary); line-height: 1.5; }
.notice-sub { font-size: 10.5px; color: var(--text-muted); margin-top: 3px; display: flex; gap: 6px; align-items: center; }

/* ── Mela Cards ── */
.mela-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.mela-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px; display: flex; gap: 14px; transition: all 0.2s; cursor: pointer; }
.mela-card:hover { border-color: var(--saffron); box-shadow: var(--shadow-md); }
.mela-date-box { background: var(--saffron); color: #fff; border-radius: var(--r-md); padding: 10px 12px; text-align: center; flex-shrink: 0; min-width: 54px; }
.mela-day { font-family: var(--font-display); font-size: 22px; font-weight: 800; line-height: 1; }
.mela-month { font-size: 10px; font-weight: 700; margin-top: 2px; letter-spacing: 0.06em; }
.mela-card-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.mela-location { font-size: 11.5px; color: var(--text-muted); margin-bottom: 5px; }
.mela-vac { font-size: 12px; font-weight: 600; color: var(--green); }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; position: relative; }
.testimonial-card::before { content: '\201C'; font-size: 64px; font-family: Georgia,serif; color: var(--saffron); opacity: 0.14; position: absolute; top: 6px; left: 18px; line-height: 1; }
.test-stars { color: #F5A623; font-size: 13px; margin-bottom: 10px; }
.test-text { font-size: 13.5px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 10px; }
.test-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--saffron),#FF9A3C); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: #fff; font-family: var(--font-display); flex-shrink: 0; }
.test-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-primary); }
.test-info { font-size: 11.5px; color: var(--text-muted); }

/* ── CTA Band ── */
.cta-band { background: linear-gradient(135deg,var(--navy),#1A2F5C 50%,var(--navy)); position: relative; overflow: hidden; padding: 72px 0; text-align: center; }
.cta-band::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 560px; height: 280px; background: radial-gradient(ellipse,rgba(255,107,0,0.2) 0%,transparent 68%); pointer-events: none; }
.cta-band h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 12px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.62); font-size: 16px; margin-bottom: 30px; position: relative; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-stats { display: flex; gap: 40px; justify-content: center; margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; position: relative; }
.cta-stat-val { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #fff; }
.cta-stat-lbl { font-size: 11.5px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ── Footer ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.55); padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg,var(--saffron),#FF9A3C); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.footer-logo-text { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: #fff; }
.footer-logo-text span { color: var(--saffron); }
.footer-tagline { font-size: 13px; line-height: 1.65; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.social-btn { width: 34px; height: 34px; border-radius: 7px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: background 0.2s; cursor: pointer; border: 1px solid rgba(255,255,255,0.1); }
.social-btn:hover { background: var(--saffron); }
.footer-col-title { font-family: var(--font-display); font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.88); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 14px; }
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links-list a { font-size: 13px; color: rgba(255,255,255,0.52); transition: color 0.15s; text-decoration: none; }
.footer-links-list a:hover { color: var(--saffron); }
.footer-bottom { padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom-text { font-size: 12px; color: rgba(255,255,255,0.32); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.32); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════════
   DASHBOARD COMPONENTS (All Panels)
══════════════════════════════════════════ */
body.dashboard-body { background: var(--bg); overflow: hidden; height: 100vh; }
.app-layout { display: flex; height: 100vh; overflow: hidden; }

/* ── Sidebar ── */
.app-sidebar {
  width: var(--sidebar-w); background: var(--navy);
  display: flex; flex-direction: column; flex-shrink: 0;
  overflow-y: auto; overflow-x: hidden; z-index: 20;
}
.app-sidebar::-webkit-scrollbar { width: 3px; }
.app-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); }

.sidebar-logo {
  padding: 18px 20px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0;
}
.sidebar-logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg,var(--saffron),#FF9A3C); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.sidebar-logo-text { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: #fff; }
.sidebar-logo-text span { color: var(--saffron); }
.sidebar-logo-role { font-size: 9px; color: rgba(255,255,255,0.32); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 1px; }
.sidebar-nav { padding: 10px 0; flex: 1; }
.sidebar-section { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.11em; padding: 13px 20px 5px; font-family: var(--font-display); }
.sidebar-item {
  display: flex; align-items: center; gap: 10px; padding: 9px 20px;
  color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.15s; position: relative;
  text-decoration: none;
}
.sidebar-item:hover { color: rgba(255,255,255,0.88); background: rgba(255,255,255,0.06); text-decoration: none; }
.sidebar-item.active { color: #fff; background: rgba(255,107,0,0.18); font-weight: 600; }
.sidebar-item.active::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--saffron); border-radius: 0 2px 2px 0; }
.sidebar-item-icon { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }
.sidebar-badge { margin-left: auto; background: var(--saffron); color: #fff; font-size: 9.5px; font-weight: 700; padding: 1px 7px; border-radius: var(--r-pill); font-family: var(--font-display); }
.sidebar-badge-red { background: var(--red); }
.sidebar-badge-yellow { background: var(--gold); color: #1a1a1a; }
.sidebar-user { padding: 13px 16px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sidebar-user-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,var(--saffron),#FF9A3C); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 13px; color: #fff; flex-shrink: 0; }
.sidebar-user-name { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.88); }
.sidebar-user-role { font-size: 10.5px; color: rgba(255,255,255,0.38); }

/* ── App Main ── */
.app-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-width: 0; }
.app-topbar {
  height: var(--topbar-h); background: var(--surface); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 24px; gap: 16px; flex-shrink: 0; z-index: 10;
}
.topbar-page-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-primary); }
.topbar-breadcrumb { font-size: 12px; color: var(--text-muted); }
.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.topbar-icon-btn { width: 36px; height: 36px; border-radius: var(--r-sm); background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; transition: all 0.15s; position: relative; }
.topbar-icon-btn:hover { background: var(--surface); border-color: var(--border-md); }
.topbar-notif-dot { position: absolute; top: 6px; right: 6px; width: 7px; height: 7px; border-radius: 50%; background: var(--saffron); border: 2px solid var(--surface); }
.topbar-divider { width: 1px; height: 24px; background: var(--border); }
.topbar-user { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 4px 8px; border-radius: var(--r-sm); transition: background 0.15s; }
.topbar-user:hover { background: var(--bg); }
.topbar-user-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,var(--saffron),#FF9A3C); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; color: #fff; font-family: var(--font-display); overflow: hidden; }
.topbar-user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.topbar-user-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }

/* ── Content Area ── */
.app-content { flex: 1; overflow-y: auto; padding: 24px; }
.app-content::-webkit-scrollbar { width: 6px; }
.app-content::-webkit-scrollbar-thumb { background: var(--border-md); border-radius: 3px; }
.page-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; gap: 16px; }
.page-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 2px; }
.page-sub { font-size: 13.5px; color: var(--text-muted); }

/* ── Alert/Banner ── */
.alert-banner { border-radius: var(--r-md); padding: 12px 18px; display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.alert-banner-warning { background: linear-gradient(90deg,#FFF8E8,#FFFCF2); border: 1px solid rgba(245,166,35,0.25); }
.alert-banner-info { background: var(--sky-light); border: 1px solid rgba(26,145,255,0.2); }
.alert-icon { font-size: 20px; flex-shrink: 0; }
.alert-text { font-size: 13px; color: var(--text-secondary); }
.alert-actions { margin-left: auto; display: flex; gap: 8px; flex-shrink: 0; }

/* ── Stat Cards ── */
.stats-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 22px; }
.stats-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 22px; }
.stat-card-dash {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px; display: flex; align-items: flex-start; gap: 13px;
  transition: all 0.2s; position: relative; overflow: hidden;
}
.stat-card-dash::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent,var(--saffron)); opacity: 0; transition: opacity 0.2s; }
.stat-card-dash:hover::after { opacity: 1; }
.stat-card-dash:hover { box-shadow: var(--shadow-md); }
.stat-icon-wrap { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.stat-value { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--text-primary); line-height: 1.1; margin-bottom: 2px; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-bottom: 7px; }
.stat-trend { display: flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 600; }
.trend-up { color: var(--green); }
.trend-down { color: var(--red); }
.trend-neutral { color: var(--text-muted); font-weight: 400; }

/* ── Card ── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-xs);
}
.card-header {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.card-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
.card-body { padding: 20px; }
.card-body-flush { padding: 0; }

/* ── Tables ── */
.table-wrap { overflow-x: auto; }
table.dash-table { width: 100%; border-collapse: collapse; }
table.dash-table thead th {
  padding: 10px 16px; text-align: left; font-size: 11px; font-weight: 700;
  color: var(--text-muted); background: var(--bg); border-bottom: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-display); white-space: nowrap;
}
table.dash-table tbody td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 13px; vertical-align: middle; }
table.dash-table tbody tr:last-child td { border-bottom: none; }
table.dash-table tbody tr:hover td { background: var(--bg); }
.user-cell { display: flex; align-items: center; gap: 10px; }
.user-cell-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,var(--saffron),#FF9A3C); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11.5px; color: #fff; flex-shrink: 0; font-family: var(--font-display); overflow: hidden; }
.user-cell-avatar img { width: 100%; height: 100%; object-fit: cover; }
.user-cell-name { font-weight: 600; color: var(--text-primary); font-size: 13px; }
.user-cell-email { font-size: 11px; color: var(--text-muted); }

/* ── Activity Feed ── */
.activity-item { display: flex; gap: 11px; padding: 11px 20px; border-bottom: 1px solid var(--border); align-items: flex-start; }
.activity-item:last-child { border-bottom: none; }
.activity-dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.activity-text { font-size: 12.5px; color: var(--text-secondary); line-height: 1.5; }
.activity-text strong { color: var(--text-primary); font-weight: 600; }
.activity-time { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── Progress Bar ── */
.progress { height: 5px; background: var(--bg); border-radius: var(--r-pill); overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg,var(--saffron),#FF9A3C); border-radius: var(--r-pill); transition: width 0.5s ease; }
.progress-fill-green { background: linear-gradient(90deg,var(--green),#00FF99); }
.progress-fill-sky { background: linear-gradient(90deg,var(--sky),#5DB8FF); }
.progress-fill-purple { background: linear-gradient(90deg,var(--purple),#A87FFF); }

/* ── Forms ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; font-family: var(--font-display); }
.form-input, .form-select, .form-textarea {
  width: 100%; height: 40px; background: var(--white); border: 1.5px solid var(--border-md);
  border-radius: var(--r-sm); padding: 0 12px; font-size: 13.5px;
  color: var(--text-primary); font-family: inherit; transition: all 0.2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px var(--saffron-glow); }
.form-textarea { height: auto; padding: 10px 12px; resize: vertical; min-height: 100px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.form-hint { font-size: 11.5px; color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: 11.5px; color: var(--red); margin-top: 4px; }

/* ── Modal ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 1000; align-items: center; justify-content: center; padding: 20px;
}
.modal-box {
  background: var(--white); border-radius: var(--r-xl); max-width: 560px; width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2); overflow: hidden;
}
.modal-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.modal-title { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--text-primary); }
.modal-body { padding: 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 10px; background: var(--bg); }

/* ── Toast ── */
#toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }

/* ── Tabs ── */
.tab-bar { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.tab-btn { padding: 8px 16px; font-size: 13px; font-weight: 600; font-family: var(--font-display); cursor: pointer; border: none; background: none; color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.15s; }
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { color: var(--saffron); border-bottom-color: var(--saffron); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ── Charts (visual only, no library needed) ── */
.bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 160px; padding: 0 4px; }
.bar { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(to top,var(--saffron),#FF9A3C); opacity: 0.82; transition: opacity 0.2s; cursor: pointer; }
.bar:hover { opacity: 1; }
.bar.alt { background: linear-gradient(to top,var(--sky),#5DB8FF); }
.bar-labels { display: flex; gap: 6px; padding: 6px 4px 0; }
.bar-label { flex: 1; text-align: center; font-size: 10px; color: var(--text-muted); }

/* ── Search Input ── */
.search-box { position: relative; }
.search-box input { width: 100%; height: 38px; background: var(--bg); border: 1px solid var(--border-md); border-radius: var(--r-pill); padding: 0 14px 0 38px; font-size: 13px; color: var(--text-primary); font-family: inherit; outline: none; transition: all 0.2s; }
.search-box input:focus { border-color: var(--saffron); background: var(--white); box-shadow: 0 0 0 3px var(--saffron-glow); }
.search-box-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); font-size: 14px; color: var(--text-muted); pointer-events: none; }

/* ── Pagination ── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 20px 0; }
.page-btn { width: 34px; height: 34px; border-radius: var(--r-sm); border: 1px solid var(--border-md); background: var(--surface); font-size: 13px; cursor: pointer; transition: all 0.15s; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; color: var(--text-secondary); }
.page-btn:hover { border-color: var(--saffron); color: var(--saffron); }
.page-btn.active { background: var(--saffron); border-color: var(--saffron); color: #fff; }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Empty State ── */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-icon { font-size: 48px; margin-bottom: 14px; }
.empty-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.empty-sub { font-size: 14px; color: var(--text-muted); }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 16px; }

/* ── Utility ── */
.mb-0{margin-bottom:0}.mb-1{margin-bottom:4px}.mb-2{margin-bottom:8px}.mb-3{margin-bottom:12px}.mb-4{margin-bottom:16px}.mb-6{margin-bottom:24px}.mb-8{margin-bottom:32px}
.mt-2{margin-top:8px}.mt-3{margin-top:12px}.mt-4{margin-top:16px}.mt-6{margin-top:24px}
.flex{display:flex}.flex-col{flex-direction:column}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.gap-1{gap:4px}.gap-2{gap:8px}.gap-3{gap:12px}.gap-4{gap:16px}.gap-6{gap:24px}.flex-1{flex:1;min-width:0}.flex-wrap{flex-wrap:wrap}
.w-full{width:100%}.text-center{text-align:center}.text-right{text-align:right}
.truncate{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.hidden{display:none!important}.block{display:block}.fw-bold{font-weight:700}.fw-600{font-weight:600}
.text-xs{font-size:11px}.text-sm{font-size:12.5px}.text-base{font-size:14px}.text-lg{font-size:16px}.text-xl{font-size:18px}
.text-muted{color:var(--text-muted)}.text-secondary{color:var(--text-secondary)}.text-primary{color:var(--text-primary)}.text-orange{color:var(--saffron)}.text-green{color:var(--green)}.text-red{color:var(--red)}.text-sky{color:var(--sky)}
.divider{height:1px;background:var(--border);margin:16px 0}
.rounded{border-radius:var(--r-md)}.rounded-lg{border-radius:var(--r-lg)}.rounded-full{border-radius:var(--r-pill)}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .courses-grid { grid-template-columns: repeat(3,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .toppers-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid-4 { grid-template-columns: repeat(2,1fr); }
  :root { --sidebar-w: 210px; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-panel { max-width: 560px; }
  .hero-title { font-size: 38px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-search, .nav-links-pub { display: none; }
  .nav-mobile-btn { display: flex; }
  .updates-3col, .mela-grid { grid-template-columns: 1fr; }
  .exam-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 44px 0; }
  .section-title { font-size: 24px; }
  .hero-title { font-size: 28px; }
  .cta-band h2 { font-size: 26px; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .toppers-grid { grid-template-columns: repeat(2,1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .app-sidebar { position: fixed; left: -100%; transition: left 0.3s; }
  .app-sidebar.open { left: 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .courses-grid { grid-template-columns: 1fr; }
  .exam-grid { grid-template-columns: 1fr; }
  .stats-grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
