@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');
/* ── colors────────────────── */
:root {
  --navy:       #4B28B7;
  --gold:       #10B05C;
  --gold-light: #F4A300;
  --cream:      #faf7f0;
  --white:      #ffffff;
  --gray-100:   #f4f4f4;
  --gray-600:   #6c757d;
  --text-dark:  #1a1a2e;
  --shadow-sm:  0 2px 8px rgba(13,27,62,0.10);
  --shadow-md:  0 8px 32px rgba(13,27,62,0.15);
  --transition: 0.3s ease;
  --font-head:  'Merriweather', Georgia, serif;
  --font-body:  'Poppins', 'Segoe UI', sans-serif;
  --radius:     8px;
}

    #splash-screen {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--navy);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
#splash-screen.fade-out {
  display: none !important;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#splash-screen img {
    width: 200px !important;
    height: 200px !important;
    border: none !important;
    object-fit: cover !important;
}
@media screen and (max-width: 780px) {
    #splash-screen img {
        width: 80px !important;
        height: 80px !important;
    }
    #splash-screen h3, #splash-screen h4 {
        font-size: 1.2rem !important;
        color: var(--white) !important;
    }
  
}

*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; }
html { 
    scroll-behavior: smooth;
 }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
img {
    max-width: 100%; 
    height: auto; 
    display: block; }
ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--navy); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: #444; }
.lead { font-size: 1.15rem; font-weight: 300; color: #555; }

/* Default section styles */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.divider-gold {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}
.divider-gold.center { margin: 1rem auto 1.5rem; }
.bg-navy   { background: var(--navy); color: var(--white); }
.bg-cream  { background: var(--cream); }
.bg-gold   { background: var(--gold); }
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

/*button */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: all var(--transition);
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: all var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  transition: all var(--transition);
}
.btn-navy:hover { background: transparent; color: var(--navy); }

/*top header*/
#topbar {
  background: var(--navy);
  color: #ffffff;
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--gold);
}
#topbar a { color: #ffffff; }
#topbar a:hover { color: var(--gold-light); }
#topbar .topbar-info i { color: var(--gold); margin-right: 5px; }
#mainNav {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
  position: sticky;
  top: 0;
  z-index: 1000;
}
/* Main header */
#mainNav.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.brand-logo {
  width: 54px; height: 54px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.brand-logo span { font-family: var(--font-head); font-weight: 900; color: var(--gold); font-size: 1.3rem; }
.brand-text { line-height: 1.1; }
.brand-text strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--navy); font-weight: 700; }
.brand-text small { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 24px 14px !important;
  position: relative;
  transition: color var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler { border: 2px solid var(--gold); border-radius: var(--radius); padding: 6px 10px; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230d1b3e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* Hero
 */
 .hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
 background:  url('assets/images/hero-bg.png') center/cover no-repeat;
}

.hero-bg {
  position: absolute; inset: 0;
  background: var(--navy);
  
}
@keyframes hero-zoom { from{transform:scale(1.04)} to{transform:scale(1)}}
.hero-content { position: relative; z-index: 2; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .lead { color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badge {
  position: absolute; bottom: 40px; right: 5%;
  width: 110px; height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: spin-slow 20s linear infinite;
}
.hero-badge span { font-size: 0.6rem; font-weight: 700; color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase; }
.hero-badge strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); }
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ── Notice Bar ───────────────────────────────────────────── */
.notice-bar {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 0;
  font-weight: 700;
  font-size: 0.85rem;
  overflow: hidden;
}
.notice-scroll {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
}
.notice-scroll i { margin-right: 8px; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Cards ────────────────────────────────────────────────── */
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px 28px;
  border-bottom: 4px solid transparent;
  transition: all var(--transition);
  height: 100%;
}
.info-card:hover { border-bottom-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card .card-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--gold);
  border: 2px solid var(--gold-light);
}
.program-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}
.program-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.program-card:hover img { transform: scale(1.08); }
.program-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.92) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.program-card .overlay h4 { color: var(--white); margin-bottom: 4px; }
.program-card .overlay p { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin: 0; }
.program-card .overlay .badge-gold {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ── News Cards ───────────────────────────────────────────── */
.news-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); height: 100%; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card img { height: 200px; width: 100%; object-fit: cover; }
.news-card-body { padding: 24px; background: var(--white); }
.news-card-body .date { font-size: 0.75rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.news-card-body h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.news-card-body p { font-size: 0.9rem; color: #666; margin: 0; }

/* ── Testimonial ──────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  height: 100%;
}
.testimonial-card blockquote { font-style: italic; color: #555; font-size: 1rem; margin-bottom: 1.5rem; }
.testimonial-card .quote-icon { font-size: 2.5rem; color: var(--gold-light); line-height: 1; margin-bottom: 1rem; font-family: Georgia; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial-author span { font-size: 0.8rem; color: var(--gold); }

/* ── Page Hero (inner pages) ──────────────────────────────── */

 .page-hero {
  height: 60vh !important;
  position: relative;
  inset: 0;
  overflow: hidden;
  background: 
    linear-gradient(135deg, rgba(26,48,96,0.7), rgba(26,48,96,0.9)),
}

.page-hero h1 {
  color: var(--white);
}


/* ── Accordion ────────────────────────────────────────────── */
.accordion-button { font-weight: 600; color: var(--navy); background: var(--cream); font-family: var(--font-head); }
.accordion-button:not(.collapsed) { background: var(--navy); color: var(--gold); box-shadow: none; }
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed)::after { filter: brightness(10) sepia(1) hue-rotate(10deg); }
.accordion-item { border: 1px solid #e0d9cc; border-radius: var(--radius) !important; margin-bottom: 10px; overflow: hidden; }

/* ── Contact Form ─────────────────────────────────────────── */
.form-control, .form-select {
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.15);
  outline: none;
}
.form-label { font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 6px; }

/* ── Stats Strip ──────────────────────────────────────────── */
.stats-strip { background: var(--navy); padding: 60px 0; }
.stat-item { text-align: center; }
.stat-item .num { font-family: var(--font-head); font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-item .lbl { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.65); margin-top: 6px; }
.stat-item .sep { width: 1px; height: 60px; background: rgba(255,255,255,0.1); margin: auto; }

/* ── Values / Feature List ────────────────────────────────── */
.value-item { display: flex; gap: 18px; margin-bottom: 2rem; }
.value-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 1.2rem; flex-shrink: 0; }
.value-text h5 { color: var(--navy); margin-bottom: 4px; font-size: 1rem; }
.value-text p { font-size: 0.9rem; margin: 0; color: #666; }

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item img { 
    width: 100%; 
    height: 220px; 
    object-fit: cover; 
    transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,62,0.7);
  display: flex; 
  align-items: center; 
  justify-content: center;
  opacity: 0; 
  transition: opacity var(--transition);
  color: var(--gold); 
  font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Footer ───────────────────────────────────────────────── */
#footer { 
    background: #07101f;
     color: rgba(255,255,255,0.75); }
#footer-top { 
    padding: 70px 0 50px; 
    border-bottom: 1px solid rgba(255,255,255,0.08); }
#footer h5 { color: var(--gold); font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.1em; }
#footer p { font-size: 0.88rem; line-height: 1.8; }
#footer ul li { margin-bottom: 8px; }
#footer ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); }
#footer ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-logo-brand strong { font-family: var(--font-head); color: var(--white); font-size: 1.1rem; display: block; }
.footer-logo-brand small { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.social-links { display: flex; gap: 10px; margin-top: 1rem; }
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.88rem; }
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
#footer-bottom { background: #040c18; padding: 18px 0; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
#footer-bottom a { color: rgba(255,255,255,0.4); }
#footer-bottom a:hover { color: var(--gold); }

/* ── Back-to-top ──────────────────────────────────────────── */
#backToTop {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 999;
}
#backToTop.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#backToTop:hover { background: var(--navy); color: var(--gold); }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb { background: transparent; margin: 0; padding: 0; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ── Animations ───────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Alert / Notice ───────────────────────────────────────── */
.alert-gold { background: #fff8e1; border-left: 4px solid var(--gold); color: var(--navy); border-radius: var(--radius); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-nav .nav-link { padding: 10px 16px !important; }
  .navbar-nav .nav-link::after { display: none; }
  .hero { min-height: 70vh; }
  .hero-badge { display: none; }
  .stats-strip .col-6 { border-right: none !important; }
}
@media (max-width: 767px) {
  .section-pad { padding: 56px 0; }
  .hero-stats { gap: 24px; }
  #topbar { display: none; }
  .mt-4 p{
    color:#e0d9cc;
  }
}
