﻿/* ==== RESET & THEME ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2563eb;
  --primary-soft: #38bdf8;
  --accent: #22c55e;
  --dark: #0f172a;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --radius-xl: 20px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.09);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ==== LAYOUT CONTAINER ==== */
/* à¦à¦–à¦¾à¦¨à§‡ à¦«à¦¾à¦‡à¦¨à¦¾à¦² à¦¸à¦®à¦¾à¦§à¦¾à¦¨: à¦¬à§œ à¦¸à§à¦•à§à¦°à¦¿à¦¨à§‡ 1320px, à¦›à§‹à¦Ÿ à¦¸à§à¦•à§à¦°à¦¿à¦¨à§‡ à¦ªà§à¦°à§‹ width
   à¦¤à¦¾à¦‡ à¦¦à§à¦‡ à¦ªà¦¾à¦¶à§‡ à¦«à¦¾à¦à¦•à¦¾ à¦•à¦® à¦¹à¦¬à§‡ à¦•à¦¿à¦¨à§à¦¤à§ à¦†à¦¬à¦¾à¦° à¦…à¦¨à§‡à¦• à¦¬à§œà¦“ à¦²à¦¾à¦—à¦¬à§‡ à¦¨à¦¾ */
.container {
  width: min(1320px, 100% - 3rem);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

/* ==== NAVBAR ==== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5f2ff;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
}

.nav-links a {
  color: #cbd5f5;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  background: rgba(148, 163, 184, 0.2);
  color: #ffffff;
}

.nav-links a.active {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45);
}

.nav-links a.active {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45);
}

/* ==== HERO (à¦¸à¦¬ à¦ªà§‡à¦œà§‡ à¦¬à§à¦¯à¦¬à¦¹à¦¾à¦°à¦¯à§‹à¦—à§à¦¯) ==== */
.hero {
  padding: 80px 0 72px;
  background: radial-gradient(circle at top left, #38bdf8 0, #2563eb 40%, #0f172a 100%);
  color: #e0f2fe;
}

/* HERO background + dark overlay */
.hero--home {
  position: relative;
  overflow: hidden;
  min-height: 80vh; /* keep video roomy but not overly tall */
  background:
    /* overlayà¦Ÿà¦¾ à¦à¦•à¦Ÿà§ à¦¬à§‡à¦¶à¦¿ à¦¡à¦¾à¦°à§à¦• à¦•à¦°à¦²à¦¾à¦® */
    linear-gradient(120deg, rgba(6, 10, 18, 0.68), rgba(6, 10, 18, 0.78));
}

/* Background video used only on larger screens; positioned behind content */
.hero--home .hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center 38%; /* keep key action in frame */
  z-index: 0;
  pointer-events: none;
}

/* Mobile: swap to a lightweight hero image and hide video */
@media (max-width: 720px) {
  .hero--home {
    background: linear-gradient(120deg, rgba(6,10,18,0.46), rgba(6,10,18,0.62)); /* lightweight fallback on mobile */
    min-height: auto;
  }
  .hero--home .hero-bg-video { display: none !important; }
}

/* Desktop: show background video if present and keep overlay */
@media (min-width: 721px) {
  .hero--home .hero-bg-video { display: block; }
  .hero--home::before { content: ""; position: absolute; inset: 0; background: rgba(6,9,16,0.16); z-index: 0; }
  .hero--home .container { position: relative; z-index: 1; }
}

.hero--growth {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(6, 10, 18, 0.64), rgba(6, 10, 18, 0.78)),
    url("images/tracking.gif") center top/cover no-repeat; /* fallback if video fails */
  color: #e0f2fe;
  padding: 120px 0 140px; /* extra height so the full GIF fits without cropping */
  min-height: 82vh; /* give the video enough vertical room to fit without letterboxing */
}
.hero--growth::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22); /* darker overlay to keep text readable over video */
  z-index: 1;
}
.hero--growth .container {
  position: relative;
  z-index: 2;
}
.hero--growth .hero-tag {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(226, 232, 240, 0.7);
  color: #e2e8f0;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.hero--growth .hero-grid {
  align-items: flex-start; /* lift text while letting the card sit lower */
}
.hero--growth .hero-visual {
  margin-top: 140px;
  align-self: flex-end;
}
.hero--growth .hero-bg-video--growth {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 36%; /* keep the focal point framed instead of cropping the top */
  z-index: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero--growth .hero-bg-video--growth { display: none; }
}

@media (max-width: 1024px) {
  .hero--growth {
    padding: 120px 0 170px;
    min-height: 76vh;
  }
  .hero--growth .hero-bg-video--growth {
    object-position: center 30%;
  }
  .hero--growth .hero-visual {
    margin-top: 110px;
  }
}

@media (max-width: 720px) {
  .hero--growth {
    padding: 110px 0 140px;
    min-height: 70vh;
  }
  .hero--growth .hero-bg-video--growth {
    object-position: center 26%;
  }
  .hero--growth .hero-visual {
    margin-top: 52px;
    align-self: start;
  }
}

.hero--campus {
  position: relative;
  background: linear-gradient(135deg, #0ea5e9 0%, #1d4ed8 45%, #0f172a 100%);
  color: #e0f2fe;
}
.hero--campus .container { position: relative; z-index: 1; }

.hero--mission {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(6, 10, 18, 0.64), rgba(6, 10, 18, 0.76));
  color: #e0f2fe;
  padding: 160px 0 120px; /* add breathing room so the video and text avoid cropping */
  min-height: 88vh;
}
.hero--mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 16, 0.08); /* lighter overlay so the video stays clear */
  z-index: 1;
}
.hero--mission .container { position: relative; z-index: 2; }
.hero--mission .hero-grid {
  background: transparent;
  color: #e0f2fe;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  gap: 32px;
}
.hero--mission .hero-title { color: #f8fafc; text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.hero--mission .hero-eyebrow { color: #a5f3fc; text-shadow: 0 1px 10px rgba(0,0,0,0.35); }
.hero--mission .hero-text { color: #e2e8f0; text-shadow: 0 1px 12px rgba(0,0,0,0.3); }
.hero--mission .hero-tag {
  background: rgba(6, 10, 18, 0.55);
  border-color: rgba(224, 242, 254, 0.4);
  color: #e0f2fe;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}
.hero--mission .hero-grid > div:first-child {
  margin-left: -14px; /* nudge hero text slightly left for better framing */
}
.hero--mission .hero-grid {
}
.hero--mission .hero-visual {
  position: relative;
  justify-self: end;
  align-self: end;
  margin: 0;
}

.hero--mission .hero-bg-video--mission {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%; /* frame lower so both heads and lower text stay in view */
  z-index: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero--mission .hero-bg-video--mission { display: none; }
}

.hero--mission.hero--verification {
  /* Use the verification GIF directly so the characters stay visible */
  background:
    linear-gradient(120deg, rgba(6, 10, 18, 0.45), rgba(6, 10, 18, 0.58)),
    url("images/Verification.gif") center 18%/cover no-repeat;
  overflow: hidden;
}
.hero--mission.hero--verification::before {
  background: rgba(6, 9, 16, 0.08); /* lighter overlay to clear visuals */
  z-index: 2;
}
.hero--mission.hero--verification::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/Verification.gif") center 18%/cover no-repeat;
  opacity: 0.14;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}
.hero--mission.hero--verification .container { position: relative; z-index: 3; }

.hero--mission.hero--verification .hero-bg-video--verification {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero--mission.hero--verification .hero-bg-video--verification { display: none; }
}

.hero--testimonials {
  position: relative;
  overflow: hidden;
  background: #0b1120; /* fallback if video fails */
  color: #f8fafc;
  padding: 120px 0 110px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.hero--testimonials .hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero--testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.22), rgba(255,255,255,0.1));
  z-index: 0;
}
.hero--testimonials .container {
  position: relative;
  z-index: 1;
  margin-left: 0;
  margin-right: auto;
  width: min(1400px, 100% - 1.5rem);
}
.hero--testimonials .hero-title { color: #f8fafc; }
.hero--testimonials .hero-title span { color: #9efcff; }
.hero--testimonials .hero-text { color: #f1f5f9; }
.hero--testimonials .hero-eyebrow,
.hero--testimonials .hero-title,
.hero--testimonials .hero-text {
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero--testimonials .hero-tag {
  background: rgba(11,17,32,0.5);
  border-color: rgba(226, 232, 240, 0.75);
  color: #f8fafc;
}
.hero--testimonials .hero-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.6fr);
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
.hero--testimonials .hero-grid > div:first-child {
  max-width: 620px;
  margin: 0 0 0 24px; /* nudge primary text block slightly right */
  background: rgba(248, 250, 252, 0.9);
  color: #0f172a;
  padding: 18px 18px 20px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.28);
}
.hero--testimonials .hero-grid > div:first-child .hero-eyebrow,
.hero--testimonials .hero-grid > div:first-child .hero-title,
.hero--testimonials .hero-grid > div:first-child .hero-text {
  color: #0f172a;
  text-shadow: none;
}
.hero--testimonials .hero-grid > div:first-child .hero-title span {
  color: #0ea5e9;
}
.hero--testimonials .hero-grid > div:first-child .hero-tag {
  background: #e2e8f0;
  border-color: #cbd5e1;
  color: #0f172a;
}
.hero--testimonials .hero-visual {
  max-width: 380px;
  margin: 0 0 0 auto; /* push the right card farther to the right */
  justify-self: end;
  align-self: flex-start;
  padding: 16px;
}
.hero--testimonials .hero-visual-inner {
  padding: 14px;
  min-height: 180px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

/* Home page extra wrappers */
.hero-left {
  max-width: 620px;
}
.hero-right {
  max-width: 460px;
}

/* à¦›à§‹à¦Ÿ à¦‡à¦¨à§à¦Ÿà§à¦°à§‹ à¦Ÿà§‡à¦•à§à¦¸à¦Ÿ */
.hero-kicker,
.hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #a5f3fc;
  margin-bottom: 10px;
}

/* à¦¬à§œ à¦Ÿà¦¾à¦‡à¦Ÿà§‡à¦² */
.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero-title span {
  color: #bbf7d0;
}

/* à¦ªà§à¦¯à¦¾à¦°à¦¾à¦—à§à¦°à¦¾à¦« */
.hero-text {
  font-size: 0.98rem;
  color: #dbeafe;
  max-width: 520px;
}

/* à¦›à§‹à¦Ÿ à¦›à§‹à¦Ÿ à¦Ÿà§à¦¯à¦¾à¦— */
.hero-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}
.hero-tag {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.7);
  color: #e0f2fe;
}
.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* HERO â€“ Right side Card */
.hero-visual {
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.5), transparent 55%),
    radial-gradient(circle at bottom, rgba(34, 197, 94, 0.45), transparent 55%);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-visual-inner {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 22px;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  min-height: 220px;
}

.hero-chip {
  position: absolute;
  top: 18px;
  right: 26px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(125, 211, 252, 0.8);
  font-size: 0.78rem;
  color: #e0f2fe;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-stat {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  margin-top: 16px;
}
.hero-stat span:first-child {
  font-size: 1.05rem;
  font-weight: 700;
  color: #e5f2ff;
}
.hero-stat span:last-child {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* extra grid for multiple stats */
.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.hero-stat-grid .hero-stat h4 {
  font-size: 1.1rem;
  color: #e5f2ff;
}
.hero-stat-grid .hero-stat p {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* ==== BUTTONS ==== */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.55);
}
.btn-primary span {
  font-size: 1rem;
}
.btn-primary:hover {
  background: #0f172a;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #e0f2ff;
  border: 1px solid rgba(219, 234, 254, 0.7);
}
.btn-outline:hover {
  background: rgba(15, 23, 42, 0.45);
}

/* Skip link (visually hidden until focused) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #ffffff;
  color: var(--dark);
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(15,23,42,0.18);
  z-index: 60;
}

/* Visible focus styles for keyboard users */
a:focus,
button:focus,
.btn-primary:focus,
.btn-outline:focus {
  outline: 3px solid rgba(56,189,248,0.28);
  outline-offset: 2px;
}

/* === Full-width hero (image) ===
   Use `.hero--full` on a section that should bleed edge-to-edge while
   keeping text constrained inside `.container`.
   Technique: set the hero to 100vw and offset its margin so it aligns
   with the viewport edges while the inner `.container` remains centered.
*/
.hero--full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0 72px;
  background-size: cover;
  background-position: center center;
  color: #eaf6ff;
}
.hero--full::before {
  /* overlay for readability */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.36), rgba(15,23,42,0.6));
  z-index: 0;
}
.hero--full .container {
  position: relative; /* brings content above overlay */
  z-index: 1;
}

/* === Full-width hero with background VIDEO ===
   Use `.hero--video` with an inline <video> element that is absolutely
   positioned and `object-fit: cover`. Provide a `poster` attribute and
   include a fallback background-image for browsers that block autoplay.
*/
.hero--video {
  position: relative;
  overflow: hidden;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0;
  color: #ffffff;
}
.hero--video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero--video::after {
  /* subtle dark overlay to ensure text contrast */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6,9,16,0.35);
  z-index: 0;
}
.hero--video .container { z-index: 1; position: relative; }

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero--video video { display: none; }
}

/* ==== SECTION HEADER ==== */
.section-header {
  max-width: 720px;
  margin-bottom: 26px;
}
.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 6px;
}
.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ==== STATS GRID (à¦¹à§‹à¦® + Growth) ==== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 18px;
}
.stat-card {
  background: var(--card-bg);
  padding: 18px 16px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.9);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
}
.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 4px;
}
.stat-tagline {
  font-size: 0.8rem;
  margin-top: 4px;
  color: #16a34a;
}

/* ==== CARD GRID (Mission, Growth, CTA etc.) ==== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.9);
}
.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.card-link:hover {
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
  transition: 0.2s ease;
}
.card-title {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.card-text {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.7;
}

.btn-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.btn-link:hover {
  text-decoration: underline;
}

/* ==== VIDEO GRID (Success Stories) ==== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 12px;
}
.video-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(148, 163, 184, 0.35);
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(15, 23, 42, 0.3);
  border: 2px dashed rgba(148, 163, 184, 0.6);
  border-radius: 14px;
}
.video-title {
  font-weight: 700;
  color: #e2e8f0;
  font-size: 0.95rem;
}
.video-card:nth-child(odd) .video-title { color: #cbd5e1; }
.video-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.18);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
  transition: 0.2s ease;
}
.video-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.22);
}
.video-cta:active {
  transform: translateY(0px);
}

@media (max-width: 720px) {
  .video-cta { padding: 14px 14px; font-size: 0.95rem; }
}

/* ==== TESTIMONIALS ==== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-soft);
}
.testimonial-quote {
  font-size: 0.9rem;
  color: #0f172a;
  margin-bottom: 10px;
}
.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ==== GALLERY (Campus) ==== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.gallery-item {
  background: #0f172a;
  border-radius: 18px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

/* ==== MINI GALLERY (Home) ==== */
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.mini-item {
  background: #020617;
  border-radius: 16px;
  min-height: 120px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.85);
}
.mini-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 0.78rem;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.8);
}

/* ==== PAGE LINK GRID (Home) ==== */
.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 18px;
}
.page-card {
  background: #ffffff;
  padding: 20px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.9);
}
.page-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.page-card p {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.page-card a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

/* ==== APPLY PAGE LAYOUT ==== */
.apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 32px;
}
.apply-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-soft);
}

/* FORM */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  margin-top: 12px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}
.form-field label {
  font-weight: 600;
  color: var(--dark);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font: inherit;
  outline: none;
}
.form-field textarea {
  min-height: 80px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

/* ==== CTA BAND (Home bottom) ==== */
.cta-band {
  margin-top: 24px;
  padding: 20px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-soft), var(--accent));
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cta-band p {
  max-width: 520px;
  font-size: 0.9rem;
}

/* ==== FOOTER ==== */
.footer {
  background: #020617;
  color: #94a3b8;
  padding: 24px 0 20px;
  font-size: 0.8rem;
  margin-top: 40px;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero--mission .hero-grid > div:first-child {
    margin-left: 0;
  }
  .hero--mission .hero-visual {
    position: static;
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    align-self: start;
    margin-top: 0;
    margin-right: 0;
  }
  .apply-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .navbar-inner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .hero-title {
    font-size: 2rem;
  }
  .section {
    padding: 56px 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero section-à¦à¦° à¦­à¦¿à¦¤à¦°à§‡à¦° à¦¸à¦¬ à¦²à§‡à¦–à¦¾ à¦²à¦¾à¦‡à¦Ÿ à¦•à¦°à§‡ à¦¦à¦¿à¦šà§à¦›à¦¿ */
.hero--home,
.hero--home h1,
.hero--home h2,
.hero--home h3,
.hero--home p,
.hero--home .hero-tag,
.hero--home .hero-meta {
  color: #f9fafb;
}

/* à¦®à§‚à¦² à¦Ÿà¦¾à¦‡à¦Ÿà§‡à¦² à¦à¦•à¦Ÿà§ à¦¬à§‡à¦¶à¦¿ à¦¹à¦¾à¦‡à¦²à¦¾à¦‡à¦Ÿ */
.hero--home .hero-title {
  color: #f9fafb;
}

/* 'Next' à¦¬à¦¾ 'Generation' à¦Ÿà¦¾à¦‡à¦ª à¦¹à¦¾à¦‡à¦²à¦¾à¦‡à¦Ÿ à¦•à¦°à¦¾ span */
.hero--home .hero-title span {
  color: #a3e635;
}

/* à¦¸à¦¾à¦¬à¦Ÿà¦¾à¦‡à¦Ÿà§‡à¦² à¦à¦•à¦Ÿà§ à¦«à¦¿à¦•à§‡ à¦•à¦¿à¦¨à§à¦¤à§ readable à¦Ÿà§‹à¦¨ */
.hero--home .hero-text {
  color: #e5e7eb;
}

/* à¦Ÿà§à¦¯à¦¾à¦— / à¦›à§‹à¦Ÿ à¦¬à¦¾à¦Ÿà¦¨ à¦Ÿà¦¾à¦‡à¦ª à¦¬à§à¦¯à¦¾à¦œ à¦¥à¦¾à¦•à¦²à§‡ */
.hero--home .hero-tag {
  background: rgba(15,23,42,0.6);
  border-color: rgba(148,163,184,0.7);
}


.music-widget {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(7, 16, 35, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.music-widget button {
  border: none;
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  color: #0b1021;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.25);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.music-widget button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(56, 189, 248, 0.32);
}

.music-widget input[type="range"] {
  width: 90px;
  accent-color: #38bdf8; /* you can adjust to match brand */
}
.music-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(7, 16, 35, 0.9);
  color: #ffffff;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

#bg-music-btn {
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1rem;
}

/* === Digital Edu Hub – compact AI track player === */
.deh-audio-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  color: #e5f2ff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
}

.deh-audio-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.deh-audio-title {
  font-weight: 600;
  font-size: 0.8rem;
}

.deh-audio-status {
  font-size: 0.7rem;
  color: #a5b4fc;
}

.deh-audio-toggle,
.deh-audio-prev,
.deh-audio-next {
  border: none;
  outline: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  color: #020617;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(56, 189, 248, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.deh-audio-prev,
.deh-audio-next {
  background: rgba(15, 23, 42, 0.9);
  color: #e5f2ff;
  box-shadow: none;
  font-size: 0.8rem;
}

.deh-audio-toggle:hover,
.deh-audio-prev:hover,
.deh-audio-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(56, 189, 248, 0.4);
}

.deh-audio-volume {
  width: 80px;
  accent-color: #38bdf8;
}

/* On very small screens, make the widget a bit smaller */
@media (max-width: 480px) {
  .deh-audio-widget {
    right: 10px;
    bottom: 10px;
    padding: 6px 10px;
  }
  .deh-audio-volume { width: 60px; }
}

/* ===========================
   MOBILE EXPERIENCE UPGRADE
   (safe overrides, desktop untouched)
   ============================ */
@media (max-width: 720px) {

  /* Container – ???? ?? side gap */
  .container {
    width: min(100% - 1.5rem, 480px);
    margin: 0 auto;
  }

  /* Navbar – ??? ???????? crowd ????? */
  .navbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .nav-links {
    flex-wrap: wrap;
    row-gap: 6px;
    column-gap: 10px;
    font-size: 0.86rem;
  }

  /* Hero sections – ?? ???? + ???? breathing room */
  .hero {
    padding: 72px 0 56px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-left,
  .hero-right {
    max-width: 100%;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-text {
    font-size: 0.9rem;
  }

  /* Home mini gallery / page cards – ? ???? */
  .stats-grid,
  .card-grid,
  .video-grid,
  .gallery-grid,
  .mini-gallery,
  .page-grid {
    grid-template-columns: 1fr;
  }

  /* Apply page – ???? + ???? ???? ?? ?? */
  .apply-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .apply-card {
    padding: 18px 16px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Section spacing ???? ?? */
  .section {
    padding: 52px 0;
  }

  /* Testimonials hero – ??????? full width scroll fix */
  .hero--testimonials {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .hero--testimonials .container {
    width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
  }
}

/* ??? ??? ??????? (=480px) – ???? ?????? ??? */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .section-subtitle {
    font-size: 0.86rem;
  }
}/* ==========================================================
   DIGITAL EDUCATION HUB – PREMIUM MINI AUDIO PLAYER UI
   ========================================================== */

.deh-audio-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99999;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;

  padding: 6px 10px;
  background: rgba(10, 15, 30, 0.85);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  color: #fff;
  font-family: system-ui, sans-serif;

  width: auto;
  max-width: 260px;
}

.deh-audio-left {
  display: flex;
  flex-direction: column;
  margin-right: 6px;
}

.deh-audio-title {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.95;
  white-space: nowrap;
}

.deh-audio-status {
  font-size: 0.6rem;
  opacity: 0.65;
  margin-top: -2px;
  white-space: nowrap;
}

.deh-audio-controls {
  display: flex;
  gap: 6px;
}

.deh-audio-controls button {
  width: 24px;
  height: 24px;
  border-radius: 5px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  font-size: 0.75rem;

  transition: 0.15s ease;
}

.deh-audio-controls button:hover {
  background: rgba(255, 255, 255, 0.25);
}

#deh-audio-volume {
  flex: 1 1 100%;
  width: 100%;
  height: 4px;
  cursor: pointer;
  accent-color: #38bdf8;
  margin-top: 2px;
}

/* Position music player bottom-left */
.music-player-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

/* Position Chatling widget bottom-right */
.chatling-widget-container {
  bottom: 20px !important;
  right: 20px !important;
  z-index: 9999;
}

/* ==== TICKET PAGE ==== */
.hero--apply-ticket {
  background: radial-gradient(circle at top left, #38bdf8 0, #2563eb 40%, #0f172a 100%);
  color: #e0f2fe;
  padding: 80px 0 60px;
}
.hero--apply-ticket .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.hero--apply-ticket .hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.hero--apply-ticket .hero-content p {
  color: #dbeafe;
}
.welcome-video {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.28);
  background: #0f172a;
}

.ticket-section {
  background: #f8fafc;
}
.ticket-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-soft);
}
.ticket-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
}
.ticket-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}
.ticket-details {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.ticket-row {
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
}
.ticket-row dt {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}
.ticket-row dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.ticket-footer-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .hero--apply-ticket .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero--apply-ticket {
    padding: 68px 0 52px;
  }
  .ticket-details {
    grid-template-columns: 1fr;
  }
  .ticket-row {
    grid-template-columns: 1fr;
  }
}

.ticket-page .music-player-container,
.ticket-page .bg-music-player,
.ticket-page .audio-player {
  display: none !important;
}

@media print {
  /* Only show the ticket-print-area */
  body * {
    visibility: hidden !important;
  }

  .ticket-print-area,
  .ticket-print-area * {
    visibility: visible !important;
  }

  .ticket-print-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    box-shadow: none !important;
  }

  header,
  nav,
  .site-header,
  .site-footer,
  .ticket-hero,
  .chatling-widget-container {
    display: none !important;
  }

  @page {
    size: A4;
    margin: 10mm;
  }
}

.ticket-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d47a1, #1e88e5);
  color: #ffffff;
}

.ticket-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.ticket-hero-text h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.ticket-hero-text p {
  opacity: 0.9;
  max-width: 420px;
}

.ticket-hero-media {
  display: flex;
  justify-content: flex-end;
}

.ticket-hero-frame {
  max-width: 460px;
  width: 100%;
  border-radius: 26px;
  padding: 6px;
  background: linear-gradient(135deg, #00e5ff, #00c853);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.ticket-video-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #020617;
}

.ticket-video-frame {
  width: 100%;
}

.ticket-video {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
}

/* Mobile tweak so video doesn’t overflow */
@media (max-width: 768px) {
  .ticket-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ticket-hero-media {
    justify-content: flex-start;
  }

  .ticket-video {
    height: 220px;
  }
}
/* ==== APPLICATION TICKET LAYOUT ==== */

.ticket-section {
  padding: 72px 0 96px;
  background: #f1f5f9;
}

.ticket-print-area {
  max-width: 1120px;
  margin: 0 auto;
}

.ticket-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 24px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.ticket-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--dark);
}

.ticket-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.ticket-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 18px;
  margin-top: 4px;
}

.ticket-row dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 3px;
}

.ticket-row dd {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  background: #f8fafc;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.ticket-footer-note {
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--muted);
}

.ticket-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

/* Mobile tweaks */
@media (max-width: 720px) {
  .ticket-card {
    padding: 18px 16px;
  }
  .ticket-details {
    grid-template-columns: 1fr;
  }
}

/* ==== Animated Navbar (hover glow + active bar) ==== */

.animated-nav {
  position: relative;
  display: flex;
  gap: 22px;
  align-items: center;
}

.animated-nav a {
  position: relative;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #dbeafe;
  text-decoration: none;
  transition: color 0.25s ease;
}

.animated-nav a:hover {
  color: #ffffff;
}

/* Hover glow underline */
.animated-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #2563eb);
  opacity: 0;
  transform: translateX(-50%);
  transition: width 0.25s ease, opacity 0.25s ease;
}

.animated-nav a:hover::after {
  width: 70%;
  opacity: 1;
}

/* Active indicator bar that slides under the current link */
.nav-active-indicator {
  position: absolute;
  bottom: -8px;
  height: 4px;
  width: 40px;
  background: linear-gradient(90deg, #38bdf8, #2563eb);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.55);
  transition: left 0.35s ease, width 0.35s ease;
  pointer-events: none;
}

/* Keep navbar text above any background effects */
.navbar-inner {
  position: relative;
  z-index: 1;
}

/* Benefit section styling */
.apply-intro {
  padding-top: 72px;
  padding-bottom: 40px;
}

.apply-benefit-grid {
  margin-top: 18px;
}

.apply-benefit-card {
  border-radius: 22px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.benefit-list {
  list-style: none;
  margin: 12px 0 18px;
  padding: 0;
  font-size: 0.86rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.benefit-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
}

.benefit-list li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 2px;
}

.apply-benefit-card .btn-primary {
  margin-top: auto;              /* push button to bottom */
  width: 100%;                   /* same width on all cards */
  justify-content: center;
  padding: 10px 18px;            /* consistent height */
  min-height: 44px;              /* same visual size */
}

/* Hide form section by default */
#apply-forms {
  display: none;
}

/* When we want to show the forms */
#apply-forms.is-visible {
  display: block;
}

/* Make all three CTA buttons same size & aligned at bottom */
.apply-benefit-card {
  border-radius: 22px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.benefit-list {
  list-style: none;
  margin: 12px 0 18px;
  padding: 0;
  font-size: 0.86rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.benefit-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
}

.benefit-list li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 2px;
}

.apply-benefit-card .btn-primary {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 10px 18px;
  min-height: 44px;
}

/* Only show the currently active form */
.apply-form {
  display: none;
}

.apply-form.active {
  display: block;
}

/* Section itself is hidden until a CTA/tab is clicked */
#apply-forms {
  display: none;
}

#apply-forms.is-visible {
  display: block;
}
@media (max-width: 720px) {
  .hero,
  .hero--home,
  .hero--mission,
  .hero--growth,
  .hero--testimonials,
  .hero--campus {
    padding: 80px 0 60px !important;
    min-height: auto !important;
    background-position: center center !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    text-align: left !important;
    gap: 24px !important;
  }

  .hero-title {
    font-size: 1.8rem !important;
    line-height: 1.25 !important;
  }

  .hero-text {
    font-size: 0.92rem !important;
    max-width: 100% !important;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 6px !important;
    font-size: 0.82rem !important;
  }
}

/* === BLOG ARTICLE LAYOUT === */
.blog-article-wrapper {
  padding: 72px 0;
  background: #f8fafc;
}
.blog-article {
  max-width: 780px;
  margin: 0 auto;
}
.blog-article-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.blog-article h1 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.blog-article h2 {
  font-size: 1.3rem;
  margin: 22px 0 8px;
  color: var(--dark);
}
.blog-article p {
  font-size: 0.95rem;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Images & video inside blog */
.blog-article figure {
  margin: 18px 0;
}
.blog-article img,
.blog-article video {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: var(--shadow-soft);
}
.blog-article figcaption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
}

/* Small info box / callout */
.blog-callout {
  padding: 12px 14px;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid rgba(59,130,246,0.25);
  font-size: 0.9rem;
  color: #1e293b;
  margin: 18px 0;
}

@media (max-width: 720px) {
  .blog-article-wrapper {
    padding: 56px 0;
  }
  .blog-article h1 {
    font-size: 1.7rem;
  }
}
