:root {
  --navy: #0B1F4B; --navy-deep: #071330; --navy-mid: #162B5E;
  --gold: #C9982A; --gold-light: #F0C050; --gold-pale: #FDF3D8;
  --white: #FFFFFF; --off-white: #F8F6F1; --text: #1A1A2E;
  --text-muted: #5A637A; --border: #DDE1EC; --success: #1E7A4E;
  --radius: 12px; --shadow: 0 4px 24px rgba(11,31,75,0.10);
  --shadow-lg: 0 12px 48px rgba(11,31,75,0.18);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }

.skip-link { position: absolute; top: -40px; left: 0; background: var(--gold); color: var(--navy-deep); padding: 8px 16px; font-weight: 600; z-index: 9999; transition: top .2s; border-radius: 0 0 8px 0; }
.skip-link:focus { top: 0; }

nav { position: sticky; top: 0; z-index: 1000; background: var(--navy-deep); box-shadow: 0 2px 16px rgba(0,0,0,.3); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 8px; height: 68px; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo-badge { width: 42px; height: 42px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 800; color: var(--navy-deep); font-size: 18px; letter-spacing: -1px; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-text span:first-child { font-family: 'Playfair Display', serif; color: var(--white); font-size: 16px; font-weight: 700; line-height: 1.1; }
.nav-brand-text span:last-child { color: var(--gold-light); font-size: 11px; letter-spacing: .5px; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links a { color: rgba(255,255,255,.82); text-decoration: none; padding: 6px 13px; border-radius: 6px; font-size: 14px; font-weight: 500; transition: color .2s, background .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-cta { margin-left: 12px; background: var(--gold) !important; color: var(--navy-deep) !important; border-radius: 8px !important; font-weight: 700 !important; padding: 8px 18px !important; transition: background .2s, transform .15s !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; background: var(--navy-deep); padding: 16px 24px 24px; border-top: 1px solid rgba(255,255,255,.1); }
.mobile-menu a { color: rgba(255,255,255,.85); text-decoration: none; padding: 11px 0; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-menu a:last-child { border: none; }
.mobile-menu.open { display: flex; }

.ticker-bar { background: var(--gold); padding: 10px 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 64px; animation: ticker 40s linear infinite; white-space: nowrap; }
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item { font-size: 13px; font-weight: 600; color: var(--navy-deep); display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ticker-item::before { content: '◆'; font-size: 8px; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.hero { min-height: 92vh; background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 55%, #1A3A7A 100%); position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg-pattern { position: absolute; inset: 0; opacity: .05; background-image: repeating-linear-gradient(45deg, white 0, white 1px, transparent 0, transparent 50%); background-size: 32px 32px; }
.hero-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(201,152,42,.15); }
.hero-circle-1 { width: 600px; height: 600px; right: -100px; top: -100px; }
.hero-circle-2 { width: 400px; height: 400px; right: 80px; top: 60px; }
.hero-circle-3 { width: 200px; height: 200px; right: 240px; top: 180px; border-color: rgba(201,152,42,.3); }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,152,42,.18); border: 1px solid rgba(201,152,42,.35); border-radius: 100px; padding: 6px 16px; margin-bottom: 24px; }
.hero-badge span { color: var(--gold-light); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
h1.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--white); line-height: 1.15; font-weight: 800; margin-bottom: 24px; }
h1.hero-title em { font-style: normal; color: var(--gold-light); }
.hero-sub { color: rgba(255,255,255,.72); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.stat-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 20px 16px; text-align: center; backdrop-filter: blur(8px); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--gold-light); display: block; }
.stat-label { color: rgba(255,255,255,.65); font-size: 12px; margin-top: 4px; }
.hero-visual { position: relative; }
.hero-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-img-card { border-radius: 14px; overflow: hidden; background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.18); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-img-label { position: absolute; bottom: 12px; left: 12px; background: rgba(11,31,75,.7); color: white; font-size: 11px; padding: 4px 10px; border-radius: 6px; backdrop-filter: blur(4px); }
.campus-illustration { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,.3); font-size: 48px; }

section { padding: 80px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.section-label span { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); }
h2.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }

.btn-primary { background: var(--gold); color: var(--navy-deep); padding: 14px 30px; border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,152,42,.35); }
.btn-outline { background: transparent; color: var(--white); padding: 14px 30px; border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none; border: 2px solid rgba(255,255,255,.35); transition: all .2s; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.quick-links { background: var(--off-white); }
.ql-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-top: 40px; }
.ql-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; text-decoration: none; transition: all .2s; cursor: pointer; }
.ql-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.ql-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 22px; }
.ql-card:hover .ql-icon { background: var(--gold); }
.ql-title { font-weight: 600; font-size: 14px; color: var(--navy); }

.academics { background: var(--white); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 24px; }
.filter-btn { padding: 8px 18px; border-radius: 100px; border: 2px solid var(--border); background: var(--white); color: var(--text-muted); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; }
.filter-btn.active, .filter-btn:hover { border-color: var(--navy); background: var(--navy); color: white; }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.program-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .2s; }
.program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--gold); }
.program-header { background: var(--navy); padding: 20px; display: flex; align-items: center; gap: 14px; }
.program-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(201,152,42,.2); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.program-title { font-weight: 700; color: white; font-size: 15px; }
.program-tag { font-size: 11px; color: var(--gold-light); letter-spacing: .5px; }
.program-body { padding: 18px; }
.program-meta { display: flex; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.meta-chip { background: var(--off-white); border-radius: 6px; padding: 4px 10px; font-size: 12px; color: var(--text-muted); font-weight: 500; }
.program-outcomes { list-style: none; margin-top: 10px; }
.program-outcomes li { font-size: 13px; color: var(--text-muted); padding: 3px 0; display: flex; align-items: flex-start; gap: 8px; }
.program-outcomes li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
.hidden { display: none !important; }

.admissions { background: var(--off-white); }
.admission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 40px; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 20px; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; left: 19px; top: 44px; bottom: 0; width: 2px; background: var(--border); }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Space Mono', monospace; font-weight: 700; font-size: 14px; flex-shrink: 0; z-index: 1; }
.step-content { padding-bottom: 28px; }
.step-title { font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.deadline-card { background: var(--navy); border-radius: var(--radius); padding: 28px; color: white; }
.deadline-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 20px; color: var(--gold-light); }
.deadline-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.deadline-row:last-child { border: none; }
.deadline-label { font-size: 14px; color: rgba(255,255,255,.75); }
.deadline-date { font-family: 'Space Mono', monospace; font-size: 13px; color: var(--gold-light); background: rgba(201,152,42,.15); padding: 4px 10px; border-radius: 6px; }
.calculator { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-top: 24px; }
.calculator h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 20px; }
.calc-form { display: flex; flex-direction: column; gap: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.form-group select { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; transition: border-color .2s; }
.form-group select:focus { border-color: var(--navy); }
.calc-result { background: var(--gold-pale); border-radius: 10px; padding: 16px; margin-top: 8px; display: flex; justify-content: space-between; align-items: center; }
.calc-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.calc-amount { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--navy); }

.placements { background: var(--navy-deep); color: white; }
.placements .section-title { color: white; }
.placements .section-desc { color: rgba(255,255,255,.6); }
.placement-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.placement-year-tabs { display: flex; gap: 8px; }
.year-tab { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.7); border-radius: 8px; padding: 8px 18px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; }
.year-tab.active { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.kpi-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 22px 18px; text-align: center; transition: all .3s; }
.kpi-card:hover { background: rgba(201,152,42,.12); border-color: rgba(201,152,42,.3); }
.kpi-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; color: var(--gold-light); display: block; line-height: 1; }
.kpi-label { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 8px; font-weight: 500; letter-spacing: .5px; }
.kpi-change { font-size: 11px; margin-top: 6px; font-weight: 600; }
.kpi-up { color: #4ADE80; }
.kpi-neutral { color: rgba(255,255,255,.4); }
.placement-charts { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.chart-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 24px; }
.chart-title { font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 20px; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.chart-title span { background: rgba(201,152,42,.2); color: var(--gold-light); font-size: 11px; padding: 2px 8px; border-radius: 4px; }
.bar-chart { display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-label { font-size: 12px; color: rgba(255,255,255,.6); width: 130px; flex-shrink: 0; }
.bar-track { flex: 1; background: rgba(255,255,255,.08); border-radius: 4px; height: 10px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transition: width 1s ease; }
.bar-val { font-size: 12px; color: var(--gold-light); font-family: 'Space Mono', monospace; width: 60px; text-align: right; flex-shrink: 0; }
.donut-wrap { display: flex; align-items: center; gap: 24px; }
.donut-svg { flex-shrink: 0; }
.donut-legend { display: flex; flex-direction: column; gap: 10px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.7); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.legend-pct { font-weight: 700; color: white; font-family: 'Space Mono', monospace; }
.recruiters-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.recruiter-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 14px 12px; text-align: center; transition: all .2s; }
.recruiter-card:hover { background: rgba(201,152,42,.1); border-color: rgba(201,152,42,.3); transform: translateY(-2px); }
.recruiter-emoji { font-size: 26px; margin-bottom: 6px; }
.recruiter-name { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 600; }
.recruiter-package { font-size: 11px; color: var(--gold-light); font-family: 'Space Mono', monospace; margin-top: 3px; }
.branch-table-wrap { overflow-x: auto; margin-top: 24px; }
.branch-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.branch-table th { background: rgba(255,255,255,.06); color: rgba(255,255,255,.55); padding: 10px 14px; text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.1); }
.branch-table td { padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,.05); color: rgba(255,255,255,.8); }
.branch-table tr:hover td { background: rgba(255,255,255,.04); }
.td-bar { display: flex; align-items: center; gap: 8px; }
.td-bar-fill { height: 6px; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.badge-green { background: rgba(74,222,128,.15); color: #4ADE80; border-radius: 4px; padding: 2px 8px; font-size: 11px; font-weight: 700; }
.badge-yellow { background: rgba(250,204,21,.15); color: #FACC15; border-radius: 4px; padding: 2px 8px; font-size: 11px; font-weight: 700; }
.sparkline-wrap { display: flex; align-items: flex-end; gap: 4px; height: 48px; margin-top: 12px; }
.spark-bar { border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--gold-light), var(--gold)); flex: 1; min-width: 10px; transition: height .5s; }
.placement-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 40px; }
.process-step { padding: 24px 20px; border-right: 1px solid rgba(255,255,255,.1); text-align: center; position: relative; }
.process-step:last-child { border: none; }
.process-step::after { content: '→'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 18px; font-weight: 700; }
.process-step:last-child::after { display: none; }
.process-num { font-family: 'Space Mono', monospace; font-size: 28px; font-weight: 700; color: var(--gold); display: block; margin-bottom: 10px; }
.process-title { font-weight: 700; color: white; font-size: 14px; margin-bottom: 6px; }
.process-desc { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }

.campus-life { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; cursor: pointer; transition: transform .2s; position: relative; }
.gallery-item:hover { transform: scale(1.02); z-index: 2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery-emoji { font-size: 42px; }
.gallery-caption { color: rgba(255,255,255,.92); font-size: 13px; font-weight: 600; text-align: left; }
.gallery-tag { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,.45); color: white; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 5px; backdrop-filter: blur(4px); letter-spacing: .3px; }
.gallery-colors { background: linear-gradient(135deg, #1A3A7A 0%, #0B1F4B 100%); }
.gallery-c2 { background: linear-gradient(135deg, #2D4A1E 0%, #1A2E10 100%); }
.gallery-c3 { background: linear-gradient(135deg, #6B2D2D 0%, #3D1A1A 100%); }
.gallery-c4 { background: linear-gradient(135deg, #1A3A5C 0%, #0B2240 100%); }
.gallery-c5 { background: linear-gradient(135deg, #2D2D6B 0%, #1A1A40 100%); }
.gallery-c6 { background: linear-gradient(135deg, #5C3D1A 0%, #3D2A10 100%); }

.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 40px; }
.ranking-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rank-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; }
.rank-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--navy); display: block; }
.rank-org { font-size: 12px; color: var(--text-muted); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.rank-year { font-size: 11px; color: var(--gold); font-weight: 700; margin-top: 4px; }
.research-list { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.research-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; display: flex; gap: 14px; align-items: flex-start; }
.research-icon { font-size: 28px; flex-shrink: 0; }
.research-title { font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.research-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.accreditations { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.accred-badge { background: var(--navy); color: var(--gold-light); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 100px; letter-spacing: .5px; }

.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.testimonial-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; position: relative; transition: all .2s; }
.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.testimonial-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 80px; color: var(--gold-pale); position: absolute; top: 10px; right: 20px; line-height: 1; pointer-events: none; }
.testimonial-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; }
.author-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.author-batch { font-size: 12px; color: var(--gold); }

footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin: 16px 0 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px; transition: all .2s; }
.social-btn:hover { background: var(--gold); color: var(--navy-deep); }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 13px; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }

.float-btn { position: fixed; bottom: 28px; right: 28px; background: var(--navy); color: white; border: none; border-radius: 50px; padding: 14px 24px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; box-shadow: 0 8px 32px rgba(11,31,75,.4); transition: all .2s; z-index: 500; display: flex; align-items: center; gap: 8px; }
.float-btn:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(4px); }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: 16px; padding: 36px; max-width: 480px; width: 100%; position: relative; }
.modal h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 8px; }
.modal p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--off-white); border: none; border-radius: 6px; width: 32px; height: 32px; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-form input, .modal-form select { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px; font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; transition: border-color .2s; }
.modal-form input:focus, .modal-form select:focus { border-color: var(--navy); }

/* Page hero (non-home pages) */
.page-hero { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%); padding: 72px 0 56px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; opacity: .05; background-image: repeating-linear-gradient(45deg, white 0, white 1px, transparent 0, transparent 50%); background-size: 32px 32px; }
.page-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); font-weight: 800; margin-bottom: 12px; }
.page-hero h1 em { font-style: normal; color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .placement-charts { grid-template-columns: 1fr; }
  .placement-process { grid-template-columns: repeat(2, 1fr); }
  .placement-process .process-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .placement-process .process-step::after { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; padding: 60px 24px; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .admission-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; aspect-ratio: 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .placement-process { grid-template-columns: 1fr; }
  .ranking-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; max-width: 280px; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; }
}
