/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  background: #060d2e;
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
}
:root {
  --navy: #0a1540;
  --red: #c0001e;
  --teal: #00c9b1;
  --light: #f4f7fc;
  --white: #ffffff;
  --muted: #6b7694;
  --border: #e4eaf6;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(10,21,64,0.08);
}

/* ============================================================
   SECTION 1: HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://your-server.com/images/hero-bg.jpg');
  background-size: cover; background-position: center 30%;
  filter: brightness(0.22) saturate(0.6);
}
.hero-overlay-left {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,rgba(6,13,46,0.98) 0%,rgba(10,21,64,0.92) 45%,rgba(6,13,46,0.55) 70%,rgba(6,13,46,0.2) 100%);
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  height: 180px;
  background: linear-gradient(to top,rgba(6,13,46,1) 0%,transparent 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.028) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.028) 1px,transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right,black 0%,black 50%,transparent 100%);
}
.hero-glow-red {
  position: absolute; z-index: 2; pointer-events: none;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle,rgba(192,0,30,0.22) 0%,transparent 70%);
  top: -80px; left: 30%;
  animation: pulseGlow 5s ease-in-out infinite alternate;
}
.hero-glow-blue {
  position: absolute; z-index: 2; pointer-events: none;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle,rgba(20,80,200,0.18) 0%,transparent 70%);
  bottom: -60px; left: 10%;
  animation: pulseGlow 7s 1s ease-in-out infinite alternate;
}
@keyframes pulseGlow {
  from { opacity: 0.5; transform: scale(1); }
  to { opacity: 1; transform: scale(1.12); }
}
.hero-nav {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(6,13,46,0.65); backdrop-filter: blur(16px);
  flex-wrap: wrap; gap: 12px;
  margin-top: 46px;
}
.nav-logo img { height: 40px; max-width: 160px; object-fit: contain; }
.nav-apply {
  background: var(--red); color: #fff; border: none; border-radius: 6px;
  padding: 11px 28px; font-size: 14px; font-weight: 700;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  box-shadow: 0 4px 20px rgba(192,0,30,0.45); transition: all 0.22s;
  text-decoration: none; display: inline-block; letter-spacing: 0.3px;
}
.nav-apply:hover { background: #e0001e; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,0,30,0.6); }
.hero-body {
  position: relative; z-index: 5;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 52px 52px 60px; gap: 44px; flex-wrap: wrap; flex: 1;
}
.hero-left {
  flex: 1; min-width: 280px; max-width: 600px;
  display: flex; flex-direction: column; gap: 28px;
}
.admissions-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 100px;
  background: rgba(192,0,30,0.18); border: 1px solid rgba(192,0,30,0.45);
  color: #ff5272; font-size: 12px; font-weight: 700; width: fit-content;
  letter-spacing: 0.4px; animation: fadeUp 0.6s ease both;
}
.admissions-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #ff5272;
  flex-shrink: 0; animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.15; } }
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px,4.6vw,56px);
  line-height: 1.07; color: #fff; letter-spacing: -0.5px;
  animation: fadeUp 0.6s 0.05s ease both;
}
.ai-tagline-wrap {
  display: flex; flex-direction: column; gap: 0;
  animation: fadeUp 0.6s 0.1s ease both;
  padding: 18px 22px;
  border-left: 3px solid #5ee6d0;
  background: linear-gradient(100deg,rgba(94,230,208,0.07) 0%,transparent 80%);
  border-radius: 0 10px 10px 0;
}
.ai-tagline-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: #5ee6d0; margin-bottom: 8px;
}
.ai-tagline-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px,2.2vw,24px); color: #fff; line-height: 1.3;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.ai-dot-sep { color: #5ee6d0; font-size: 20px; line-height: 1; }
.ai-word-highlight { color: #5ee6d0; }
.partner-logos-strip {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.14s ease both;
}
.partner-logos-strip .pl-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-right: 4px;
}
.partner-logo-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75); font-size: 12px; font-weight: 600;
}
.pills-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: -4px;
}
.pills-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.pill {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500;
  transition: all 0.22s; backdrop-filter: blur(6px);
}
.pill:hover { border-color: rgba(94,230,208,0.35); background: rgba(94,230,208,0.06); color: #fff; transform: translateY(-1px); }
.pill-icon { font-size: 18px; flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border-radius: 8px; }
.hero-form-wrap {
  width: 355px; min-width: 290px; flex-shrink: 0;
  animation: fadeUp 0.6s 0.18s ease both;
}
.form-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55),0 0 0 1px rgba(255,255,255,0.06);
}
.form-header {
  background: linear-gradient(130deg,#0a1540 0%,#122060 50%,#c0001e 160%);
  padding: 22px 26px 18px; position: relative; overflow: hidden;
}
.form-header::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,0.05);
}
.form-header-title { font-family: 'DM Serif Display',serif; font-size: 20px; color: #fff; position: relative; z-index: 1; }
.form-header-sub { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; line-height: 1.5; position: relative; z-index: 1; }
.form-body { padding: 20px 24px 22px; display: flex; flex-direction: column; gap: 10px; }
.form-input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: 14px; font-family: 'DM Sans',sans-serif;
  color: #111; background: #fff; outline: none;
  transition: border-color 0.2s,box-shadow 0.2s;
}
.form-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,0,30,0.1); }
.form-input::placeholder { color: #9ca3af; }
.form-select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: 14px; font-family: 'DM Sans',sans-serif;
  color: #111; background: #fff; outline: none;
  transition: border-color 0.2s; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-select:focus { border-color: var(--red); }
.form-submit {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg,#c0001e 0%,#8b0014 100%);
  color: #fff; border: none; border-radius: 8px;
  font-size: 15px; font-weight: 700; font-family: 'DM Sans',sans-serif;
  cursor: pointer; box-shadow: 0 4px 18px rgba(192,0,30,0.35);
  transition: all 0.22s; margin-top: 2px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,0,30,0.55); }
.form-trust {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 24px; border-top: 1px solid #f3f4f6;
  font-size: 12px; color: #6b7280;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media(max-width:880px) {
  .hero-nav { padding: 14px 24px; }
  .hero-body { flex-direction: column; padding: 36px 24px 48px; }
  .hero-form-wrap { width: 100%; max-width: 480px; }
  .pills-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:500px) {
  .hero-nav { padding: 12px 16px; }
  .hero-body { padding: 28px 16px 40px; }
  .hero-headline { font-size: 32px; }
  .pills-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 2: IILMEEE TICKER
   ============================================================ */
.ls-eee-ticker {
  background: linear-gradient(90deg,#0a1628 0%,#1a3a6e 100%);
  border-top: 3px solid #e8232a; border-bottom: 3px solid #e8232a;
  overflow: hidden; white-space: nowrap;
  position: fixed; top: 0; z-index: 9999999; width: 100%;
}
.ls-eee-ticker-inner {
  display: inline-flex; align-items: center;
  animation: ls-marquee 30s linear infinite;
}
.ls-eee-ticker-inner:hover { animation-play-state: paused; }
@keyframes ls-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ls-eee-ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 36px; color: #fff; font-size: 0.87rem; font-weight: 600;
  white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.1);
}
.t-label { color: rgba(255,255,255,0.42); font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.t-value { color: #fff; font-weight: 700; }
.t-highlight { color: #f5c842; font-weight: 800; }
.t-badge {
  background: #e8232a; color: #fff; font-size: 0.68rem; font-weight: 800;
  padding: 3px 10px; border-radius: 50px; letter-spacing: 0.4px;
  animation: ls-blink 1.8s ease-in-out infinite;
}
@keyframes ls-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }

/* ============================================================
   SECTION 3: IILMEEE BANNER
   ============================================================ */
.eee-banner {
  background: #fff; font-family: 'DM Sans', sans-serif;
  padding: 52px 20px 44px; overflow: hidden;
}
.eee-banner-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.eee-tag {
  display: inline-block; background: rgba(232,35,42,0.08); color: #e8232a;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.eee-banner-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem,2.4vw,1.75rem); font-weight: 700;
  color: #0a1628; line-height: 1.3; margin-bottom: 10px;
}
.eee-banner-left p { color: #666; font-size: 0.92rem; line-height: 1.75; max-width: 500px; }
.eee-details {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px;
}
.eee-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: #f4f7fc; border: 1px solid #e4eaf6;
  border-radius: 8px; padding: 9px 14px;
  font-size: 13px; font-weight: 600; color: #0a1628;
}
.eee-chip .chip-label { font-size: 10px; color: #8892a4; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; display: block; }
.eee-chip .chip-val { font-size: 13px; font-weight: 700; color: #0a1540; }
.eee-banner-right { }
.eee-right-panel {
  background: linear-gradient(135deg, #0a1540 0%, #1a3368 100%);
  border-radius: 16px; padding: 28px 26px;
  position: relative; overflow: hidden; height: 100%;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: 0 12px 40px rgba(10,21,64,0.18);
}
.eee-right-panel::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(192,0,30,0.12);
}
.eee-right-panel::after {
  content: ''; position: absolute; bottom: -30px; left: -20px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.eee-right-header { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.eee-right-label { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: 0.5px; }
.eee-right-badge { background: #c0001e; color: #fff; font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.5px; animation: ls-blink 1.8s ease-in-out infinite; }
.eee-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; z-index: 1; }
.eee-stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 14px 12px; text-align: center; }
.eee-stat-icon { font-size: 20px; margin-bottom: 5px; }
.eee-stat-val { font-size: 17px; font-weight: 800; color: #fff; line-height: 1; }
.eee-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.55); margin-top: 3px; }
.eee-how-steps { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.eee-how-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #f9c74f; margin-bottom: 4px; }
.eee-step { display: flex; align-items: flex-start; gap: 10px; }
.eee-step-num { width: 22px; height: 22px; border-radius: 50%; background: #c0001e; color: #fff; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.eee-step-text { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.eee-step-text strong { color: #fff; }
.eee-cta-btn {
  display: block; text-align: center; background: #c0001e; color: #fff;
  font-size: 13px; font-weight: 700; padding: 13px 20px; border-radius: 8px;
  text-decoration: none; box-shadow: 0 4px 16px rgba(192,0,30,0.4);
  transition: all 0.22s; position: relative; z-index: 1; letter-spacing: 0.3px;
}
.eee-cta-btn:hover { background: #e0001e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,0,30,0.55); }
@media(max-width:760px) {
  .eee-banner-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   SECTION 4: WHY IILM
   ============================================================ */
.why-section { background: #f4f7fc; padding: 72px 20px 68px; overflow: hidden; }
.why-inner { max-width: 1100px; margin: 0 auto; }
.section-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 18px; border-radius: 20px; margin-bottom: 16px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px,3.4vw,38px); font-weight: 700;
  color: #0d1b4b; line-height: 1.2; margin-bottom: 10px;
}
.section-divider { width: 52px; height: 4px; background: var(--red); border-radius: 2px; margin-bottom: 14px; }
.section-subtitle { font-size: 15px; color: #5a6272; max-width: 620px; line-height: 1.75; }
.why-header { text-align: center; margin-bottom: 44px; }
.why-header .section-divider { margin: 0 auto 14px; }
.why-header .section-subtitle { margin: 0 auto; }
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px,100%), 1fr));
  gap: 22px; margin-bottom: 44px;
}
.why-card {
  background: #fff; border-radius: 16px; padding: 28px 24px 24px;
  box-shadow: 0 2px 16px rgba(13,27,75,0.07); border-top: 4px solid var(--red);
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,27,75,0.13); }
.why-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.why-card h4 { font-size: 16px; font-weight: 700; color: #0d1b4b; margin-bottom: 10px; line-height: 1.3; }
.why-card p { font-size: 14px; color: #5a6272; line-height: 1.75; }
.stats-band {
  background: linear-gradient(135deg,#0d1b4b 0%,#1a3a8f 100%);
  border-radius: 16px; padding: 36px 32px; position: relative; overflow: hidden;
}
.stats-band::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.stats-band::after { content: ''; position: absolute; bottom: -40px; left: 20%; width: 160px; height: 160px; border-radius: 50%; background: rgba(192,0,30,0.1); }
.stats-band-label { text-align: center; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #f9c74f; margin-bottom: 28px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px,100%), 1fr));
  gap: 20px; position: relative; z-index: 1;
}
.stat-item { text-align: center; padding: 18px 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; transition: background 0.2s; }
.stat-item:hover { background: rgba(255,255,255,0.1); }
.stat-num { font-size: 26px; font-weight: 900; color: #fff; line-height: 1; }
.stat-text { font-size: 11.5px; color: #b8c6e0; margin-top: 5px; line-height: 1.4; }

/* Why section campus image strip */
.why-img-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px,100%), 1fr));
  gap: 14px; margin-top: 36px;
}
.why-img-item {
  border-radius: 12px; overflow: hidden; position: relative;
  aspect-ratio: 4/3; background: linear-gradient(135deg,#1a2a5e,#0a1540);
  cursor: pointer;
}
.why-img-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.why-img-item:hover img { transform: scale(1.06); }
.why-img-item.img-placeholder { background: linear-gradient(135deg,#1a2a5e 0%,#0a1540 100%); display: flex; align-items: center; justify-content: center; }
.why-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,13,46,0.9) 0%, transparent 100%);
  padding: 20px 14px 10px;
}
.why-img-caption span { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 0.3px; }
@media(max-width:600px) { .why-img-strip { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   SECTION 5: VISION & MISSION — Premium redesign
   ============================================================ */
.vm-section { background: #fff; padding: 72px 20px 80px; overflow: hidden; }
.vm-inner { max-width: 1100px; margin: 0 auto; }
.vm-header { text-align: center; margin-bottom: 52px; }
.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px,100%), 1fr));
  gap: 28px; margin-bottom: 28px;
}
.vm-vision {
  background: var(--navy); border-radius: 18px; padding: 40px 32px;
  position: relative; overflow: hidden;
}
.vm-vision::before { content: ''; position: absolute; top: -30px; right: -30px; width: 140px; height: 140px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.vm-vision::after { content: ''; position: absolute; bottom: -20px; left: -20px; width: 90px; height: 90px; border-radius: 50%; background: rgba(255,255,255,0.03); }
.vm-vision-emoji { font-size: 2.4rem; margin-bottom: 14px; position: relative; z-index: 1; display: block; }
.vm-vision-badge { display: inline-block; background: #f9c74f; color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 16px; position: relative; z-index: 1; }
.vm-vision p { font-size: 14.5px; color: rgba(255,255,255,0.85); line-height: 1.82; position: relative; z-index: 1; }
.vm-vision p strong { color: #f9c74f; }
.vm-mission { background: var(--light); border-radius: 18px; padding: 40px 32px; border: 1px solid var(--border); }
.vm-mission-emoji { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.vm-mission-badge { display: inline-block; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 18px; }
.vm-m-item { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.vm-m-item:last-child { margin-bottom: 0; }
.vm-m-num { min-width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vm-m-num.vm-num-red { background: var(--red); }
.vm-m-item p { font-size: 13px; color: #3a4a6b; line-height: 1.72; }
.vm-tagline {
  background: linear-gradient(100deg, var(--navy) 0%, #1a3a8f 100%);
  border-radius: 14px; padding: 22px 32px;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 14px; text-align: center;
}
.vm-tagline-text { font-family: 'DM Serif Display', serif; font-size: 18px; color: #fff; letter-spacing: 0.3px; }
.vm-tagline-dot { color: #f9c74f; font-size: 20px; }
@media(max-width:600px) { .vm-mission { padding: 28px 20px; } .vm-vision { padding: 28px 20px; } }

/* ============================================================
   SECTION 6: PROGRAMS OFFERED — Rich visual redesign
   ============================================================ */
.programs-section { background: var(--light); padding: 80px 20px 90px; overflow: hidden; }
.programs-inner { max-width: 1140px; margin: 0 auto; }
.programs-header { text-align: center; margin-bottom: 56px; }
.programs-header .section-divider { margin: 0 auto 14px; }
.campus-block { margin-bottom: 52px; }
.campus-block-head {
  background: linear-gradient(100deg, var(--navy) 0%, #1a336e 100%);
  border-radius: 14px 14px 0 0; padding: 18px 28px;
  display: flex; align-items: center; gap: 14px;
}
.campus-block-icon { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.campus-block-title { font-size: 17px; font-weight: 800; color: #fff; }
.campus-block-sub { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.campus-block-body { background: #fff; border: 1px solid var(--border); border-top: none; border-radius: 0 0 14px 14px; padding: 32px; }
.prog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px,100%), 1fr));
  gap: 20px;
}
/* Programme dept divider row */
.prog-dept-divider {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px; margin-top: 4px;
}
.prog-dept-divider h3 { font-size: 13px; font-weight: 800; color: var(--navy); letter-spacing: 0.3px; white-space: nowrap; }
.prog-dept-bar { width: 4px; height: 26px; border-radius: 3px; flex-shrink: 0; }
.prog-dept-bar.navy { background: linear-gradient(180deg, var(--navy), #1a3a8f); }
.prog-dept-bar.red-bar { background: linear-gradient(180deg, #7b1a1a, var(--red)); }
.prog-dept-line { flex: 1; height: 1px; background: var(--border); }

/* Rich program card */
.prog-card-new { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 16px rgba(10,21,64,0.09); border: 1px solid var(--border); transition: transform 0.25s, box-shadow 0.25s; }
.prog-card-new:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(10,21,64,0.14); }
.prog-card-head-rich {
  padding: 22px 22px 18px; position: relative; overflow: hidden;
}
.prog-card-head-rich::after { content: ''; position: absolute; bottom: -24px; right: -24px; width: 90px; height: 90px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.prog-card-head-rich.navy { background: linear-gradient(135deg, #0a1540 0%, #1a3a8a 100%); }
.prog-card-head-rich.teal { background: linear-gradient(135deg, #006b8f 0%, #00c9b1 100%); }
.prog-card-head-rich.red { background: linear-gradient(135deg, #7b1a1a 0%, #c0001e 100%); }
.prog-card-head-rich.dark { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.prog-card-head-rich.purple { background: linear-gradient(135deg, #3d1a6e 0%, #5a2a8e 100%); }
.prog-card-emoji { font-size: 2rem; display: block; margin-bottom: 8px; position: relative; z-index: 1; }
.prog-card-level-badge { display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.9); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; margin-bottom: 8px; position: relative; z-index: 1; }
.prog-card-head-rich h3 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 3px; line-height: 1.3; position: relative; z-index: 1; }
.prog-card-head-rich .prog-dept-sub { font-size: 11px; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.prog-card-body-new { padding: 20px 22px; }
.prog-credits-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.prog-credit-pill { background: var(--light); border: 1.5px solid var(--border); border-radius: 8px; padding: 7px 12px; display: flex; flex-direction: column; align-items: center; }
.prog-credit-pill .cp-num { font-size: 18px; font-weight: 900; color: var(--navy); line-height: 1; }
.prog-credit-pill .cp-lbl { font-size: 10px; color: var(--muted); font-weight: 600; }
.prog-section-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); margin-bottom: 10px; display: block; }
.prog-spec-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.prog-spec-tag { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; line-height: 1.3; }
.prog-spec-tag.blue { background: rgba(10,21,64,0.08); color: var(--navy); }
.prog-spec-tag.red-t { background: rgba(192,0,30,0.08); color: var(--red); }
.prog-spec-tag.teal-t { background: rgba(0,201,177,0.1); color: #007a6e; }
.prog-spec-tag.dark { background: #f0f2f8; color: #3a4a6b; }
.prog-info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.prog-info-item:last-child { margin-bottom: 0; }
.prog-info-item-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }
.prog-info-item h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.prog-info-item p { font-size: 12px; color: var(--muted); line-height: 1.6; }
.prog-hr { border: none; border-top: 1px solid var(--border); margin: 14px 0; }

/* ============================================================
   SECTION 7: LABS & INFRASTRUCTURE
   ============================================================ */
.labs-section { background: #fff; padding: 72px 20px 80px; overflow: hidden; }
.labs-inner { max-width: 1100px; margin: 0 auto; }
.labs-header { text-align: center; margin-bottom: 48px; }
.labs-header .section-divider { margin: 0 auto 14px; }
.labs-summary-strip {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  margin-bottom: 44px;
}
.labs-summary-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--light); border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 20px;
}
.labs-summary-num { font-size: 20px; font-weight: 900; color: var(--navy); }
.labs-summary-label { font-size: 12px; color: var(--muted); font-weight: 600; }

/* Labs hero banner image */
.labs-hero-img {
  width: 100%; border-radius: 16px; overflow: hidden; position: relative;
  margin-bottom: 36px; max-height: 280px;
  background: linear-gradient(135deg,#0a1540,#1a3a8f);
}
.labs-hero-img img { width: 100%; height: 280px; object-fit: cover; display: block; filter: brightness(0.5); }
.labs-hero-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 28px 36px;
  background: linear-gradient(to top, rgba(10,21,64,0.92) 0%, rgba(10,21,64,0.2) 60%, transparent 100%);
}
.labs-hero-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.labs-hero-title { font-family: 'DM Serif Display',serif; font-size: clamp(18px,2.5vw,26px); color: #fff; line-height: 1.2; margin-bottom: 8px; }
.labs-hero-sub { font-size: 13px; color: rgba(255,255,255,0.7); }
.labs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px,100%), 1fr));
  gap: 20px;
}
.lab-card {
  background: #f8faff; border: 1px solid var(--border); border-radius: 14px;
  padding: 24px 22px; transition: all 0.22s; position: relative; overflow: hidden;
}
.lab-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); border-radius: 2px 2px 0 0; }
.lab-card:hover { box-shadow: 0 10px 32px rgba(10,21,64,0.1); transform: translateY(-3px); }
.lab-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.lab-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.lab-card p { font-size: 13px; color: #5a6272; line-height: 1.7; }
.lab-tag { display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 700; color: var(--red); background: rgba(192,0,30,0.08); padding: 3px 10px; border-radius: 20px; }

/* ============================================================
   SECTION 8: INDUSTRY ACADEMIES
   ============================================================ */
.academies-section { background: var(--light); padding: 72px 20px 68px; overflow: hidden; }
.academies-inner { max-width: 1100px; margin: 0 auto; }
.academies-header { text-align: center; margin-bottom: 44px; }
.academies-header .section-divider { margin: 0 auto 14px; }
.academies-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(120px,100%),1fr));
  gap: 12px; margin-bottom: 36px;
}
/* Hero campus thumbnail */
.hero-campus-thumb {
  position: relative; border-radius: 12px; overflow: hidden;
  max-height: 160px; border: 1px solid rgba(255,255,255,0.12);
  animation: fadeUp 0.6s 0.28s ease both;
}
.hero-campus-thumb img { width: 100%; height: 160px; object-fit: cover; display: block; filter: brightness(0.7); }
.hero-campus-thumb-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 14px 16px;
  background: linear-gradient(to top, rgba(6,13,46,0.85) 0%, transparent 60%);
}
.hero-campus-thumb-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #5ee6d0; margin-bottom: 3px; }
.hero-campus-thumb-text { font-size: 13px; font-weight: 700; color: #fff; }

/* ============================================================
   SECTION 9: PLACEMENTS
   ============================================================ */
.placements-section { background: #fff; padding: 72px 20px 80px; overflow: hidden; }
.placements-inner { max-width: 1120px; margin: 0 auto; }
.pl-header { text-align: center; margin-bottom: 44px; }
.pl-header .section-divider { margin: 0 auto 14px; }
.pl-stats-band {
  background: var(--navy); border-radius: var(--radius);
  padding: 36px 40px; margin-bottom: 40px;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr; align-items: center;
  position: relative; overflow: hidden; gap: 24px;
}
.pl-stats-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--red),#ff3355,var(--red)); }
.pl-year { padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.12); }
.pl-year-label { font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.pl-year-val { font-size: 18px; font-weight: 800; color: #fff; }
.pl-stat-item { text-align: center; }
.pl-stat-num { font-size: 32px; font-weight: 900; color: #fff; line-height: 1; }
.pl-stat-unit { font-size: 16px; font-weight: 700; color: #f9c74f; }
.pl-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 5px; }
.pl-bottom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px,100%),1fr));
  gap: 28px;
}
.pl-card { background: var(--light); border-radius: 14px; padding: 28px 24px; border: 1px solid var(--border); }
.pl-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.pl-roles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pl-role { font-size: 13px; color: #4a5568; display: flex; align-items: center; gap: 6px; }
.pl-role::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.pl-support-list { display: flex; flex-direction: column; gap: 12px; }
.pl-support-item { display: flex; align-items: flex-start; gap: 12px; }
.pl-support-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.pl-support-text { font-size: 13px; color: #4a5568; line-height: 1.6; }
.pl-support-text strong { color: var(--navy); display: block; font-size: 14px; margin-bottom: 2px; }
@media(max-width:680px) {
  .pl-stats-band { grid-template-columns: 1fr 1fr; }
  .pl-year { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-right: 0; padding-bottom: 20px; grid-column: 1/-1; }
}

/* ============================================================
   SECTION 10: INDUSTRY INTEGRATION
   ============================================================ */
.industry-section { background: var(--light); padding: 72px 20px 68px; overflow: hidden; }
.industry-inner { max-width: 1100px; margin: 0 auto; }
.industry-header { text-align: center; margin-bottom: 44px; }
.industry-header .section-divider { margin: 0 auto 14px; }
.industry-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(160px,100%),1fr));
  gap: 14px; margin-bottom: 40px;
}
.ind-partner-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 20px 16px; text-align: center; transition: all 0.2s;
}
.ind-partner-card:hover { border-color: var(--teal); box-shadow: 0 6px 20px rgba(0,201,177,0.1); transform: translateY(-2px); }
.ind-partner-logo { width: 48px; height: 48px; object-fit: contain; margin: 0 auto 10px; display: block; }
.ind-partner-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.ind-partner-tag { font-size: 11px; color: var(--muted); margin-top: 4px; }
.ind-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px,100%),1fr));
  gap: 18px;
}
.ind-feature { background: #fff; border-radius: 12px; padding: 22px 20px; border: 1px solid var(--border); display: flex; align-items: flex-start; gap: 14px; }
.ind-feature-icon { font-size: 24px; flex-shrink: 0; }
.ind-feature h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.ind-feature p { font-size: 13px; color: #5a6272; line-height: 1.65; }

/* Campus image strip */
.campus-img-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px,100%),1fr));
  gap: 14px; margin: 32px 0;
}
.campus-img-card { border-radius: 12px; overflow: hidden; position: relative; aspect-ratio: 4/3; background: linear-gradient(135deg,#e4eaf6,#d0d8f0); }
.campus-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.campus-img-card:hover img { transform: scale(1.04); }
.campus-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,21,64,0.85), transparent);
  color: #fff; font-size: 12px; font-weight: 700; padding: 18px 14px 10px;
}
/* Recruiter logos strip */
.recruiters-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(120px,100%),1fr));
  gap: 10px; margin-top: 32px;
}
.recruiter-logo-card {
  background: var(--light); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 10px; display: flex; align-items: center; justify-content: center; min-height: 52px;
  transition: all 0.2s;
}
.recruiter-logo-card:hover { border-color: var(--navy); box-shadow: 0 3px 10px rgba(10,21,64,0.1); }
.recruiter-logo-card img { height: 22px; width: auto; max-width: 80px; object-fit: contain; }
/* Academy logo card */
.academy-logo-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 16px 12px; text-align: center; transition: all 0.2s;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.academy-logo-card:hover { border-color: var(--red); box-shadow: 0 4px 16px rgba(192,0,30,0.1); transform: translateY(-2px); }
.academy-logo-card img { height: 30px; width: auto; max-width: 90px; object-fit: contain; display: block; }
.academy-logo-card .ac-name { font-size: 11px; font-weight: 700; color: var(--navy); line-height: 1.3; }
/* Alumni company logo */
.alumni-co-logo { height: 20px; width: auto; max-width: 80px; object-fit: contain; display: block; margin-bottom: 6px; }
/* Hero campus visual */
.hero-campus-img {
  width: 100%; border-radius: 12px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35); position: relative; margin-top: 16px;
}
.hero-campus-img img { width: 100%; display: block; border-radius: 12px; max-height: 200px; object-fit: cover; }

/* ============================================================
   SECTION 11: STUDENT CHAPTERS
   ============================================================ */
.chapters-section { background: #fff; padding: 68px 20px; overflow: hidden; }
.chapters-inner { max-width: 1100px; margin: 0 auto; }
.chapters-header { text-align: center; margin-bottom: 44px; }
.chapters-header .section-divider { margin: 0 auto 14px; }
.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px,100%),1fr));
  gap: 20px;
}
.chapter-card {
  background: var(--light); border: 1px solid var(--border); border-radius: 14px;
  padding: 24px 22px; transition: all 0.22s;
}
.chapter-card:hover { box-shadow: 0 8px 28px rgba(10,21,64,0.1); transform: translateY(-2px); }
.chapter-badge { font-size: 11px; font-weight: 800; color: var(--red); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.chapter-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.chapter-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.chapter-card ul li { font-size: 13px; color: #5a6272; display: flex; align-items: flex-start; gap: 7px; line-height: 1.55; }
.chapter-card ul li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   SECTION 12: GLOBAL PARTNERS
   ============================================================ */
.global-section { background: var(--navy); padding: 72px 20px 68px; overflow: hidden; }
.global-inner { max-width: 1100px; margin: 0 auto; }
.global-header { text-align: center; margin-bottom: 44px; }
.global-header .section-badge { background: rgba(255,255,255,0.12); color: #fff; }
.global-header .section-title { color: #fff; }
.global-header .section-divider { margin: 0 auto 14px; background: var(--teal); }
.global-header .section-subtitle { color: rgba(255,255,255,0.65); margin: 0 auto; max-width: 620px; }
.global-unis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(180px,100%),1fr));
  gap: 16px; margin-bottom: 36px;
}
.global-uni-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 20px 16px; text-align: center;
  backdrop-filter: blur(8px); transition: background 0.25s, transform 0.25s, border-color 0.25s;
}
.global-uni-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); border-color: rgba(0,201,177,0.45); }
.gp-logo-wrap {
  height: 64px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; background: rgba(255,255,255,0.94);
  border-radius: 10px; padding: 10px 14px;
}
.gp-logo-wrap img { max-width: 100%; max-height: 44px; object-fit: contain; display: block; }
.global-uni-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 4px; }
.global-uni-country { font-size: 12px; color: rgba(255,255,255,0.5); }
.global-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px,100%),1fr));
  gap: 24px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 28px 32px;
}
.global-feature { text-align: center; }
.global-feature-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.global-feature h4 { color: var(--teal); font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.global-feature p { color: rgba(255,255,255,0.6); font-size: 12.5px; line-height: 1.6; }

/* ============================================================
   SECTION 13: ALUMNI
   ============================================================ */
.alumni-section { background: #fff; padding: 72px 20px 80px; overflow: hidden; }
.alumni-inner { max-width: 1120px; margin: 0 auto; }
.alumni-header { text-align: center; margin-bottom: 44px; }
.alumni-header .section-divider { margin: 0 auto 14px; }
.alumni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px,100%),1fr));
  gap: 16px; margin-bottom: 40px;
}
.alumni-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow); padding: 22px 18px 18px;
  transition: transform 0.25s, box-shadow 0.25s; position: relative; overflow: hidden;
}
.alumni-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy), var(--red)); }
.alumni-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,21,64,0.12); }
.alumni-company { font-size: 13px; font-weight: 800; color: var(--red); margin-bottom: 10px; }
.alumni-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.alumni-batch { font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.alumni-role { font-size: 13px; color: #4a5568; line-height: 1.5; }
.alumni-location { font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ============================================================
   SECTION 14: IILM ADVANTAGE
   ============================================================ */
.advantage-section { background: var(--light); padding: 68px 20px; overflow: hidden; }
.advantage-inner { max-width: 1100px; margin: 0 auto; }
.advantage-header { text-align: center; margin-bottom: 44px; }
.advantage-header .section-divider { margin: 0 auto 14px; }
.adv-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.adv-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 540px; }
.adv-table thead tr { background: linear-gradient(100deg, var(--navy) 0%, #1a336e 100%); }
.adv-table thead th { color: #fff; font-size: 13px; padding: 16px 20px; text-align: left; font-weight: 700; letter-spacing: 0.4px; }
.adv-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.adv-table tbody tr:hover { background: #f8faff; }
.adv-table tbody td { padding: 14px 20px; font-size: 13px; color: #4a5568; vertical-align: top; }
.adv-table tbody td:first-child { color: var(--navy); font-weight: 600; }
.adv-check { color: #16a34a; font-weight: 700; }
.adv-cross { color: #9ca3af; }

/* ============================================================
   SECTION 15: CAMPUS LIFE
   ============================================================ */
.campus-section { background: #fff; padding: 72px 20px 80px; overflow: hidden; }
.campus-inner { max-width: 1100px; margin: 0 auto; }
.campus-header { text-align: center; margin-bottom: 44px; }
.campus-header .section-divider { margin: 0 auto 14px; }
.campus-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px,100%),1fr));
  gap: 20px;
}
.campus-feature-card {
  background: var(--light); border: 1px solid var(--border); border-radius: 14px;
  padding: 26px 22px; transition: all 0.22s;
}
.campus-feature-card:hover { box-shadow: 0 8px 28px rgba(10,21,64,0.1); transform: translateY(-2px); }
.campus-feature-icon { font-size: 30px; margin-bottom: 14px; display: block; }
.campus-feature-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.campus-feature-card p { font-size: 13px; color: #5a6272; line-height: 1.7; }
.campus-tag { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 700; color: var(--teal); background: rgba(0,201,177,0.1); padding: 3px 10px; border-radius: 20px; }

/* ============================================================
   FOOTER CTA
   ============================================================ */
.footer-cta {
  background: linear-gradient(135deg, #0a1540 0%, #1a3a8f 60%, #c0001e 150%);
  padding: 72px 20px 80px; text-align: center; position: relative; overflow: hidden;
}
.footer-cta::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.footer-cta::after { content: ''; position: absolute; bottom: -60px; left: 5%; width: 240px; height: 240px; border-radius: 50%; background: rgba(192,0,30,0.12); }
.footer-cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.footer-cta-tag { display: inline-block; background: rgba(249,199,79,0.15); border: 1px solid rgba(249,199,79,0.4); color: #f9c74f; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 18px; border-radius: 50px; margin-bottom: 20px; }
.footer-cta h2 { font-family: 'DM Serif Display',serif; font-size: clamp(28px,4vw,46px); color: #fff; line-height: 1.15; margin-bottom: 16px; }
.footer-cta p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 520px; margin: 0 auto 32px; }
.footer-cta-btn {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 16px; font-weight: 700; padding: 16px 48px; border-radius: 8px;
  text-decoration: none; box-shadow: 0 6px 24px rgba(192,0,30,0.45);
  transition: all 0.22s; letter-spacing: 0.3px;
}
.footer-cta-btn:hover { background: #e0001e; transform: translateY(-3px); box-shadow: 0 12px 36px rgba(192,0,30,0.6); }
.footer-legal { margin-top: 28px; font-size: 13px; color: rgba(255,255,255,0.4); }