:root {
  --navy: #0B2B5A;
  --navy-deep: #071E3D;
  --navy-mid: #123A6F;
  --green: #2E7D32;
  --green-dark: #1B5E20;
  --orange: #E65100;
  --cyan: #0288D1;
  --indigo: #4527A0;
  --white: #FFFFFF;
  --bg: #F5F7FA;
  --text: #1A2332;
  --muted: #5A6A7A;
  --border: #E2E8F0;
  --shadow: 0 10px 30px rgba(11, 43, 90, 0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Noto Sans Devanagari', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,.92);
  padding: 8px 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar-left a { color: #fff; text-decoration: none; font-weight: 500; }
.topbar-left a:hover { color: #A5D6A7; }
.topbar-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.top-btn {
  background: var(--green);
  color: #fff !important;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  transition: background .2s;
}
.top-btn:hover { background: var(--green-dark); }

/* ===== NAV ===== */
.site-nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(11, 43, 90, 0.08);
  padding: 8px 4%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo {
  height: 64px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}
.site-logo--footer {
  height: 88px;
  max-width: 180px;
  filter: brightness(0) invert(1);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-menu a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 14px;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green);
  background: #E8F5E9;
}
.nav-cta {
  flex-shrink: 0;
  background: var(--green);
  color: #fff !important;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13.5px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.ham span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; display: block; }
.mob-menu {
  display: none;
  position: fixed;
  top: 120px;
  left: 0; right: 0;
  background: #fff;
  z-index: 999;
  padding: 16px 5% 24px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  flex-direction: column;
  gap: 4px;
}
.mob-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
}
.mob-menu a:hover, .mob-menu a.active { background: #E8F5E9; color: var(--green); }
.mob-menu .mob-reg {
  margin-top: 8px;
  text-align: center;
  background: var(--green);
  color: #fff !important;
  padding: 14px;
  border-radius: 8px;
}

/* ===== HERO ===== */
.hero-wrap { position: relative; }
.hero-slider {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.on { opacity: 1; z-index: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,30,61,.78) 0%, rgba(7,30,61,.45) 55%, rgba(7,30,61,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 6% 140px;
  color: #fff;
}
.hero-logo-badge {
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  line-height: 0;
}
.hero-logo-badge img {
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.hero-eyebrow {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 12px;
  color: rgba(255,255,255,.9);
}
.hero-content h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  max-width: 720px;
  margin-bottom: 10px;
}
.hero-content .hero-line {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 500;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-bottom: 28px;
}
.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transition: transform .2s, background .2s;
}
.btn-apply:hover { transform: translateY(-2px); background: #E8F5E9; }
.hero-arrows {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  padding-bottom: 80px;
}
.hero-arrows button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all .2s;
}
.hero-arrows button:hover { background: rgba(255,255,255,.28); border-color: #fff; }

/* Feature boxes overlapping hero */
.feature-strip {
  position: relative;
  z-index: 5;
  margin-top: -70px;
  padding: 0 4% 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.feat-box {
  border-radius: 10px;
  padding: 28px 18px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.feat-box:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(11,43,90,.22); }
.feat-box .ico { font-size: 34px; line-height: 1; }
.feat-box strong { font-size: 16px; font-weight: 700; font-family: 'Manrope', sans-serif; }
.feat-box span { font-size: 12px; opacity: .9; }
.feat-orange { background: linear-gradient(145deg, #F57C00, #E65100); }
.feat-cyan { background: linear-gradient(145deg, #29B6F6, #0288D1); }
.feat-navy { background: linear-gradient(145deg, #1565C0, #0D47A1); }
.feat-purple { background: linear-gradient(145deg, #7E57C2, #4527A0); }

/* ===== SECTIONS ===== */
section { padding: 70px 4%; }
.wrap { max-width: 1140px; margin: 0 auto; }
.sec-head { text-align: center; margin-bottom: 42px; }
.sec-eyebrow {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sec-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 10px;
}
.sec-title .underline {
  position: relative;
  display: inline-block;
}
.sec-title .underline::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -6px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}
.sec-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 640px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* About / intro */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.about-grid p { color: var(--muted); margin-bottom: 14px; font-size: 15px; line-height: 1.8; }
.about-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
  background: center/cover no-repeat url('../images/gallery/2.jpg');
}
.about-photo-stack {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 360px;
}
.about-photo-stack .ph {
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  min-height: 140px;
}
.about-photo-stack .ph-main {
  grid-row: 1 / 3;
  min-height: 360px;
}

/* Image gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 14px;
}
.gallery-grid .g-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 18px rgba(11,43,90,.1);
  transition: transform .3s;
}
.gallery-grid .g-item:hover { transform: scale(1.015); }
.gallery-grid .g-big { grid-row: 1 / 3; }
.gallery-grid .g-item::after {
  content: attr(data-label);
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(7,30,61,.85));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

/* Service cards with images */
.prog-card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.prog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,30,61,.55), transparent 60%);
}

/* Category image cards on courses */
.cat-img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.cat-img-card {
  border-radius: 12px;
  overflow: hidden;
  min-height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
  transition: transform .25s;
}
.cat-img-card:hover { transform: translateY(-4px); }
.cat-img-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(7,30,61,.88));
}
.cat-img-card span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  padding: 16px;
  font-size: 15px;
}

/* Side image on register/inquiry */
.side-photo {
  border-radius: 14px;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: 8px;
  transition: background .2s, transform .2s;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }

/* Services / programmes cards */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.prog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11,43,90,.08);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.prog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.prog-card-top {
  padding: 28px 24px 20px;
  color: #fff;
}
.prog-card-top .ico { font-size: 36px; margin-bottom: 10px; }
.prog-card-top h3 { font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 800; }
.prog-card-top p { font-size: 13px; opacity: .85; margin-top: 4px; }
.prog-card-body { padding: 18px 24px 24px; }
.prog-card-body ul { list-style: none; }
.prog-card-body li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #F0F3F7;
  font-size: 13.5px;
  color: var(--text);
  font-weight: 500;
}
.prog-card-body li:last-child { border: none; }
.prog-card-body .tick {
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

/* Courses */
.tab-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; justify-content: center; }
.tab-btn {
  padding: 10px 20px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  color: var(--navy);
  font-family: inherit;
  transition: all .2s;
}
.tab-btn.on, .tab-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.c-pill {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid var(--border);
  transition: all .2s;
}
.c-pill:hover { border-color: var(--green); box-shadow: 0 6px 20px rgba(46,125,50,.12); transform: translateY(-2px); }
.c-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--green); margin-bottom: 6px; }
.c-pill[data-cat="pg"] .c-cat { color: var(--indigo); }
.c-pill[data-cat="prof"] .c-cat { color: var(--orange); }
.c-pill[data-cat="voc"] .c-cat { color: var(--cyan); }
.c-pill h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.c-pill p { font-size: 12.5px; color: var(--muted); }

/* Why / campus style */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.wicon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 14px;
  background: #E8F5E9;
}
.why-card h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; font-family: 'Manrope', sans-serif; }
.whi { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* Admission CTA band */
.admit-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-mid));
  color: #fff;
  padding: 64px 4%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.admit-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.admit-band .wrap { position: relative; z-index: 1; }
.admit-band h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
}
.admit-band p { color: rgba(255,255,255,.75); margin-bottom: 24px; font-size: 15px; }
.btn-white {
  display: inline-flex;
  background: #fff;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s;
}
.btn-white:hover { transform: translateY(-2px); }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--border);
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: 'Manrope', sans-serif;
}
.step-card h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.step-card p { font-size: 13px; color: var(--muted); }

/* Forms */
.inq-layout, .reg-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.c-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}
.c-item .ci { font-size: 24px; }
.c-item .cd strong { display: block; font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.c-item .cd a, .c-item .cd span { font-size: 14px; font-weight: 700; color: var(--navy); text-decoration: none; }
.c-item .cd a:hover { color: var(--green); }

.inq-form-box, .reg-form {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.inq-form-box h3, .reg-form h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.f-note { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-grp, .if-grp { margin-bottom: 16px; }
.f-grp label, .if-grp label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.f-grp label .hi, .if-grp label .hi { color: var(--muted); font-weight: 400; }
.f-grp input, .f-grp select, .f-grp textarea,
.if-grp input, .if-grp select, .if-grp textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #FAFBFC;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.f-grp input:focus, .f-grp select:focus, .f-grp textarea:focus,
.if-grp input:focus, .if-grp select:focus, .if-grp textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,125,50,.12);
}
.f-grp textarea, .if-grp textarea { min-height: 90px; resize: vertical; }
.f-submit, .if-submit {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  margin-top: 4px;
  transition: background .2s, transform .2s;
}
.f-submit:hover, .if-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.f-ok, .if-ok {
  display: none;
  margin-top: 14px;
  text-align: center;
  padding: 12px;
  background: #E8F5E9;
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #A5D6A7;
}
.reg-info h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.reg-info > p { color: var(--muted); margin-bottom: 24px; font-size: 14.5px; line-height: 1.75; }
.reg-step { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.reg-step .step-num { margin: 0; flex-shrink: 0; }
.step-txt strong { display: block; color: var(--navy); font-size: 14px; margin-bottom: 2px; }
.step-txt span { color: var(--muted); font-size: 13px; }

/* Contact page dark */
#contact.contact-page {
  background: var(--navy-deep);
  padding: 70px 4%;
}
#contact .sec-title { color: #fff; }
#contact .sec-sub { color: rgba(255,255,255,.55); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 36px;
}
.ct-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 24px 18px;
  transition: background .2s;
}
.ct-card:hover { background: rgba(255,255,255,.1); }
.ct-icon { font-size: 28px; margin-bottom: 10px; }
.ct-lbl { font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.ct-val { color: #fff; font-weight: 700; font-size: 14px; }
.ct-val a { color: #81C784; text-decoration: none; }
.wa-float {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.wa-float:hover { transform: translateY(-2px); }

/* Page banner */
.page-banner {
  background-color: var(--navy-deep);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 56px 4% 48px;
  text-align: center;
  position: relative;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7,30,61,.88), rgba(18,58,111,.72));
  z-index: 0;
}
.page-banner-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-banner .sec-eyebrow { color: #81C784; }
.page-banner .sec-title { color: #fff; }
.page-banner .sec-sub { color: rgba(255,255,255,.7); margin: 10px auto 0; }
.page-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  background: #fff;
  transition: all .2s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #81C784; color: #81C784; }

/* Floating enroll */
.enroll-float {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 900;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 8px 28px rgba(46,125,50,.45);
  animation: pulse 2.4s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 56px 4% 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto 36px;
}
.footer-brand .logo-wrap { justify-content: flex-start; margin-bottom: 14px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; margin-bottom: 10px; }
.footer-brand a { color: #81C784; text-decoration: none; font-weight: 600; }
.footer-col h4 {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 13.5px;
  transition: color .2s;
}
.footer-col a:hover { color: #81C784; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1140px;
  margin: 0 auto;
  font-size: 12.5px;
}

/* Marquee subtle */
.marquee-strip {
  background: var(--navy);
  padding: 11px 0;
  overflow: hidden;
}
.marquee-inner { display: flex; gap: 40px; white-space: nowrap; animation: scroll 30s linear infinite; }
.marquee-item {
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.marquee-item::before { content: '★'; color: #81C784; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Register section on colored bg */
#register {
  background: linear-gradient(145deg, #E8F5E9 0%, #F5F7FA 40%, #E3F2FD 100%);
}
#register .sec-title { text-align: left; }
#register .sec-sub { margin-left: 0; text-align: left; }
#register .sec-eyebrow { display: inline-block; }

/* Responsive */
@media (max-width: 980px) {
  .site-nav {
    min-height: 70px;
    padding: 6px 4%;
  }
  .nav-menu, .nav-cta { display: none; }
  .ham { display: flex; }
  .site-logo { height: 52px; max-width: 120px; }
  .feature-strip { grid-template-columns: 1fr 1fr; margin-top: -40px; }
  .about-grid, .inq-layout, .reg-wrap { grid-template-columns: 1fr; }
  .about-photo-stack { min-height: 280px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; }
  .gallery-grid .g-big { grid-row: auto; grid-column: 1 / -1; min-height: 200px; }
  .cat-img-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .mob-menu { top: 112px; }
}
@media (max-width: 600px) {
  .topbar-actions { display: none; }
  .feature-strip { grid-template-columns: 1fr; margin-top: -28px; }
  .hero-content { padding: 60px 5% 100px; min-height: 62vh; }
  .hero-slider { min-height: 62vh; }
  .footer-grid { grid-template-columns: 1fr; }
  .inq-form-box, .reg-form { padding: 24px 18px; }
  section { padding: 50px 4%; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-grid .g-item { min-height: 180px; }
  .cat-img-grid { grid-template-columns: 1fr; }
  .site-logo { height: 46px; max-width: 110px; }
}
