
:root{
  /* Logo-inspired palette */
  --green:#0b3a2a;      /* deep university green */
  --green2:#0f5132;
  --red:#c81e1e;
  --yellow:#f5c400;

  --bg:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --border:#e2e8f0;

  --card:#ffffff;
  --soft:#f8fafc;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

.container{
  max-width:1100px;
  margin:0 auto;
  padding:22px 18px;
  
}

/* NAV */
.nav{
  background:linear-gradient(90deg, var(--green), var(--green2));
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav-inner{
  max-width:1100px;
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
}
.brand-logo{
  width:56px !important;
  height:56px !important;
  object-fit:contain !important;   /* shows full logo */
  background:#fff;
  padding:6px;
  border-radius:12px;
  border:2px solid rgba(245,196,0,.55);
  display:block;
}
.brand-text{ line-height:1.1; }
.brand-name{
  font-weight:900;
  letter-spacing:.2px;
  font-size:18px;
}
.brand-tag{
  font-size:11px;
  opacity:.86;
  margin-top:3px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-links a{
  font-size:14px;
  color:rgba(255,255,255,.9);
}
.nav-links a:hover{
  color:#fff;
}

.nav-cta{
  background: linear-gradient(90deg, var(--yellow), #ffd84a);
  color:#0b1220 !important;
  font-weight:800;
  padding:10px 14px;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}
.nav-cta:hover{ filter:brightness(1.02); }

/* HERO */
.hero{
  border-radius:22px;
  padding:28px;
  background:
    radial-gradient(900px 300px at 10% 10%, rgba(245,196,0,.22), transparent 60%),
    radial-gradient(700px 260px at 90% 20%, rgba(200,30,30,.14), transparent 55%),
    linear-gradient(180deg, rgba(11,58,42,.08), rgba(255,255,255,1));
  border:1px solid var(--border);
}
.hero h1{
  margin:0;
  font-size:38px;
  line-height:1.08;
  letter-spacing:-.4px;
}
.hero p{
  margin:12px 0 0;
  color:var(--muted);
  max-width:680px;
  font-size:16px;
}
.hero-actions{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  font-weight:700;
  font-size:14px;
}
.btn-primary{
  background:linear-gradient(90deg, var(--green), var(--green2));
  color:#fff;
  border-color: transparent;
}
.btn-primary:hover{ filter:brightness(1.03); }
.btn-outline{
  background:#fff;
}
.btn-outline:hover{
  border-color:#cbd5e1;
}

/* SECTION */
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  margin-top:26px;
  margin-bottom:12px;
}
.section-head h2{
  margin:0;
  font-size:20px;
}
.muted{ color:var(--muted); font-size:14px; }

/* FILTERS */
.page-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-top:10px;
  margin-bottom:14px;
}
.page-head h1{
  margin:0;
  font-size:30px;
  letter-spacing:-.2px;
}
.filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:14px;
}
.input{
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  font-size:14px;
  outline:none;
  min-width:220px;
  background:#fff;
}
.input:focus{
  border-color: rgba(245,196,0,.8);
  box-shadow:0 0 0 4px rgba(245,196,0,.20);
}

/* GRID + CARDS */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 900px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .hero h1{ font-size:32px; }
  .brand-tag{ display:none; }
}
@media (max-width: 600px){
  .grid{ grid-template-columns: 1fr; }
  .nav-links{ gap:12px; }
}

.card{
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  background:var(--card);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(2,6,23,.08);
  border-color: rgba(11,58,42,.28);
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:800;
  color: var(--green);
  background: rgba(11,58,42,.08);
  border:1px solid rgba(11,58,42,.18);
  padding:6px 12px;
  border-radius:999px;
}
.badge::before{
  content:"";
  width:9px; height:9px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--red), var(--yellow));
}
.card .title{
  margin-top:12px;
  font-weight:900;
  font-size:17px;
}
.card .desc{
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
  line-height:1.4;
}
.card-foot{
  margin-top:12px;
  font-size:13px;
  color:var(--muted);
}
.linkish{
  color: var(--green2);
  font-weight:800;
}

/* EMPTY */
.empty{
  border:1px dashed var(--border);
  border-radius:16px;
  padding:18px;
  background:#fff;
}

/* FOOTER */
.footer{
  background:#0b3a2a;
  color:#ffffff;
  padding:18px 20px;
  font-size:14px;
  width:100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.footer-inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.footer a{
  color:#f5c842; /* your gold accent */
  text-decoration:none;
  font-weight:600;
}

.footer a:hover{
  text-decoration:underline;
}
/* ===== HERO SLIDER ===== */
.hero-slider{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 60px rgba(2,6,23,.10);
  background: #0b3a2a;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: scale(1.01);
  transition: opacity .6s ease, transform .9s ease;
}

.hero-slide.is-active{
  opacity:1;
  transform: scale(1);
  z-index:2;
}

.hero-slide img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
  filter: saturate(1.05);
}

@media (max-width: 900px){
  .hero-slide img{ height: 430px; }
}
@media (max-width: 600px){
  .hero-slide img{ height: 380px; }
}

/* overlay */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:3;
  background:
    linear-gradient(90deg, rgba(11,58,42,.65) 0%, rgba(11,58,42,.35) 55%, rgba(11,58,42,.05) 100%),
    radial-gradient(800px 300px at 12% 18%, rgba(245,196,0,.12), transparent 60%),
    radial-gradient(700px 260px at 30% 80%, rgba(200,30,30,.10), transparent 55%);
}

.hero-content{
  position:absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index:4;
  max-width: 680px;
  color:#fff;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(255,255,255,.9);
}
.hero-kicker .dot{
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--red), var(--yellow));
}

.hero-title{
  margin: 10px 0 0;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.6px;
  font-weight: 900;
}
.hero-sub{
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
}

.hero-actions{
  margin-top: 16px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.hero-actions .btn{
  border-color: rgba(255,255,255,.18);
}
.hero-actions .btn-outline{
  background: rgba(255,255,255,.08);
  color:#fff;
}
.hero-actions .btn-outline:hover{
  background: rgba(255,255,255,.12);
}

.hero-actions .btn-primary{
  background: linear-gradient(90deg, var(--yellow), #ffd84a);
  color:#0b1220;
  border-color: transparent;
}

/* arrows */
.hero-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index:5;
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.28);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  user-select:none;
}
.hero-arrow:hover{ background: rgba(0,0,0,.36); }
.hero-arrow.prev{ left: 14px; }
.hero-arrow.next{ right: 14px; }

@media (max-width: 600px){
  .hero-arrow{ display:none; }
}

/* dots */
.hero-dots{
  position:absolute;
  right: 18px;
  bottom: 18px;
  z-index:6;
  display:flex;
  gap:8px;
}
.hero-dot{
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.18);
  cursor:pointer;
}
.hero-dot.is-active{
  background: linear-gradient(180deg, var(--yellow), #ffd84a);
  border-color: rgba(0,0,0,.10);
}
/* ===== UNIVERSITY SECTIONS ===== */
.stats{
  margin-top: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    radial-gradient(900px 320px at 12% 20%, rgba(245,196,0,.12), transparent 60%),
    radial-gradient(700px 260px at 85% 10%, rgba(200,30,30,.10), transparent 55%),
    linear-gradient(180deg, rgba(11,58,42,.05), #fff);
  overflow:hidden;
}
.stats-inner{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat{
  padding:18px 16px;
  border-right: 1px solid rgba(2,6,23,.06);
}
.stat:last-child{ border-right:none; }
.stat .num{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color: var(--green2);
}
.stat .label{
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 900px){
  .stats-inner{ grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2){ border-right:none; }
  .stat{ border-bottom: 1px solid rgba(2,6,23,.06); }
  .stat:nth-last-child(-n+2){ border-bottom:none; }
}
@media (max-width: 600px){
  .stats-inner{ grid-template-columns: 1fr; }
  .stat{ border-right:none; }
}

/* schools/faculties */
.split-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  margin-top: 26px;
  margin-bottom: 12px;
}
.split-head h2{ margin:0; font-size:20px; }
.split-head p{ margin:6px 0 0; color:var(--muted); font-size:14px; max-width:640px; }

.school-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 900px){
  .school-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .school-grid{ grid-template-columns: 1fr; }
}
.school-card{
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  padding:16px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.school-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(2,6,23,.08);
  border-color: rgba(11,58,42,.28);
}
.school-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.school-ico{
  width:42px; height:42px;
  border-radius:14px;
  background:
    radial-gradient(16px 16px at 30% 30%, rgba(245,196,0,.35), transparent 70%),
    radial-gradient(16px 16px at 70% 30%, rgba(200,30,30,.22), transparent 70%),
    linear-gradient(180deg, rgba(11,58,42,.14), rgba(11,58,42,.04));
  border:1px solid rgba(11,58,42,.18);
}
.school-title{
  margin-top:12px;
  font-weight:900;
  font-size:16px;
}
.school-desc{
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
  line-height:1.4;
}
.school-link{
  margin-top:12px;
  font-weight:800;
  color: var(--green2);
  font-size:13px;
}

/* admissions CTA */
.cta{
  margin-top: 26px;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(900px 320px at 12% 20%, rgba(245,196,0,.20), transparent 60%),
    radial-gradient(700px 260px at 90% 10%, rgba(200,30,30,.16), transparent 55%),
    linear-gradient(90deg, var(--green), var(--green2));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.cta h3{
  margin:0;
  font-size:20px;
  font-weight:900;
}
.cta p{
  margin:6px 0 0;
  color: rgba(255,255,255,.88);
  max-width: 720px;
  font-size:14px;
}
.cta .cta-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.cta .btn-outline{
  background: rgba(255,255,255,.10);
  color:#fff;
  border-color: rgba(255,255,255,.18);
}
/* ===== SLIDER FAILSAFE (ensures it displays) ===== */
.hero-slider{
    margin-top:0;
  border-top: 1px solid rgba(255,255,255,.15); position:relative; min-height:520px; border-radius:22px; overflow:hidden; }

.hero-slide{ position:absolute; inset:0; opacity:0; transition:opacity .6s ease; }
.hero-slide.is-active{ opacity:1; z-index:2; }
.hero-slide img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
  filter: brightness(1.1) saturate(1.05);
}
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:3;
  background:
    linear-gradient(90deg, rgba(11,58,42,.55) 0%, rgba(11,58,42,.20) 60%, rgba(11,58,42,0) 100%);
}
.hero-content{ position:absolute; left:26px; right:26px; bottom:24px; z-index:4; color:#fff; max-width:720px; }

@media (max-width:900px){
  .hero-slider{ min-height:430px; }
  .hero-slide img{ height:430px; }
}
@media (max-width:600px){
  .hero-slider{ min-height:380px; }
  .hero-slide img{ height:380px; }
}
/* Full-bleed helper (break out of .container) */
.full-bleed{
  width:100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.hero-slider{ border-radius: 0 !important; }
.hero-slider{
  margin-top:0 !important;
}
/* ===== WELCOME SECTION ===== */
.welcome-section{
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(2,6,23,.05);
}

.welcome-header{
  background: linear-gradient(90deg, var(--green), var(--green2));
  padding: 18px 24px;
}

.welcome-header h2{
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .3px;
}

.welcome-content{
  padding: 24px;
}

.welcome-content p{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.welcome-highlight{
  margin-top: 10px;
  font-weight: 800;
  color: var(--green2);
  letter-spacing: .5px;
}
/* ===== TOP UTILITY BAR ===== */
.topbar{
  background: linear-gradient(90deg, var(--yellow), #ffd84a);
  border-bottom: none;
  font-size:13px;
}

.topbar-inner{
  max-width:1100px;
  margin:0 auto;
  padding:8px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.top-left{
  display:flex;
  gap:18px;
  color:#ffffff;
  font-weight:500;
}

.top-left a{
  color:#ffffff;
}

.top-right{
  display:flex;
  gap:16px;
}

.top-right a{
  color:#ffffff;
  font-weight:700;
}

.top-right a:hover{
  opacity:.85;
}
/* Mobile */
@media (max-width:700px){
  .top-left{
    flex-direction:column;
    gap:4px;
  }
}
/* Remove unwanted spacing */
.hero-slider{
  margin-top:0;
  border-top: 1px solid rgba(255,255,255,.15);
}
main.container{
  padding-top:0;
}
/* ===== ABOUT BAND (matches your reference layout) ===== */
.about-band{
  margin-top: 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #f6f3ee; /* soft cream like screenshot */
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}

.about-inner{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
  padding: 22px;
  align-items: center;
}

.about-media{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(2,6,23,.08);
  background:#fff;
  min-height: 360px;
}

.about-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.about-badge{
  position:absolute;
  right:-18px;
  bottom: 22px;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--green2));
  border: 6px solid #f6f3ee;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 18px 50px rgba(2,6,23,.14);
}
.about-badge span{
  color:#fff;
  font-weight: 900;
  letter-spacing:.08em;
}

.about-copy .about-kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 12px;
  color: rgba(15,23,42,.75);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-copy h2{
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -.6px;
  color: #111827;
}

.about-copy p{
  margin: 12px 0 0;
  color: rgba(15,23,42,.70);
  line-height: 1.7;
  font-size: 15px;
  max-width: 56ch;
}

.about-split{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:start;
}

.about-card{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 18px;
  padding: 16px;
}

.about-card-num{
  font-size: 26px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -.4px;
}
.about-card-title{
  margin-top: 4px;
  font-weight: 800;
  color: rgba(15,23,42,.72);
  font-size: 14px;
}
.about-card-sub{
  margin-top: 10px;
  color: rgba(15,23,42,.68);
  font-size: 14px;
  line-height: 1.6;
}

.about-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 12px;
}
.about-list li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  color: rgba(15,23,42,.80);
  font-weight: 700;
}
.about-list li::before{
  content:"✓";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(11,58,42,.10);
  border: 1px solid rgba(11,58,42,.18);
  color: var(--green2);
  font-weight: 900;
  flex: 0 0 22px;
  margin-top: 1px;
}

.about-cta{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}

/* Responsive */
@media (max-width: 900px){
  .about-inner{ grid-template-columns: 1fr; }
  .about-copy h2{ font-size: 34px; }
  .about-media{ min-height: 300px; }
  .about-split{ grid-template-columns: 1fr; }
}
.course-description { max-width: 900px; line-height: 1.7; margin: 12px 0 18px; }

.form { max-width: 520px; }
.form label { display:block; margin: 12px 0 6px; }
.form input { width:100%; padding:10px; border:1px solid #ccc; border-radius:10px; }
.form button { margin-top:14px; }
/* ===== MOBILE MENU (COLOR + DROPDOWN) ===== */

/* Hamburger button */
.nav-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.12);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
  line-height:0;
}
.nav-toggle-bar{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  margin:4px 0;
}

/* Mobile dropdown behavior + color */
@media (max-width: 900px){
  .nav-toggle{ display:block; }

  /* collapse into dropdown */
  .nav-inner{ position:relative; }

  .nav-links{
    display:none; /* hidden until opened */
    position:absolute;
    right:18px;
    top:calc(100% + 10px);
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    width:min(320px, calc(100vw - 36px));
    padding:12px;

    /* ✅ MENU COLOR (matches header) */
    background: linear-gradient(90deg, var(--green), var(--green2));
    border: 1px solid rgba(255,255,255,.16);
    border-radius:16px;
    box-shadow:0 18px 40px rgba(2,6,23,.25);
    z-index:99999;
  }

  .nav-links.is-open{ display:flex; }

  .nav-links a{
    color: rgba(255,255,255,.92);
    padding:10px 12px;
    border-radius:12px;
  }

  .nav-links a:hover{
    background: rgba(255,255,255,.10);
    color:#fff;
  }

  /* CTA stays bold and readable */
  .nav-links .nav-cta{
    text-align:center;
    margin-top:6px;
    background: linear-gradient(90deg, var(--yellow), #ffd84a);
    color:#0b1220 !important;
  }
}
/* Force header background to your theme */
.nav{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--green), var(--green2)) !important;
}

/* Mobile hamburger button should match dark header */
.nav-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.12);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
  line-height:0;
}
.nav-toggle-bar{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  margin:4px 0;
}

/* Mobile dropdown menu color + text */
@media (max-width: 900px){
  .nav-toggle{ display:block; }
  .nav-inner{ position:relative; }

  .nav-links{
    display:none;
    position:absolute;
    right:18px;
    top:calc(100% + 10px);
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    width:min(320px, calc(100vw - 36px));
    padding:12px;

    /* ✅ green dropdown background */
    background: linear-gradient(90deg, var(--green), var(--green2));
    border: 1px solid rgba(255,255,255,.16);
    border-radius:16px;
    box-shadow:0 18px 40px rgba(2,6,23,.25);
    z-index:99999;
  }

  .nav-links.is-open{ display:flex; }

  .nav-links a{
    color: rgba(255,255,255,.92);
    padding:10px 12px;
    border-radius:12px;
  }

  .nav-links a:hover{
    background: rgba(255,255,255,.10);
    color:#fff;
  }

  .nav-links .nav-cta{
    text-align:center;
    margin-top:6px;
    background: linear-gradient(90deg, var(--yellow), #ffd84a);
    color:#0b1220 !important;
  }
}
/* ===== ADMISSIONS / CONTACT ADMIN SECTION ===== */
.admissions{
  margin-top: 22px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f6f3ee;
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}

.admissions-top{
  padding: 22px 24px 14px;
}

.admissions-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(15,23,42,.70);
}

.admissions-title{
  margin: 10px 0 0;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -.6px;
  color: #111827;
  font-weight: 900;
}

.admissions-sub{
  margin: 10px 0 0;
  color: rgba(15,23,42,.70);
  max-width: 66ch;
  line-height: 1.7;
  font-size: 15px;
}

/* Image + floating form */
.admissions-body{
  position: relative;
  min-height: 420px;
  border-top: 1px solid rgba(2,6,23,.06);
}

.admissions-image{
  height: 420px;
  background-image: url('/assets/hero/slide5.png'); /* ✅ swap if needed */
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
}

/* Floating card */
.admissions-form-card{
  position: absolute;
  right: 26px;
  top: 26px;
  width: min(520px, calc(100% - 52px));
  background: #063a58; /* deep blue */
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 55px rgba(2,6,23,.35);
  padding: 18px;
}

.admissions-form-head{
  display:flex;
  gap:12px;
  align-items:center;
  color:#fff;
  margin-bottom: 14px;
}

.admissions-form-ico{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(245,196,0,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
}

.admissions-form-title{
  font-weight: 900;
  font-size: 16px;
}

.admissions-form-muted{
  font-size: 12px;
  opacity: .85;
  margin-top: 2px;
}

.admissions-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.admissions-input, .admissions-textarea{
  width:100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color:#fff;
  border-radius: 12px;
  padding: 12px 12px;
  outline: none;
  font-size: 14px;
}

.admissions-input::placeholder,
.admissions-textarea::placeholder{
  color: rgba(255,255,255,.65);
}

.admissions-textarea{
  margin-top: 10px;
  resize: vertical;
  min-height: 110px;
}

.admissions-btn{
  margin-top: 12px;
  width:100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 12px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--yellow), #ffd84a);
  color:#0b1220;
  cursor:pointer;
}

.admissions-btn:hover{ filter: brightness(1.02); }

.admissions-success{
  margin-top: 10px;
  color: #d1fae5;
  font-weight: 800;
  font-size: 13px;
}

.admissions-error{
  margin-top: 10px;
  color: #fee2e2;
  font-weight: 800;
  font-size: 13px;
}

@media (max-width: 900px){
  .admissions-title{ font-size: 34px; }

  .admissions-body{ min-height: 520px; }
  .admissions-image{ height: 520px; }

  .admissions-form-card{
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    margin: -120px 18px 18px;
  }

  .admissions-grid{ grid-template-columns: 1fr; }
}
/* ===== Bounce-in animation for the form card ===== */
.bounce-in{
  opacity: 0;
  transform: translateY(18px) scale(.94);
  will-change: transform, opacity;
}

.bounce-in.is-visible{
  animation: bounceInCard .85s cubic-bezier(.22, 1.25, .2, 1) both;
}

@keyframes bounceInCard{
  0%   { opacity: 0; transform: translateY(18px) scale(.92); }
  60%  { opacity: 1; transform: translateY(0) scale(1.03); }
  80%  { transform: translateY(0) scale(.99); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .bounce-in, .bounce-in.is-visible{
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
/* ===== NEW FOOTER TOP BAND ===== */
.footer-top{
  background: #0c3f63;
  color: #ffffff;
  padding: 50px 20px;
}

.footer-top-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand-head{
  display:flex;
  align-items:center;
  gap:12px;
}

.footer-brand-head img{
  width:50px;
  height:50px;
  object-fit:contain;
  background:#fff;
  padding:5px;
  border-radius:10px;
}

.footer-brand-title span{
  font-weight:800;
  font-size:20px;
}

.footer-brand-desc{
  margin-top:16px;
  font-size:14px;
  line-height:1.6;
  color: rgba(255,255,255,.85);
}

.footer-contact-mini{
  margin-top:16px;
  font-size:14px;
  line-height:1.6;
  color: rgba(255,255,255,.85);
}

.footer-col h4{
  margin:0 0 14px;
  font-size:18px;
  font-weight:700;
}

.footer-col h4::after{
  content:"";
  display:block;
  width:40px;
  height:2px;
  background:#f5c400;
  margin-top:8px;
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  color: rgba(255,255,255,.85);
  text-decoration:none;
  font-size:14px;
}

.footer-col ul li a:hover{
  color:#ffffff;
}

.footer-contact-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-contact-form input{
  padding:12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.1);
  color:#fff;
  outline:none;
}

.footer-contact-form input::placeholder{
  color: rgba(255,255,255,.7);
}

.footer-contact-form button{
  padding:12px;
  border-radius:8px;
  border:0;
  background:#f5c400;
  color:#0b1220;
  font-weight:800;
  cursor:pointer;
}

.footer-contact-form button:hover{
  filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 900px){
  .footer-top-inner{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px){
  .footer-top-inner{
    grid-template-columns: 1fr;
  }
}
/* Make footer full width (break out of container) */
.footer-top{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}