/* ================= ROOT VARIABLES ================= */
:root {
  --deep-green: #003300;
  --accent: #00b37d;
  --soft-bg: #f3faf6;
  --white: #ffffff;
  --text-muted: #666;
}

/* ================= BASE STYLES ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  background-color: var(--soft-bg);
  color: #222;
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.main-navbar {
  background-color: var(--deep-green);
}

.main-navbar .navbar-brand {
  color: var(--white) !important;
  font-weight: 700;
}

.main-navbar .nav-link {
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.75rem 1rem;
}

.main-navbar .nav-link:hover {
  color: #cce5cc !important;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 0.5rem;
  border: none;
}

.dropdown-menu .dropdown-item {
  font-weight: 500;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--deep-green);
  color: var(--white);
}

/* Hover dropdown for desktop */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Mobile toggler */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.6);
}

.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='rgba(255,255,255,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ================= HERO SLIDER ================= */
.hero-slider,
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 100vh;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;

  /* CENTER CONTENT */
  display: flex;
  align-items: center;      /* vertical centering */
  justify-content: center;  /* horizontal centering */
}


/* Overlay */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* Fade transition */
.carousel-fade .carousel-item {
  transition: opacity 0.8s ease-in-out;
}

/* ================= SECTION HEADERS ================= */
.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  display: block;
  margin-top: 0.5rem;
}

/* ================= PROGRAM CARDS ================= */
.program {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

/* ================= CTA SECTIONS ================= */
.cta,
.ctab {
  background:
    radial-gradient(circle at 20% 20%, rgba(0,179,125,.15), transparent 40%),
    linear-gradient(120deg, #003300, #004d33);
  color: var(--white);
  position: relative;
}

.ctab::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpeg') center/cover;
  opacity: 0.15;
}

.ctab-content {
  position: relative;
  z-index: 2;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-details .contact-item {
     background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.05); display: flex; gap: 15px; margin-bottom: 20px; }
.address-item { width: 100%; }


.icon {
  font-size: 26px;
}

/* Contact image */
.contact-section img {
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive contact */
@media (max-width: 768px) {
  .contact-details {
    grid-template-columns: 1fr;
  }

  .address-item {
    grid-column: span 1;
  }
}

/* ================= FOOTER ================= */
footer {
  background-color: var(--deep-green);
  color: var(--white);
  padding: 30px 0;
  text-align: center;
}
/* ================= FOOTER ================= */
footer {
  background-color: var(--deep-green);
  color: var(--white);
  padding: 30px 0;
 
}
/* ================= QUICKLINKS ================= */
.quick-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 0;
}

.quick-links li:last-child {
    border-bottom: none;
}

.quick-links a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 15px;
    transition: all 0.3s ease;
}

.quick-links a .arrow {
    margin-right: 10px;
    color: #00b37d;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.quick-links a:hover {
    color: #00b37d;
    padding-left: 5px;
}

.quick-links a:hover .arrow {
    transform: translateX(4px);
}

.top-header {
    background-color: #ffff;
    color: #070000;
    font-size: 14px;
    padding: 6px 0;
}

.top-header a {
    color: #070000;
    text-decoration: none;
}

.top-header a:hover {
    text-decoration: underline;
}

.contact-item i {
    margin-right: 6px;
    color: #00b37d;
}
.sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1030; /* above content */
}
/* breadcrumbs */
  .modern-breadcrumb-wrap {
        background: linear-gradient(135deg, #ffffff, #f8f9fa);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 16px;
        padding: 14px 20px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        margin-bottom: 20px;
    }

    .modern-breadcrumb {
        margin-bottom: 0;
        font-size: 0.95rem;
        font-weight: 500;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .modern-breadcrumb .breadcrumb-item {
        display: flex;
        align-items: center;
    }

    .modern-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        content: "›";
        color: #6c757d;
        font-size: 1rem;
        padding: 0 10px;
        display: flex;
        align-items: center;
    }

    .modern-breadcrumb .breadcrumb-item a {
        color: #0d6efd;
        text-decoration: none;
        transition: all 0.25s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        line-height: 1;
    }

    .modern-breadcrumb .breadcrumb-item a:hover {
        color: #0a58ca;
        text-decoration: underline;
    }

    .modern-breadcrumb .breadcrumb-item.active {
        color: #212529;
        font-weight: 600;
        display: flex;
        align-items: center;
        line-height: 1;
    }

    .modern-breadcrumb .breadcrumb-home-icon {
        font-size: 0.95rem;
        line-height: 1;
        display: inline-flex;
        align-items: center;
    }

    @media (max-width: 576px) {
        .modern-breadcrumb-wrap {
            padding: 12px 14px;
            border-radius: 12px;
        }

        .modern-breadcrumb {
            font-size: 0.88rem;
        }

        .modern-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            padding: 0 6px;
        }
    }

    .director-card {
  background: #f8fffb;
  border-radius: 18px;
  transition: all 0.3s ease;
}

.director-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 128, 0, 0.12);
}

.director-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
}

.director-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #111;
  line-height: 1.4;
}

.director-title {
  font-size: 1rem;
  font-weight: 600;
  color: #198754;
}