﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', sans-serif; background: #fff; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

:root {
  --navy:   #11296b;
  --gold:   #ffcb05;
  --dark:   #212121;
  --light:  #f7f8fa;
  --border: #e0e0e0;
  --text:   #444;
}


/* ══════════════════════════════════════════════════════
   HEADER — floats over hero/slider like original
══════════════════════════════════════════════════════ */
.main-header {
  position: absolute;   /* sits ON TOP of the hero slider */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent; /* fully transparent so slider shows through */
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 24px 0;
}

/* Logo area — matches screenshot (logo + school name stacked, top-left) */
.header-logo img {
  max-width: 360px;
  width: 90%;
  height: auto;
}

/* Hamburger button — top-right, navy filled square like screenshot */
.nav-toggle {
  background: #11296b;
  border: none;
  border-radius: 6px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 4px;
  transition: background .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.nav-toggle:hover { background: #0a1c4a; }

/* ══════════════════════════════════════════════════════
   DESKTOP FULLSCREEN OVERLAY MENU
══════════════════════════════════════════════════════ */
.desktop-menu {
  display: none;             /* JS toggles to block */
  position: fixed;
  inset: 0;
  background: rgb(10 28 74);
 /* background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);*/
  background-size: 44px 44px;
  color: #fff;
  z-index: 99999;
  overflow-y: auto;
  animation: dmFadeIn .25s ease;
}
@keyframes dmFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* sticky top bar inside desktop menu */
.dm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  position: sticky;
  top: 0;
  background: rgba(10, 28, 74, 0.98);
  z-index: 10;
}
.dm-topbar img { height: 85px; width: auto; }

/* close (✕) button inside desktop menu */
.dm-close {
  background: none;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s, color .2s;
}
.dm-close:hover {
  background: #ffcb05;
  border-color: #ffcb05;
  color: #11296b;
}

/* grid of link columns */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 52px;
  padding: 40px 48px 60px;
}
@media (max-width: 1100px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 750px)  { .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 28px; padding: 28px 24px 60px; } }

.menu-col h4 {
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffcb05;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ffcb05;
}

.menu-col a {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: .86rem;
  color: rgba(255,255,255,.75);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
  transition: color .2s, padding-left .2s;
}
.menu-col a:last-child { border-bottom: none; }

.menu-col a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .68rem;
  color: #ffcb05;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity .2s, width .2s;
}
.menu-col a:hover {
  color: #fff;
  padding-left: 8px;
}
.menu-col a:hover::before {
  opacity: 1;
  width: 14px;
}

/* ══════════════════════════════════════════════════════
   MOBILE SLIDE-IN MENU (≤ 991px)
══════════════════════════════════════════════════════ */
/* dark semi-transparent backdrop */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* slide-in drawer */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 290px;
  max-width: 88vw;
  height: 100%;
  background: #11296b;
  z-index: 99999;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}

/* drawer top bar */
.mm-head {
  background: #0a1c4a;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #ffcb05;
  position: sticky;
  top: 0;
  z-index: 5;
}
.mm-head img { height: 60px !important; width: auto; }

.mm-close {
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  transition: background .2s;
}
.mm-close:hover { background: #ffcb05; color: #11296b; }

/* nav items */
.mm-nav {
  padding: 8px 0 50px;
  flex: 1;
  margin: 0;
  list-style: none;
}
.mm-nav > li {
  border-bottom: 1px solid rgba(255,255,255,.09);
}

/* parent row (clickable) */
.mm-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}
.mm-parent:hover { background: rgba(255,255,255,.06); }

.mm-parent .chevron {
  font-size: .72rem;
  color: #ffcb05;
  transition: transform .3s;
  flex-shrink: 0;
}
.mm-nav li.active > .mm-parent .chevron {
  transform: rotate(90deg);
}

/* sub-menu list */
.mm-sub {
  display: none;
  background: rgba(0,0,0,.2);
  padding: 4px 0;
  list-style: none;
  margin: 0;
}
.mm-nav li.active > .mm-sub {
  display: block;
}

.mm-sub li a {
  display: flex;
  align-items: center;
  padding: 9px 28px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  border-left: 3px solid transparent;
  transition: color .2s, border-color .2s, background .2s;
}
.mm-sub li a:hover {
  color: #ffcb05;
  border-left-color: #ffcb05;
  background: rgba(255,203,5,.06);
}

/* ══════════════════════════════════════════════════════
   DEMO — hero placeholder so you can see the header
   floating over it (remove in your real site)
══════════════════════════════════════════════════════ */
.demo-hero-wrap {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #1a3a6a 0%, #0a1c3a 60%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 120px 20px 60px;
}
.demo-hero-wrap h1 {
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.demo-hero-wrap p { opacity: .65; }


/* ══════════════════════════════════════════════
   FOOTER — main area (white background)
══════════════════════════════════════════════ */
.site-footer {
  background: #fbfbfb;
  border-top: 2px solid var(--border);
  padding: 56px 0 0;
  color: var(--dark);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* three-column top row */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
@media (max-width: 992px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Col 1: logo + about ── */
.footer-brand img {
  height: auto;
  width: 260px;
  max-width: 100%;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.75;
  color: #555;
}
.footer-brand p b { color: var(--navy); }

/* ── Col 2: connect with us ── */
.footer-connect h3 {
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}
.footer-connect h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  left: -38px !important;
  position: relative;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: #555;
}
.contact-list li .icon-wrap {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  font-size: .8rem;
}
.contact-list li a {
  color: #555;
  transition: color .2s;
  line-height: 1.5;
}
.contact-list li a:hover { color: var(--navy); }

/* ── Col 3: school name + socials ── */
.footer-social h3 {
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 6px;
  padding-bottom: 10px;
  position: relative;
}
.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-school-name {
  font-size: .82rem;
  color: #555;
  margin-bottom: 6px;
  line-height: 1.5;
}
.footer-school-location {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-icons a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--dark);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.social-icons a:hover { transform: translateY(-3px); }
.social-icons a.insta:hover  { background: #e1306c; border-color: #e1306c; color: #fff; }
.social-icons a.fb:hover     { background: #1877f2; border-color: #1877f2; color: #fff; }
.social-icons a.yt:hover     { background: #ff0000; border-color: #ff0000; color: #fff; }
.social-icons a.tw:hover     { background: #000;    border-color: #000;    color: #fff; }

/* ── Divider ── */
.footer-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Copyright bar ── */
.footer-bottom {
  padding: 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
  color: #888;
}
.footer-bottom a { color: var(--navy); font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════
   STICKY BOTTOM BAR  (desktop)
══════════════════════════════════════════════ */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  background: linear-gradient(90deg, #0000f8 0%, #1b60d5 100%);
  border-radius: 10px 10px 0 0;
  border: 1px solid rgba(255,255,255,.25);
  border-bottom: none;
  padding: 0 0px;
  display: flex;
  align-items: center;
  gap: 0;
  height: 30px;
  box-shadow: 0 -2px 12px rgba(0,0,0,.25);
  white-space: nowrap;
}
/* sparkle top accent */
.sticky-bottom-bar::before {
  content: '';
  position: absolute;
  top: 0px; left: 0px;
  width: 20px; height: 21px;
  background: url('../Images/button_top.png') no-repeat center / contain;
  filter: blur(.5px);
  opacity: .8;
}

.sticky-bottom-bar a {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.2);
  transition: background .2s;
}
.sticky-bottom-bar a:last-child { border-right: none; }
.sticky-bottom-bar a:hover { background: rgba(255,255,255,.12); }

/* hide on mobile — show sm sticky instead */
@media (max-width: 767px) { .sticky-bottom-bar { display: none; } }

/* ══════════════════════════════════════════════
   STICKY SMALL BAR  (mobile)
══════════════════════════════════════════════ */
.sticky-sm-bar {
  display: none;
  position: fixed;
  bottom: 0; right: 0;
  z-index: 9000;
  align-items: flex-end;
  flex-direction: column;
}

@media (max-width: 767px) { .sticky-sm-bar { display: flex; } }

/* toggle button */
.sticky-sm-btn {
  width: 46px; height: 46px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #0a3cc3 0%, #091536 100%);
  border: 1px solid rgba(255,255,255,.2);
  border-bottom: none;
  color: #fff;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
  box-shadow: 0 -2px 8px rgba(0,0,0,.3);
}

/* link list (slides up) */
.sticky-sm-links {
  background: linear-gradient(180deg, #0a3cc3 0%, #091536 100%);
  border: 1px solid rgba(255,255,255,.2);
  border-bottom: none;
  border-radius: 10px 0 0 0;
  padding: 8px 0;
  display: none;
  flex-direction: column;
  min-width: 200px;
  box-shadow: -2px -2px 12px rgba(0,0,0,.3);
}
.sticky-sm-links.open { display: flex; }
.sticky-sm-links a {
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background .2s;
  white-space: nowrap;
}
.sticky-sm-links a:last-child { border-bottom: none; }
.sticky-sm-links a:hover { background: rgba(255,255,255,.1); }

/* ── Floating buttons ── */
.whats-fixed {
  position: fixed;
  bottom: calc(10% + 55px);
  right: 18px;
  z-index: 9001;
  width: 44px;
  filter: drop-shadow(1px 4px 6px rgba(0,0,0,.3));
  transition: transform .3s;
}
.whats-fixed:hover { transform: scale(1.1); }
.whats-fixed img { width: 100%; }

.scroll-to-top {
  position: fixed;
  right: 18px;
  bottom: calc(10% + 108px);
  width: 38px;
  z-index: 9001;
  cursor: pointer;
  filter: drop-shadow(1px 4px 5px rgba(0,0,0,.25));
  display: none; /* shown via JS on scroll */
}
.scroll-to-top img { width: 100%; }