﻿.mps-header * {
    box-sizing: border-box;
}
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }


.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.mps-hero {
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.mps-hero-swiper {
    width: 100%;
    height: 580px;
}

@media(max-width:991px) {
    .mps-hero-swiper {
        height: 420px;
    }
}

@media(max-width:600px) {
    .mps-hero-swiper {
        height: 300px;
    }
}

.mps-hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

    .mps-hero-swiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.05);
        transition: transform 8s ease;
    }

.mps-hero-swiper .swiper-slide-active img {
    transform: scale(1);
}

/* Clean dark overlay — uniform, not colored */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,.30);
}

/* Center-aligned content */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 30px;
}

/* Thin gold rule above title */
.hero-rule {
    width: 50px;
    height: 2px;
    background: #f0a500;
    margin-bottom: 20px;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity .5s .2s, transform .5s .2s;
    transform-origin: center;
}

.swiper-slide-active .hero-rule {
    opacity: 1;
    transform: scaleX(1);
}

/* Headline */
.hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 14px;
    letter-spacing: -.5px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s .35s, transform .6s .35s;
}

    .hero-title span {
        color: #f0a500;
    }

@media(max-width:991px) {
    .hero-title {
        font-size: 32px;
    }
}

@media(max-width:600px) {
    .hero-title {
        font-size: 22px;
    }
}

/* Subtitle */
.hero-sub {
    color: rgba(255,255,255,.78);
    font-size: 17px;
    margin: 0 0 32px;
    max-width: 520px;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s .55s, transform .6s .55s;
}

@media(max-width:600px) {
    .hero-sub {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

.swiper-slide-active .hero-title,
.swiper-slide-active .hero-sub {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s .75s, transform .6s .75s;
}

.swiper-slide-active .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

.hero-btn-primary {
    background: #f0a500;
    color: #1a1a1a !important;
    padding: 13px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .25s, transform .25s;
}

    .hero-btn-primary:hover {
        background: #d9920a;
        transform: translateY(-2px);
        text-decoration: none;
        color: #1a1a1a !important;
    }

.hero-btn-secondary {
    background: transparent;
    color: #fff !important;
    padding: 13px 30px;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,.6);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
}

    .hero-btn-secondary:hover {
        background: rgba(255,255,255,.1);
        border-color: #fff;
        transform: translateY(-2px);
        text-decoration: none;
        color: #fff !important;
    }

/* Prev / Next arrows — simple, small */
.mps-hero .swiper-button-next,
.mps-hero .swiper-button-prev {
    width: 42px;
    height: 42px;
    border-radius: 2px;
    background: rgba(255,255,255,.14);
    color: #fff !important;
    transition: background .2s;
}

    .mps-hero .swiper-button-next:hover,
    .mps-hero .swiper-button-prev:hover {
        background: #f0a500;
    }

    .mps-hero .swiper-button-next::after,
    .mps-hero .swiper-button-prev::after {
        font-size: 15px;
        font-weight: 700;
    }

/* Pagination dots */
.mps-hero .swiper-pagination-bullet {
    background: rgba(255,255,255,.5);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all .3s;
}

.mps-hero .swiper-pagination-bullet-active {
    background: #f0a500;
    width: 24px;
    border-radius: 4px;
}

/* ---------- STATS STRIP ---------- */
.mps-stats {
    background: linear-gradient(135deg,#072916 0%,#0a5c38 45%,#1b3a5c 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-top: -40px;
    z-index: 10;
}

    .mps-stats::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient( -55deg, transparent, transparent 40px, rgba(255,255,255,.022) 40px, rgba(255,255,255,.022) 42px );
        pointer-events: none;
    }

    .mps-stats .stats-inner {
        display: flex;
        align-items: stretch;
        position: relative;
        z-index: 1;
    }

    .mps-stats .stat-item {
        flex: 1;
        text-align: center;
        padding: 32px 20px;
        position: relative;
        transition: background .3s;
    }

        .mps-stats .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: linear-gradient(to bottom,transparent,rgba(255,255,255,.15),transparent);
        }

        .mps-stats .stat-item:hover {
            background: rgba(255,255,255,.06);
        }

    .mps-stats .stat-icon-wrap {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
        border: 1px solid rgba(255,255,255,.15);
        transition: transform .3s, background .3s;
    }

    .mps-stats .stat-item:hover .stat-icon-wrap {
        transform: scale(1.1);
    }

    .mps-stats .stat-icon-wrap i {
        font-size: 20px;
        color: #fff;
    }

    .mps-stats .stat-item h3 {
        color: #fff;
        font-size: 26px;
        font-weight: 800;
        margin: 0;
        line-height: 1.1;
        letter-spacing: -.3px;
    }

    .mps-stats .stat-item p {
        color: rgba(255,255,255,.55);
        margin: 6px 0 0;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 600;
    }

/* ---------- ABOUT ---------- */
.mps-about {
    padding: 90px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
    /* big decorative circle top-left */
    .mps-about::before {
        content: '';
        position: absolute;
        top: -120px;
        left: -120px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient(circle, #e8f5ee 0%, transparent 70%);
        pointer-events: none;
    }
    /* dots pattern bottom-right */
    .mps-about::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 220px;
        height: 220px;
        background-image: radial-gradient(#0a5c38 1.5px, transparent 1.5px);
        background-size: 18px 18px;
        opacity: .09;
        pointer-events: none;
    }

/* ---- Image column ---- */
.about-img-col {
    position: relative;
    padding: 20px 30px 60px 0;
}

    /* green accent block behind image */
    .about-img-col::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 75%;
        height: 85%;
        background: linear-gradient(135deg,#0a5c38,#1a7a4e);
        border-radius: 14px;
        z-index: 0;
    }

    .about-img-col > img {
        position: relative;
        z-index: 1;
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 24px 60px rgba(0,0,0,.18);
        margin-top: 22px;
        margin-left: 22px;
    }

/* badge — years of excellence */
.about-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,.14);
    border-top: 4px solid #f0a500;
    min-width: 110px;
}

    .about-badge .badge-num {
        font-size: 38px;
        font-weight: 800;
        color: #0a5c38;
        line-height: 1;
    }

    .about-badge .badge-lbl {
        font-size: 11px;
        font-weight: 700;
        color: #555;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 4px;
        display: block;
    }

/* ---- Content column ---- */
.about-content {
    padding-left: 36px;
}

.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg,#e8f5ee,#d0eddf);
    color: #0a5c38;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    border: 1px solid #b8dfc8;
}

    .section-chip i {
        font-size: 10px;
    }

.section-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(to right,#0a5c38,#f0a500);
    border-radius: 2px;
    margin: 10px 0 16px;
}

.about-content h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
}

    .about-content h2 span {
        color: #0a5c38;
    }

.about-content > p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 22px;
    font-size: 16px;
}

/* Mini stats row */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin: 0 0 24px;
}

.astat {
    background: #f8fdf9;
    border: 1px solid #d4eddf;
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    transition: all .3s;
}

    .astat:hover {
        background: #e8f5ee;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(10,92,56,.1);
    }

.astat-num {
    font-size: 26px;
    font-weight: 800;
    color: #0a5c38;
    line-height: 1;
}

.astat-lbl {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: 4px;
}

/* Motto / highlight box */
.motto-box {
    background: linear-gradient(135deg,#1b3a5c 0%,#0a5c38 100%);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

    .motto-box::after {
        content: '\201C';
        position: absolute;
        right: 16px;
        top: -10px;
        font-size: 7rem;
        color: rgba(255,255,255,.06);
        font-family: Georgia,serif;
        line-height: 1;
    }

.motto-icon {
    width: 44px;
    height: 44px;
    background: rgba(240,165,0,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .motto-icon i {
        color: #f0a500;
        font-size: 18px;
    }

.motto-text {
    flex: 1;
}

    .motto-text strong {
        display: block;
        color: #f0a500;
        font-size: 12px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 6px;
    }

    .motto-text p {
        color: rgba(255,255,255,.88);
        margin: 0;
        font-size: 15px;
        line-height: 1.7;
    }

/* Buttons */
.btn-mps {
    background: linear-gradient(135deg,#0a5c38,#1a7a4e);
    color: #fff !important;
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(10,92,56,.3);
}

    .btn-mps:hover {
        transform: translateY(-2px);
        color: #fff !important;
        box-shadow: 0 10px 28px rgba(10,92,56,.4);
        text-decoration: none;
    }

.btn-mps-outline {
    background: transparent;
    color: #0a5c38 !important;
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid #0a5c38;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    transition: all .3s;
}

    .btn-mps-outline:hover {
        background: #0a5c38;
        color: #fff !important;
        transform: translateY(-2px);
        text-decoration: none;
    }

@media(max-width:991px) {
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .about-img-col {
        padding: 10px 10px 50px 0;
    }

    .about-stats {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:767px) {
    .btn-mps-outline {
        margin-left: 0;
        margin-top: 10px;
    }

    .about-img-col::before {
        width: 60%;
        height: 75%;
    }
}

/* ---------- THOUGHT OF THE DAY ---------- */
.mps-thought {
    background: linear-gradient(135deg,#0a2e1c 0%,#0a5c38 50%,#1b3a5c 100%);
    padding: 46px 0;
    position: relative;
    overflow: hidden;
}
    /* floating decorative circles */
    .mps-thought::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        border: 40px solid rgba(240,165,0,.08);
        pointer-events: none;
    }

    .mps-thought::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: 8%;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 30px solid rgba(255,255,255,.05);
        pointer-events: none;
    }

/* horizontal layout */
.thought-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media(max-width:767px) {
    .thought-inner {
        flex-direction: column;
        gap: 22px;
    }
}

/* LEFT: label + icon */
.thought-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-align: center;
    min-width: 130px;
}

.thought-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg,#f0a500,#ffcc44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(240,165,0,.4);
}

    .thought-icon-wrap i {
        color: #fff;
        font-size: 22px;
    }

.thought-label {
    color: #f0a500;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.4;
    display: block;
}

.thought-date {
    background: rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 4px 12px;
    color: rgba(255,255,255,.6);
    font-size: 11px;
    letter-spacing: .5px;
    white-space: nowrap;
}

/* divider line */
.thought-divider {
    width: 1px;
    min-height: 80px;
    align-self: stretch;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.25), transparent);
    flex-shrink: 0;
}

@media(max-width:767px) {
    .thought-divider {
        width: 60px;
        min-height: 1px;
        align-self: auto;
        background: linear-gradient(to right,transparent,rgba(255,255,255,.25),transparent);
    }
}

/* RIGHT: quote */
.thought-right {
    flex: 1;
    position: relative;
    padding-left: 16px;
}

.thought-quote-mark {
    font-size: 80px;
    font-family: Georgia,serif;
    color: rgba(240,165,0,.25);
    line-height: .7;
    display: block;
    margin-bottom: -10px;
    font-weight: 700;
}

.thought-text {
    color: #fff;
    font-size: 20px;
    font-style: italic;
    line-height: 1.75;
    margin: 0 0 14px;
    font-weight: 300;
    letter-spacing: .2px;
}

.thought-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-weight: 600;
}

    .thought-author::before {
        content: '';
        display: block;
        width: 28px;
        height: 2px;
        background: #f0a500;
        border-radius: 2px;
    }

/* ---------- FACILITIES ---------- */
.mps-facilities {
    background: linear-gradient(160deg,#f0f6ff 0%,#f8fafc 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

    .mps-facilities::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(to right,#0a5c38,#f0a500,#4a6cf7,#e74c3c,#0a7c6e,#7c3aed);
    }

    .mps-facilities::after {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        border: 55px solid rgba(10,92,56,.04);
        pointer-events: none;
    }

    .mps-facilities .section-chip {
        background: linear-gradient(135deg,#dce9f5,#c8d9ee);
        color: #1b3a5c;
        border-color: #b8cede;
    }

    .mps-facilities .section-header-center h2 {
        font-size: 38px;
        font-weight: 800;
        color: #1b3a5c;
    }

    .mps-facilities .section-sub {
        color: #666;
        font-size: 17px;
        margin-bottom: 46px;
    }

/* --- Horizontal facility cards (modern 2025 style) --- */
.fac-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1px solid #e8edf4;
    border-left: 4px solid transparent;
    border-radius: 14px;
    padding: 24px 22px;
    margin-bottom: 22px;
    transition: all .32s cubic-bezier(.25,.8,.25,1);
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
    position: relative;
}

    .fac-card:hover {
        transform: translateX(6px);
        box-shadow: 0 10px 32px rgba(0,0,0,.1);
        background: #fafffe;
    }
/* Rounded-square icon (not circle) */
.fac-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .32s;
}

.fac-card:hover .fac-icon {
    transform: scale(1.1) rotate(-6deg);
}

.fac-icon i {
    font-size: 22px;
    color: #fff;
}
/* Card text */
.fac-body {
    flex: 1;
}

    .fac-body h5 {
        color: #1b3a5c;
        font-size: 17px;
        font-weight: 700;
        margin: 0 0 7px;
        letter-spacing: -.2px;
    }

    .fac-body p {
        color: #5a6a7e;
        font-size: 14.5px;
        line-height: 1.75;
        margin: 0;
    }
/* Arrow hint on hover */
.fac-arrow {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f4f7fc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
    transition: all .32s;
    opacity: 0;
    transform: translateX(-8px);
}

.fac-card:hover .fac-arrow {
    opacity: 1;
    transform: translateX(0);
}

.fac-arrow i {
    font-size: 13px;
    color: #aaa;
    transition: color .32s;
}

/* ---------- TESTIMONIALS ---------- */
.mps-testimonials {
    background: linear-gradient(160deg,#0d1f35 0%,#1b3a5c 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

    .mps-testimonials::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,.04) 1.5px,transparent 1.5px);
        background-size: 28px 28px;
        pointer-events: none;
    }

    .mps-testimonials::after {
        content: '"';
        position: absolute;
        right: -20px;
        top: 20px;
        font-size: 380px;
        font-family: Georgia,serif;
        line-height: 1;
        color: rgba(255,255,255,.03);
        pointer-events: none;
    }

    .mps-testimonials .section-chip {
        background: linear-gradient(135deg,#f0a500,#d48000);
        color: #fff;
        border-color: #d48000;
    }

    .mps-testimonials .section-header-center h2 {
        color: #fff;
    }

    .mps-testimonials .section-header-center p {
        color: rgba(255,255,255,.7);
    }

    .mps-testimonials .section-divider {
        background: linear-gradient(to right,#f0a500,#d48000);
    }

/* Testimonial Slider */
.testi-slider-wrap {
    position: relative;
    width: 100%;
    margin: 48px auto 0;
    padding: 0 52px;
}

.testi-slider {
    overflow: hidden;
    position: relative;
}

.testi-track {
    display: flex;
    align-items: stretch;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
}
/* Each slide outer wrapper — flex item */
.testi-slide {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 0 12px;
    box-sizing: border-box;
}
/* Inner visual card */
.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 26px 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,.22);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 4px solid #f0a500;
    box-sizing: border-box;
    height: 100%;
}

.testi-quote {
    line-height: 1;
}

    .testi-quote i {
        font-size: 42px;
        color: #f0a500;
        opacity: .18;
    }

.testi-stars {
    color: #f0a500;
    font-size: 18px;
    letter-spacing: 2px;
    margin-top: -6px;
}

.testi-text {
    font-size: 15.5px;
    line-height: 1.78;
    color: #4a4a4a;
    font-style: italic;
    margin: 0;
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
    margin-top: auto;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.testi-author-info strong {
    display: block;
    color: #1b3a5c;
    font-size: 14.5px;
    font-weight: 700;
}

.testi-author-info span {
    font-size: 12.5px;
    color: #888;
}

/* Prev / Next arrows */
.testi-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, border-color .25s, transform .25s;
    z-index: 10;
    outline: none;
}

    .testi-btn:hover {
        background: #f0a500;
        border-color: #f0a500;
        transform: translateY(-50%) scale(1.1);
    }

.testi-btn-prev {
    left: 0;
}

.testi-btn-next {
    right: 0;
}

/* Dot indicators */
.testi-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: background .3s, transform .3s;
    border: none;
    outline: none;
    padding: 0;
}

    .testi-dot.active {
        background: #f0a500;
        transform: scale(1.35);
    }

@media(max-width:767px) {
    .testi-slider-wrap {
        padding: 0 40px;
    }

    .testi-slide {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 4px;
    }

    .testi-card {
        padding: 28px 20px 22px;
    }

    .testi-text {
        font-size: 15px;
    }
}

/* ---------- GALLERY ---------- */
.mps-gallery {
    background: linear-gradient(160deg,#f0f7f3 0%,#e8f4ee 50%,#f5f9f7 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

    .mps-gallery::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(to right,#0a5c38,#f0a500,#1b3a5c,#f0a500,#0a5c38);
    }

    .mps-gallery::after {
        content: '';
        position: absolute;
        bottom: -120px;
        right: -120px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        border: 60px solid rgba(10,92,56,.05);
        pointer-events: none;
    }

    .mps-gallery .section-chip {
        background: linear-gradient(135deg,#e8f5ee,#d0eddf);
        color: #0a5c38;
        border-color: #b8dfc8;
    }

    .mps-gallery .section-divider {
        background: linear-gradient(to right,#0a5c38,#f0a500);
    }

/* Gallery slider */
.gal-slider-wrap {
    position: relative;
    padding: 0 52px;
    margin-top: 46px;
}

.gal-slider {
    overflow: hidden;
    border-radius: 14px;
}

.gal-track {
    display: flex;
    align-items: stretch;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.gal-slide {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 7px;
    box-sizing: border-box;
}

.gal-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
    box-shadow: 0 4px 18px rgba(0,0,0,.1);
}

    .gal-img-wrap img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
        transition: transform .5s ease, filter .5s ease;
    }

    .gal-img-wrap:hover img {
        transform: scale(1.07);
        filter: brightness(.65);
    }

.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(10,92,56,.82) 0%,transparent 55%);
    opacity: 0;
    transition: opacity .35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gal-img-wrap:hover .gal-overlay {
    opacity: 1;
}

.gal-zoom {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(.5) rotate(-10deg);
    opacity: 0;
    transition: transform .38s cubic-bezier(.34,1.56,.64,1), opacity .28s;
}

.gal-img-wrap:hover .gal-zoom {
    transform: scale(1) rotate(0);
    opacity: 1;
}

.gal-zoom i {
    color: #fff;
    font-size: 18px;
}

/* Slider arrows */
.gal-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d0eddf;
    color: #0a5c38;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    transition: all .25s;
    z-index: 10;
    outline: none;
}

    .gal-btn:hover {
        background: #0a5c38;
        border-color: #0a5c38;
        color: #fff;
        transform: translateY(-50%) scale(1.1);
    }

.gal-btn-prev {
    left: 0;
}

.gal-btn-next {
    right: 0;
}

/* Dot indicators */
.gal-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.gal-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #b8dfc8;
    cursor: pointer;
    transition: background .3s, transform .3s;
    border: none;
    outline: none;
    padding: 0;
}

    .gal-dot.active {
        background: #0a5c38;
        transform: scale(1.4);
    }

/* View All button */
.gallery-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .3px;
    box-shadow: 0 6px 22px rgba(10,92,56,.3);
    transition: all .3s ease;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}

    .gallery-view-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(10,92,56,.4);
        color: #fff;
        text-decoration: none;
    }

    .gallery-view-btn i {
        transition: transform .3s;
    }

    .gallery-view-btn:hover i {
        transform: translateX(5px);
    }

@media(max-width:991px) {
    .gal-slide {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

@media(max-width:767px) {
    .gal-slider-wrap {
        padding: 0 38px;
    }

    .gal-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .gal-img-wrap img {
        height: 185px;
    }
}

@media(max-width:479px) {
    .gal-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ---------- SCHOOL UPDATES ---------- */
.mps-updates {
    background: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

    .mps-updates::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(to right,#0a5c38,#f0a500,#1b3a5c);
    }

    .mps-updates::after {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        border: 65px solid rgba(10,92,56,.03);
        pointer-events: none;
    }

/* Panel card */
.upd-panel {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 4px 30px rgba(0,0,0,.07);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Panel header */
.upd-panel-head {
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .upd-panel-head.navy {
        background: linear-gradient(135deg,#1b3a5c,#2c5f96);
    }

.upd-panel-head-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
    flex-shrink: 0;
}

.upd-panel-head h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 2px;
}

.upd-panel-head span {
    color: rgba(255,255,255,.6);
    font-size: 12px;
}

/* News feed */
.upd-news-feed {
    flex: 1;
}

.upd-news-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f4f4f4;
    text-decoration: none;
    transition: background .2s, padding-left .2s;
}

    .upd-news-item:last-child {
        border-bottom: none;
    }

    .upd-news-item:hover {
        background: #f7fbf9;
        padding-left: 26px;
        text-decoration: none;
    }

.uni-date {
    min-width: 48px;
    max-width: 48px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    border-radius: 11px;
    color: #fff;
    text-align: center;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .uni-date .day {
        font-size: 19px;
        font-weight: 800;
        line-height: 1;
    }

    .uni-date .mon {
        font-size: 9px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .8px;
        opacity: .75;
    }

.uni-body {
    flex: 1;
    min-width: 0;
}

.uni-title {
    color: #1b3a5c;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.uni-tag {
    color: #aaa;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .uni-tag i {
        font-size: 11px;
        color: #c8e6d4;
    }

.upd-news-item:hover .uni-title {
    color: #0a5c38;
}

.upd-news-item .uni-arrow {
    color: #ddd;
    font-size: 16px;
    flex-shrink: 0;
}

.upd-news-item:hover .uni-arrow {
    color: #0a5c38;
}

/* Panel footer */
.upd-panel-foot {
    padding: 14px 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.upd-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px;
    border-radius: 12px;
    background: linear-gradient(135deg,#f0f7f3,#e0f0e8);
    border: 1px solid #c8e6d4;
    color: #0a5c38;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
}

    .upd-view-all:hover {
        background: linear-gradient(135deg,#0a5c38,#1a8a52);
        color: #fff;
        border-color: #0a5c38;
        text-decoration: none;
    }

    .upd-view-all i {
        transition: transform .25s;
    }

    .upd-view-all:hover i {
        transform: translateX(4px);
    }

    .upd-view-all.navy-btn {
        background: linear-gradient(135deg,#eef2f8,#dce6f3);
        border-color: #b8cede;
        color: #1b3a5c;
    }

        .upd-view-all.navy-btn:hover {
            background: linear-gradient(135deg,#1b3a5c,#2c5f96);
            color: #fff;
            border-color: #1b3a5c;
        }

/* Events list */
.upd-events-list {
    flex: 1;
}

.upd-event-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f4f4f4;
    text-decoration: none;
    transition: background .2s, padding-left .2s;
}

    .upd-event-item:last-child {
        border-bottom: none;
    }

    .upd-event-item:hover {
        background: #f5f8fc;
        padding-left: 26px;
        text-decoration: none;
    }

.uei-badge {
    min-width: 48px;
    max-width: 48px;
    background: linear-gradient(135deg,#1b3a5c,#2c5f96);
    border-radius: 11px;
    color: #fff;
    text-align: center;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .uei-badge .day {
        font-size: 19px;
        font-weight: 800;
        line-height: 1;
    }

    .uei-badge .mon {
        font-size: 9px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .8px;
        opacity: .75;
    }

.uei-body {
    flex: 1;
    min-width: 0;
}

.uei-title {
    color: #1b3a5c;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.uei-venue {
    color: #aaa;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .uei-venue i {
        font-size: 11px;
        color: #b8cede;
    }

.upd-event-item:hover .uei-title {
    color: #1b3a5c;
}

.upd-event-item .uei-arrow {
    color: #ddd;
    font-size: 16px;
    flex-shrink: 0;
}

.upd-event-item:hover .uei-arrow {
    color: #1b3a5c;
}

/* Mini calendar inside updates right panel */
.upd-cal-nav {
    padding: 11px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(27,58,92,.06);
    border-bottom: 1px solid rgba(27,58,92,.08);
}

.upd-cal-nav-btn {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: #e8eef5;
    border: 1px solid #b8cede;
    color: #1b3a5c;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    outline: none;
}

    .upd-cal-nav-btn:hover {
        background: #1b3a5c;
        color: #fff;
        border-color: #1b3a5c;
    }

.upd-cal-month-lbl {
    color: #1b3a5c;
    font-size: 14px;
    font-weight: 700;
}

.upd-cal-year-lbl {
    color: #999;
    font-size: 11px;
    text-align: center;
}

.upd-cal-wrap {
    padding: 10px 14px 6px;
}

.upd-cal-heads {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    margin-bottom: 3px;
}

.upd-cal-head {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: #bbb;
    padding: 3px 0;
    text-transform: uppercase;
}

    .upd-cal-head:first-child, .upd-cal-head:last-child {
        color: #e05555;
    }

.upd-cal-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 2px;
}

.upd-cal-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 500;
    color: #555;
    cursor: default;
    position: relative;
    transition: background .2s, color .2s;
}

    .upd-cal-cell.empty {
        background: transparent;
    }

    .upd-cal-cell.today {
        background: linear-gradient(135deg,#1b3a5c,#2c5f96);
        color: #fff;
        font-weight: 700;
    }

    .upd-cal-cell.has-event {
        cursor: pointer;
    }

        .upd-cal-cell.has-event:not(.today) {
            background: #eef2f8;
            color: #1b3a5c;
            font-weight: 700;
        }

            .upd-cal-cell.has-event:not(.today):hover {
                background: #1b3a5c;
                color: #fff;
            }

    .upd-cal-cell.selected:not(.today) {
        background: #f0a500;
        color: #fff;
        font-weight: 700;
    }

.upd-cal-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    bottom: 2px;
    background: #1b3a5c;
}

.upd-cal-cell.today .upd-cal-dot {
    background: #f0a500;
}

.upd-cal-cell.selected:not(.today) .upd-cal-dot {
    background: #fff;
}
/* Scrollable events list below calendar */
.upd-cal-events {
    border-top: 1px solid #f0f0f0;
    max-height: 180px;
    overflow-y: auto;
    padding: 2px 0;
}

    .upd-cal-events::-webkit-scrollbar {
        width: 3px;
    }

    .upd-cal-events::-webkit-scrollbar-thumb {
        background: #b8cede;
        border-radius: 2px;
    }

.upd-cal-ev-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 18px;
    border-bottom: 1px solid #f8f8f8;
    text-decoration: none;
    transition: background .2s;
}

    .upd-cal-ev-row:last-child {
        border-bottom: none;
    }

    .upd-cal-ev-row:hover {
        background: #f5f8fc;
        text-decoration: none;
    }

.upd-cal-ev-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.upd-cal-ev-title {
    color: #1b3a5c;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2px;
}

.upd-cal-ev-row:hover .upd-cal-ev-title {
    color: #2c5f96;
}

.upd-cal-ev-meta {
    color: #aaa;
    font-size: 11.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .upd-cal-ev-meta i {
        font-size: 10px;
        color: #b8cede;
    }

.upd-cal-empty {
    padding: 20px 18px;
    text-align: center;
    color: #aaa;
    font-size: 13px;
}

    .upd-cal-empty i {
        font-size: 1.8rem;
        color: #dce6f3;
        display: block;
        margin-bottom: 6px;
    }

@media(max-width:991px) {
    .upd-panel + .upd-panel {
        margin-top: 30px;
    }
}

/* ---------- SECTION HEADERS (CENTER) ---------- */
.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}

    .section-header-center h2 {
        color: #1b3a5c;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 0;
    }

    .section-header-center .section-divider {
        margin: 12px auto 14px;
    }

    .section-header-center p {
        color: #555;
        font-size: 17px;
        max-width: 580px;
        margin: 0 auto;
    }

/* ---------- NOTICE TICKER ---------- */
.mps-ticker {
    background: #0a5c38;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.ticker-badge {
    background: #f0a500;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px 16px;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    color: #fff;
    font-size: 13.5px;
    padding: 9px 0;
    animation: tickerScroll 32s linear infinite;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-track:hover .ticker-content {
    animation-play-state: paused;
}

/* ---------- WHY CHOOSE MPS ---------- */
.mps-why {
    background: linear-gradient(160deg,#f4f8ff 0%,#eef3fb 55%,#f8faff 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

    .mps-why::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(10,92,56,.035) 1px,transparent 1px);
        background-size: 28px 28px;
        pointer-events: none;
    }

    .mps-why::after {
        content: 'MPS';
        position: absolute;
        right: -20px;
        bottom: -60px;
        font-size: 260px;
        font-weight: 900;
        line-height: 1;
        color: rgba(27,58,92,.03);
        pointer-events: none;
        font-family: Georgia,serif;
        letter-spacing: -10px;
    }

/* Left column */
.why-left {
    padding-right: 30px;
}

@media(max-width:991px) {
    .why-left {
        padding-right: 0;
        margin-bottom: 52px;
    }
}

.why-chip-dark {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg,#e8f5ee,#d0eddf);
    border: 1px solid #b8dfc8;
    color: #0a5c38;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 22px;
}

    .why-chip-dark i {
        font-size: 11px;
    }

.why-heading {
    color: #1b3a5c;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.18;
    margin: 0 0 18px;
    letter-spacing: -.5px;
}

    .why-heading span {
        color: #0a5c38;
    }

.why-subtext {
    color: #6b7e96;
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
}
/* Stats row */
.why-stats {
    display: flex;
    gap: 0;
    border: 1px solid #dde6f0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(27,58,92,.07);
}

.why-stat {
    flex: 1;
    text-align: center;
    padding: 18px 10px;
    border-right: 1px solid #e8eef5;
}

    .why-stat:last-child {
        border-right: none;
    }

.why-stat-num {
    display: block;
    color: #0a5c38;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.why-stat-lbl {
    display: block;
    color: #8a9bb0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}

/* Right feature grid */
.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.why-feat {
    flex: 0 0 calc(50% - 7px);
    max-width: calc(50% - 7px);
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 18px;
    padding: 22px 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 2px 14px rgba(27,58,92,.05);
    transition: border-color .28s, box-shadow .28s, transform .28s;
}

    .why-feat:hover {
        border-color: #0a5c38;
        box-shadow: 0 8px 28px rgba(10,92,56,.12);
        transform: translateY(-4px);
    }

.why-feat-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    border: 1px solid;
    transition: transform .28s;
}

.why-feat:hover .why-feat-icon {
    transform: scale(1.1);
}

.why-feat-body h5 {
    color: #1b3a5c;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 5px;
    line-height: 1.3;
}

.why-feat-body p {
    color: #7a8fa6;
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}

@media(max-width:580px) {
    .why-feat {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ---------- QUICK ACCESS ---------- */
.mps-quick-access {
    background: linear-gradient(160deg,#f0f7f3 0%,#e8f4ee 50%,#f5f9f7 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

    .mps-quick-access::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(to right,#0a5c38,#f0a500,#4a6cf7,#e74c3c,#0a7c6e,#7c3aed);
    }

    .mps-quick-access::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        border: 55px solid rgba(10,92,56,.04);
        pointer-events: none;
    }
/* 4-col card grid */
.qa-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.qa-tile {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
    background: #fff;
    border: 1px solid #e8edf4;
    border-left: 4px solid transparent;
    border-radius: 14px;
    padding: 22px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all .32s cubic-bezier(.25,.8,.25,1);
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
}

    .qa-tile:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 32px rgba(0,0,0,.1);
        text-decoration: none;
    }

.qa-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform .28s;
}

.qa-tile:hover .qa-icon {
    transform: scale(1.1);
}

.qa-icon i {
    font-size: 18px;
    color: #fff;
}

.qa-body {
    flex: 1;
    min-width: 0;
}

.qa-label {
    color: #1b3a5c;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    display: block;
}

.qa-sub {
    color: #7a8fa6;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 3px;
}

.qa-arrow {
    color: #ddd;
    font-size: 16px;
    flex-shrink: 0;
    transition: color .28s, transform .28s;
}

.qa-tile:hover .qa-arrow {
    color: #1b3a5c;
    transform: translateX(3px);
}

@media(max-width:991px) {
    .qa-tile {
        flex: 0 0 calc(50% - 10px);
    }
}

@media(max-width:580px) {
    .qa-tile {
        flex: 0 0 100%;
    }
}

/* ---------- CTA APPLY BANNER ---------- */
.mps-cta {
    background: linear-gradient(135deg,#072916 0%,#0a5c38 45%,#1b3a5c 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .mps-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient( -55deg, transparent, transparent 40px, rgba(255,255,255,.022) 40px, rgba(255,255,255,.022) 42px );
        pointer-events: none;
    }

    .mps-cta::after {
        content: '';
        position: absolute;
        right: -100px;
        top: 50%;
        transform: translateY(-50%);
        width: 420px;
        height: 420px;
        border-radius: 50%;
        border: 60px solid rgba(240,165,0,.07);
        pointer-events: none;
    }

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.2;
}

    .cta-text h2 span {
        color: #f0a500;
    }

.cta-text p {
    color: rgba(255,255,255,.72);
    font-size: 17px;
    margin: 0;
    max-width: 520px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: #f0a500;
    color: #1a1a1a !important;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: .4px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all .3s;
    box-shadow: 0 6px 20px rgba(240,165,0,.35);
}

    .cta-btn-primary:hover {
        background: #d9920a;
        transform: translateY(-2px);
        text-decoration: none;
        color: #1a1a1a !important;
        box-shadow: 0 12px 32px rgba(240,165,0,.45);
    }

.cta-btn-secondary {
    background: transparent;
    color: #fff !important;
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: .4px;
    border: 2px solid rgba(255,255,255,.5);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all .3s;
}

    .cta-btn-secondary:hover {
        background: rgba(255,255,255,.1);
        border-color: #fff;
        transform: translateY(-2px);
        text-decoration: none;
        color: #fff !important;
    }

@media(max-width:991px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-text p {
        margin: 0 auto;
    }

    .cta-btns {
        justify-content: center;
    }

    .cta-text h2 {
        font-size: 28px;
    }
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:991px) {
    .why-stats {
        flex-direction: column;
    }

    .why-stat {
        border-right: none;
        border-bottom: 1px solid #e8eef5;
        padding: 14px 10px;
    }

        .why-stat:last-child {
            border-bottom: none;
        }
}

@media(max-width:767px) {
    .mps-stats {
        margin-top: 0;
        border-radius: 0;
    }

        .mps-stats .stats-inner {
            flex-direction: column;
        }

        .mps-stats .stat-item {
            padding: 20px 16px;
        }

            .mps-stats .stat-item:not(:last-child)::after {
                display: none;
            }

            .mps-stats .stat-item:not(:last-child) {
                border-bottom: 1px solid rgba(255,255,255,.08);
            }

    .thought-card {
        padding: 30px 22px;
    }

    .thought-text {
        font-size: 20px;
    }

    .mps-about, .mps-gallery, .mps-updates {
        padding: 50px 0;
    }

    .mps-facilities, .mps-testimonials {
        padding: 50px 0;
    }

    .mps-thought {
        padding: 36px 0;
    }

    .mps-why {
        padding: 50px 0;
    }

    .mps-cta {
        padding: 50px 0;
    }

    .mps-quick-access {
        padding: 50px 0;
    }

    .section-header-center {
        margin-bottom: 32px;
    }

        .section-header-center h2 {
            font-size: 26px;
        }

    .about-content h2 {
        font-size: 26px;
    }

    .about-stats {
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }

    .why-heading {
        font-size: 28px;
    }

    .why-subtext {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .fac-card {
        padding: 18px 16px;
        gap: 14px;
    }

    .fac-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

        .fac-icon i {
            font-size: 18px;
        }

    .fac-body h5 {
        font-size: 15px;
    }

    .fac-body p {
        font-size: 13px;
    }

    .testi-slider-wrap {
        padding: 0 36px;
    }

    .testi-card {
        padding: 24px 18px 20px;
    }

    .gal-slider-wrap {
        padding: 0 36px;
    }

    .cta-text h2 {
        font-size: 24px;
    }

    .cta-btn-primary, .cta-btn-secondary {
        padding: 11px 22px;
        font-size: 14px;
    }

    .qa-tile {
        padding: 16px 14px;
        gap: 12px;
    }

    .qa-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 11px;
    }

        .qa-icon i {
            font-size: 16px;
        }

    .qa-label {
        font-size: 13px;
    }

    .qa-sub {
        font-size: 11px;
    }

    .upd-cal-nav-btn {
        width: 36px;
        height: 36px;
    }

    .thought-divider {
        width: 40px;
    }
}

@media(max-width:480px) {
    .mps-about, .mps-gallery, .mps-updates,
    .mps-facilities, .mps-testimonials,
    .mps-why, .mps-cta, .mps-quick-access {
        padding: 36px 0;
    }

    .section-header-center {
        margin-bottom: 24px;
    }

        .section-header-center h2 {
            font-size: 22px;
        }

        .section-header-center p {
            font-size: 14px;
        }

    .about-content h2 {
        font-size: 22px;
    }

    .about-stats {
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }

    .astat {
        padding: 10px 6px;
    }

    .astat-num {
        font-size: 20px;
    }

    .astat-lbl {
        font-size: 10px;
    }

    .why-heading {
        font-size: 24px;
    }

    .cta-text h2 {
        font-size: 20px;
    }

    .cta-btns {
        flex-direction: column;
        gap: 10px;
    }

    .cta-btn-primary, .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .testi-slider-wrap {
        padding: 0 28px;
    }

    .testi-card {
        padding: 20px 14px 16px;
    }

        .testi-card .testi-text {
            font-size: 13.5px;
        }

    .gal-slider-wrap {
        padding: 0 28px;
    }

    .hero-btn-primary, .hero-btn-secondary {
        padding: 11px 22px;
        font-size: 13px;
    }

    .motto-box {
        padding: 16px 16px;
        gap: 12px;
    }

    .motto-text p {
        font-size: 13.5px;
    }

    .mps-stats .stat-item {
        padding: 16px 12px;
    }

        .mps-stats .stat-item h3 {
            font-size: 22px;
        }

    .mps-stats .stat-icon-wrap {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }

        .mps-stats .stat-icon-wrap i {
            font-size: 17px;
        }
}

/* ===== MPS FOOTER — REDESIGN 2025 ===== */
.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}





/*.mps-header * {
    box-sizing: border-box;
}

.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }*/


.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
               3. NAV BAR  — Premium gradient bar
            ============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
               MOBILE DRAWER
            ============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
               RESPONSIVE
            ============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg,#07170e 0%,#0a2016 50%,#0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent,#f0a500,#fff,#0a5c38,transparent);
}

.inner-hero::after {
    content: 'VISION';
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.025);
    pointer-events: none;
    letter-spacing: -6px;
    font-family: Georgia,serif;
}

.inner-hero-body {
    position: relative;
    z-index: 1;
}

.inner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.45);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.6);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

    .inner-breadcrumb .sep {
        color: rgba(255,255,255,.25);
        font-size: 11px;
    }

    .inner-breadcrumb .active {
        color: rgba(255,255,255,.75);
    }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -.5px;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    margin: 14px 0 0;
    background: linear-gradient(to right,#f0a500,#d48000);
}

/* ── Shared section styles ── */
.vm-section {
    padding: 80px 0;
}

.vm-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

    .vm-chip.green {
        background: linear-gradient(135deg,#e8f5ee,#d0eddf);
        border: 1px solid #b8dfc8;
        color: #0a5c38;
    }

    .vm-chip.gold {
        background: rgba(240,165,0,.12);
        border: 1px solid rgba(240,165,0,.3);
        color: #d48000;
    }

    .vm-chip.navy {
        background: #eef2f8;
        border: 1px solid #b8cede;
        color: #1b3a5c;
    }

.vm-section-title {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: -.4px;
}

.vm-divider {
    width: 44px;
    height: 3px;
    border-radius: 2px;
    margin: 0 0 24px;
    background: linear-gradient(to right,#f0a500,#d48000);
}

.vm-text {
    color: #5a6a7e;
    font-size: 15.5px;
    line-height: 1.9;
    margin-bottom: 20px;
}

    .vm-text:last-child {
        margin-bottom: 0;
    }

.vm-highlight {
    color: #0a5c38;
    font-weight: 700;
}

/* ── Vision section ── */
.vm-vision {
    background: #fff;
}

.vm-vision-card {
    background: linear-gradient(160deg,#f4f8ff 0%,#eef3fb 100%);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e0e8f4;
    position: relative;
    overflow: hidden;
}

    .vm-vision-card::after {
        content: '';
        position: absolute;
        bottom: -40px;
        right: -40px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        border: 40px solid rgba(27,58,92,.05);
        pointer-events: none;
    }

.vm-stats-row {
    display: flex;
    gap: 0;
    margin-top: 36px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #dde6f0;
    box-shadow: 0 4px 20px rgba(27,58,92,.07);
    overflow: hidden;
}

.vm-stat {
    flex: 1;
    text-align: center;
    padding: 20px 12px;
    border-right: 1px solid #e8eef5;
}

    .vm-stat:last-child {
        border-right: none;
    }

.vm-stat-num {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #0a5c38;
    line-height: 1;
    margin-bottom: 6px;
}

.vm-stat-lbl {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #8a9bb0;
    text-transform: uppercase;
    letter-spacing: .6px;
}

/* ── Mission section ── */
.vm-mission {
    background: linear-gradient(150deg,#071812 0%,#0a2016 55%,#0c271a 100%);
    position: relative;
    overflow: hidden;
}

    .vm-mission::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,.03) 1px,transparent 1px);
        background-size: 26px 26px;
        pointer-events: none;
    }

    .vm-mission::after {
        content: 'MISSION';
        position: absolute;
        left: 50%;
        bottom: -40px;
        transform: translateX(-50%);
        font-size: 200px;
        font-weight: 900;
        line-height: 1;
        color: rgba(255,255,255,.025);
        pointer-events: none;
        letter-spacing: -6px;
        font-family: Georgia,serif;
        white-space: nowrap;
    }

.vm-mission-body {
    position: relative;
    z-index: 1;
}

.vm-mission .vm-section-title {
    color: #fff;
}

.vm-mission .vm-divider {
    background: linear-gradient(to right,#4ade80,#22c55e);
}

.vm-mission .vm-text {
    color: rgba(255,255,255,.65);
}

.vm-mission-blockquote {
    border-left: 3px solid rgba(240,165,0,.6);
    padding: 16px 22px;
    background: rgba(255,255,255,.04);
    border-radius: 0 14px 14px 0;
    margin-top: 28px;
    color: rgba(255,255,255,.7);
    font-size: 15.5px;
    line-height: 1.8;
    font-style: italic;
}

    .vm-mission-blockquote span {
        color: #f0a500;
        font-weight: 700;
        font-style: normal;
    }

/* ── Motto section ── */
.vm-motto {
    background: linear-gradient(160deg,#f0f7f3 0%,#e8f4ee 60%,#f5faf7 100%);
}

.vm-four-ds {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.vm-ds-pill {
    flex: 1;
    min-width: 140px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 22px 16px;
    border: 1px solid #d0eddf;
    box-shadow: 0 3px 16px rgba(10,92,56,.08);
    transition: transform .25s, box-shadow .25s;
}

    .vm-ds-pill:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(10,92,56,.14);
    }

.vm-ds-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.vm-ds-pill h5 {
    color: #1b3a5c;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 5px;
}

.vm-ds-pill p {
    color: #7a8fa6;
    font-size: 12.5px;
    margin: 0;
    line-height: 1.5;
}
/* Values grid */
.vm-values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.vm-value-card {
    flex: 0 0 calc(25% - 11px);
    max-width: calc(25% - 11px);
    background: #fff;
    border-radius: 16px;
    padding: 20px 18px;
    border: 1px solid #e0edea;
    box-shadow: 0 2px 12px rgba(10,92,56,.05);
    display: flex;
    gap: 13px;
    align-items: flex-start;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}

    .vm-value-card:hover {
        border-color: #0a5c38;
        box-shadow: 0 8px 26px rgba(10,92,56,.12);
        transform: translateY(-4px);
    }

.vm-value-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.vm-value-body h6 {
    color: #1b3a5c;
    font-size: 14.5px;
    font-weight: 800;
    margin: 0 0 5px;
}

.vm-value-body p {
    color: #7a8fa6;
    font-size: 12.5px;
    line-height: 1.55;
    margin: 0;
}

@media(max-width:991px) {
    .vm-value-card {
        flex: 0 0 calc(50% - 7px);
        max-width: calc(50% - 7px);
    }

    .inner-hero h1 {
        font-size: 32px;
    }
}

@media(max-width:580px) {
    .vm-value-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .vm-four-ds {
        flex-direction: column;
    }

    .vm-stats-row {
        flex-wrap: wrap;
    }

    .vm-stat {
        flex: 0 0 50%;
        border-bottom: 1px solid #e8eef5;
    }
}


.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}








.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}


.inner-hero {
    background: linear-gradient(135deg, #072916 0%, #0a5c38 45%, #1b3a5c 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
}

.inner-hero::after {
    content: 'LEADERSHIP';
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -6px;
    font-family: Georgia, serif;
    white-space: nowrap;
}
/* Decorative circles */
.inner-hero .deco-circle-1 {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 50px solid rgba(240,165,0,.08);
    pointer-events: none;
}

.inner-hero .deco-circle-2 {
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 35px solid rgba(255,255,255,.04);
    pointer-events: none;
}
/* Top accent bar */
.inner-hero-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #0a5c38, #f0a500, #4a6cf7, #e74c3c, #0a7c6e, #7c3aed);
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
            font-weight: 600;
        }

.inner-hero-content {
    position: relative;
    z-index: 1;
}

.inner-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(240,165,0,.12);
    border: 1px solid rgba(240,165,0,.25);
    color: #f0a500;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

    .inner-hero-chip i {
        font-size: 10px;
    }

.inner-hero h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.15;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-sub {
    color: rgba(255,255,255,.55);
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    margin-top: 22px;
}

/* ── Administration Section ── */
.adm-section {
    background: linear-gradient(160deg, #f4f8ff 0%, #eef3fb 55%, #f8faff 100%);
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}

    .adm-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.035) 1px, transparent 1px);
        background-size: 28px 28px;
    }

    .adm-section::after {
        content: 'MPS';
        position: absolute;
        right: -20px;
        bottom: -50px;
        font-size: 240px;
        font-weight: 900;
        line-height: 1;
        color: rgba(27,58,92,.025);
        pointer-events: none;
        letter-spacing: -10px;
        font-family: Georgia, serif;
    }
    /* Corner decorative circles */
    .adm-section .deco-tl {
        position: absolute;
        top: -80px;
        left: -80px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border: 50px solid rgba(10,92,56,.04);
        pointer-events: none;
    }

    .adm-section .deco-br {
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        border: 60px solid rgba(240,165,0,.04);
        pointer-events: none;
    }

.adm-section-inner {
    position: relative;
    z-index: 1;
}

/* Section heading */
.adm-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.adm-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #e8f5ee, #d0eddf);
    color: #0a5c38;
    border: 1px solid #b8dfc8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}

    .adm-chip i {
        font-size: 10px;
    }

.adm-section-title h2 {
    color: #1b3a5c;
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -.3px;
}

    .adm-section-title h2 span {
        color: #0a5c38;
    }

.adm-section-title .section-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #0a5c38, #f0a500);
    margin: 12px auto 14px;
}

.adm-section-title p {
    color: #7a8fa6;
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Profile Card ── */
.adm-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(27,58,92,.07);
    overflow: hidden;
    transition: transform .35s cubic-bezier(.25,.8,.25,1), box-shadow .35s;
    margin-bottom: 28px;
    position: relative;
}

    .adm-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(to right, #0a5c38, #1a8a52);
        z-index: 2;
    }

    .adm-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 22px 56px rgba(27,58,92,.14);
    }

    /* per-card top border colours */
    .adm-card.c-green::before {
        background: linear-gradient(to right, #0a5c38, #1a8a52);
    }

    .adm-card.c-gold::before {
        background: linear-gradient(to right, #c47a00, #f0a500);
    }

    .adm-card.c-teal::before {
        background: linear-gradient(to right, #0a6c6e, #14b8a6);
    }

    .adm-card.c-navy::before {
        background: linear-gradient(to right, #1b3a5c, #2c5f96);
    }

/* Photo area */
.adm-photo-area {
    background: linear-gradient(160deg, #f0f7f3, #e8f4ee);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 36px 0 0;
    position: relative;
}

    .adm-photo-area::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40px;
        background: linear-gradient(to top, #fff, transparent);
        pointer-events: none;
    }

.adm-card.c-gold .adm-photo-area {
    background: linear-gradient(160deg, #fdf7ea, #faf0d8);
}

.adm-card.c-teal .adm-photo-area {
    background: linear-gradient(160deg, #eaf5f5, #ddf0f0);
}

.adm-card.c-navy .adm-photo-area {
    background: linear-gradient(160deg, #edf1f7, #e4eaf4);
}

/* Circular photo */
.adm-photo-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #0a5c38, #1a8a52);
    margin-bottom: -28px;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 28px rgba(10,92,56,.2);
    transition: transform .35s, box-shadow .35s;
}

.adm-card:hover .adm-photo-ring {
    transform: scale(1.06);
    box-shadow: 0 14px 40px rgba(10,92,56,.25);
}

.adm-card.c-gold .adm-photo-ring {
    background: linear-gradient(135deg, #c47a00, #f0a500);
    box-shadow: 0 8px 28px rgba(192,122,0,.2);
}

.adm-card.c-teal .adm-photo-ring {
    background: linear-gradient(135deg, #0a6c6e, #14b8a6);
    box-shadow: 0 8px 28px rgba(10,108,110,.2);
}

.adm-card.c-navy .adm-photo-ring {
    background: linear-gradient(135deg, #1b3a5c, #2c5f96);
    box-shadow: 0 8px 28px rgba(27,58,92,.2);
}

.adm-photo-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 3px solid #fff;
    display: block;
}

/* Card body */
.adm-card-body {
    padding: 36px 24px 28px;
    text-align: center;
}

.adm-role-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #e8f5ee, #d0eddf);
    color: #0a5c38;
    border: 1px solid #b8dfc8;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.adm-card.c-gold .adm-role-pill {
    background: linear-gradient(135deg, #fef3d6, #fde9b0);
    color: #b07a00;
    border-color: #f0d080;
}

.adm-card.c-teal .adm-role-pill {
    background: linear-gradient(135deg, #e3f4f4, #d0edec);
    color: #0a6c6e;
    border-color: #a8d8d9;
}

.adm-card.c-navy .adm-role-pill {
    background: linear-gradient(135deg, #e8edf5, #dce4f2);
    color: #1b3a5c;
    border-color: #b8cede;
}

.adm-card-body h4 {
    color: #1b3a5c;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.35;
}

.adm-salutation {
    color: #0a5c38;
}

.adm-card.c-gold .adm-salutation {
    color: #b07a00;
}

.adm-card.c-teal .adm-salutation {
    color: #0a6c6e;
}

.adm-card.c-navy .adm-salutation {
    color: #1b3a5c;
}

/* thin rule */
.adm-rule {
    width: 40px;
    height: 2px;
    border-radius: 2px;
    margin: 12px auto;
    background: linear-gradient(to right, #0a5c38, #1a8a52);
    opacity: .3;
}

.adm-card.c-gold .adm-rule {
    background: linear-gradient(to right, #c47a00, #f0a500);
}

.adm-card.c-teal .adm-rule {
    background: linear-gradient(to right, #0a6c6e, #14b8a6);
}

.adm-card.c-navy .adm-rule {
    background: linear-gradient(to right, #1b3a5c, #2c5f96);
}

.adm-org {
    color: #8a9bac;
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}

    .adm-org strong {
        color: #4a6070;
        font-weight: 600;
    }

/* ── Row 2 centred ── */
.adm-row2 {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 0;
}

    .adm-row2 .adm-col {
        width: calc(33.333% - 20px);
        min-width: 250px;
    }

/* ── Vision banner between rows ── */
.adm-vision-strip {
    background: linear-gradient(135deg, #072916 0%, #0a5c38 50%, #1b3a5c 100%);
    border-radius: 16px;
    padding: 36px 40px;
    margin: 10px 0 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 28px;
}

    .adm-vision-strip::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: repeating-linear-gradient( -55deg, transparent, transparent 40px, rgba(255,255,255,.02) 40px, rgba(255,255,255,.02) 42px );
    }

    .adm-vision-strip::after {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        border: 30px solid rgba(240,165,0,.08);
        pointer-events: none;
    }

.adm-vision-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #f0a500, #ffcc44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(240,165,0,.3);
    position: relative;
    z-index: 1;
}

    .adm-vision-icon i {
        color: #fff;
        font-size: 20px;
    }

.adm-vision-body {
    position: relative;
    z-index: 1;
    flex: 1;
}

    .adm-vision-body p {
        color: rgba(255,255,255,.85);
        font-size: 16px;
        font-style: italic;
        line-height: 1.7;
        margin: 0;
    }

    .adm-vision-body span {
        display: block;
        margin-top: 8px;
        color: #f0a500;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-style: normal;
    }

@media(max-width: 991px) {
    .adm-row2 .adm-col {
        width: calc(50% - 14px);
    }

    .adm-vision-strip {
        padding: 28px 24px;
    }
}

@media(max-width: 767px) {
    .inner-hero {
        padding: 50px 0 55px;
    }

        .inner-hero h1 {
            font-size: 28px;
        }

        .inner-hero::after {
            font-size: 70px;
            right: -30px;
        }

    .inner-hero-sub {
        font-size: 14px;
    }

    .inner-hero-chip {
        font-size: 10px;
        letter-spacing: 1.5px;
        padding: 4px 12px;
    }

    .inner-hero .deco-circle-1 {
        width: 140px;
        height: 140px;
        border-width: 28px;
        top: -40px;
        right: -40px;
    }

    .inner-hero .deco-circle-2 {
        width: 100px;
        height: 100px;
        border-width: 20px;
    }

    .adm-section {
        padding: 50px 0 60px;
    }

        .adm-section::after {
            font-size: 120px;
        }

        .adm-section .deco-tl {
            width: 160px;
            height: 160px;
            border-width: 28px;
        }

        .adm-section .deco-br {
            width: 180px;
            height: 180px;
            border-width: 30px;
        }

    .adm-section-title {
        margin-bottom: 36px;
    }

        .adm-section-title h2 {
            font-size: 28px;
        }

        .adm-section-title p {
            font-size: 14px;
        }

    .adm-card-body {
        padding: 28px 18px 22px;
    }

        .adm-card-body h4 {
            font-size: 16px;
        }

    .adm-photo-ring {
        width: 100px;
        height: 100px;
        margin-bottom: -22px;
    }

    .adm-row2 {
        gap: 16px;
    }

        .adm-row2 .adm-col {
            width: 100%;
            max-width: 340px;
        }

    .adm-vision-strip {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 24px 20px;
        border-radius: 12px;
    }

        .adm-vision-strip::after {
            width: 100px;
            height: 100px;
            border-width: 18px;
        }

    .adm-vision-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

        .adm-vision-icon i {
            font-size: 17px;
        }

    .adm-vision-body p {
        font-size: 14px;
    }
}

@media(max-width: 480px) {
    .inner-hero {
        padding: 36px 0 40px;
    }

        .inner-hero h1 {
            font-size: 24px;
            margin: 0 0 10px;
        }

        .inner-hero::after {
            font-size: 50px;
        }

        .inner-hero .deco-circle-1 {
            display: none;
        }

        .inner-hero .deco-circle-2 {
            display: none;
        }

    .inner-hero-divider {
        margin-top: 14px;
    }

    .adm-section {
        padding: 36px 0 44px;
    }

        .adm-section::after {
            font-size: 80px;
        }

        .adm-section .deco-tl {
            display: none;
        }

        .adm-section .deco-br {
            display: none;
        }

    .adm-section-title {
        margin-bottom: 28px;
    }

        .adm-section-title h2 {
            font-size: 24px;
        }

    .adm-card {
        margin-bottom: 20px;
    }

    .adm-card-body {
        padding: 24px 14px 18px;
    }

    .adm-photo-ring {
        width: 90px;
        height: 90px;
    }

    .adm-vision-strip {
        padding: 20px 16px;
        margin: 6px 0 28px;
    }

    .adm-vision-body p {
        font-size: 13.5px;
        line-height: 1.6;
    }
}



.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}


.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'CONTACT';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Contact Section ── */
.cnt-section {
    background: #f4f7f5;
    padding: 80px 0 0;
    position: relative;
}

    .cnt-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.cnt-inner {
    position: relative;
    z-index: 1;
}

/* Section heading */
.cnt-title {
    text-align: center;
    margin-bottom: 50px;
}

.cnt-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.cnt-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .cnt-title h2 span {
        color: #0a5c38;
    }

.cnt-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Info Cards Row ── */
.cnt-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cnt-card {
    flex: 1;
    min-width: 240px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(27,58,92,.07);
    border: 1px solid #e4ecf0;
    padding: 32px 28px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}

    .cnt-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 40px rgba(27,58,92,.12);
    }

.cnt-card-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.cnt-card.c-green .cnt-card-stripe {
    background: linear-gradient(to right, #0a5c38, #1a8a52);
}

.cnt-card.c-gold .cnt-card-stripe {
    background: linear-gradient(to right, #c47a00, #f0a500);
}

.cnt-card.c-navy .cnt-card-stripe {
    background: linear-gradient(to right, #1b3a5c, #3a6fa0);
}

.cnt-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.cnt-card.c-green .cnt-card-icon {
    background: linear-gradient(135deg, #0a5c38, #1a8a52);
}

.cnt-card.c-gold .cnt-card-icon {
    background: linear-gradient(135deg, #c47a00, #f0a500);
}

.cnt-card.c-navy .cnt-card-icon {
    background: linear-gradient(135deg, #1b3a5c, #3a6fa0);
}

.cnt-card-icon i {
    font-size: 22px;
    color: #fff;
}

.cnt-card h5 {
    color: #1b3a5c;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
}

.cnt-card p {
    color: #4a6070;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.cnt-card a {
    color: #0a5c38;
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}

    .cnt-card a:hover {
        color: #f0a500;
    }

/* ── Social Links ── */
.cnt-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 60px;
}

.cnt-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #e4ecf0;
    color: #4a6070;
    font-size: 20px;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 2px 10px rgba(27,58,92,.05);
}

    .cnt-social-link:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(27,58,92,.12);
    }

    .cnt-social-link.s-fb:hover {
        background: #1877f2;
        border-color: #1877f2;
        color: #fff;
    }

    .cnt-social-link.s-ig:hover {
        background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
        border-color: #dd2a7b;
        color: #fff;
    }

    .cnt-social-link.s-yt:hover {
        background: #ff0000;
        border-color: #ff0000;
        color: #fff;
    }

/* ── Map Section ── */
.cnt-map {
    position: relative;
    background: #fff;
    border-top: 4px solid #0a5c38;
}

.cnt-map-header {
    background: linear-gradient(135deg, #0a2016, #0d2a1d);
    padding: 16px 0;
    text-align: center;
}

    .cnt-map-header h4 {
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .cnt-map-header h4 i {
            color: #f0a500;
        }

.cnt-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .cnt-cards {
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 80px;
    }

    .cnt-title h2 {
        font-size: 28px;
    }

    .cnt-cards {
        flex-direction: column;
    }

    .cnt-card {
        min-width: 100%;
    }

    .cnt-map iframe {
        height: 300px;
    }
}


.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}


.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'GALLERY';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Gallery Section ── */
.gal-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .gal-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.gal-inner {
    position: relative;
    z-index: 1;
}

/* Section heading */
.gal-title {
    text-align: center;
    margin-bottom: 40px;
}

.gal-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.gal-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .gal-title h2 span {
        color: #0a5c38;
    }

.gal-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Filter Buttons ── */
.gal-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}

.gal-filter-btn {
    border: none;
    outline: none;
    cursor: pointer;
    background: #fff;
    color: #4a6070;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 30px;
    border: 1px solid #dde8e2;
    transition: all .25s;
    box-shadow: 0 2px 8px rgba(27,58,92,.04);
}

    .gal-filter-btn:hover {
        background: #e9f4ee;
        color: #0a5c38;
        border-color: #b8d6c4;
    }

    .gal-filter-btn.is-checked {
        background: linear-gradient(135deg, #0a5c38, #1a8a52);
        color: #fff;
        border-color: #0a5c38;
        box-shadow: 0 4px 16px rgba(10,92,56,.25);
    }

/* ── Gallery Grid (isotope compatible) ── */
.gal-grid {
    margin: 0 -10px;
}

    .gal-grid::after {
        content: '';
        display: block;
        clear: both;
    }

/* Gallery Item */
.gal-item {
    display: block;
    float: left;
    width: calc(33.333% - 20px);
    margin: 0 10px 20px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(27,58,92,.06);
    border: 1px solid #e4ecf0;
    transition: transform .3s, box-shadow .3s;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

    .gal-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 36px rgba(27,58,92,.12);
        text-decoration: none;
    }

/* Thumbnail */
.gal-item-thumb {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #eef3f0;
}

    .gal-item-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s;
    }

.gal-item:hover .gal-item-thumb img {
    transform: scale(1.06);
}

/* Overlay */
.gal-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(7,23,14,.7) 100%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gal-item:hover .gal-item-overlay {
    opacity: 1;
}

.gal-item-zoom {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(240,165,0,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform .3s;
}

.gal-item:hover .gal-item-zoom {
    transform: scale(1);
}

.gal-item-zoom i {
    font-size: 18px;
    color: #fff;
}

/* Caption */
.gal-item-caption {
    padding: 14px 16px;
    text-align: center;
}

    .gal-item-caption p {
        color: #1b3a5c;
        font-size: 13.5px;
        font-weight: 600;
        margin: 0;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Count badge */
.gal-count {
    text-align: center;
    margin-bottom: 36px;
}

    .gal-count span {
        display: inline-block;
        background: #fff;
        border: 1px solid #dde8e2;
        border-radius: 30px;
        padding: 6px 20px;
        color: #4a6070;
        font-size: 13px;
    }

        .gal-count span strong {
            color: #0a5c38;
        }

/* ── No images message ── */
.gal-empty {
    text-align: center;
    padding: 60px 20px;
    color: #7a8fa6;
    font-size: 15px;
}

    .gal-empty i {
        font-size: 40px;
        color: #c8d6ce;
        display: block;
        margin-bottom: 14px;
    }

/* ── Responsive ── */
@media (max-width: 991px) {
    .gal-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 80px;
    }

    .gal-title h2 {
        font-size: 28px;
    }

    .gal-item {
        width: calc(50% - 20px);
    }

    .gal-item-thumb {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .gal-item {
        width: calc(100% - 20px);
    }

    .gal-item-thumb {
        height: 200px;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}


.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'PRINCIPAL';
    position: absolute;
    right: -20px;
    bottom: -25px;
    font-size: 130px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Main Section ── */
.principal-section {
    background: #f6f8f6;
    padding: 80px 0 90px;
    position: relative;
}

    .principal-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.06) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.principal-inner {
    position: relative;
    z-index: 1;
}

/* ── Left : Photo Panel ── */
.prin-photo-panel {
    position: sticky;
    top: 100px;
}

.prin-photo-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10,92,56,.18);
    position: relative;
}

    .prin-photo-frame img {
        width: 100%;
        display: block;
        object-fit: cover;
        object-position: top center;
    }
    /* Green gradient overlay at bottom of photo */
    .prin-photo-frame::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 45%;
        background: linear-gradient(to top, rgba(7,23,14,.85) 0%, transparent 100%);
    }
/* Name plate inside photo */
.prin-nameplate {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 22px 20px;
    z-index: 2;
    text-align: center;
}

    .prin-nameplate h3 {
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 4px;
        line-height: 1.2;
    }

        .prin-nameplate h3 span {
            color: #f0a500;
        }

.prin-nameplate-role {
    display: inline-block;
    background: rgba(240,165,0,.2);
    color: #f0ca60;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    border: 1px solid rgba(240,165,0,.3);
}

/* Decorative accent bar below photo */
.prin-photo-accent {
    margin-top: 18px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 2px 14px rgba(27,58,92,.07);
    border-left: 4px solid #0a5c38;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .prin-photo-accent i {
        font-size: 22px;
        color: #0a5c38;
        flex-shrink: 0;
    }

    .prin-photo-accent p {
        color: #4a6070;
        font-size: 13px;
        line-height: 1.55;
        margin: 0;
        font-style: italic;
    }

/* ── Right : Message Panel ── */
.prin-message-panel {
    padding-left: 10px;
}

.prin-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0a5c38;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

    .prin-label::before {
        content: '';
        width: 28px;
        height: 2px;
        border-radius: 2px;
        background: linear-gradient(to right, #f0a500, #d48000);
    }

.prin-message-panel h2 {
    color: #1b3a5c;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 24px;
    line-height: 1.2;
}

    .prin-message-panel h2 span {
        color: #0a5c38;
    }

/* Opening quote mark */
.prin-open-quote {
    font-size: 80px;
    line-height: .6;
    color: rgba(10,92,56,.12);
    font-family: Georgia, serif;
    font-weight: 900;
    margin-bottom: 16px;
    display: block;
}

.prin-message-panel p {
    color: #4a5e6e;
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 18px;
}

    .prin-message-panel p strong {
        color: #1b3a5c;
        font-weight: 700;
    }

.prin-hl {
    background: linear-gradient(120deg, rgba(10,92,56,.12) 0%, rgba(10,92,56,.12) 100%);
    background-repeat: no-repeat;
    background-size: 100% 55%;
    background-position: 0 85%;
    color: #0a5c38;
    font-weight: 700;
    padding: 0 2px;
}

/* Styled blockquote */
.prin-blockquote {
    background: linear-gradient(135deg, #07170e, #0f2a18);
    border-radius: 16px;
    padding: 28px 28px 24px 32px;
    margin: 32px 0 28px;
    position: relative;
    overflow: hidden;
}

    .prin-blockquote::before {
        content: '\201C';
        position: absolute;
        top: -10px;
        left: 16px;
        font-size: 100px;
        line-height: 1;
        font-family: Georgia, serif;
        color: rgba(240,165,0,.15);
        font-weight: 900;
        pointer-events: none;
    }

    .prin-blockquote::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        bottom: 0;
        background: linear-gradient(to bottom, #f0a500, #d48000);
        border-radius: 16px 0 0 16px;
    }

    .prin-blockquote p {
        color: rgba(255,255,255,.85);
        font-size: 15px;
        font-style: italic;
        line-height: 1.8;
        margin: 0;
        position: relative;
        z-index: 1;
    }

        .prin-blockquote p strong {
            color: #f0ca60;
            font-style: normal;
        }

/* Signature */
.prin-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.prin-sig-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a5c38, #1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    font-family: Georgia, serif;
}

.prin-sig-text strong {
    display: block;
    color: #1b3a5c;
    font-size: 15px;
    font-weight: 700;
}

.prin-sig-text span {
    color: #0a5c38;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
}

@media(max-width: 991px) {
    .prin-photo-panel {
        position: static;
        margin-bottom: 44px;
    }

    .prin-message-panel {
        padding-left: 0;
    }

    .prin-photo-frame img {
        max-height: 420px;
        object-fit: cover;
    }
}

@media(max-width: 767px) {
    .inner-hero {
        padding: 44px 0 40px;
    }

        .inner-hero h1 {
            font-size: 28px;
            margin: 0 0 10px;
        }

        .inner-hero::after {
            font-size: 70px;
            right: -30px;
        }

    .principal-section {
        padding: 50px 0 60px;
    }

    .prin-photo-panel {
        margin-bottom: 32px;
    }

    .prin-photo-frame img {
        max-height: 350px;
    }

    .prin-nameplate h3 {
        font-size: 17px;
    }

    .prin-nameplate-role {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .prin-photo-accent {
        padding: 14px 16px;
        gap: 12px;
    }

    .prin-message-panel h2 {
        font-size: 24px;
        margin: 0 0 18px;
    }

    .prin-open-quote {
        font-size: 50px;
        margin-bottom: 10px;
    }

    .prin-message-panel p {
        font-size: 14.5px;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    .prin-blockquote {
        padding: 20px 20px 18px 22px;
        margin: 24px 0 20px;
    }

        .prin-blockquote::before {
            font-size: 60px;
            left: 10px;
        }

        .prin-blockquote p {
            font-size: 13.5px;
            line-height: 1.7;
        }

    .prin-label {
        font-size: 10.5px;
        letter-spacing: 1.8px;
    }
}

@media(max-width: 480px) {
    .inner-hero {
        padding: 32px 0 32px;
    }

        .inner-hero h1 {
            font-size: 24px;
        }

        .inner-hero::after {
            font-size: 50px;
        }

    .principal-section {
        padding: 36px 0 44px;
    }

    .prin-photo-frame img {
        max-height: 300px;
    }

    .prin-photo-accent {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

        .prin-photo-accent i {
            font-size: 18px;
        }

    .prin-message-panel h2 {
        font-size: 22px;
    }

    .prin-open-quote {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .prin-message-panel p {
        font-size: 14px;
        line-height: 1.7;
    }

    .prin-blockquote {
        padding: 16px 14px 14px 16px;
        margin: 20px 0 16px;
    }

        .prin-blockquote::before {
            font-size: 48px;
            left: 6px;
        }

        .prin-blockquote p {
            font-size: 13px;
            line-height: 1.6;
        }

    .prin-signature {
        gap: 12px;
    }

    .prin-sig-avatar {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .prin-sig-text strong {
        font-size: 14px;
    }

    .prin-sig-text span {
        font-size: 12px;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}

.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'CHAIRMAN';
    position: absolute;
    right: -20px;
    bottom: -25px;
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Main Section ── */
.chair-section {
    background: #f6f8f6;
    padding: 80px 0 90px;
    position: relative;
}

    .chair-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.06) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.chair-inner {
    position: relative;
    z-index: 1;
}

/* ── Left : Photo Panel ── */
.chair-photo-panel {
    position: sticky;
    top: 100px;
}

.chair-photo-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10,92,56,.18);
    position: relative;
}

    .chair-photo-frame img {
        width: 100%;
        display: block;
        object-fit: cover;
        object-position: top center;
    }

    .chair-photo-frame::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 45%;
        background: linear-gradient(to top, rgba(7,23,14,.85) 0%, transparent 100%);
    }

.chair-nameplate {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 22px 20px;
    z-index: 2;
    text-align: center;
}

    .chair-nameplate h3 {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 4px;
        line-height: 1.2;
    }

        .chair-nameplate h3 span {
            color: #f0a500;
        }

.chair-nameplate-role {
    display: inline-block;
    background: rgba(240,165,0,.2);
    color: #f0ca60;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    border: 1px solid rgba(240,165,0,.3);
}

.chair-photo-accent {
    margin-top: 18px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 2px 14px rgba(27,58,92,.07);
    border-left: 4px solid #e09a00;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .chair-photo-accent i {
        font-size: 22px;
        color: #e09a00;
        flex-shrink: 0;
    }

    .chair-photo-accent p {
        color: #4a6070;
        font-size: 13px;
        line-height: 1.55;
        margin: 0;
        font-style: italic;
    }

/* ── Right : Message Panel ── */
.chair-message-panel {
    padding-left: 10px;
}

.chair-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0a5c38;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

    .chair-label::before {
        content: '';
        width: 28px;
        height: 2px;
        border-radius: 2px;
        background: linear-gradient(to right, #f0a500, #d48000);
    }

.chair-message-panel h2 {
    color: #1b3a5c;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 24px;
    line-height: 1.2;
}

    .chair-message-panel h2 span {
        color: #0a5c38;
    }

.chair-open-quote {
    font-size: 80px;
    line-height: .6;
    color: rgba(10,92,56,.12);
    font-family: Georgia, serif;
    font-weight: 900;
    margin-bottom: 16px;
    display: block;
}

.chair-message-panel p {
    color: #4a5e6e;
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 18px;
}

    .chair-message-panel p strong {
        color: #1b3a5c;
        font-weight: 700;
    }

.chair-hl {
    background: linear-gradient(120deg, rgba(10,92,56,.12) 0%, rgba(10,92,56,.12) 100%);
    background-repeat: no-repeat;
    background-size: 100% 55%;
    background-position: 0 85%;
    color: #0a5c38;
    font-weight: 700;
    padding: 0 2px;
}

/* Inline opening quote (first para) */
.chair-inline-quote {
    background: #fff8e6;
    border-left: 3px solid #f0a500;
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #5a4010;
    font-style: italic;
    font-size: 15.5px;
    line-height: 1.7;
}

/* Styled blockquote */
.chair-blockquote {
    background: linear-gradient(135deg, #07170e, #0f2a18);
    border-radius: 16px;
    padding: 28px 28px 24px 32px;
    margin: 28px 0;
    position: relative;
    overflow: hidden;
}

    .chair-blockquote::before {
        content: '\201C';
        position: absolute;
        top: -10px;
        left: 16px;
        font-size: 100px;
        line-height: 1;
        font-family: Georgia, serif;
        color: rgba(240,165,0,.15);
        font-weight: 900;
        pointer-events: none;
    }

    .chair-blockquote::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        bottom: 0;
        background: linear-gradient(to bottom, #f0a500, #d48000);
        border-radius: 16px 0 0 16px;
    }

    .chair-blockquote p {
        color: rgba(255,255,255,.85);
        font-size: 15px;
        font-style: italic;
        line-height: 1.8;
        margin: 0;
        position: relative;
        z-index: 1;
    }

        .chair-blockquote p strong {
            color: #f0ca60;
            font-style: normal;
            font-weight: 700;
        }

/* Signature */
.chair-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.chair-sig-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c47a00, #f0a500);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    font-family: Georgia, serif;
}

.chair-sig-text strong {
    display: block;
    color: #1b3a5c;
    font-size: 15px;
    font-weight: 700;
}

.chair-sig-text span {
    color: #0a5c38;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
}

@media(max-width: 991px) {
    .chair-photo-panel {
        position: static;
        margin-bottom: 44px;
    }

    .chair-message-panel {
        padding-left: 0;
    }

    .chair-photo-frame img {
        max-height: 420px;
        object-fit: cover;
    }
}

@media(max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 70px;
    }

    .chair-message-panel h2 {
        font-size: 26px;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}


.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'FACULTY';
    position: absolute;
    right: -20px;
    bottom: -25px;
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Faculty Section ── */
.faculty-section {
    background: #f4f7f5;
    padding: 80px 0 90px;
    position: relative;
}

    .faculty-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.faculty-inner {
    position: relative;
    z-index: 1;
}

/* Section heading */
.faculty-title {
    text-align: center;
    margin-bottom: 52px;
}

.faculty-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.faculty-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .faculty-title h2 span {
        color: #0a5c38;
    }

.faculty-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Faculty Card — horizontal list style ── */
.fac-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(27,58,92,.06);
    border: 1px solid #e8eef5;
    border-left: 4px solid #0a5c38;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    margin-bottom: 16px;
}

    .fac-card:hover {
        transform: translateX(5px);
        box-shadow: 0 6px 24px rgba(10,92,56,.11);
        border-left-color: #f0a500;
    }

    /* Cycle left-border colour */
    .fac-card:nth-child(3n+2) {
        border-left-color: #1b3a5c;
    }

        .fac-card:nth-child(3n+2):hover {
            border-left-color: #f0a500;
        }

    .fac-card:nth-child(3n) {
        border-left-color: #c47a00;
    }

        .fac-card:nth-child(3n):hover {
            border-left-color: #f0a500;
        }

/* Icon box */
.fac-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef5f0;
}

    .fac-icon i {
        font-size: 20px;
        color: #0a5c38;
    }

.fac-card:nth-child(3n+2) .fac-icon {
    background: #edf1f7;
}

    .fac-card:nth-child(3n+2) .fac-icon i {
        color: #1b3a5c;
    }

.fac-card:nth-child(3n) .fac-icon {
    background: #fdf5e0;
}

    .fac-card:nth-child(3n) .fac-icon i {
        color: #c47a00;
    }

/* Text block */
.fac-info {
    flex: 1;
    min-width: 0;
}

.fac-name {
    color: #1b3a5c;
    font-size: 14.5px;
    font-weight: 700;
    margin: 0 0 3px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fac-education {
    color: #8a9bac;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .fac-education i {
        color: #0a5c38;
        margin-right: 4px;
        font-size: 10px;
    }

/* Designation pill — right side */
.fac-designation {
    flex-shrink: 0;
    display: inline-block;
    background: #e9f4ee;
    color: #0a5c38;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.fac-card:nth-child(3n+2) .fac-designation {
    background: #e8edf5;
    color: #1b3a5c;
}

.fac-card:nth-child(3n) .fac-designation {
    background: #fef3d6;
    color: #b07a00;
}

/* Count badge */
.faculty-count {
    text-align: center;
    margin-bottom: 40px;
}

    .faculty-count span {
        display: inline-block;
        background: #fff;
        border: 1px solid #dde8e2;
        border-radius: 30px;
        padding: 6px 20px;
        color: #4a6070;
        font-size: 13px;
    }

        .faculty-count span strong {
            color: #0a5c38;
        }

@media(max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 80px;
    }

    .faculty-title h2 {
        font-size: 28px;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}

.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'ADMISSION';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Admission Section ── */
.adms-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .adms-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.adms-inner {
    position: relative;
    z-index: 1;
}

/* Section heading */
.adms-title {
    text-align: center;
    margin-bottom: 50px;
}

.adms-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.adms-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .adms-title h2 span {
        color: #0a5c38;
    }

.adms-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Process Steps (icons bar) ── */
.adms-process {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.adms-process-img {
    max-width: 500px;
    width: 100%;
}

    .adms-process-img img {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 4px 12px rgba(0,0,0,.08));
    }

/* ── Guidelines Card ── */
.adms-guidelines {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 30px rgba(27,58,92,.08);
    overflow: hidden;
    border: 1px solid #e4ecf0;
    margin-bottom: 40px;
}

.adms-guidelines-header {
    background: linear-gradient(135deg, #0a2016, #0d2a1d);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.adms-guidelines-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240,165,0,.15);
    flex-shrink: 0;
}

    .adms-guidelines-header-icon i {
        font-size: 18px;
        color: #f0a500;
    }

.adms-guidelines-header h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.adms-guidelines-body {
    padding: 32px;
}

/* Individual guideline items */
.adms-rule {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #eef3f0;
}

    .adms-rule:last-child {
        border-bottom: none;
    }

.adms-rule-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    color: #fff;
}

.adms-rule:nth-child(1) .adms-rule-num {
    background: linear-gradient(135deg, #0a5c38, #1a8a52);
}

.adms-rule:nth-child(2) .adms-rule-num {
    background: linear-gradient(135deg, #c47a00, #f0a500);
}

.adms-rule:nth-child(3) .adms-rule-num {
    background: linear-gradient(135deg, #1b3a5c, #2c5f96);
}

.adms-rule:nth-child(4) .adms-rule-num {
    background: linear-gradient(135deg, #0a8c8e, #12a0a3);
}

.adms-rule-text {
    color: #3a5068;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    padding-top: 5px;
}

    .adms-rule-text strong {
        color: #1b3a5c;
        font-weight: 700;
    }

/* ── Admission Banner ── */
.adms-banner {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 30px rgba(27,58,92,.08);
    overflow: hidden;
    border: 1px solid #e4ecf0;
}

.adms-banner-header {
    background: linear-gradient(135deg, #0a5c38, #0d7a48);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .adms-banner-header i {
        font-size: 18px;
        color: #f0a500;
    }

    .adms-banner-header h3 {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

.adms-banner-body {
    padding: 24px;
    text-align: center;
    background: #fafcfb;
}

    .adms-banner-body img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0,0,0,.08);
        border: 1px solid #e4ecf0;
    }

/* ── Contact CTA ── */
.adms-cta {
    margin-top: 50px;
    text-align: center;
}

.adms-cta-box {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 2px solid #e4ecf0;
    border-radius: 60px;
    padding: 14px 36px;
    box-shadow: 0 2px 16px rgba(27,58,92,.06);
}

.adms-cta-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a5c38, #1a8a52);
    flex-shrink: 0;
}

    .adms-cta-icon i {
        font-size: 18px;
        color: #fff;
    }

.adms-cta-text {
    text-align: left;
}

    .adms-cta-text span {
        display: block;
        color: #7a8fa6;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 600;
    }

    .adms-cta-text strong {
        display: block;
        color: #1b3a5c;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: .5px;
    }

        .adms-cta-text strong a {
            color: #1b3a5c;
            text-decoration: none;
            transition: color .2s;
        }

            .adms-cta-text strong a:hover {
                color: #0a5c38;
            }

/* ── Responsive ── */
@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 80px;
    }

    .adms-title h2 {
        font-size: 28px;
    }

    .adms-guidelines-header {
        padding: 18px 20px;
    }

    .adms-guidelines-body {
        padding: 20px;
    }

    .adms-rule {
        gap: 12px;
    }

    .adms-banner-header {
        padding: 14px 20px;
    }

    .adms-cta-box {
        flex-direction: column;
        gap: 10px;
        padding: 20px 28px;
        border-radius: 18px;
    }

    .adms-cta-text {
        text-align: center;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}

.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'REGISTRATION';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Registration Section ── */
.reg-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .reg-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.reg-inner {
    position: relative;
    z-index: 1;
}

/* Section heading */
.reg-title {
    text-align: center;
    margin-bottom: 50px;
}

.reg-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.reg-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .reg-title h2 span {
        color: #0a5c38;
    }

.reg-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Session Notice ── */
.reg-notice {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #fef8ea, #fdf3d6);
    border: 1px solid #f0d88a;
    border-left: 4px solid #f0a500;
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 36px;
}

.reg-notice-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240,165,0,.18);
    flex-shrink: 0;
}

    .reg-notice-icon i {
        font-size: 18px;
        color: #c47a00;
    }

.reg-notice p {
    color: #6b5a1e;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

    .reg-notice p strong {
        color: #8a6d00;
    }

/* ── Main Content Card ── */
.reg-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 30px rgba(27,58,92,.08);
    overflow: hidden;
    border: 1px solid #e4ecf0;
    margin-bottom: 36px;
}

.reg-card-header {
    background: linear-gradient(135deg, #0a2016, #0d2a1d);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.reg-card-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240,165,0,.15);
    flex-shrink: 0;
}

    .reg-card-header-icon i {
        font-size: 18px;
        color: #f0a500;
    }

.reg-card-header h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.reg-card-body {
    padding: 32px;
}

/* Intro text */
.reg-intro {
    color: #3a5068;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid #eef3f0;
}

/* ── Rule Items ── */
.reg-rule {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f4f2;
}

    .reg-rule:last-child {
        border-bottom: none;
    }

.reg-rule-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

    .reg-rule-dot i {
        font-size: 13px;
        color: #fff;
    }

.reg-rule:nth-child(1) .reg-rule-dot {
    background: linear-gradient(135deg, #0a5c38, #1a8a52);
}

.reg-rule:nth-child(2) .reg-rule-dot {
    background: linear-gradient(135deg, #1b3a5c, #2c5f96);
}

.reg-rule:nth-child(3) .reg-rule-dot {
    background: linear-gradient(135deg, #c47a00, #f0a500);
}

.reg-rule:nth-child(4) .reg-rule-dot {
    background: linear-gradient(135deg, #0a8c8e, #12a0a3);
}

.reg-rule:nth-child(5) .reg-rule-dot {
    background: linear-gradient(135deg, #0a5c38, #1a8a52);
}

.reg-rule:nth-child(6) .reg-rule-dot {
    background: linear-gradient(135deg, #8b3a62, #c4547c);
}

.reg-rule:nth-child(7) .reg-rule-dot {
    background: linear-gradient(135deg, #1b3a5c, #2c5f96);
}

.reg-rule-content {
    flex: 1;
    min-width: 0;
}

    .reg-rule-content p {
        color: #3a5068;
        font-size: 15px;
        line-height: 1.7;
        margin: 0;
    }

        .reg-rule-content p strong {
            color: #1b3a5c;
        }

/* ── Sub-documents list ── */
.reg-docs {
    margin-top: 14px;
    padding: 0;
    list-style: none;
}

.reg-doc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
}

    .reg-doc-item::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #d4dce4;
        flex-shrink: 0;
        margin-top: 7px;
    }

    .reg-doc-item p {
        color: #4a6070;
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }

/* ── Important Note Card ── */
.reg-important {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #eaf5f0, #e0f0e8);
    border: 1px solid #bdd8c8;
    border-left: 4px solid #0a5c38;
    border-radius: 12px;
    padding: 20px 24px;
}

.reg-important-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,92,56,.14);
    flex-shrink: 0;
}

    .reg-important-icon i {
        font-size: 16px;
        color: #0a5c38;
    }

.reg-important p {
    color: #1a4a30;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 70px;
    }

    .reg-title h2 {
        font-size: 28px;
    }

    .reg-card-header {
        padding: 18px 20px;
    }

    .reg-card-body {
        padding: 20px;
    }

    .reg-notice {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .reg-important {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}



.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}


.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'FEE PAYMENT';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 130px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Fee Section ── */
.fee-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .fee-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.fee-inner {
    position: relative;
    z-index: 1;
}

/* Section heading */
.fee-title {
    text-align: center;
    margin-bottom: 50px;
}

.fee-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.fee-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .fee-title h2 span {
        color: #0a5c38;
    }

.fee-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Content Cards ── */
.fee-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 30px rgba(27,58,92,.08);
    overflow: hidden;
    border: 1px solid #e4ecf0;
    margin-bottom: 32px;
}

.fee-card-header {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .fee-card-header.h-dark {
        background: linear-gradient(135deg, #0a2016, #0d2a1d);
    }

    .fee-card-header.h-gold {
        background: linear-gradient(135deg, #7a5600, #a07000);
    }

    .fee-card-header.h-red {
        background: linear-gradient(135deg, #5c1b1b, #7a2828);
    }

.fee-card-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fee-card-header.h-dark .fee-card-header-icon {
    background: rgba(240,165,0,.15);
}

.fee-card-header.h-gold .fee-card-header-icon {
    background: rgba(255,255,255,.15);
}

.fee-card-header.h-red .fee-card-header-icon {
    background: rgba(255,255,255,.15);
}

.fee-card-header-icon i {
    font-size: 18px;
    color: #f0a500;
}

.fee-card-header.h-gold .fee-card-header-icon i {
    color: #ffd780;
}

.fee-card-header.h-red .fee-card-header-icon i {
    color: #ffb3b3;
}

.fee-card-header h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.fee-card-body {
    padding: 32px;
}

/* ── Info blocks inside cards ── */
.fee-info-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f4f2;
}

    .fee-info-block:last-child {
        border-bottom: none;
    }

.fee-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

    .fee-info-icon i {
        font-size: 16px;
        color: #fff;
    }

    .fee-info-icon.bg-green {
        background: linear-gradient(135deg, #0a5c38, #1a8a52);
    }

    .fee-info-icon.bg-gold {
        background: linear-gradient(135deg, #c47a00, #f0a500);
    }

    .fee-info-icon.bg-navy {
        background: linear-gradient(135deg, #1b3a5c, #2c5f96);
    }

    .fee-info-icon.bg-teal {
        background: linear-gradient(135deg, #0a8c8e, #12a0a3);
    }

    .fee-info-icon.bg-red {
        background: linear-gradient(135deg, #a03030, #c84848);
    }

.fee-info-text {
    flex: 1;
    min-width: 0;
}

    .fee-info-text h5 {
        color: #1b3a5c;
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 6px;
    }

    .fee-info-text p {
        color: #3a5068;
        font-size: 15px;
        line-height: 1.7;
        margin: 0;
    }

/* ── Highlight badges ── */
.fee-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 700;
}

    .fee-badge.badge-amber {
        background: #fef3d6;
        color: #8a6d00;
    }

    .fee-badge.badge-red {
        background: #fde8e8;
        color: #a03030;
    }

/* ── Warning banner ── */
.fee-warning {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #fef0f0, #fde8e8);
    border: 1px solid #f0b8b8;
    border-left: 4px solid #c84848;
    border-radius: 12px;
    padding: 18px 24px;
    margin-top: 8px;
}

.fee-warning-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,72,72,.12);
    flex-shrink: 0;
}

    .fee-warning-icon i {
        font-size: 16px;
        color: #a03030;
    }

.fee-warning p {
    color: #6b2020;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

    .fee-warning p strong {
        color: #8b2020;
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 70px;
    }

    .fee-title h2 {
        font-size: 28px;
    }

    .fee-card-header {
        padding: 18px 20px;
    }

    .fee-card-body {
        padding: 20px;
    }

    .fee-warning {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}

.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'UNIFORM';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Uniform Section ── */
.uni-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .uni-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.uni-inner {
    position: relative;
    z-index: 1;
}

/* Section heading */
.uni-title {
    text-align: center;
    margin-bottom: 50px;
}

.uni-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.uni-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .uni-title h2 span {
        color: #0a5c38;
    }

.uni-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Quote Card ── */
.uni-quote {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 30px rgba(27,58,92,.08);
    border: 1px solid #e4ecf0;
    padding: 32px 36px;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    border-left: 5px solid #0a5c38;
}

.uni-quote-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a5c38, #1a8a52);
    flex-shrink: 0;
}

    .uni-quote-icon i {
        font-size: 20px;
        color: #fff;
    }

.uni-quote-text {
    flex: 1;
}

    .uni-quote-text p {
        color: #3a5068;
        font-size: 16px;
        line-height: 1.8;
        margin: 0;
        font-style: italic;
    }

        .uni-quote-text p strong {
            color: #0a5c38;
            font-style: normal;
            font-weight: 800;
        }

/* ── Uniform Cards Grid ── */
.uni-cards {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.uni-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(27,58,92,.07);
    border: 1px solid #e4ecf0;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

    .uni-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 40px rgba(27,58,92,.12);
    }

/* Card accent stripe */
.uni-card-stripe {
    height: 5px;
}

.uni-card.c-pink .uni-card-stripe {
    background: linear-gradient(to right, #c4547c, #e87da8);
}

.uni-card.c-blue .uni-card-stripe {
    background: linear-gradient(to right, #1b3a5c, #3a6fa0);
}

.uni-card.c-brown .uni-card-stripe {
    background: linear-gradient(to right, #8b5e3c, #c47a00);
}

/* Card icon area */
.uni-card-icon-area {
    padding: 28px 24px 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.uni-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.uni-card.c-pink .uni-card-icon {
    background: linear-gradient(135deg, #c4547c, #e87da8);
}

.uni-card.c-blue .uni-card-icon {
    background: linear-gradient(135deg, #1b3a5c, #3a6fa0);
}

.uni-card.c-brown .uni-card-icon {
    background: linear-gradient(135deg, #8b5e3c, #c47a00);
}

.uni-card-icon i {
    font-size: 22px;
    color: #fff;
}

.uni-card-label {
    flex: 1;
}

    .uni-card-label .uni-card-tag {
        display: inline-block;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 20px;
        margin-bottom: 4px;
    }

.uni-card.c-pink .uni-card-tag {
    background: #fce8f0;
    color: #a03860;
}

.uni-card.c-blue .uni-card-tag {
    background: #e8edf5;
    color: #1b3a5c;
}

.uni-card.c-brown .uni-card-tag {
    background: #fdf3e0;
    color: #8b5e3c;
}

.uni-card-label h4 {
    color: #1b3a5c;
    font-size: 19px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* Card body */
.uni-card-body {
    padding: 20px 24px 28px;
}

/* Clothing item rows */
.uni-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed #eef3f0;
}

    .uni-item:last-child {
        border-bottom: none;
    }

.uni-item-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.uni-card.c-pink .uni-item-dot {
    background: #e87da8;
}

.uni-card.c-blue .uni-item-dot {
    background: #3a6fa0;
}

.uni-card.c-brown .uni-item-dot {
    background: #c47a00;
}

.uni-item p {
    color: #3a5068;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

    .uni-item p strong {
        color: #1b3a5c;
        font-weight: 600;
    }

/* ── Responsive ── */
@media (max-width: 991px) {
    .uni-cards {
        flex-direction: column;
    }

    .uni-card {
        min-width: 100%;
    }
}

@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 80px;
    }

    .uni-title h2 {
        font-size: 28px;
    }

    .uni-quote {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 14px;
    }

    .uni-quote-icon {
        margin: 0 auto;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}

.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'VIDEOS';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Video Section ── */
.vid-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .vid-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.vid-inner {
    position: relative;
    z-index: 1;
}

/* Section heading */
.vid-title {
    text-align: center;
    margin-bottom: 50px;
}

.vid-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.vid-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .vid-title h2 span {
        color: #0a5c38;
    }

.vid-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Count badge */
.vid-count {
    text-align: center;
    margin-bottom: 40px;
}

    .vid-count span {
        display: inline-block;
        background: #fff;
        border: 1px solid #dde8e2;
        border-radius: 30px;
        padding: 6px 20px;
        color: #4a6070;
        font-size: 13px;
    }

        .vid-count span strong {
            color: #0a5c38;
        }

/* ── Video Card ── */
.vid-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 18px rgba(27,58,92,.06);
    border: 1px solid #e4ecf0;
    transition: transform .3s, box-shadow .3s;
    margin-bottom: 28px;
    cursor: pointer;
}

    .vid-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 40px rgba(27,58,92,.13);
    }

/* Thumbnail area */
.vid-card-thumb {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #0a1610;
}

    .vid-card-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s, opacity .3s;
    }

.vid-card:hover .vid-card-thumb img {
    transform: scale(1.05);
    opacity: .85;
}

/* Play button */
.vid-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240,165,0,.95), rgba(208,128,0,.95));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    transition: transform .3s, box-shadow .3s;
    z-index: 2;
}

.vid-card:hover .vid-play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 6px 28px rgba(240,165,0,.4);
}

.vid-play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
}

/* Duration-like overlay */
.vid-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(7,22,14,.6));
    z-index: 1;
}

/* YouTube badge */
.vid-yt-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

    .vid-yt-badge i {
        color: #ff0000;
        font-size: 12px;
    }

/* Card body */
.vid-card-body {
    padding: 18px 20px;
}

    .vid-card-body h5 {
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 700;
        margin: 0;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

/* ── Video Modal ── */
.vid-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7,22,14,.88);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

    .vid-modal.active {
        display: flex;
    }

.vid-modal-inner {
    position: relative;
    width: 100%;
    max-width: 860px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    animation: vidModalIn .3s ease;
}

@keyframes vidModalIn {
    from {
        opacity: 0;
        transform: scale(.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Modal header */
.vid-modal-header {
    background: linear-gradient(135deg, #0a2016, #0d2a1d);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .vid-modal-header h4 {
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        margin: 0;
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right: 16px;
    }

.vid-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    outline: none;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    flex-shrink: 0;
}

    .vid-modal-close:hover {
        background: rgba(240,165,0,.3);
    }

/* Modal video */
.vid-modal-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

    .vid-modal-video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

/* ── Empty state ── */
.vid-empty {
    text-align: center;
    padding: 60px 20px;
    color: #7a8fa6;
    font-size: 15px;
}

    .vid-empty i {
        font-size: 40px;
        color: #c8d6ce;
        display: block;
        margin-bottom: 14px;
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 80px;
    }

    .vid-title h2 {
        font-size: 28px;
    }

    .vid-card-thumb {
        height: 190px;
    }

    .vid-modal-header h4 {
        font-size: 14px;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}


.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}


.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'STUDY';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 160px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Study Material Section ── */
.stm-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .stm-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.stm-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

/* Section heading */
.stm-title {
    text-align: center;
    margin-bottom: 50px;
}

.stm-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.stm-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .stm-title h2 span {
        color: #0a5c38;
    }

.stm-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Count badge */
.stm-count {
    text-align: center;
    margin-bottom: 40px;
}

    .stm-count span {
        display: inline-block;
        background: #fff;
        border: 1px solid #dde8e2;
        border-radius: 30px;
        padding: 6px 20px;
        color: #4a6070;
        font-size: 13px;
    }

        .stm-count span strong {
            color: #0a5c38;
        }

/* ── Download Card ── */
.stm-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 18px rgba(27,58,92,.06);
    border: 1px solid #e4ecf0;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    margin-bottom: 16px;
    display: flex;
    align-items: stretch;
}

    .stm-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(27,58,92,.1);
    }

/* Left color accent */
.stm-card-accent {
    width: 5px;
    flex-shrink: 0;
}

.stm-card:nth-child(4n+1) .stm-card-accent {
    background: linear-gradient(180deg, #0a5c38, #1a8a52);
}

.stm-card:nth-child(4n+2) .stm-card-accent {
    background: linear-gradient(180deg, #1b3a5c, #2c5f96);
}

.stm-card:nth-child(4n+3) .stm-card-accent {
    background: linear-gradient(180deg, #c47a00, #f0a500);
}

.stm-card:nth-child(4n) .stm-card-accent {
    background: linear-gradient(180deg, #0a8c8e, #12a0a3);
}

/* Icon column */
.stm-card-icon {
    width: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f4f2;
}

.stm-card-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stm-card:nth-child(4n+1) .stm-card-icon-circle {
    background: #eef5f0;
}

.stm-card:nth-child(4n+2) .stm-card-icon-circle {
    background: #edf1f7;
}

.stm-card:nth-child(4n+3) .stm-card-icon-circle {
    background: #fdf5e0;
}

.stm-card:nth-child(4n) .stm-card-icon-circle {
    background: #e3f4f4;
}

.stm-card-icon-circle i {
    font-size: 17px;
}

.stm-card:nth-child(4n+1) .stm-card-icon-circle i {
    color: #0a5c38;
}

.stm-card:nth-child(4n+2) .stm-card-icon-circle i {
    color: #1b3a5c;
}

.stm-card:nth-child(4n+3) .stm-card-icon-circle i {
    color: #c47a00;
}

.stm-card:nth-child(4n) .stm-card-icon-circle i {
    color: #0a8c8e;
}

/* Content */
.stm-card-content {
    flex: 1;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    min-width: 0;
}

    .stm-card-content h4 {
        color: #1b3a5c;
        font-size: 15.5px;
        font-weight: 700;
        margin: 0;
        line-height: 1.4;
    }

        .stm-card-content h4 a {
            color: inherit;
            text-decoration: none;
            transition: color .2s;
        }

            .stm-card-content h4 a:hover {
                color: #0a5c38;
            }

/* Download button */
.stm-card-dl {
    width: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f0f4f2;
    transition: background .2s;
}

.stm-card:hover .stm-card-dl {
    background: #f0f8f4;
}

.stm-card-dl a {
    color: #b0c0cc;
    font-size: 18px;
    text-decoration: none;
    transition: color .2s;
}

.stm-card:hover .stm-card-dl a {
    color: #0a5c38;
}

/* ── Empty state ── */
.stm-empty {
    text-align: center;
    padding: 60px 20px;
    color: #7a8fa6;
    font-size: 15px;
}

    .stm-empty i {
        font-size: 40px;
        color: #c8d6ce;
        display: block;
        margin-bottom: 14px;
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 80px;
    }

    .stm-title h2 {
        font-size: 28px;
    }

    .stm-card {
        flex-wrap: wrap;
    }

    .stm-card-accent {
        width: 100%;
        height: 4px;
    }

    .stm-card-icon {
        width: 100%;
        padding: 12px 20px;
        border-right: none;
        border-bottom: 1px solid #f0f4f2;
        justify-content: flex-start;
    }

    .stm-card-content {
        padding: 14px 20px;
    }

    .stm-card-dl {
        width: 100%;
        height: 40px;
        border-left: none;
        border-top: 1px solid #f0f4f2;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}

.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}


.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'CCA';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── CCA Section ── */
.cca-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .cca-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.cca-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

/* Section heading */
.cca-title {
    text-align: center;
    margin-bottom: 50px;
}

.cca-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.cca-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .cca-title h2 span {
        color: #0a5c38;
    }

.cca-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Count badge */
.cca-count {
    text-align: center;
    margin-bottom: 40px;
}

    .cca-count span {
        display: inline-block;
        background: #fff;
        border: 1px solid #dde8e2;
        border-radius: 30px;
        padding: 6px 20px;
        color: #4a6070;
        font-size: 13px;
    }

        .cca-count span strong {
            color: #0a5c38;
        }

/* ── Download Card ── */
.cca-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 18px rgba(27,58,92,.06);
    border: 1px solid #e4ecf0;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    margin-bottom: 16px;
    display: flex;
    align-items: stretch;
}

    .cca-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(27,58,92,.1);
    }

/* Left color accent */
.cca-card-accent {
    width: 5px;
    flex-shrink: 0;
}

.cca-card:nth-child(4n+1) .cca-card-accent {
    background: linear-gradient(180deg, #1b3a5c, #2c5f96);
}

.cca-card:nth-child(4n+2) .cca-card-accent {
    background: linear-gradient(180deg, #0a5c38, #1a8a52);
}

.cca-card:nth-child(4n+3) .cca-card-accent {
    background: linear-gradient(180deg, #c47a00, #f0a500);
}

.cca-card:nth-child(4n) .cca-card-accent {
    background: linear-gradient(180deg, #0a8c8e, #12a0a3);
}

/* Icon column */
.cca-card-icon {
    width: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f4f2;
}

.cca-card-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cca-card:nth-child(4n+1) .cca-card-icon-circle {
    background: #edf1f7;
}

.cca-card:nth-child(4n+2) .cca-card-icon-circle {
    background: #eef5f0;
}

.cca-card:nth-child(4n+3) .cca-card-icon-circle {
    background: #fdf5e0;
}

.cca-card:nth-child(4n) .cca-card-icon-circle {
    background: #e3f4f4;
}

.cca-card-icon-circle i {
    font-size: 17px;
}

.cca-card:nth-child(4n+1) .cca-card-icon-circle i {
    color: #1b3a5c;
}

.cca-card:nth-child(4n+2) .cca-card-icon-circle i {
    color: #0a5c38;
}

.cca-card:nth-child(4n+3) .cca-card-icon-circle i {
    color: #c47a00;
}

.cca-card:nth-child(4n) .cca-card-icon-circle i {
    color: #0a8c8e;
}

/* Content */
.cca-card-content {
    flex: 1;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    min-width: 0;
}

    .cca-card-content h4 {
        color: #1b3a5c;
        font-size: 15.5px;
        font-weight: 700;
        margin: 0;
        line-height: 1.4;
    }

        .cca-card-content h4 a {
            color: inherit;
            text-decoration: none;
            transition: color .2s;
        }

            .cca-card-content h4 a:hover {
                color: #0a5c38;
            }

/* Download button */
.cca-card-dl {
    width: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f0f4f2;
    transition: background .2s;
}

.cca-card:hover .cca-card-dl {
    background: #edf1f7;
}

.cca-card-dl a {
    color: #b0c0cc;
    font-size: 18px;
    text-decoration: none;
    transition: color .2s;
}

.cca-card:hover .cca-card-dl a {
    color: #1b3a5c;
}

/* ── Empty state ── */
.cca-empty {
    text-align: center;
    padding: 60px 20px;
    color: #7a8fa6;
    font-size: 15px;
}

    .cca-empty i {
        font-size: 40px;
        color: #c8d6ce;
        display: block;
        margin-bottom: 14px;
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 100px;
    }

    .cca-title h2 {
        font-size: 28px;
    }

    .cca-card {
        flex-wrap: wrap;
    }

    .cca-card-accent {
        width: 100%;
        height: 4px;
    }

    .cca-card-icon {
        width: 100%;
        padding: 12px 20px;
        border-right: none;
        border-bottom: 1px solid #f0f4f2;
        justify-content: flex-start;
    }

    .cca-card-content {
        padding: 14px 20px;
    }

    .cca-card-dl {
        width: 100%;
        height: 40px;
        border-left: none;
        border-top: 1px solid #f0f4f2;
    }
}


.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}


.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'TIMETABLE';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Time Table Section ── */
.tt-section {
    background: #f4f7f5;
    padding: 60px 0 100px;
    position: relative;
}

    .tt-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.tt-inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
}

/* Section heading */
.tt-title {
    text-align: center;
    margin-bottom: 40px;
}

.tt-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.tt-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .tt-title h2 span {
        color: #0a5c38;
    }

.tt-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Content Card ── */
.tt-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 30px rgba(27,58,92,.08);
    border: 1px solid #e4ecf0;
    overflow: hidden;
}

/* Card header */
.tt-card-header {
    background: linear-gradient(135deg, #0a2016, #0d2a1d);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

    .tt-card-header h3 {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .tt-card-header h3 i {
            color: #f0a500;
            font-size: 16px;
        }

    .tt-card-header .tt-dl-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(240,165,0,.15);
        border: 1px solid rgba(240,165,0,.3);
        border-radius: 8px;
        padding: 8px 18px;
        color: #f0a500;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        transition: all .25s;
    }

        .tt-card-header .tt-dl-btn:hover {
            background: #f0a500;
            color: #0a2016;
            text-decoration: none;
        }

        .tt-card-header .tt-dl-btn i {
            font-size: 14px;
        }

/* Card body — image display */
.tt-card-body {
    padding: 28px 32px 32px;
    text-align: center;
}

    .tt-card-body img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,.08);
        border: 1px solid #e4ecf0;
    }

/* PDF link */
.tt-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fef3f3;
    border: 1px solid #f0d0d0;
    border-radius: 14px;
    padding: 24px 36px;
    text-decoration: none;
    transition: all .25s;
}

    .tt-pdf-link:hover {
        background: #fde8e8;
        box-shadow: 0 6px 20px rgba(200,72,72,.1);
        text-decoration: none;
    }

    .tt-pdf-link .tt-pdf-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: linear-gradient(135deg, #c0392b, #e74c3c);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .tt-pdf-link .tt-pdf-icon i {
            color: #fff;
            font-size: 22px;
        }

    .tt-pdf-link .tt-pdf-text h5 {
        color: #a03030;
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 3px;
    }

    .tt-pdf-link .tt-pdf-text span {
        color: #b06060;
        font-size: 12px;
        font-weight: 600;
    }

/* ── Empty state ── */
.tt-empty {
    text-align: center;
    padding: 60px 20px;
    color: #7a8fa6;
    font-size: 15px;
}

    .tt-empty i {
        font-size: 40px;
        color: #c8d6ce;
        display: block;
        margin-bottom: 14px;
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 70px;
    }

    .tt-title h2 {
        font-size: 28px;
    }

    .tt-card-header {
        padding: 16px 20px;
    }

    .tt-card-body {
        padding: 20px 16px 24px;
    }

    .tt-pdf-link {
        padding: 18px 24px;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}

.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'FEES';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Fee Section ── */
.fee-section {
    background: #f4f7f5;
    padding: 60px 0 100px;
    position: relative;
}

    .fee-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.fee-inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

/* Section heading */
.fee-title {
    text-align: center;
    margin-bottom: 40px;
}

.fee-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.fee-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .fee-title h2 span {
        color: #0a5c38;
    }

.fee-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Fee Card ── */
.fee-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 30px rgba(27,58,92,.08);
    border: 1px solid #e4ecf0;
    overflow: hidden;
}

/* Card header */
.fee-card-header {
    background: linear-gradient(135deg, #0a2016, #0d2a1d);
    padding: 24px 32px;
    text-align: center;
}

    .fee-card-header h3 {
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        margin: 0 0 4px;
    }

    .fee-card-header .fee-session {
        display: inline-block;
        background: rgba(240,165,0,.15);
        border: 1px solid rgba(240,165,0,.3);
        border-radius: 20px;
        padding: 4px 16px;
        color: #f0a500;
        font-size: 13px;
        font-weight: 700;
        margin-top: 8px;
    }

/* Table */
.fee-card-body {
    padding: 0;
    overflow-x: auto;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

    .fee-table thead th {
        background: #f0f6f2;
        color: #1b3a5c;
        font-size: 13px;
        font-weight: 700;
        padding: 14px 16px;
        text-align: center;
        border-bottom: 2px solid #dde8e2;
        white-space: nowrap;
    }

        .fee-table thead th:first-child {
            text-align: left;
            padding-left: 28px;
            min-width: 200px;
        }

    .fee-table tbody td {
        padding: 14px 16px;
        text-align: center;
        color: #3a5068;
        font-weight: 600;
        border-bottom: 1px solid #f0f4f2;
    }

        .fee-table tbody td:first-child {
            text-align: left;
            padding-left: 28px;
            color: #1b3a5c;
            font-weight: 700;
        }

        .fee-table tbody td .fee-sub {
            display: block;
            font-size: 11.5px;
            font-weight: 500;
            color: #7a8fa6;
            margin-top: 2px;
        }

    .fee-table tbody tr:hover {
        background: #fafcfb;
    }

    .fee-table tbody tr.fee-row-highlight {
        background: rgba(240,165,0,.04);
    }

        .fee-table tbody tr.fee-row-highlight td {
            color: #8a6a10;
        }

            .fee-table tbody tr.fee-row-highlight td:first-child {
                color: #6a5010;
            }

    /* Amount styling */
    .fee-table .fee-amt {
        font-size: 14px;
    }

        .fee-table .fee-amt::before {
            content: '\20B9';
            font-size: 11px;
            color: #a0b0b8;
            margin-right: 2px;
        }

    /* Footer totals */
    .fee-table tfoot th {
        padding: 16px 16px;
        text-align: center;
        font-size: 14px;
        font-weight: 800;
        border-top: 2px solid #dde8e2;
    }

        .fee-table tfoot th:first-child {
            text-align: left;
            padding-left: 28px;
        }

    .fee-table tfoot tr.fee-total-old th {
        background: #eef5f0;
        color: #0a5c38;
    }

    .fee-table tfoot tr.fee-total-new th {
        background: #edf1f7;
        color: #1b3a5c;
    }

    .fee-table tfoot .fee-amt-total {
        font-size: 14px;
    }

        .fee-table tfoot .fee-amt-total::before {
            content: '\20B9';
            font-size: 12px;
            margin-right: 2px;
        }

/* Note banner */
.fee-note {
    margin: 24px 28px 28px;
    background: rgba(240,165,0,.06);
    border: 1px solid rgba(240,165,0,.18);
    border-left: 4px solid #f0a500;
    border-radius: 0 10px 10px 0;
    padding: 14px 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

    .fee-note i {
        color: #c47a00;
        font-size: 16px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .fee-note p {
        color: #6a5020;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.6;
        margin: 0;
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 100px;
    }

    .fee-title h2 {
        font-size: 28px;
    }

    .fee-card-header {
        padding: 20px 20px;
    }

    .fee-table thead th,
    .fee-table tbody td,
    .fee-table tfoot th {
        padding: 10px 10px;
        font-size: 12px;
    }

        .fee-table thead th:first-child,
        .fee-table tbody td:first-child,
        .fee-table tfoot th:first-child {
            padding-left: 14px;
            min-width: 140px;
        }

    .fee-note {
        margin: 16px 16px 20px;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}

.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'SYLLABUS';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 130px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Syllabus Section ── */
.syl-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .syl-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.syl-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

/* Section heading */
.syl-title {
    text-align: center;
    margin-bottom: 50px;
}

.syl-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.syl-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .syl-title h2 span {
        color: #0a5c38;
    }

.syl-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Count badge */
.syl-count {
    text-align: center;
    margin-bottom: 40px;
}

    .syl-count span {
        display: inline-block;
        background: #fff;
        border: 1px solid #dde8e2;
        border-radius: 30px;
        padding: 6px 20px;
        color: #4a6070;
        font-size: 13px;
    }

        .syl-count span strong {
            color: #0a5c38;
        }

/* ── Download Card ── */
.syl-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 18px rgba(27,58,92,.06);
    border: 1px solid #e4ecf0;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    margin-bottom: 16px;
    display: flex;
    align-items: stretch;
}

    .syl-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(27,58,92,.1);
    }

/* Left color accent */
.syl-card-accent {
    width: 5px;
    flex-shrink: 0;
}

.syl-card:nth-child(4n+1) .syl-card-accent {
    background: linear-gradient(180deg, #c47a00, #f0a500);
}

.syl-card:nth-child(4n+2) .syl-card-accent {
    background: linear-gradient(180deg, #0a5c38, #1a8a52);
}

.syl-card:nth-child(4n+3) .syl-card-accent {
    background: linear-gradient(180deg, #1b3a5c, #2c5f96);
}

.syl-card:nth-child(4n) .syl-card-accent {
    background: linear-gradient(180deg, #0a8c8e, #12a0a3);
}

/* Icon column */
.syl-card-icon {
    width: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f4f2;
}

.syl-card-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.syl-card:nth-child(4n+1) .syl-card-icon-circle {
    background: #fdf5e0;
}

.syl-card:nth-child(4n+2) .syl-card-icon-circle {
    background: #eef5f0;
}

.syl-card:nth-child(4n+3) .syl-card-icon-circle {
    background: #edf1f7;
}

.syl-card:nth-child(4n) .syl-card-icon-circle {
    background: #e3f4f4;
}

.syl-card-icon-circle i {
    font-size: 17px;
}

.syl-card:nth-child(4n+1) .syl-card-icon-circle i {
    color: #c47a00;
}

.syl-card:nth-child(4n+2) .syl-card-icon-circle i {
    color: #0a5c38;
}

.syl-card:nth-child(4n+3) .syl-card-icon-circle i {
    color: #1b3a5c;
}

.syl-card:nth-child(4n) .syl-card-icon-circle i {
    color: #0a8c8e;
}

/* Content */
.syl-card-content {
    flex: 1;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    min-width: 0;
}

    .syl-card-content h4 {
        color: #1b3a5c;
        font-size: 15.5px;
        font-weight: 700;
        margin: 0;
        line-height: 1.4;
    }

        .syl-card-content h4 a {
            color: inherit;
            text-decoration: none;
            transition: color .2s;
        }

            .syl-card-content h4 a:hover {
                color: #0a5c38;
            }

/* Download button */
.syl-card-dl {
    width: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f0f4f2;
    transition: background .2s;
}

.syl-card:hover .syl-card-dl {
    background: #fdf8ee;
}

.syl-card-dl a {
    color: #b0c0cc;
    font-size: 18px;
    text-decoration: none;
    transition: color .2s;
}

.syl-card:hover .syl-card-dl a {
    color: #c47a00;
}

/* ── Empty state ── */
.syl-empty {
    text-align: center;
    padding: 60px 20px;
    color: #7a8fa6;
    font-size: 15px;
}

    .syl-empty i {
        font-size: 40px;
        color: #c8d6ce;
        display: block;
        margin-bottom: 14px;
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 70px;
    }

    .syl-title h2 {
        font-size: 28px;
    }

    .syl-card {
        flex-wrap: wrap;
    }

    .syl-card-accent {
        width: 100%;
        height: 4px;
    }

    .syl-card-icon {
        width: 100%;
        padding: 12px 20px;
        border-right: none;
        border-bottom: 1px solid #f0f4f2;
        justify-content: flex-start;
    }

    .syl-card-content {
        padding: 14px 20px;
    }

    .syl-card-dl {
        width: 100%;
        height: 40px;
        border-left: none;
        border-top: 1px solid #f0f4f2;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}


.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}


.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'RESULT';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 160px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Result Section ── */
.rst-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .rst-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.rst-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

/* Section heading */
.rst-title {
    text-align: center;
    margin-bottom: 50px;
}

.rst-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.rst-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .rst-title h2 span {
        color: #0a5c38;
    }

.rst-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Count badge */
.rst-count {
    text-align: center;
    margin-bottom: 40px;
}

    .rst-count span {
        display: inline-block;
        background: #fff;
        border: 1px solid #dde8e2;
        border-radius: 30px;
        padding: 6px 20px;
        color: #4a6070;
        font-size: 13px;
    }

        .rst-count span strong {
            color: #0a5c38;
        }

/* ── Download Card ── */
.rst-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 18px rgba(27,58,92,.06);
    border: 1px solid #e4ecf0;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    margin-bottom: 16px;
    display: flex;
    align-items: stretch;
}

    .rst-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(27,58,92,.1);
    }

/* Left color accent */
.rst-card-accent {
    width: 5px;
    flex-shrink: 0;
}

.rst-card:nth-child(4n+1) .rst-card-accent {
    background: linear-gradient(180deg, #0a5c38, #1a8a52);
}

.rst-card:nth-child(4n+2) .rst-card-accent {
    background: linear-gradient(180deg, #c47a00, #f0a500);
}

.rst-card:nth-child(4n+3) .rst-card-accent {
    background: linear-gradient(180deg, #1b3a5c, #2c5f96);
}

.rst-card:nth-child(4n) .rst-card-accent {
    background: linear-gradient(180deg, #0a8c8e, #12a0a3);
}

/* Icon column */
.rst-card-icon {
    width: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f4f2;
}

.rst-card-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rst-card:nth-child(4n+1) .rst-card-icon-circle {
    background: #eef5f0;
}

.rst-card:nth-child(4n+2) .rst-card-icon-circle {
    background: #fdf5e0;
}

.rst-card:nth-child(4n+3) .rst-card-icon-circle {
    background: #edf1f7;
}

.rst-card:nth-child(4n) .rst-card-icon-circle {
    background: #e3f4f4;
}

.rst-card-icon-circle i {
    font-size: 17px;
}

.rst-card:nth-child(4n+1) .rst-card-icon-circle i {
    color: #0a5c38;
}

.rst-card:nth-child(4n+2) .rst-card-icon-circle i {
    color: #c47a00;
}

.rst-card:nth-child(4n+3) .rst-card-icon-circle i {
    color: #1b3a5c;
}

.rst-card:nth-child(4n) .rst-card-icon-circle i {
    color: #0a8c8e;
}

/* Content */
.rst-card-content {
    flex: 1;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    min-width: 0;
}

    .rst-card-content h4 {
        color: #1b3a5c;
        font-size: 15.5px;
        font-weight: 700;
        margin: 0;
        line-height: 1.4;
    }

        .rst-card-content h4 a {
            color: inherit;
            text-decoration: none;
            transition: color .2s;
        }

            .rst-card-content h4 a:hover {
                color: #0a5c38;
            }

/* Download button */
.rst-card-dl {
    width: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f0f4f2;
    transition: background .2s;
}

.rst-card:hover .rst-card-dl {
    background: #f0f8f4;
}

.rst-card-dl a {
    color: #b0c0cc;
    font-size: 18px;
    text-decoration: none;
    transition: color .2s;
}

.rst-card:hover .rst-card-dl a {
    color: #0a5c38;
}

/* ── Empty state ── */
.rst-empty {
    text-align: center;
    padding: 60px 20px;
    color: #7a8fa6;
    font-size: 15px;
}

    .rst-empty i {
        font-size: 40px;
        color: #c8d6ce;
        display: block;
        margin-bottom: 14px;
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 90px;
    }

    .rst-title h2 {
        font-size: 28px;
    }

    .rst-card {
        flex-wrap: wrap;
    }

    .rst-card-accent {
        width: 100%;
        height: 4px;
    }

    .rst-card-icon {
        width: 100%;
        padding: 12px 20px;
        border-right: none;
        border-bottom: 1px solid #f0f4f2;
        justify-content: flex-start;
    }

    .rst-card-content {
        padding: 14px 20px;
    }

    .rst-card-dl {
        width: 100%;
        height: 40px;
        border-left: none;
        border-top: 1px solid #f0f4f2;
    }
}


.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}

.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}


.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'NEWS';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 160px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── News Section ── */
.nws-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .nws-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.nws-inner {
    position: relative;
    z-index: 1;
}

/* Section heading */
.nws-title {
    text-align: center;
    margin-bottom: 50px;
}

.nws-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.nws-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .nws-title h2 span {
        color: #0a5c38;
    }

.nws-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Count badge */
.nws-count {
    text-align: center;
    margin-bottom: 40px;
}

    .nws-count span {
        display: inline-block;
        background: #fff;
        border: 1px solid #dde8e2;
        border-radius: 30px;
        padding: 6px 20px;
        color: #4a6070;
        font-size: 13px;
    }

        .nws-count span strong {
            color: #0a5c38;
        }

/* ── News Card ── */
.nws-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 18px rgba(27,58,92,.06);
    border: 1px solid #e4ecf0;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    margin-bottom: 20px;
    display: flex;
    align-items: stretch;
}

    .nws-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 36px rgba(27,58,92,.11);
    }

/* Left color accent */
.nws-card-accent {
    width: 5px;
    flex-shrink: 0;
}

.nws-card:nth-child(4n+1) .nws-card-accent {
    background: linear-gradient(180deg, #0a5c38, #1a8a52);
}

.nws-card:nth-child(4n+2) .nws-card-accent {
    background: linear-gradient(180deg, #c47a00, #f0a500);
}

.nws-card:nth-child(4n+3) .nws-card-accent {
    background: linear-gradient(180deg, #1b3a5c, #2c5f96);
}

.nws-card:nth-child(4n) .nws-card-accent {
    background: linear-gradient(180deg, #0a8c8e, #12a0a3);
}

/* Date column */
.nws-card-date {
    width: 90px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    border-right: 1px solid #f0f4f2;
}

    .nws-card-date .nws-day {
        font-size: 32px;
        font-weight: 800;
        line-height: 1;
        color: #1b3a5c;
    }

.nws-card:nth-child(4n+1) .nws-day {
    color: #0a5c38;
}

.nws-card:nth-child(4n+2) .nws-day {
    color: #c47a00;
}

.nws-card:nth-child(4n+3) .nws-day {
    color: #1b3a5c;
}

.nws-card:nth-child(4n) .nws-day {
    color: #0a8c8e;
}

.nws-card-date .nws-month {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7a8fa6;
    margin-top: 2px;
}

.nws-card-date .nws-year {
    font-size: 11px;
    font-weight: 600;
    color: #a8b8c8;
}

/* Content */
.nws-card-content {
    flex: 1;
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

    .nws-card-content h4 {
        color: #1b3a5c;
        font-size: 17px;
        font-weight: 700;
        margin: 0 0 8px;
        line-height: 1.4;
    }

        .nws-card-content h4 a {
            color: inherit;
            text-decoration: none;
            transition: color .2s;
        }

            .nws-card-content h4 a:hover {
                color: #0a5c38;
            }

.nws-card-desc {
    color: #5a7080;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta row */
.nws-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

    .nws-card-meta span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 11.5px;
        font-weight: 600;
        color: #8a9bac;
    }

        .nws-card-meta span i {
            font-size: 12px;
            color: #b0bfcc;
        }

/* Arrow link */
.nws-card-arrow {
    width: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f0f4f2;
    transition: background .2s;
}

.nws-card:hover .nws-card-arrow {
    background: #f0f8f4;
}

.nws-card-arrow a {
    color: #b0c0cc;
    font-size: 18px;
    text-decoration: none;
    transition: color .2s;
}

.nws-card:hover .nws-card-arrow a {
    color: #0a5c38;
}

/* ── Empty state ── */
.nws-empty {
    text-align: center;
    padding: 60px 20px;
    color: #7a8fa6;
    font-size: 15px;
}

    .nws-empty i {
        font-size: 40px;
        color: #c8d6ce;
        display: block;
        margin-bottom: 14px;
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 80px;
    }

    .nws-title h2 {
        font-size: 28px;
    }

    .nws-card {
        flex-wrap: wrap;
    }

    .nws-card-accent {
        width: 100%;
        height: 4px;
    }

    .nws-card-date {
        width: 100%;
        flex-direction: row;
        gap: 8px;
        padding: 12px 20px;
        border-right: none;
        border-bottom: 1px solid #f0f4f2;
        justify-content: flex-start;
    }

        .nws-card-date .nws-day {
            font-size: 22px;
        }

        .nws-card-date .nws-month,
        .nws-card-date .nws-year {
            font-size: 12px;
            margin-top: 0;
        }

    .nws-card-content {
        padding: 16px 20px;
    }

    .nws-card-arrow {
        width: 100%;
        height: 40px;
        border-left: none;
        border-top: 1px solid #f0f4f2;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}

.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'ARTICLES';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Articles Section ── */
.art-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .art-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.art-inner {
    position: relative;
    z-index: 1;
}

/* Section heading */
.art-title {
    text-align: center;
    margin-bottom: 50px;
}

.art-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.art-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .art-title h2 span {
        color: #0a5c38;
    }

.art-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Count badge */
.art-count {
    text-align: center;
    margin-bottom: 40px;
}

    .art-count span {
        display: inline-block;
        background: #fff;
        border: 1px solid #dde8e2;
        border-radius: 30px;
        padding: 6px 20px;
        color: #4a6070;
        font-size: 13px;
    }

        .art-count span strong {
            color: #0a5c38;
        }

/* ── Article Card ── */
.art-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 18px rgba(27,58,92,.06);
    border: 1px solid #e4ecf0;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    margin-bottom: 20px;
    display: flex;
    align-items: stretch;
}

    .art-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 36px rgba(27,58,92,.11);
    }

/* Left color accent */
.art-card-accent {
    width: 5px;
    flex-shrink: 0;
}

.art-card:nth-child(4n+1) .art-card-accent {
    background: linear-gradient(180deg, #1b3a5c, #2c5f96);
}

.art-card:nth-child(4n+2) .art-card-accent {
    background: linear-gradient(180deg, #0a5c38, #1a8a52);
}

.art-card:nth-child(4n+3) .art-card-accent {
    background: linear-gradient(180deg, #c47a00, #f0a500);
}

.art-card:nth-child(4n) .art-card-accent {
    background: linear-gradient(180deg, #0a8c8e, #12a0a3);
}

/* Icon column */
.art-card-icon {
    width: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f4f2;
}

.art-card-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.art-card:nth-child(4n+1) .art-card-icon-circle {
    background: #edf1f7;
}

.art-card:nth-child(4n+2) .art-card-icon-circle {
    background: #eef5f0;
}

.art-card:nth-child(4n+3) .art-card-icon-circle {
    background: #fdf5e0;
}

.art-card:nth-child(4n) .art-card-icon-circle {
    background: #e3f4f4;
}

.art-card-icon-circle i {
    font-size: 18px;
}

.art-card:nth-child(4n+1) .art-card-icon-circle i {
    color: #1b3a5c;
}

.art-card:nth-child(4n+2) .art-card-icon-circle i {
    color: #0a5c38;
}

.art-card:nth-child(4n+3) .art-card-icon-circle i {
    color: #c47a00;
}

.art-card:nth-child(4n) .art-card-icon-circle i {
    color: #0a8c8e;
}

/* Content */
.art-card-content {
    flex: 1;
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

    .art-card-content h4 {
        color: #1b3a5c;
        font-size: 17px;
        font-weight: 700;
        margin: 0 0 8px;
        line-height: 1.4;
    }

        .art-card-content h4 a {
            color: inherit;
            text-decoration: none;
            transition: color .2s;
        }

            .art-card-content h4 a:hover {
                color: #0a5c38;
            }

.art-card-desc {
    color: #5a7080;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta row */
.art-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

    .art-card-meta span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 11.5px;
        font-weight: 600;
        color: #8a9bac;
    }

        .art-card-meta span i {
            font-size: 12px;
            color: #b0bfcc;
        }

/* Arrow link */
.art-card-arrow {
    width: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f0f4f2;
    transition: background .2s;
}

.art-card:hover .art-card-arrow {
    background: #f0f8f4;
}

.art-card-arrow a {
    color: #b0c0cc;
    font-size: 18px;
    text-decoration: none;
    transition: color .2s;
}

.art-card:hover .art-card-arrow a {
    color: #0a5c38;
}

/* ── Empty state ── */
.art-empty {
    text-align: center;
    padding: 60px 20px;
    color: #7a8fa6;
    font-size: 15px;
}

    .art-empty i {
        font-size: 40px;
        color: #c8d6ce;
        display: block;
        margin-bottom: 14px;
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 80px;
    }

    .art-title h2 {
        font-size: 28px;
    }

    .art-card {
        flex-wrap: wrap;
    }

    .art-card-accent {
        width: 100%;
        height: 4px;
    }

    .art-card-icon {
        width: 100%;
        padding: 14px 20px;
        border-right: none;
        border-bottom: 1px solid #f0f4f2;
        justify-content: flex-start;
    }

    .art-card-content {
        padding: 16px 20px;
    }

    .art-card-arrow {
        width: 100%;
        height: 40px;
        border-left: none;
        border-top: 1px solid #f0f4f2;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}

.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'NOTICES';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Notices Section ── */
.ntc-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .ntc-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.ntc-inner {
    position: relative;
    z-index: 1;
}

/* Section heading */
.ntc-title {
    text-align: center;
    margin-bottom: 50px;
}

.ntc-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.ntc-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .ntc-title h2 span {
        color: #0a5c38;
    }

.ntc-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Count badge */
.ntc-count {
    text-align: center;
    margin-bottom: 40px;
}

    .ntc-count span {
        display: inline-block;
        background: #fff;
        border: 1px solid #dde8e2;
        border-radius: 30px;
        padding: 6px 20px;
        color: #4a6070;
        font-size: 13px;
    }

        .ntc-count span strong {
            color: #0a5c38;
        }

/* ── Notice Card ── */
.ntc-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 18px rgba(27,58,92,.06);
    border: 1px solid #e4ecf0;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    margin-bottom: 20px;
    display: flex;
    align-items: stretch;
}

    .ntc-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 36px rgba(27,58,92,.11);
    }

/* Left color accent */
.ntc-card-accent {
    width: 5px;
    flex-shrink: 0;
}

.ntc-card:nth-child(4n+1) .ntc-card-accent {
    background: linear-gradient(180deg, #c47a00, #f0a500);
}

.ntc-card:nth-child(4n+2) .ntc-card-accent {
    background: linear-gradient(180deg, #0a5c38, #1a8a52);
}

.ntc-card:nth-child(4n+3) .ntc-card-accent {
    background: linear-gradient(180deg, #1b3a5c, #2c5f96);
}

.ntc-card:nth-child(4n) .ntc-card-accent {
    background: linear-gradient(180deg, #0a8c8e, #12a0a3);
}

/* Icon column */
.ntc-card-icon {
    width: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f4f2;
}

.ntc-card-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ntc-card:nth-child(4n+1) .ntc-card-icon-circle {
    background: #fdf5e0;
}

.ntc-card:nth-child(4n+2) .ntc-card-icon-circle {
    background: #eef5f0;
}

.ntc-card:nth-child(4n+3) .ntc-card-icon-circle {
    background: #edf1f7;
}

.ntc-card:nth-child(4n) .ntc-card-icon-circle {
    background: #e3f4f4;
}

.ntc-card-icon-circle i {
    font-size: 18px;
}

.ntc-card:nth-child(4n+1) .ntc-card-icon-circle i {
    color: #c47a00;
}

.ntc-card:nth-child(4n+2) .ntc-card-icon-circle i {
    color: #0a5c38;
}

.ntc-card:nth-child(4n+3) .ntc-card-icon-circle i {
    color: #1b3a5c;
}

.ntc-card:nth-child(4n) .ntc-card-icon-circle i {
    color: #0a8c8e;
}

/* Content */
.ntc-card-content {
    flex: 1;
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

    .ntc-card-content h4 {
        color: #1b3a5c;
        font-size: 17px;
        font-weight: 700;
        margin: 0 0 8px;
        line-height: 1.4;
    }

        .ntc-card-content h4 a {
            color: inherit;
            text-decoration: none;
            transition: color .2s;
        }

            .ntc-card-content h4 a:hover {
                color: #0a5c38;
            }

.ntc-card-desc {
    color: #5a7080;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta row */
.ntc-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

    .ntc-card-meta span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 11.5px;
        font-weight: 600;
        color: #8a9bac;
    }

        .ntc-card-meta span i {
            font-size: 12px;
            color: #b0bfcc;
        }

/* Arrow link */
.ntc-card-arrow {
    width: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f0f4f2;
    transition: background .2s;
}

.ntc-card:hover .ntc-card-arrow {
    background: #fdf8ee;
}

.ntc-card-arrow a {
    color: #b0c0cc;
    font-size: 18px;
    text-decoration: none;
    transition: color .2s;
}

.ntc-card:hover .ntc-card-arrow a {
    color: #c47a00;
}

/* ── Empty state ── */
.ntc-empty {
    text-align: center;
    padding: 60px 20px;
    color: #7a8fa6;
    font-size: 15px;
}

    .ntc-empty i {
        font-size: 40px;
        color: #c8d6ce;
        display: block;
        margin-bottom: 14px;
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 80px;
    }

    .ntc-title h2 {
        font-size: 28px;
    }

    .ntc-card {
        flex-wrap: wrap;
    }

    .ntc-card-accent {
        width: 100%;
        height: 4px;
    }

    .ntc-card-icon {
        width: 100%;
        padding: 14px 20px;
        border-right: none;
        border-bottom: 1px solid #f0f4f2;
        justify-content: flex-start;
    }

    .ntc-card-content {
        padding: 16px 20px;
    }

    .ntc-card-arrow {
        width: 100%;
        height: 40px;
        border-left: none;
        border-top: 1px solid #f0f4f2;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}

.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

/*.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #1b3a5c;
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }*/

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'CALENDAR';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 130px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Calendar Section ── */
.cal-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .cal-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.cal-inner {
    position: relative;
    z-index: 1;
}

/* Section heading */
.cal-title {
    text-align: center;
    margin-bottom: 50px;
}

.cal-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.cal-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .cal-title h2 span {
        color: #0a5c38;
    }

.cal-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Count badge */
.cal-count {
    text-align: center;
    margin-bottom: 40px;
}

    .cal-count span {
        display: inline-block;
        background: #fff;
        border: 1px solid #dde8e2;
        border-radius: 30px;
        padding: 6px 20px;
        color: #4a6070;
        font-size: 13px;
    }

        .cal-count span strong {
            color: #0a5c38;
        }

/* ── Calendar Card ── */
.cal-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 18px rgba(27,58,92,.06);
    border: 1px solid #e4ecf0;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    margin-bottom: 20px;
    display: flex;
    align-items: stretch;
}

    .cal-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 36px rgba(27,58,92,.11);
    }

/* Left color accent */
.cal-card-accent {
    width: 5px;
    flex-shrink: 0;
}

.cal-card:nth-child(4n+1) .cal-card-accent {
    background: linear-gradient(180deg, #1b3a5c, #2c5f96);
}

.cal-card:nth-child(4n+2) .cal-card-accent {
    background: linear-gradient(180deg, #0a5c38, #1a8a52);
}

.cal-card:nth-child(4n+3) .cal-card-accent {
    background: linear-gradient(180deg, #c47a00, #f0a500);
}

.cal-card:nth-child(4n) .cal-card-accent {
    background: linear-gradient(180deg, #0a8c8e, #12a0a3);
}

/* Date column */
.cal-card-date {
    width: 90px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    border-right: 1px solid #f0f4f2;
}

    .cal-card-date .cal-day {
        font-size: 32px;
        font-weight: 800;
        line-height: 1;
    }

.cal-card:nth-child(4n+1) .cal-day {
    color: #1b3a5c;
}

.cal-card:nth-child(4n+2) .cal-day {
    color: #0a5c38;
}

.cal-card:nth-child(4n+3) .cal-day {
    color: #c47a00;
}

.cal-card:nth-child(4n) .cal-day {
    color: #0a8c8e;
}

.cal-card-date .cal-month {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7a8fa6;
    margin-top: 2px;
}

.cal-card-date .cal-year {
    font-size: 11px;
    font-weight: 600;
    color: #a8b8c8;
}

/* Content */
.cal-card-content {
    flex: 1;
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

    .cal-card-content h4 {
        color: #1b3a5c;
        font-size: 17px;
        font-weight: 700;
        margin: 0 0 8px;
        line-height: 1.4;
    }

        .cal-card-content h4 a {
            color: inherit;
            text-decoration: none;
            transition: color .2s;
        }

            .cal-card-content h4 a:hover {
                color: #0a5c38;
            }

.cal-card-desc {
    color: #5a7080;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta row */
.cal-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

    .cal-card-meta span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 11.5px;
        font-weight: 600;
        color: #8a9bac;
    }

        .cal-card-meta span i {
            font-size: 12px;
            color: #b0bfcc;
        }

/* Arrow link */
.cal-card-arrow {
    width: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f0f4f2;
    transition: background .2s;
}

.cal-card:hover .cal-card-arrow {
    background: #edf1f7;
}

.cal-card-arrow a {
    color: #b0c0cc;
    font-size: 18px;
    text-decoration: none;
    transition: color .2s;
}

.cal-card:hover .cal-card-arrow a {
    color: #1b3a5c;
}

/* ── Empty state ── */
.cal-empty {
    text-align: center;
    padding: 60px 20px;
    color: #7a8fa6;
    font-size: 15px;
}

    .cal-empty i {
        font-size: 40px;
        color: #c8d6ce;
        display: block;
        margin-bottom: 14px;
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 80px;
    }

    .cal-title h2 {
        font-size: 28px;
    }

    .cal-card {
        flex-wrap: wrap;
    }

    .cal-card-accent {
        width: 100%;
        height: 4px;
    }

    .cal-card-date {
        width: 100%;
        flex-direction: row;
        gap: 8px;
        padding: 12px 20px;
        border-right: none;
        border-bottom: 1px solid #f0f4f2;
        justify-content: flex-start;
    }

        .cal-card-date .cal-day {
            font-size: 22px;
        }

        .cal-card-date .cal-month,
        .cal-card-date .cal-year {
            font-size: 12px;
            margin-top: 0;
        }

    .cal-card-content {
        padding: 16px 20px;
    }

    .cal-card-arrow {
        width: 100%;
        height: 40px;
        border-left: none;
        border-top: 1px solid #f0f4f2;
    }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}

.mps-header * {
    box-sizing: border-box;
}

/* ============================================================
   1. TOP BAR
============================================================ */
.modern-topbar {
    background: #1b3a5c;
    padding: 8px 0;
    font-size: 14px;
}

    .modern-topbar .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .modern-topbar .topbar-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .modern-topbar .topbar-left a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            transition: color .2s;
        }

            .modern-topbar .topbar-left a:hover {
                color: #f0a500;
            }

            .modern-topbar .topbar-left a i {
                color: #f0a500;
            }

    .modern-topbar .topbar-divider {
        color: rgba(255,255,255,.25);
        margin: 0 4px;
    }

    .modern-topbar .topbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .modern-topbar .topbar-right a {
            color: rgba(255,255,255,.85);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

            .modern-topbar .topbar-right a:hover {
                color: #f0a500;
                text-decoration: none;
            }

        .modern-topbar .topbar-right .topbar-divider {
            color: rgba(255,255,255,.25);
        }

    .modern-topbar .topbar-admission-btn {
        background: #f0a500 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-admission-btn:hover {
            background: #d4920a !important;
        }

    .modern-topbar .topbar-fee-btn {
        background: rgba(255,255,255,.1) !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 5px 16px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255,255,255,.3) !important;
        font-size: 14px !important;
        transition: all .25s !important;
    }

        .modern-topbar .topbar-fee-btn:hover {
            background: rgba(255,255,255,.2) !important;
        }

/* ============================================================
   2. LOGO BANNER
============================================================ */
.logo-banner {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eaeef2;
}

.logo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Logo image */
.logo-banner-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none !important;
}

    .logo-banner-link .main-logo {
        height: 80px;
        width: auto;
        display: block;
    }

/* School name block */
.logo-text-box {
    flex: 1;
    text-align: left;
}

    .logo-text-box .school-name {
        font-size: 28px;
        font-weight: 800;
        color: #1b3a5c;
        margin: 0 0 4px 0;
        letter-spacing: .3px;
        line-height: 1.2;
    }

    .logo-text-box .school-tagline {
        font-size: 15px;
        color: #0a5c38;
        font-weight: 500;
        margin: 0;
    }

/* Info boxes (right) */
.header-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #0a5c38;
        font-size: 16px;
    }

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-value {
    font-size: 15px;
    color: #1b3a5c;
    font-weight: 700;
}

/* Hamburger (mobile only — inside logo banner) */
.logo-banner .mps-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

    .logo-banner .mps-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #0a5c38;
        border-radius: 2px;
        transition: all .3s;
    }

/* ============================================================
   3. NAV BAR  — Premium gradient bar
============================================================ */
.modern-navbar {
    background: linear-gradient(90deg, #0d3d26 0%, #0a5c38 45%, #1b3a5c 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s;
}

    .modern-navbar.scrolled {
        box-shadow: 0 6px 30px rgba(0,0,0,.35);
    }

.navbar-inner {
    display: flex;
    align-items: center;
}

/* ---- Nav list ---- */
.navigation {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .navigation > li {
        position: relative;
    }

        /* Top-level link */
        .navigation > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 18px;
            color: rgba(255,255,255,.88);
            font-size: 13.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .6px;
            text-decoration: none;
            position: relative;
            white-space: nowrap;
            transition: color .22s;
        }
            /* animated underline */
            .navigation > li > a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                right: 50%;
                height: 3px;
                background: #f0a500;
                transition: left .25s ease, right .25s ease;
                border-radius: 3px 3px 0 0;
            }

        .navigation > li:hover > a::after,
        .navigation > li.active > a::after {
            left: 0;
            right: 0;
        }

        .navigation > li:hover > a,
        .navigation > li.active > a {
            color: #f0a500;
        }

        /* arrow icon */
        .navigation > li > a .nav-arrow {
            font-size: 11px;
            color: rgba(255,255,255,.55);
            transition: transform .25s, color .22s;
            margin-top: 1px;
        }

        .navigation > li:hover > a .nav-arrow {
            transform: rotate(180deg);
            color: #f0a500;
        }

        /* ---- Dropdown card ---- */
        .navigation > li > ul {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            background: #fff;
            border-radius: 0 0 10px 10px;
            min-width: 230px;
            box-shadow: 0 16px 50px rgba(0,0,0,.18);
            border-top: 3px solid #f0a500;
            padding: 6px 0 10px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scaleY(.97);
            transform-origin: top center;
            transition: opacity .22s ease, transform .22s ease, visibility .22s;
            z-index: 999;
        }

        .navigation > li:hover > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scaleY(1);
        }

        /* Dropdown label header */
        .navigation > li > ul::before {
            content: attr(data-label);
            display: block;
            padding: 10px 18px 8px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f0a500;
            border-bottom: 1px solid #f0f4f0;
            margin-bottom: 4px;
        }

        /* Dropdown items */
        .navigation > li > ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            color: #374151;
            font-size: 13.5px;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all .2s ease;
        }

            .navigation > li > ul li a i {
                width: 18px;
                text-align: center;
                color: #0a5c38;
                font-size: 13px;
                flex-shrink: 0;
                transition: color .2s;
            }

            .navigation > li > ul li a:hover {
                color: #0a5c38;
                background: linear-gradient(90deg, #e8f7ef 0%, #f8fffe 100%);
                border-left-color: #0a5c38;
                padding-left: 22px;
            }

                .navigation > li > ul li a:hover i {
                    color: #f0a500;
                }

/* ============================================================
   MOBILE DRAWER
============================================================ */
.mps-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
}

    .mps-mobile-overlay.open {
        display: block;
    }

.mps-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 1100;
    overflow-y: auto;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
}

    .mps-mobile-drawer.open {
        right: 0;
    }

.mps-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #0a5c38; /*#1b3a5c;*/
}

    .mps-drawer-head img {
        height: 46px;
        width: auto;
    }

.mps-drawer-head-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-left: 10px;
}

    .mps-drawer-head-text .dn {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
    }

    .mps-drawer-head-text .dt {
        font-size: 11px;
        color: rgba(255,255,255,.7);
    }

.mps-drawer-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-left: auto;
}

    .mps-drawer-close:hover {
        background: rgba(255,255,255,.3);
    }

.mps-drawer-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

    .mps-drawer-nav > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        color: #1b3a5c;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all .2s;
    }

        .mps-drawer-nav > li > a:hover {
            color: #0a5c38;
            background: #f0faf5;
        }

        .mps-drawer-nav > li > a i {
            font-size: 12px;
            color: #0a5c38;
        }

.mps-drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fdf9;
    display: none;
}

    .mps-drawer-sub.open {
        display: block;
    }

    .mps-drawer-sub li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 20px 11px 34px;
        color: #555;
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #edf7f1;
        transition: color .2s;
    }

        .mps-drawer-sub li a::before {
            content: '›';
            color: #0a5c38;
            font-size: 18px;
            line-height: 1;
        }

        .mps-drawer-sub li a:hover {
            color: #0a5c38;
        }

.mps-drawer-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mps-drawer-footer a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .2s;
    }

.mps-drawer-login {
    background: #1b3a5c;
    color: #fff !important;
}

.mps-drawer-admit {
    background: #f0a500;
    color: #fff !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .modern-navbar {
        display: none;
    }

    .logo-banner .mps-hamburger {
        display: flex;
    }

    .header-info-box {
        display: none;
    }

    .logo-text-box .school-name {
        font-size: 20px;
    }

    .logo-text-box .school-tagline {
        font-size: 13px;
    }

    .logo-banner-link .main-logo {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .modern-topbar {
        padding: 5px 0;
    }

        .modern-topbar .topbar-left .tb-email {
            display: none;
        }

        .modern-topbar .topbar-right .tb-hide-sm {
            display: none;
        }

        .modern-topbar .topbar-left {
            gap: 10px;
        }

        .modern-topbar .topbar-right {
            gap: 6px;
        }

        .modern-topbar .topbar-left a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-right a {
            font-size: 12px;
            gap: 4px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 4px 10px !important;
            font-size: 11px !important;
        }

        .modern-topbar .topbar-divider {
            margin: 0 2px;
        }

    .logo-banner-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modern-topbar {
        padding: 4px 0;
    }

        .modern-topbar .topbar-left a {
            font-size: 11px;
        }

        .modern-topbar .topbar-right a {
            font-size: 11px;
        }

        .modern-topbar .topbar-admission-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-fee-btn {
            padding: 3px 8px !important;
            font-size: 10px !important;
        }

        .modern-topbar .topbar-left {
            gap: 6px;
        }

        .modern-topbar .topbar-right {
            gap: 4px;
        }

        .modern-topbar .topbar-divider {
            display: none;
        }
}

.inner-hero {
    background: linear-gradient(150deg, #07170e 0%, #0a2016 55%, #0d2a1d 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 0%, #f0a500 20%, #fff 50%, #0a5c38 80%, transparent 100%);
}

.inner-hero::after {
    content: 'FACILITIES';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    letter-spacing: -5px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

.inner-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .inner-breadcrumb li {
        font-size: 13px;
        color: rgba(255,255,255,.4);
    }

        .inner-breadcrumb li a {
            color: rgba(255,255,255,.55);
            text-decoration: none;
            transition: color .2s;
        }

            .inner-breadcrumb li a:hover {
                color: #f0a500;
            }

        .inner-breadcrumb li.sep {
            color: rgba(255,255,255,.25);
        }

        .inner-breadcrumb li.active {
            color: #f0a500;
        }

.inner-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

    .inner-hero h1 span {
        color: #f0a500;
    }

.inner-hero-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, #f0a500, #d48000);
    position: relative;
    z-index: 1;
}

/* ── Facilities Section ── */
.fac-section {
    background: #f4f7f5;
    padding: 80px 0 100px;
    position: relative;
}

    .fac-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(10,92,56,.07) 1px, transparent 1px);
        background-size: 30px 30px;
    }

.fac-inner {
    position: relative;
    z-index: 1;
}

/* Section heading */
.fac-title {
    text-align: center;
    margin-bottom: 56px;
}

.fac-chip {
    display: inline-block;
    background: rgba(10,92,56,.09);
    color: #0a5c38;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    border: 1px solid rgba(10,92,56,.18);
    margin-bottom: 14px;
}

.fac-title h2 {
    color: #1b3a5c;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
}

    .fac-title h2 span {
        color: #0a5c38;
    }

.fac-title p {
    color: #7a8fa6;
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Count badge */
.fac-count {
    text-align: center;
    margin-bottom: 44px;
}

    .fac-count span {
        display: inline-block;
        background: #fff;
        border: 1px solid #dde8e2;
        border-radius: 30px;
        padding: 6px 20px;
        color: #4a6070;
        font-size: 13px;
    }

        .fac-count span strong {
            color: #0a5c38;
        }

/* ── Facility Card — Alternating Layout ── */
.fac-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 28px rgba(27,58,92,.07);
    border: 1px solid #e4ecf0;
    overflow: hidden;
    margin-bottom: 32px;
    transition: transform .3s, box-shadow .3s;
}

    .fac-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(27,58,92,.12);
    }

.fac-card-inner {
    display: flex;
    align-items: stretch;
    min-height: 260px;
}

/* Alternate: even cards flip the image to right */
.fac-card:nth-child(even) .fac-card-inner {
    flex-direction: row-reverse;
}

/* Image side */
.fac-card-img {
    width: 340px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #0a1610;
}

    .fac-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

.fac-card:hover .fac-card-img img {
    transform: scale(1.06);
}

/* Placeholder image (for low-res images) */
.fac-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

    .fac-card-placeholder::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
        background-size: 20px 20px;
    }

    .fac-card-placeholder .ph-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,.12);
        border: 2px solid rgba(255,255,255,.15);
        position: relative;
        z-index: 1;
    }

        .fac-card-placeholder .ph-icon i {
            font-size: 28px;
            color: rgba(255,255,255,.85);
        }

    .fac-card-placeholder .ph-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255,255,255,.4);
        position: relative;
        z-index: 1;
    }

    .fac-card-placeholder .ph-school {
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255,255,255,.2);
        position: relative;
        z-index: 1;
    }

/* Placeholder gradient backgrounds — cycle per card */
.fac-card:nth-child(10n+1) .fac-card-placeholder {
    background: linear-gradient(135deg, #0a3d25, #0d5c38);
}

.fac-card:nth-child(10n+2) .fac-card-placeholder {
    background: linear-gradient(135deg, #7a4e00, #b07a00);
}

.fac-card:nth-child(10n+3) .fac-card-placeholder {
    background: linear-gradient(135deg, #142d47, #1b3a5c);
}

.fac-card:nth-child(10n+4) .fac-card-placeholder {
    background: linear-gradient(135deg, #076668, #0a8c8e);
}

.fac-card:nth-child(10n+5) .fac-card-placeholder {
    background: linear-gradient(135deg, #6b2a4a, #8b3a62);
}

.fac-card:nth-child(10n+6) .fac-card-placeholder {
    background: linear-gradient(135deg, #0a3d25, #0d5c38);
}

.fac-card:nth-child(10n+7) .fac-card-placeholder {
    background: linear-gradient(135deg, #7a4e00, #b07a00);
}

.fac-card:nth-child(10n+8) .fac-card-placeholder {
    background: linear-gradient(135deg, #142d47, #1b3a5c);
}

.fac-card:nth-child(10n+9) .fac-card-placeholder {
    background: linear-gradient(135deg, #076668, #0a8c8e);
}

.fac-card:nth-child(10n+10) .fac-card-placeholder {
    background: linear-gradient(135deg, #6b2a4a, #8b3a62);
}

/* Number badge on image */
.fac-card-num {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    z-index: 2;
}

.fac-card:nth-child(even) .fac-card-num {
    left: auto;
    right: 16px;
}

/* Cycle number badge colors */
.fac-card:nth-child(10n+1) .fac-card-num {
    background: linear-gradient(135deg, #0a5c38, #1a8a52);
}

.fac-card:nth-child(10n+2) .fac-card-num {
    background: linear-gradient(135deg, #c47a00, #f0a500);
}

.fac-card:nth-child(10n+3) .fac-card-num {
    background: linear-gradient(135deg, #1b3a5c, #2c5f96);
}

.fac-card:nth-child(10n+4) .fac-card-num {
    background: linear-gradient(135deg, #0a8c8e, #12a0a3);
}

.fac-card:nth-child(10n+5) .fac-card-num {
    background: linear-gradient(135deg, #8b3a62, #c4547c);
}

.fac-card:nth-child(10n+6) .fac-card-num {
    background: linear-gradient(135deg, #0a5c38, #1a8a52);
}

.fac-card:nth-child(10n+7) .fac-card-num {
    background: linear-gradient(135deg, #c47a00, #f0a500);
}

.fac-card:nth-child(10n+8) .fac-card-num {
    background: linear-gradient(135deg, #1b3a5c, #2c5f96);
}

.fac-card:nth-child(10n+9) .fac-card-num {
    background: linear-gradient(135deg, #0a8c8e, #12a0a3);
}

.fac-card:nth-child(10n+10) .fac-card-num {
    background: linear-gradient(135deg, #8b3a62, #c4547c);
}

/* Content side */
.fac-card-content {
    flex: 1;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

    /* Left accent bar */
    .fac-card-content::before {
        content: '';
        display: block;
        width: 40px;
        height: 3px;
        border-radius: 2px;
        margin-bottom: 16px;
    }

.fac-card:nth-child(10n+1) .fac-card-content::before {
    background: #0a5c38;
}

.fac-card:nth-child(10n+2) .fac-card-content::before {
    background: #f0a500;
}

.fac-card:nth-child(10n+3) .fac-card-content::before {
    background: #1b3a5c;
}

.fac-card:nth-child(10n+4) .fac-card-content::before {
    background: #0a8c8e;
}

.fac-card:nth-child(10n+5) .fac-card-content::before {
    background: #c4547c;
}

.fac-card:nth-child(10n+6) .fac-card-content::before {
    background: #0a5c38;
}

.fac-card:nth-child(10n+7) .fac-card-content::before {
    background: #f0a500;
}

.fac-card:nth-child(10n+8) .fac-card-content::before {
    background: #1b3a5c;
}

.fac-card:nth-child(10n+9) .fac-card-content::before {
    background: #0a8c8e;
}

.fac-card:nth-child(10n+10) .fac-card-content::before {
    background: #c4547c;
}

.fac-card-content h3 {
    color: #1b3a5c;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.3;
}

.fac-card-content p {
    color: #4a6070;
    font-size: 14.5px;
    line-height: 1.8;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .fac-card-img {
        width: 280px;
    }

    .fac-card-content {
        padding: 24px 28px;
    }

        .fac-card-content h3 {
            font-size: 20px;
        }
}

@media (max-width: 767px) {
    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero::after {
        font-size: 80px;
    }

    .fac-title h2 {
        font-size: 28px;
    }

    .fac-card-inner,
    .fac-card:nth-child(even) .fac-card-inner {
        flex-direction: column;
    }

    .fac-card-img {
        width: 100%;
        height: 200px;
    }

    .fac-card:nth-child(even) .fac-card-num {
        left: 16px;
        right: auto;
    }

    .fac-card-content {
        padding: 22px 20px;
    }

        .fac-card-content h3 {
            font-size: 18px;
        }
}

.mps-footer {
    background: linear-gradient(150deg,#050f09 0%,#081812 55%,#060e0a 100%);
    position: relative;
    overflow: hidden;
}
/* Top accent stripe */
.mps-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,transparent 0%,#f0a500 20%,#fff 50%,#0a5c38 80%,transparent 100%);
}
/* BIG centred MPS watermark */
.mps-footer::after {
    content: 'MPS';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    font-size: 340px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    letter-spacing: -10px;
    font-family: Georgia,serif;
    white-space: nowrap;
}

/* ── Main padding ── */
.ft-body {
    padding: 72px 0 52px;
    position: relative;
    z-index: 1;
}

/* ── Col 1 : Brand ── */
.ft-brand {
    padding-right: 20px;
}

.ft-brand-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

    .ft-brand-logo:hover {
        text-decoration: none;
    }

.ftl-mps {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: .88;
    letter-spacing: -4px;
    font-family: Georgia,serif;
    background: linear-gradient(130deg,#f0a500 0%,#ffe9a0 40%,#fff 65%,#7dc9a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ftl-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
}
/* Tagline with gold left border */
.ft-tagline {
    color: rgba(255,255,255,.42);
    font-size: 13.5px;
    line-height: 1.8;
    font-style: italic;
    margin: 20px 0 26px;
    border-left: 2px solid rgba(240,165,0,.5);
    padding-left: 14px;
}
/* Social — rounded squares */
.ft-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

    .ft-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        transition: transform .25s, box-shadow .25s;
    }

        .ft-social a:hover {
            transform: translateY(-4px);
            text-decoration: none;
        }

.soc-fb {
    background: #1877f2;
    box-shadow: 0 4px 14px rgba(24,119,242,.4);
}

.soc-ig {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    box-shadow: 0 4px 14px rgba(220,39,67,.35);
}

.soc-yt {
    background: #ff0000;
    box-shadow: 0 4px 14px rgba(255,0,0,.35);
}

.soc-fb:hover {
    box-shadow: 0 8px 22px rgba(24,119,242,.55);
}

.soc-ig:hover {
    box-shadow: 0 8px 22px rgba(220,39,67,.5);
}

.soc-yt:hover {
    box-shadow: 0 8px 22px rgba(255,0,0,.5);
}

/* ── Col 2 : Links (two mini-cols inside) ── */
.ft-links-wrap {
    display: flex;
    gap: 28px;
}

.ft-links-col {
    flex: 1;
    min-width: 0;
}
/* Column title — gold bar before text */
.ft-col-title {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ft-col-title::before {
        content: '';
        width: 20px;
        height: 2px;
        border-radius: 2px;
        flex-shrink: 0;
        background: linear-gradient(to right,#f0a500,#d48000);
    }
/* Links */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-links li {
        margin-bottom: 10px;
    }

        .ft-links li a {
            color: rgba(255,255,255,.45);
            font-size: 13.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .22s, gap .22s;
        }

            .ft-links li a::before {
                content: '';
                width: 5px;
                height: 5px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(240,165,0,.45);
                transition: background .22s, transform .22s;
            }

            .ft-links li a:hover {
                color: #f0a500;
                gap: 13px;
                text-decoration: none;
            }

                .ft-links li a:hover::before {
                    background: #f0a500;
                    transform: scale(1.4);
                }

/* ── Col 3 : Contact ── */
.ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ft-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255,255,255,.45);
        font-size: 13.5px;
        line-height: 1.65;
    }

.ft-ci {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

    .ft-ci i {
        color: rgba(240,165,0,.8);
        font-size: 13px;
    }

.ft-contact-list a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .22s;
}

    .ft-contact-list a:hover {
        color: #f0a500;
        text-decoration: none;
    }
/* QR */
.ft-qr {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 9px 13px;
    margin-top: 6px;
}

    .ft-qr img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

.ft-qr-text {
    color: rgba(255,255,255,.4);
    font-size: 11.5px;
    line-height: 1.5;
}

    .ft-qr-text strong {
        color: rgba(255,255,255,.7);
        display: block;
    }

/* ── Bottom bar ── */
.mps-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

    .mps-footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: 12.5px;
        margin: 0;
    }

    .mps-footer-bottom a {
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .22s;
    }

        .mps-footer-bottom a:hover {
            color: #f0a500;
        }

/* Scroll-to-top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0a5c38,#1a8a52);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10,92,56,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    text-decoration: none;
}

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top::after {
        content: '\f077';
        font-family: FontAwesome;
    }

    #scroll-top:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,92,56,.55);
    }

@media(max-width:991px) {
    .ft-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .ft-links-wrap {
        gap: 20px;
    }
}

@media(max-width:767px) {
    .ft-body {
        padding: 50px 0 36px;
    }

    .ft-links-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .mps-footer-bottom .text-right {
        text-align: left !important;
        margin-top: 6px;
    }

    .mps-footer-bottom p {
        font-size: 12px;
    }
}
