/* ============================================================
   Demo First PUBLIC SCHOOL – MAIN STYLESHEET
   school.css
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
    --navy:          #1a237e;
    --navy-dark:     #0d1357;
    --navy-mid:      #283593;
    --navy-light:    #3949ab;
    --gold:          #f9a825;
    --gold-light:    #ffd54f;
    --gold-dark:     #e65100;
    --white:         #ffffff;
    --off-white:     #f8f9fc;
    --gray-50:       #fafafa;
    --gray-100:      #f5f5f5;
    --gray-200:      #eeeeee;
    --gray-400:      #bdbdbd;
    --gray-600:      #757575;
    --gray-800:      #424242;
    --text-dark:     #1c2237;
    --text-muted:    #6c757d;
    --shadow-sm:     0 2px 8px rgba(26,35,126,.12);
    --shadow-md:     0 6px 24px rgba(26,35,126,.16);
    --shadow-lg:     0 16px 48px rgba(26,35,126,.22);
    --shadow-gold:   0 8px 32px rgba(249,168,37,.3);
    --radius:        12px;
    --radius-lg:     20px;
    --radius-xl:     32px;
    --transition:    all .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset / Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.3; }

.display-font { font-family: 'Playfair Display', serif; }

img { max-width: 100%; }
a { text-decoration: none; transition: var(--transition); }

/* ── Top Bar ────────────────────────────────────────────── */
.top-bar {
    background: var(--navy-dark);
    color: rgba(255,255,255,.8);
    font-size: .8rem;
    border-bottom: 2px solid var(--gold);
}
.top-bar-item { color: rgba(255,255,255,.8); }
.top-bar-item i { color: var(--gold); }
.top-bar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    color: var(--white);
    font-size: .75rem;
}
.top-bar-social:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

/* ── Main Navbar ────────────────────────────────────────── */
.main-navbar {
    background: var(--navy);
    padding: 0;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.main-navbar.scrolled {
    background: rgba(26,35,126,.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
    padding: 4px 0;
}

/* Logo */
.school-logo-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--navy-dark);
    box-shadow: 0 4px 15px rgba(249,168,37,.4);
    flex-shrink: 0;
    transition: var(--transition);
}
.navbar-brand:hover .school-logo-icon {
    transform: rotate(15deg) scale(1.05);
    box-shadow: var(--shadow-gold);
}
.school-logo-text { display: flex; flex-direction: column; }
.school-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .5px;
    line-height: 1.2;
}
.school-tagline {
    font-size: .65rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Nav Links */
.main-navbar .nav-link {
    color: rgba(255,255,255,.9) !important;
    font-size: .88rem;
    font-weight: 500;
    padding: 1.5rem .85rem !important;
    position: relative;
    letter-spacing: .3px;
}
.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 3px;
    background: var(--gold);
    border-radius: 3px 3px 0 0;
    transition: var(--transition);
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    left: 0; right: 0;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--gold-light) !important;
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white) !important;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: .6rem 1.5rem;
    font-size: .85rem;
    box-shadow: 0 4px 15px rgba(249,168,37,.35);
    transition: var(--transition);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249,168,37,.5);
    color: var(--white) !important;
}

/* Dropdown */
.animate-dropdown { animation: dropIn .25s ease; }
@keyframes dropIn { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--gold);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: .75rem 0;
    min-width: 240px;
}
.dropdown-item {
    font-size: .88rem;
    padding: .65rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}
.dropdown-item:hover {
    background: var(--navy);
    color: var(--gold-light) !important;
    padding-left: 2rem;
}

/* ── Page Header Banner ─────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: .5rem;
}
.page-header .lead { color: rgba(255,255,255,.8); }
.breadcrumb-item a { color: var(--gold-light); }
.breadcrumb-item.active { color: rgba(255,255,255,.6); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Section Titles ─────────────────────────────────────── */
.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    position: relative;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: .95rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.title-bar {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--navy-light));
    border-radius: 4px;
    margin: 1rem auto 1.5rem;
}
.title-bar-left { margin-left: 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-navy {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: .75rem 2rem;
    font-weight: 600;
    font-size: .9rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.btn-navy:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 50px;
    padding: .7rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── Cards ──────────────────────────────────────────────── */
.school-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26,35,126,.06);
    transition: var(--transition);
    overflow: hidden;
}
.school-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249,168,37,.3);
}
.card-img-wrap {
    overflow: hidden;
    position: relative;
}
.card-img-wrap img {
    transition: transform .5s ease;
    width: 100%;
    object-fit: cover;
    height: 220px;
}
.school-card:hover .card-img-wrap img { transform: scale(1.08); }
.card-img-overlay-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--gold);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

/* ── Hero Carousel ──────────────────────────────────────── */
.hero-carousel { position: relative; overflow: hidden; }
.hero-slide {
    min-height: 92vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,19,87,.85) 0%, rgba(26,35,126,.6) 50%, rgba(57,73,171,.3) 100%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); }
.hero-label {
    display: inline-block;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: pulse-border 2s infinite;
}
@keyframes pulse-border {
    0%,100% { box-shadow: 0 0 0 0 rgba(249,168,37,.4); }
    50% { box-shadow: 0 0 0 8px rgba(249,168,37,0); }
}
.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 15px rgba(0,0,0,.3);
}
.hero-title span { color: var(--gold-light); }
.hero-description {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,.85);
    max-width: 600px;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 56px;
    height: 56px;
    background: #dee2e62b;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    margin: 0 1.5rem;
    align-self: center;
}
.carousel-control-prev { left: 1rem; }
.carousel-control-next { right: 1rem; }
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background: rgb(255 255 255 / 15%);
    }
.carousel-indicators [data-bs-target] {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    border: 2px solid rgba(255,255,255,.5);
}
.carousel-indicators .active {
    background: var(--gold);
    border-color: var(--gold);
    width: 30px;
    border-radius: 5px;
}

/* ── Stats Section ──────────────────────────────────────── */
.stats-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(249,168,37,.08) 0%, transparent 70%);
}
.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.stat-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: .5rem;
}
.stat-label {
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    font-weight: 500;
    letter-spacing: .5px;
}

/* ── Programs Section ───────────────────────────────────── */
.program-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--gray-200);
    height: 100%;
}
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.program-card-img {
    width: 100%; height: 200px;
    object-fit: cover;
    transition: transform .5s ease;
}
.program-card:hover .program-card-img { transform: scale(1.06); }
.program-card-body { padding: 1.5rem; }
.program-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1rem 0; }
.program-meta-item {
    display: flex; align-items: center;
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
}
.program-meta-item i { color: var(--navy); margin-right: 5px; }
.curriculum-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.curriculum-tag {
    font-size: .7rem;
    font-weight: 600;
    background: rgba(26,35,126,.07);
    color: var(--navy);
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(26,35,126,.15);
}

/* ── Fee Table ──────────────────────────────────────────── */
.fee-table-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.fee-table {
    margin: 0;
    font-size: .9rem;
}
.fee-table thead th {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    padding: 1rem 1.25rem;
    border: none;
    letter-spacing: .3px;
    font-size: .82rem;
    text-transform: uppercase;
}
.fee-table thead th:first-child { border-radius: 0; }
.fee-table tbody tr { transition: var(--transition); }
.fee-table tbody tr:hover { background: rgba(26,35,126,.04); }
.fee-table tbody td { padding: .9rem 1.25rem; vertical-align: middle; border-color: var(--gray-200); }
.fee-table tbody tr:nth-child(even) { background: var(--gray-50); }
.fee-total-cell {
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
}
.class-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

/* ── Faculty Cards ──────────────────────────────────────── */
.faculty-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    text-align: center;
    padding: 2rem 1.5rem;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.faculty-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    transform: scaleX(0);
    transition: transform .3s ease;
}
.faculty-card:hover::before { transform: scaleX(1); }
.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.faculty-photo {
    width: 100px; height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gray-200);
    margin: 0 auto 1.25rem;
    display: block;
    transition: var(--transition);
}
.faculty-card:hover .faculty-photo {
    border-color: var(--gold);
    transform: scale(1.05);
}
.faculty-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.faculty-designation { font-size: .82rem; color: var(--gold-dark); font-weight: 600; margin-bottom: .25rem; }
.faculty-dept { font-size: .78rem; color: var(--text-muted); margin-bottom: .75rem; }
.faculty-qual {
    font-size: .76rem;
    color: var(--text-muted);
    background: var(--gray-100);
    padding: .4rem .75rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: .75rem;
}
.faculty-exp-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--navy);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
}

/* ── Gallery Grid ───────────────────────────────────────── */
.gallery-filters { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
    padding: .5rem 1.5rem;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--text-muted);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 220px;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,19,87,.8) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-title { color: var(--white); font-size: .88rem; font-weight: 600; }
.gallery-overlay-cat {
    display: inline-block;
    font-size: .7rem;
    background: var(--gold);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 50px;
    margin-bottom: .4rem;
}
.gallery-zoom-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(0);
    width: 52px; height: 52px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}
.gallery-item:hover .gallery-zoom-icon { transform: translate(-50%,-50%) scale(1); }

/* ── News Cards ─────────────────────────────────────────── */
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.news-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.news-card-img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-card-img { transform: scale(1.06); }
.news-card-body { padding: 1.5rem; }
.badge-news    { background: rgba(26,35,126,.1); color: var(--navy); }
.badge-event   { background: rgba(249,168,37,.15); color: #c55a00; }
.badge-achievement { background: rgba(46,125,50,.12); color: #1b5e20; }
.news-badge {
    font-size: .7rem; font-weight: 700;
    padding: 4px 12px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 1px;
    display: inline-block;
    margin-bottom: .75rem;
}
.news-date { font-size: .78rem; color: var(--text-muted); }
.news-date i { color: var(--gold); }
.news-card-title {
    font-size: 1rem; font-weight: 700; color: var(--navy);
    line-height: 1.4; margin: .5rem 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-summary {
    font-size: .85rem; color: var(--text-muted); line-height: 1.6;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* ── Services Grid ──────────────────────────────────────── */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 0;
}
.service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(26,35,126,.08), rgba(26,35,126,.15));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--navy);
    transition: var(--transition);
}
.service-card:hover .service-icon { background: rgba(255,255,255,.2); color: var(--gold); }
.service-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; transition: var(--transition); }
.service-text { font-size: .88rem; color: var(--text-muted); transition: var(--transition); }
.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-text { color: rgba(255,255,255,.75); }

/* ── Contact Form ───────────────────────────────────────── */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}
.form-label { font-size: .85rem; font-weight: 600; color: var(--text-dark); margin-bottom: .4rem; }
.form-control, .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: .75rem 1rem;
    font-size: .9rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}
.form-control:focus, .form-select:focus {
    border-color: var(--navy-light);
    box-shadow: 0 0 0 4px rgba(57,73,171,.12);
    outline: none;
}
.contact-info-card {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: var(--white);
    height: 100%;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.ci-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(249,168,37,.2);
    border: 2px solid rgba(249,168,37,.4);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}
.ci-label { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }
.ci-value { font-size: .9rem; color: var(--white); font-weight: 500; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-embed iframe { display: block; }

/* ── Admissions Steps ───────────────────────────────────── */
.admission-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}
.admission-step:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.step-number {
    width: 56px; height: 56px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}
.step-content h5 { color: var(--navy); font-size: 1rem; margin-bottom: .4rem; }
.step-content p { font-size: .86rem; color: var(--text-muted); margin: 0; }
.requirements-list li { font-size: .88rem; padding: .5rem 0; border-bottom: 1px solid var(--gray-200); }
.requirements-list li:last-child { border-bottom: none; }
.requirements-list i { color: var(--gold); }

/* ── About Page ─────────────────────────────────────────── */
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-wrap img { width: 100%; height: 480px; object-fit: cover; }
.about-image-badge {
    position: absolute; bottom: 2rem; right: -1.5rem;
    background: var(--gold);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold);
    text-align: center;
}
.about-image-badge .badge-number { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-image-badge .badge-text { font-size: .75rem; font-weight: 600; }
.milestone-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.milestone-year {
    font-size: .85rem; font-weight: 700;
    color: var(--white);
    background: var(--navy);
    padding: .25rem .75rem;
    border-radius: 6px;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: .1rem;
}
.milestone-desc { font-size: .88rem; color: var(--text-muted); }

/* ── Principal Message ──────────────────────────────────── */
.principal-section {
    background: linear-gradient(135deg, var(--off-white) 0%, #e8eaf6 100%);
    padding: 80px 0;
}
.principal-photo-wrap {
    position: relative;
    display: inline-block;
}
.principal-photo {
    width: 200px; height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
}
.principal-badge-wrap {
    position: absolute; bottom: 0; right: -10px;
    background: var(--gold);
    border-radius: 50%;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--white);
    box-shadow: var(--shadow-gold);
}
.message-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
    border-left: 4px solid var(--gold);
}

/* ── Vision Mission Cards ───────────────────────────────── */
.vm-card {
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.vm-card-vision { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }
.vm-card-mission { background: linear-gradient(135deg, #bf360c, #e64a19); }
.vm-card-values { background: linear-gradient(135deg, #1b5e20, #2e7d32); }
.vm-card h3 { color: var(--white); font-size: 1.6rem; }
.vm-card p { color: rgba(255,255,255,.85); }
.vm-icon { font-size: 3rem; color: rgba(255,255,255,.2); position: absolute; bottom: 1.5rem; right: 1.5rem; }

/* ── Leadership Grid ────────────────────────────────────── */
.leader-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}
.leader-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.leader-photo {
    width: 120px; height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold-light);
    margin: 0 auto 1rem;
    display: block;
}

/* ── Ribbon / Featured Banner ───────────────────────────── */
.featured-ribbon {
    position: absolute;
    top: 12px; right: -28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: .68rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(249,168,37,.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Process Timeline ───────────────────────────────────── */
.process-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}
.process-step-dot {
    display: flex; flex-direction: column; align-items: center;
    min-width: 80px;
}
.dot-circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border: 3px solid var(--gold);
    position: relative;
    z-index: 1;
}
.dot-label { font-size: .72rem; color: var(--text-muted); margin-top: .5rem; text-align: center; font-weight: 600; }
.process-connector { height: 3px; flex: 1; background: linear-gradient(90deg, var(--navy), var(--gold)); min-width: 40px; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); position: relative; }
.footer-wave { position: relative; line-height: 0; }
.footer-wave svg { display: block; height: 60px; }
.footer-main { background: var(--navy-dark); }
.footer-brand p.footer-text { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.75; }
.footer-heading {
    color: var(--gold-light);
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
}
.footer-heading::after {
    content: '';
    position: absolute; left: 0; bottom: -8px;
    width: 30px; height: 3px;
    background: var(--gold);
    border-radius: 3px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .65rem; }
.footer-links a {
    color: rgba(255,255,255,.65);
    font-size: .87rem;
    transition: var(--transition);
    display: inline-flex; align-items: center;
}
.footer-links a:hover { color: var(--gold-light); transform: translateX(4px); }
.footer-links a i { font-size: .6rem; color: var(--gold); }
.footer-contact-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.fc-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: rgba(249,168,37,.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: .95rem;
}
.fc-label { font-size: .7rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }
.fc-text { font-size: .83rem; color: rgba(255,255,255,.8); }
.social-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    margin-right: .5rem;
    transition: var(--transition);
}
.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.footer-badges .footer-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    border: 1px solid rgba(249,168,37,.4);
    color: var(--gold-light);
    padding: 3px 10px;
    border-radius: 4px;
}
.footer-bottom {
    background: rgba(0,0,0,.25);
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p { color: rgba(255,255,255,.55); font-size: .82rem; }
.footer-bottom strong { color: rgba(255,255,255,.8); }
.footer-policy-link { color: rgba(255,255,255,.5); font-size: .8rem; transition: var(--transition); }
.footer-policy-link:hover { color: var(--gold-light); }
.text-gold { color: var(--gold) !important; }

/* ── Back to Top ────────────────────────────────────────── */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--gold));
    border: none; border-radius: 50%;
    color: var(--white); font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    z-index: 1000;
}
.back-to-top:hover { transform: translateY(-3px) scale(1.05); }

/* ── Utility ─────────────────────────────────────────────── */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-off-white { background: var(--off-white); }
.bg-light-navy { background: rgba(26,35,126,.04); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.rounded-pill-sm { border-radius: 50px; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .main-navbar .nav-link { padding: .75rem 1rem !important; }
    .main-navbar .nav-link::after { display: none; }
    .hero-slide { min-height: 70vh; }
    .stat-number { font-size: 2.4rem; }
    .about-image-badge { right: .5rem; }
}
@media (max-width: 767.98px) {
    .hero-slide { min-height: 60vh; }
    .section-pad { padding: 60px 0; }
    .hero-title { font-size: clamp(1.6rem,6vw,2.5rem); }
    .contact-form-wrap { padding: 1.5rem; }
}
