:root {
    --primary: #174ea6;
    --primary-dark: #0d3270;
    --secondary: #f5a623;
    --dark: #172033;
    --light: #f7f9fc;
    --text: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
}

/* TOP BAR */

.top-bar {
    background: var(--primary);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}


/* NAVBAR */

.navbar {
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

.school-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 800;
    font-size: 20px;
}

.school-name {
    color: var(--primary);
    font-weight: 800;
    font-size: 20px;
    line-height: 1.2;
}

.navbar-brand small {
    font-size: 10px;
    color: #777;
}

.nav-link {
    font-weight: 600;
    color: #333 !important;
    padding: 20px 12px !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.admission-btn {
    color: #fff !important;
    padding: 9px 18px !important;
}


/* HERO */

.hero {
    min-height: 650px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(8, 40, 90, 0.82),
            rgba(8, 40, 90, 0.82)
        ),
        url("../assets/images/hero.jpg")
        center / cover no-repeat;
}

.hero-content {
    max-width: 760px;
    color: #fff;
}

.hero-badge {
    display: inline-block;

    background: var(--secondary);
    color: #fff;

    padding: 7px 18px;
    border-radius: 30px;

    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
    font-weight: 800;
}

.hero p {
    font-size: 19px;
    max-width: 650px;
    margin: 25px 0;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* COMMON SECTION */

.section-padding {
    padding: 90px 0;
}

.section-label {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-title {
    color: var(--dark);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin: 10px 0 20px;
}

.section-heading {
    max-width: 700px;
    text-align: center;
    margin: 0 auto 50px;
}

.section-heading p {
    color: #777;
}


/* INFO */

.info-item {
    margin-bottom: 15px;
    font-weight: 600;
}

.info-item i {
    color: #198754;
    margin-right: 7px;
}


/* STATS */

.stats-section {
    background: var(--primary);
    color: #fff;
    padding: 55px 0;
}

.stat-box {
    text-align: center;
}

.stat-box i {
    font-size: 38px;
    color: var(--secondary);
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 800;
    margin: 5px 0 0;
}

.stat-box p {
    margin: 0;
}


/* FEATURE CARDS */

.feature-card {
    height: 100%;

    background: #fff;
    border-radius: 14px;

    padding: 32px;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);

    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf1ff;
    color: var(--primary);

    border-radius: 12px;

    font-size: 28px;

    margin-bottom: 20px;
}

.feature-card h4 {
    color: var(--dark);
    font-weight: 700;
}


/* CTA */

.cta-section {
    padding: 90px 0;

    color: #fff;

    background:
        linear-gradient(
            rgba(23, 78, 166, 0.93),
            rgba(23, 78, 166, 0.93)
        ),
        url("../assets/images/school-campus.jpg")
        center / cover;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
}

.cta-section p {
    font-size: 18px;
    margin: 15px 0 25px;
}


/* FOOTER */

footer {
    background: var(--dark);
    color: #ccc;
    padding: 65px 0 20px;
}

footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

footer a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 9px;
}

footer a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);

    margin-top: 40px;
    padding-top: 20px;

    text-align: center;
    font-size: 14px;
}


/* MOBILE */

@media (max-width: 991px) {

    .nav-link {
        padding: 10px 0 !important;
    }

    .admission-btn {
        display: inline-block;
        margin-top: 8px;
    }

    .hero {
        min-height: 570px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .section-title {
        font-size: 34px;
    }
}


@media (max-width: 576px) {

    .top-bar {
        text-align: center;
    }

    .hero {
        min-height: 540px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-padding {
        padding: 65px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

}



/* =========================================
   ABOUT PAGE
========================================= */

.page-hero {
    padding: 90px 0;
    background: linear-gradient(
        135deg,
        #0d2b52,
        #0d6efd
    );
    color: #ffffff;
}

.page-hero-content {
    max-width: 800px;
}

.page-badge,
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0d6efd;
}

.page-badge {
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.page-hero p {
    max-width: 650px;
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.breadcrumb-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-wrapper a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-wrapper span:last-child {
    opacity: 0.7;
}


/* =========================================
   COMMON SECTION
========================================= */

.section-padding {
    padding: 90px 0;
}

.section-title {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    color: #0d2b52;
    line-height: 1.2;
    margin: 10px 0 20px;
}

.section-description {
    max-width: 650px;
    margin: auto;
    color: #6c757d;
}


/* =========================================
   ABOUT IMAGE
========================================= */

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

.experience-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #ffffff;
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.experience-card strong,
.experience-card span {
    display: block;
}

.experience-card strong {
    color: #0d2b52;
    font-size: 20px;
}

.experience-card span {
    color: #6c757d;
    font-size: 13px;
}


/* =========================================
   ABOUT POINTS
========================================= */

.about-points {
    margin-top: 25px;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-weight: 500;
}

.about-point i {
    color: #0d6efd;
}


/* =========================================
   VISION / MISSION
========================================= */

.vision-mission-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.vm-card {
    height: 100%;
    display: flex;
    gap: 25px;
    padding: 35px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.vm-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf2ff;
    color: #0d6efd;
    border-radius: 15px;
    font-size: 26px;
}

.vm-card h3 {
    color: #0d2b52;
    margin: 8px 0 12px;
}


/* =========================================
   VALUES
========================================= */

.value-card {
    height: 100%;
    text-align: center;
    padding: 35px 25px;
    background: #ffffff;
    border: 1px solid #edf0f5;
    border-radius: 16px;
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.value-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf2ff;
    color: #0d6efd;
    border-radius: 50%;
    font-size: 26px;
}

.value-card h4 {
    color: #0d2b52;
    margin-bottom: 12px;
}


/* =========================================
   WHY CHOOSE US
========================================= */

.why-section {
    background: #f7f9fc;
}

.feature-box {
    display: flex;
    gap: 18px;
    height: 100%;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #edf0f5;
}

.feature-box > i {
    font-size: 30px;
    color: #0d6efd;
}

.feature-box h4 {
    color: #0d2b52;
    font-size: 18px;
    margin-bottom: 7px;
}

.feature-box p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}


/* =========================================
   PRINCIPAL
========================================= */

.principal-card {
    padding: 50px;
    background: #f7f9fc;
    border-radius: 22px;
}

.principal-photo {
    width: 200px;
    height: 200px;
    margin: auto;
    overflow: hidden;
    border-radius: 50%;
}

.principal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.principal-card h2 {
    color: #0d2b52;
    font-size: 32px;
    margin: 10px 0 20px;
}

.principal-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}


/* =========================================
   CTA
========================================= */

.about-cta {
    padding: 80px 20px;
    background: #0d2b52;
    color: #ffffff;
}

.about-cta h2 {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
}

.about-cta p {
    max-width: 650px;
    margin: 15px auto 25px;
    opacity: 0.85;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .page-hero {
        padding: 65px 0;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-image {
        min-height: 300px;
    }

    .vm-card {
        padding: 25px;
        gap: 15px;
    }

    .principal-card {
        padding: 30px 20px;
        text-align: center;
    }

    .principal-card h2 {
        font-size: 27px;
    }

    .principal-card p {
        font-size: 15px;
    }

}


/* =========================================================
   ACADEMICS PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.inner-hero {
    position: relative;
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            #0d2b52 0%,
            #124d91 55%,
            #0d6efd 100%
        );
    color: #ffffff;
    overflow: hidden;
}

.inner-hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -120px;
    top: -150px;
    border: 70px solid rgba(255,255,255,0.06);
    border-radius: 50%;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.inner-hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
}

.inner-hero p {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 14px;
}

.hero-breadcrumb a {
    color: #ffffff;
}

.hero-breadcrumb i {
    font-size: 10px;
    opacity: 0.6;
}


/* =========================================================
   INTRO
========================================================= */

.academic-lead {
    font-size: 18px;
    color: #455a64;
    line-height: 1.8;
}

.academic-check-list {
    margin-top: 25px;
}

.academic-check-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
}

.academic-check-list i {
    color: #0d6efd;
}


/* =========================================================
   ACADEMIC VISUAL
========================================================= */

.academic-visual {
    position: relative;
    min-height: 450px;
    padding: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #eaf3ff,
            #f7faff
        );

    border-radius: 30px;
    overflow: hidden;
}

.academic-visual::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(13,110,253,0.08);

    top: -100px;
    right: -80px;
}

.academic-visual-main {
    position: relative;
    z-index: 2;

    width: 240px;
    height: 240px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #ffffff;

    border-radius: 50%;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.10);
}

.academic-visual-main i {
    font-size: 55px;
    color: #0d6efd;
    margin-bottom: 10px;
}

.academic-visual-main h3 {
    color: #0d2b52;
    font-weight: 700;
}

.academic-visual-main p {
    width: 170px;
    margin: 0;

    font-size: 12px;
    color: #6c757d;
}

.academic-floating-card {
    position: absolute;

    left: 25px;
    top: 60px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.10);
}

.academic-floating-card.second {
    left: auto;
    top: auto;
    right: 25px;
    bottom: 55px;
}

.floating-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;
    color: #0d6efd;

    border-radius: 10px;
}

.academic-floating-card strong,
.academic-floating-card small {
    display: block;
}

.academic-floating-card strong {
    color: #0d2b52;
    font-size: 14px;
}

.academic-floating-card small {
    color: #6c757d;
    font-size: 11px;
}


/* =========================================================
   ACADEMIC AREAS
========================================================= */

.academic-areas {
    background: #f7f9fc;
}

.subject-card {
    position: relative;

    height: 100%;

    padding: 32px;

    background: #ffffff;

    border: 1px solid #edf0f5;

    border-radius: 18px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.subject-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.08);
}

.subject-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: #eaf3ff;
    color: #0d6efd;

    border-radius: 14px;

    font-size: 25px;
}

.subject-card h3 {
    color: #0d2b52;
    font-size: 21px;
    font-weight: 700;
}

.subject-card p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.subject-number {
    position: absolute;

    right: 20px;
    bottom: 15px;

    color: #e8edf4;

    font-size: 50px;
    font-weight: 800;
}


/* =========================================================
   LEARNING
========================================================= */

.learning-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.learning-item {
    display: flex;
    gap: 15px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #edf0f5;

    border-radius: 15px;
}

.learning-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;
    color: #0d6efd;

    border-radius: 10px;

    font-size: 21px;
}

.learning-item h4 {
    color: #0d2b52;
    font-size: 16px;
    margin-bottom: 7px;
}

.learning-item p {
    margin: 0;
    color: #6c757d;
    font-size: 13px;
}


/* =========================================================
   DEVELOPMENT
========================================================= */

.development-section {
    background: #f7f9fc;
}

.development-card {
    height: 100%;

    padding: 35px 25px;

    text-align: center;

    background: #ffffff;

    border-radius: 18px;

    border: 1px solid #edf0f5;
}

.development-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;
    color: #0d6efd;

    border-radius: 50%;

    font-size: 27px;
}

.development-card h3 {
    color: #0d2b52;
    font-size: 20px;
}

.development-card p {
    color: #6c757d;
    margin: 0;
}


/* =========================================================
   CTA
========================================================= */

.academic-cta {
    padding: 70px 0;

    background:
        linear-gradient(
            135deg,
            #0d2b52,
            #0d6efd
        );

    color: #ffffff;
}

.academic-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.academic-cta-content > div:first-child {
    max-width: 650px;
}

.academic-cta-content span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.academic-cta h2 {
    margin: 8px 0;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
}

.academic-cta p {
    margin: 0;
    opacity: 0.85;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991.98px) {

    .inner-hero {
        padding: 75px 0;
    }

    .academic-visual {
        min-height: 400px;
    }

    .academic-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 767.98px) {

    .section-padding {
        padding: 60px 0;
    }

    .inner-hero h1 {
        font-size: 38px;
    }

    .inner-hero p {
        font-size: 15px;
    }

    .academic-visual {
        min-height: 350px;
        padding: 20px;
    }

    .academic-visual-main {
        width: 190px;
        height: 190px;
    }

    .academic-visual-main i {
        font-size: 40px;
    }

    .academic-floating-card {
        left: 15px;
        top: 30px;
        padding: 10px;
    }

    .academic-floating-card.second {
        right: 15px;
        bottom: 30px;
    }

    .learning-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 575.98px) {

    .inner-hero {
        padding: 60px 0;
    }

    .inner-hero h1 {
        font-size: 32px;
    }

    .academic-visual {
        min-height: 320px;
    }

    .academic-floating-card {
        transform: scale(0.85);
        transform-origin: left top;
    }

    .academic-floating-card.second {
        transform-origin: right bottom;
    }

    .academic-visual-main {
        width: 170px;
        height: 170px;
    }

    .academic-visual-main i {
        font-size: 35px;
    }

    .academic-visual-main p {
        width: 140px;
    }

    .subject-card {
        padding: 25px;
    }

}

/* =========================================================
   ADMISSIONS PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.admissions-hero {
    background:
        linear-gradient(
            135deg,
            #08264a 0%,
            #0d4d91 55%,
            #0d6efd 100%
        );
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.admission-highlights {
    position: relative;
    margin-top: -45px;
    z-index: 5;
}

.admission-highlight-card {
    height: 100%;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 22px 18px;

    background: #ffffff;

    border-radius: 15px;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.10);
}

.admission-highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;
    color: #0d6efd;

    border-radius: 12px;

    font-size: 22px;
}

.admission-highlight-card strong,
.admission-highlight-card span {
    display: block;
}

.admission-highlight-card strong {
    color: #0d2b52;
    font-size: 15px;
}

.admission-highlight-card span {
    color: #7a8794;
    font-size: 12px;
    margin-top: 3px;
}


/* =========================================================
   INTRO
========================================================= */

.admission-benefits {
    margin-top: 25px;
}

.admission-benefits div {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;

    font-weight: 600;
    color: #334155;
}

.admission-benefits i {
    color: #0d6efd;
}


/* =========================================================
   WELCOME CARD
========================================================= */

.admission-welcome-card {
    position: relative;

    min-height: 390px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 45px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #0d2b52,
            #0d6efd
        );

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(13,110,253,0.20);
}

.admission-welcome-card::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border: 60px solid rgba(255,255,255,0.06);

    border-radius: 50%;

    top: -120px;
    right: -90px;
}

.admission-welcome-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border: 35px solid rgba(255,255,255,0.05);

    border-radius: 50%;

    bottom: -80px;
    left: -60px;
}

.welcome-card-icon {
    position: relative;
    z-index: 2;

    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: rgba(255,255,255,0.12);

    border-radius: 50%;

    font-size: 32px;
}

.admission-welcome-card span,
.admission-welcome-card h3,
.admission-welcome-card p,
.admission-welcome-card strong,
.admission-welcome-card small,
.welcome-line {
    position: relative;
    z-index: 2;
}

.admission-welcome-card > span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.8;
}

.admission-welcome-card h3 {
    margin: 10px 0 4px;

    font-size: 28px;
    font-weight: 700;
}

.admission-welcome-card p {
    margin: 0;
    opacity: 0.75;
}

.welcome-line {
    width: 50px;
    height: 2px;

    margin: 22px 0;

    background: rgba(255,255,255,0.6);
}

.admission-welcome-card strong {
    font-size: 20px;
}

.admission-welcome-card small {
    margin-top: 5px;
    opacity: 0.75;
}


/* =========================================================
   PROCESS
========================================================= */

.admission-process {
    background: #f7f9fc;
}

.process-card {
    position: relative;

    height: 100%;

    padding: 30px 25px;

    background: #ffffff;

    border: 1px solid #edf0f5;

    border-radius: 18px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.08);
}

.process-number {
    position: absolute;

    top: 15px;
    right: 18px;

    color: #e8eef6;

    font-size: 40px;
    font-weight: 800;
}

.process-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: #eaf3ff;
    color: #0d6efd;

    border-radius: 14px;

    font-size: 24px;
}

.process-card h3 {
    color: #0d2b52;
    font-size: 20px;
    font-weight: 700;
}

.process-card p {
    margin: 0;

    color: #6c757d;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   DOCUMENTS
========================================================= */

.document-note {
    display: flex;
    gap: 12px;

    margin-top: 25px;
    padding: 18px;

    background: #f0f6ff;

    border-left: 4px solid #0d6efd;

    border-radius: 8px;

    color: #44546a;

    font-size: 13px;
}

.document-note i {
    color: #0d6efd;
    font-size: 18px;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px 20px;

    background: #ffffff;

    border: 1px solid #edf0f5;

    border-radius: 12px;
}

.document-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;
    color: #0d6efd;

    border-radius: 10px;

    font-size: 20px;
}

.document-item strong,
.document-item small {
    display: block;
}

.document-item strong {
    color: #0d2b52;
    font-size: 14px;
}

.document-item small {
    margin-top: 4px;

    color: #7b8794;
    font-size: 12px;
}


/* =========================================================
   FORM SECTION
========================================================= */

.admission-form-section {
    background: #f7f9fc;
}

.enquiry-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-top: 30px;
}

.enquiry-contact > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-small-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;
    color: #0d6efd;

    border-radius: 10px;
}

.enquiry-contact small,
.enquiry-contact strong {
    display: block;
}

.enquiry-contact small {
    color: #8a96a3;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.enquiry-contact strong {
    color: #0d2b52;

    font-size: 14px;
    margin-top: 3px;
}

.admission-form-card {
    padding: 35px;

    background: #ffffff;

    border-radius: 20px;

    border: 1px solid #edf0f5;

    box-shadow:
        0 15px 45px rgba(0,0,0,0.06);
}

.admission-form-card .form-label {
    color: #243b53;

    font-size: 13px;
    font-weight: 600;
}

.admission-form-card .form-control,
.admission-form-card .form-select {
    min-height: 50px;

    border-color: #e1e7ef;

    border-radius: 9px;

    font-size: 14px;
}

.admission-form-card textarea.form-control {
    min-height: 120px;
}

.admission-form-card .form-control:focus,
.admission-form-card .form-select:focus {
    border-color: #0d6efd;

    box-shadow:
        0 0 0 0.2rem rgba(13,110,253,0.10);
}


/* =========================================================
   FINAL CTA
========================================================= */

.admission-final-cta {
    padding: 80px 0;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0d2b52,
            #0d6efd
        );
}

.admission-final-cta i {
    font-size: 35px;
}

.admission-final-cta h2 {
    margin: 15px 0;

    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
}

.admission-final-cta p {
    max-width: 650px;

    margin: 0 auto 25px;

    opacity: 0.85;

    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .admission-highlights {
        margin-top: -25px;
    }

    .admission-welcome-card {
        min-height: 350px;
    }

}


@media (max-width: 767.98px) {

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .admission-highlights {
        margin-top: 0;
        padding: 20px 0;
        background: #f7f9fc;
    }

    .admission-highlight-card {
        padding: 16px 12px;
    }

    .admission-highlight-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 18px;
    }

    .admission-highlight-card strong {
        font-size: 13px;
    }

    .admission-highlight-card span {
        font-size: 10px;
    }

    .admission-form-card {
        padding: 22px;
    }

    .admission-final-cta {
        padding: 60px 20px;
    }

}


@media (max-width: 575.98px) {

    .admission-highlight-card {
        min-height: 78px;
    }

    .admission-welcome-card {
        padding: 30px 20px;
        min-height: 320px;
    }

    .admission-welcome-card h3 {
        font-size: 23px;
    }

    .process-card {
        padding: 25px 20px;
    }

    .document-item {
        align-items: flex-start;
    }

    .document-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .admission-form-card {
        padding: 18px;
    }

}


/* =========================================================
   FACILITIES PAGE
========================================================= */


/* HERO */

.facilities-hero {
    background:
        linear-gradient(
            135deg,
            #08264a 0%,
            #0d4d91 55%,
            #0d6efd 100%
        );
}


/* INTRO */

.facility-lead {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
}

.facility-points {
    margin-top: 25px;
}

.facility-points div {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;

    color: #34495e;
    font-weight: 600;
}

.facility-points i {
    color: #0d6efd;
}


/* FEATURE BOX */

.facility-feature-box {
    position: relative;

    padding: 45px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #0d2b52,
            #0d6efd
        );

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(13,110,253,0.18);
}

.facility-feature-box::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border: 55px solid rgba(255,255,255,0.06);

    border-radius: 50%;

    right: -100px;
    top: -100px;
}

.facility-feature-box::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    border: 35px solid rgba(255,255,255,0.05);

    border-radius: 50%;

    left: -70px;
    bottom: -80px;
}

.facility-feature-icon {
    position: relative;
    z-index: 2;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: rgba(255,255,255,0.12);

    border-radius: 15px;

    font-size: 28px;
}

.facility-feature-box > span,
.facility-feature-box h3,
.facility-feature-box p,
.feature-mini-grid {
    position: relative;
    z-index: 2;
}

.facility-feature-box > span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.75;
}

.facility-feature-box h3 {
    margin: 12px 0;

    max-width: 450px;

    font-size: 32px;
    line-height: 1.25;
}

.facility-feature-box p {
    max-width: 500px;

    opacity: 0.8;
    line-height: 1.7;
}


/* MINI GRID */

.feature-mini-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-top: 30px;
}

.feature-mini-grid > div {
    display: flex;
    flex-direction: column;

    padding: 15px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 12px;
}

.feature-mini-grid i {
    margin-bottom: 8px;

    font-size: 20px;
}

.feature-mini-grid strong {
    font-size: 13px;
}

.feature-mini-grid small {
    margin-top: 3px;

    opacity: 0.65;

    font-size: 10px;
}


/* FACILITY CARDS */

.facilities-grid-section {
    background: #f7f9fc;
}

.facility-card {
    position: relative;

    height: 100%;

    padding: 32px 28px;

    background: #ffffff;

    border: 1px solid #e8edf3;

    border-radius: 18px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.08);
}

.facility-card-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: #eaf3ff;
    color: #0d6efd;

    border-radius: 15px;

    font-size: 27px;
}

.facility-number {
    position: absolute;

    top: 20px;
    right: 20px;

    color: #edf2f7;

    font-size: 42px;
    font-weight: 800;
}

.facility-card h3 {
    position: relative;

    color: #0d2b52;

    font-size: 19px;
    font-weight: 700;

    line-height: 1.4;
}

.facility-card p {
    color: #6c757d;

    font-size: 14px;
    line-height: 1.75;
}

.facility-link {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 20px;

    color: #0d6efd;

    font-size: 12px;
    font-weight: 700;
}

.facility-link i {
    transition: transform 0.2s ease;
}

.facility-card:hover .facility-link i {
    transform: translateX(5px);
}


/* LEARNING EXPERIENCE */

.learning-experience {
    background: #ffffff;
}

.learning-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.learning-item {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 20px;

    border: 1px solid #e9edf3;

    border-radius: 14px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.learning-item:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.06);
}

.learning-item > i {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;
    color: #0d6efd;

    border-radius: 11px;

    font-size: 20px;
}

.learning-item strong,
.learning-item span {
    display: block;
}

.learning-item strong {
    color: #0d2b52;

    font-size: 14px;
}

.learning-item span {
    margin-top: 4px;

    color: #7c8794;

    font-size: 11px;
}


/* GALLERY CTA */

.facility-gallery-cta {
    padding: 65px 0;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0d2b52,
            #0d6efd
        );
}

.facility-gallery-cta span {
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    opacity: 0.7;
}

.facility-gallery-cta h2 {
    margin: 8px 0;

    font-size: 34px;
    font-weight: 700;
}

.facility-gallery-cta p {
    margin: 0;

    opacity: 0.8;
}


/* FINAL CTA */

.facility-final-cta {
    padding: 75px 20px;

    background: #f7f9fc;
}

.facility-final-cta > div > i {
    color: #0d6efd;

    font-size: 35px;
}

.facility-final-cta h2 {
    margin: 15px 0 10px;

    color: #0d2b52;

    font-size: clamp(27px, 4vw, 40px);
}

.facility-final-cta p {
    margin-bottom: 25px;

    color: #6c757d;
}


/* RESPONSIVE */

@media (max-width: 991.98px) {

    .facility-feature-box {
        padding: 35px;
    }

    .facility-gallery-cta {
        text-align: center;
    }

    .facility-gallery-cta .btn {
        margin-top: 25px;
    }

}


@media (max-width: 767.98px) {

    .facility-feature-box {
        padding: 28px 22px;
    }

    .facility-feature-box h3 {
        font-size: 26px;
    }

    .learning-grid {
        grid-template-columns: 1fr;
    }

    .feature-mini-grid {
        gap: 8px;
    }

    .facility-gallery-cta h2 {
        font-size: 28px;
    }

}


@media (max-width: 575.98px) {

    .facility-feature-box {
        border-radius: 20px;
    }

    .feature-mini-grid {
        grid-template-columns: 1fr 1fr;
    }

    .facility-card {
        padding: 25px 22px;
    }

    .learning-item {
        padding: 16px;
    }

}


/* =========================================================
   FACULTY PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.faculty-hero {
    background:
        linear-gradient(
            135deg,
            #08264a 0%,
            #0d4d91 55%,
            #0d6efd 100%
        );
}


/* =========================================================
   INTRO
========================================================= */

.faculty-lead {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
}

.faculty-values {
    margin-top: 25px;
}

.faculty-values div {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;

    color: #34495e;
    font-weight: 600;
}

.faculty-values i {
    color: #0d6efd;
}


/* =========================================================
   MESSAGE CARD
========================================================= */

.faculty-message-card {
    position: relative;

    padding: 45px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #0d2b52,
            #0d6efd
        );

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(13,110,253,0.18);
}

.faculty-message-card::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border: 55px solid rgba(255,255,255,0.06);

    border-radius: 50%;

    top: -130px;
    right: -90px;
}

.faculty-message-card::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    border: 35px solid rgba(255,255,255,0.05);

    border-radius: 50%;

    bottom: -80px;
    left: -70px;
}

.faculty-message-icon {
    position: relative;
    z-index: 2;

    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: rgba(255,255,255,0.12);

    border-radius: 15px;

    font-size: 28px;
}

.faculty-message-card > span,
.faculty-message-card h3,
.faculty-message-card p,
.faculty-message-bottom {
    position: relative;
    z-index: 2;
}

.faculty-message-card > span {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    opacity: 0.75;
}

.faculty-message-card h3 {
    margin: 12px 0;

    max-width: 420px;

    font-size: 32px;

    line-height: 1.3;
}

.faculty-message-card p {
    max-width: 500px;

    line-height: 1.8;

    opacity: 0.8;
}

.faculty-message-bottom {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;
}

.faculty-message-bottom i {
    font-size: 30px;

    opacity: 0.7;
}


/* =========================================================
   TEAM SECTION
========================================================= */

.faculty-team-section {
    background: #f7f9fc;
}


/* =========================================================
   TEACHER CARD
========================================================= */

.teacher-card {
    height: 100%;

    background: #ffffff;

    border: 1px solid #e7edf4;

    border-radius: 18px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.08);
}


/* PHOTO PLACEHOLDER */

.teacher-photo {
    position: relative;

    height: 240px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #eaf3ff,
            #dcecff
        );

    overflow: hidden;
}

.teacher-placeholder {
    width: 110px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #0d6efd;

    border-radius: 50%;

    font-size: 60px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);
}

.teacher-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 7px 11px;

    color: #0d6efd;

    background: #ffffff;

    border-radius: 20px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.5px;
}


/* CONTENT */

.teacher-content {
    padding: 25px;
}

.teacher-role {
    color: #0d6efd;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.teacher-content h3 {
    margin: 8px 0;

    color: #0d2b52;

    font-size: 20px;

    font-weight: 700;
}

.teacher-content p {
    min-height: 72px;

    margin-bottom: 20px;

    color: #6c757d;

    font-size: 13px;

    line-height: 1.7;
}

.teacher-subject {
    display: flex;
    align-items: center;
    gap: 8px;

    padding-top: 15px;

    border-top: 1px solid #edf0f4;

    color: #526273;

    font-size: 12px;

    font-weight: 600;
}

.teacher-subject i {
    color: #0d6efd;
}


/* =========================================================
   TEACHING PHILOSOPHY
========================================================= */

.teaching-philosophy {
    background: #ffffff;
}

.philosophy-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.philosophy-card {
    padding: 25px;

    border: 1px solid #e8edf3;

    border-radius: 15px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.06);
}

.philosophy-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    background: #eaf3ff;

    color: #0d6efd;

    border-radius: 11px;

    font-size: 20px;
}

.philosophy-card h3 {
    margin-bottom: 7px;

    color: #0d2b52;

    font-size: 17px;
}

.philosophy-card p {
    margin: 0;

    color: #6c757d;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.faculty-cta {
    padding: 65px 0;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0d2b52,
            #0d6efd
        );
}

.faculty-cta span {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    opacity: 0.7;
}

.faculty-cta h2 {
    margin: 8px 0;

    font-size: 34px;

    font-weight: 700;
}

.faculty-cta p {
    margin: 0;

    opacity: 0.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.faculty-final-cta {
    padding: 75px 20px;

    background: #f7f9fc;
}

.faculty-final-cta > div > i {
    color: #0d6efd;

    font-size: 36px;
}

.faculty-final-cta h2 {
    margin: 15px 0 10px;

    color: #0d2b52;

    font-size: clamp(27px, 4vw, 40px);

    font-weight: 700;
}

.faculty-final-cta p {
    margin-bottom: 25px;

    color: #6c757d;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .faculty-message-card {
        padding: 35px;
    }

    .faculty-cta {
        text-align: center;
    }

    .faculty-cta .btn {
        margin-top: 25px;
    }

}


@media (max-width: 767.98px) {

    .faculty-message-card {
        padding: 28px 22px;
    }

    .faculty-message-card h3 {
        font-size: 26px;
    }

    .teacher-photo {
        height: 220px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .faculty-cta h2 {
        font-size: 28px;
    }

}


@media (max-width: 575.98px) {

    .teacher-photo {
        height: 200px;
    }

    .teacher-content {
        padding: 22px;
    }

    .teacher-content p {
        min-height: auto;
    }

    .faculty-message-card {
        border-radius: 20px;
    }

}




/* =========================================================
   CONTACT PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    background:
        linear-gradient(
            135deg,
            #08264a 0%,
            #0d4d91 55%,
            #0d6efd 100%
        );
}


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-section {
    background: #ffffff;
}

.contact-info-card {
    height: 100%;

    padding: 30px 25px;

    background: #ffffff;

    border: 1px solid #e7edf4;

    border-radius: 18px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.07);
}

.contact-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: #eaf3ff;

    color: #0d6efd;

    border-radius: 14px;

    font-size: 22px;
}

.contact-info-card > span {
    color: #0d6efd;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.contact-info-card h3 {
    margin: 7px 0 10px;

    color: #0d2b52;

    font-size: 18px;
}

.contact-info-card p {
    min-height: 65px;

    margin-bottom: 18px;

    color: #6c757d;

    font-size: 12px;

    line-height: 1.7;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #0d6efd;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;
}

.contact-card-link i {
    transition: transform 0.2s ease;
}

.contact-card-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   CONTACT FORM SECTION
========================================================= */

.contact-form-section {
    background: #f7f9fc;
}

.contact-form-intro {
    color: #667585;

    line-height: 1.8;
}

.contact-benefits {
    margin-top: 30px;
}

.contact-benefit {
    display: flex;

    gap: 15px;

    margin-bottom: 22px;
}

.benefit-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #eaf3ff;

    color: #0d6efd;

    border-radius: 10px;
}

.contact-benefit h4 {
    margin: 0 0 4px;

    color: #0d2b52;

    font-size: 15px;
}

.contact-benefit p {
    margin: 0;

    color: #74808d;

    font-size: 12px;

    line-height: 1.6;
}


/* FORM CARD */

.contact-form-card {
    padding: 35px;

    background: #ffffff;

    border: 1px solid #e5ebf2;

    border-radius: 22px;

    box-shadow:
        0 15px 45px rgba(0,0,0,0.05);
}

.form-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;

    padding-bottom: 22px;

    border-bottom: 1px solid #edf0f4;
}

.form-card-header span {
    color: #0d6efd;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.form-card-header h3 {
    margin: 6px 0 0;

    color: #0d2b52;

    font-size: 23px;
}

.form-header-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;

    color: #0d6efd;

    border-radius: 13px;

    font-size: 21px;
}


/* FORM ELEMENTS */

.contact-form-card .form-label {
    margin-bottom: 7px;

    color: #34495e;

    font-size: 12px;

    font-weight: 700;
}

.contact-form-card .input-group-text {
    background: #f7f9fc;

    color: #0d6efd;

    border-color: #dfe6ee;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    min-height: 48px;

    border-color: #dfe6ee;

    font-size: 13px;

    box-shadow: none;
}

.contact-form-card textarea.form-control {
    min-height: 130px;

    resize: vertical;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: #0d6efd;

    box-shadow:
        0 0 0 3px rgba(13,110,253,0.08);
}

.contact-submit {
    padding-left: 25px;
    padding-right: 25px;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   LOCATION
========================================================= */

.school-location-section {
    background: #ffffff;
}

.school-map {
    width: 100%;
    height: 450px;
}

.school-map iframe {
    display: block;

    width: 100%;
    height: 450px;
}

.location-content {
    min-height: 450px;

    padding: 55px 8%;

    background: #0d2b52;

    color: #ffffff;
}

.location-content .section-label {
    color: #7db5ff;
}

.location-content h2 {
    max-width: 450px;

    margin: 10px 0 18px;

    color: #ffffff;

    font-size: 32px;

    line-height: 1.25;
}

.location-content > p {
    max-width: 480px;

    color: rgba(255,255,255,0.7);

    font-size: 13px;

    line-height: 1.8;
}

.location-detail {
    display: flex;

    gap: 15px;

    margin-top: 25px;
}

.location-detail > i {
    color: #7db5ff;

    font-size: 20px;
}

.location-detail strong {
    display: block;

    margin-bottom: 4px;

    font-size: 12px;
}

.location-detail span {
    display: block;

    color: rgba(255,255,255,0.65);

    font-size: 12px;

    line-height: 1.6;
}

.location-content .btn {
    margin-top: 30px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-final-cta {
    padding: 75px 20px;

    background: #f7f9fc;
}

.contact-final-cta > div > i {
    color: #0d6efd;

    font-size: 38px;
}

.contact-final-cta h2 {
    margin: 15px auto 10px;

    max-width: 700px;

    color: #0d2b52;

    font-size: clamp(27px, 4vw, 40px);

    font-weight: 700;
}

.contact-final-cta p {
    margin-bottom: 25px;

    color: #6c757d;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .contact-info-card p {
        min-height: auto;
    }

    .location-content {
        min-height: auto;

        padding: 45px 30px;
    }

}


@media (max-width: 767.98px) {

    .contact-form-card {
        padding: 25px 20px;

        border-radius: 18px;
    }

    .form-card-header h3 {
        font-size: 20px;
    }

    .form-header-icon {
        width: 44px;
        height: 44px;
    }

    .school-map,
    .school-map iframe {
        height: 350px;
    }

    .location-content h2 {
        font-size: 28px;
    }

}


@media (max-width: 575.98px) {

    .contact-info-card {
        padding: 25px 20px;
    }

    .contact-form-card {
        padding: 22px 17px;
    }

    .form-card-header {
        margin-bottom: 22px;
    }

    .form-header-icon {
        display: none;
    }

    .school-map,
    .school-map iframe {
        height: 300px;
    }

    .location-content {
        padding: 40px 22px;
    }

}




/* =========================================================
   ABOUT PAGE
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    position: relative;

    min-height: 470px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #08264a 0%,
            #0d4d91 55%,
            #0d6efd 100%
        );
}

.about-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -180px;
    right: -100px;

    border-radius: 50%;

    background: rgba(255,255,255,0.06);
}

.about-hero::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    bottom: -150px;
    left: -80px;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);
}

.about-hero .container {
    position: relative;

    z-index: 2;
}

.about-hero .inner-hero-content {
    max-width: 760px;

    padding: 80px 0;
}

.about-hero .hero-eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    color: #9dcbff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.about-hero h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(40px, 6vw, 68px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.about-hero p {
    max-width: 650px;

    margin-bottom: 30px;

    color: rgba(255,255,255,0.78);

    font-size: 15px;

    line-height: 1.8;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.hero-breadcrumb {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 35px;

    color: rgba(255,255,255,0.65);

    font-size: 12px;
}

.hero-breadcrumb a {
    color: #ffffff;

    text-decoration: none;
}

.hero-breadcrumb a:hover {
    text-decoration: underline;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro {
    background: #ffffff;
}

.about-intro-image {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #dcecff,
            #f5f9ff
        );
}

.about-intro-image img {
    width: 100%;
    height: 100%;

    min-height: 430px;

    object-fit: cover;

    display: block;
}

.about-image-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    color: #ffffff;

    background: rgba(8,38,74,0.92);

    border-radius: 14px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.15);
}

.about-image-badge i {
    font-size: 25px;

    color: #8ec5ff;
}

.about-image-badge strong {
    display: block;

    font-size: 14px;
}

.about-image-badge span {
    display: block;

    margin-top: 2px;

    color: rgba(255,255,255,0.65);

    font-size: 10px;
}


/* ABOUT CONTENT */

.about-content {
    padding-left: 20px;
}

.section-label {
    display: inline-block;

    color: #0d6efd;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;
}

.section-title {
    margin-top: 10px;

    color: #0d2b52;

    font-size: clamp(30px, 4vw, 45px);

    line-height: 1.2;

    font-weight: 750;
}

.about-content p {
    color: #687789;

    font-size: 14px;

    line-height: 1.85;
}

.about-content p + p {
    margin-top: 15px;
}


/* =========================================================
   MISSION / VISION
========================================================= */

.mission-section {
    background: #f7f9fc;
}

.mission-card {
    position: relative;

    height: 100%;

    padding: 35px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5ebf2;

    border-radius: 20px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.07);
}

.mission-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background: #eef6ff;
}

.mission-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    color: #0d6efd;

    background: #eaf3ff;

    border-radius: 15px;

    font-size: 24px;
}

.mission-card h3 {
    position: relative;

    z-index: 2;

    margin-bottom: 12px;

    color: #0d2b52;

    font-size: 22px;
}

.mission-card p {
    position: relative;

    z-index: 2;

    margin: 0;

    color: #6c7a89;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   CORE VALUES
========================================================= */

.values-section {
    background: #ffffff;
}

.value-card {
    height: 100%;

    padding: 28px 22px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e7edf4;

    border-radius: 17px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.06);
}

.value-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    color: #0d6efd;

    background: #edf5ff;

    border-radius: 50%;

    font-size: 22px;
}

.value-card h4 {
    margin-bottom: 8px;

    color: #0d2b52;

    font-size: 17px;
}

.value-card p {
    margin: 0;

    color: #788594;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   PRINCIPAL / SCHOOL MESSAGE
========================================================= */

.principal-section {
    background: #f7f9fc;
}

.principal-card {
    position: relative;

    overflow: hidden;

    padding: 50px;

    background:
        linear-gradient(
            135deg,
            #08264a,
            #0d4d91
        );

    border-radius: 24px;
}

.principal-card::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -150px;
    top: -180px;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);
}

.principal-image {
    position: relative;

    z-index: 2;

    width: 190px;
    height: 220px;

    overflow: hidden;

    margin: auto;

    border-radius: 20px;

    background: rgba(255,255,255,0.1);

    border: 4px solid rgba(255,255,255,0.15);
}

.principal-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.principal-content {
    position: relative;

    z-index: 2;

    padding-left: 20px;
}

.principal-content .section-label {
    color: #8ec5ff;
}

.principal-content h2 {
    margin: 10px 0 15px;

    color: #ffffff;

    font-size: 32px;
}

.principal-content p {
    color: rgba(255,255,255,0.72);

    font-size: 13px;

    line-height: 1.85;
}

.principal-name {
    margin-top: 20px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;
}

.principal-designation {
    color: #8ec5ff;

    font-size: 11px;
}


/* =========================================================
   SCHOOL HIGHLIGHTS
========================================================= */

.about-highlights {
    background: #ffffff;
}

.highlight-card {
    display: flex;

    align-items: center;

    gap: 18px;

    height: 100%;

    padding: 24px;

    background: #ffffff;

    border: 1px solid #e7edf4;

    border-radius: 16px;
}

.highlight-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #eaf3ff;

    color: #0d6efd;

    border-radius: 13px;

    font-size: 21px;
}

.highlight-card strong {
    display: block;

    color: #0d2b52;

    font-size: 15px;
}

.highlight-card span {
    display: block;

    margin-top: 4px;

    color: #7a8794;

    font-size: 11px;
}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {
    padding: 70px 0;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0d2b52,
            #0d6efd
        );
}

.about-cta span {
    color: #9dcbff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.about-cta h2 {
    max-width: 750px;

    margin: 10px 0 12px;

    font-size: clamp(30px, 4vw, 42px);

    line-height: 1.2;
}

.about-cta p {
    max-width: 650px;

    margin-bottom: 25px;

    color: rgba(255,255,255,0.7);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   SECTION SPACING
========================================================= */

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-description {
    max-width: 680px;

    margin: 12px auto 0;

    color: #758292;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .about-hero {
        min-height: 420px;
    }

    .about-hero .inner-hero-content {
        padding: 65px 0;
    }

    .about-content {
        padding-left: 0;

        margin-top: 35px;
    }

    .about-intro-image,
    .about-intro-image img {
        min-height: 380px;
    }

    .principal-card {
        padding: 35px;
    }

    .principal-content {
        padding-left: 0;

        margin-top: 30px;

        text-align: center;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-hero {
        min-height: 450px;
    }

    .about-hero .inner-hero-content {
        padding: 55px 0;
    }

    .about-hero h1 {
        font-size: 42px;

        letter-spacing: -1px;
    }

    .about-hero p {
        font-size: 13px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .about-intro-image,
    .about-intro-image img {
        min-height: 300px;
    }

    .about-image-badge {
        left: 15px;
        bottom: 15px;
    }

    .section-title {
        font-size: 30px;
    }

    .mission-card {
        padding: 28px 23px;
    }

    .principal-card {
        padding: 30px 20px;
    }

    .principal-image {
        width: 160px;
        height: 190px;
    }

    .principal-content h2 {
        font-size: 27px;
    }

    .highlight-card {
        padding: 20px;
    }

    .about-cta {
        padding: 55px 20px;

        text-align: center;
    }

}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 12px;
    }

    .about-intro-image,
    .about-intro-image img {
        min-height: 250px;
    }

    .about-image-badge {
        padding: 11px 14px;
    }

    .about-image-badge i {
        font-size: 20px;
    }

    .about-image-badge strong {
        font-size: 12px;
    }

    .about-image-badge span {
        font-size: 9px;
    }

    .mission-icon,
    .value-icon {
        width: 52px;
        height: 52px;
    }

    .principal-card {
        border-radius: 18px;
    }

    .about-cta h2 {
        font-size: 29px;
    }

}


/* =========================================================
   HOME HERO MEDIA SLIDER
========================================================= */

.hero-slider {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #061b34;
}


/* CAROUSEL */

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    width: 100%;

    min-height: 650px;
}


/* MEDIA */

.hero-media {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-video {
    background: #061b34;
}


/* DARK OVERLAY */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(4,24,48,0.90) 0%,
            rgba(4,24,48,0.65) 42%,
            rgba(4,24,48,0.18) 100%
        );
}


/* CONTENT */

.hero-content {
    position: relative;

    z-index: 2;

    min-height: 650px;

    display: flex;

    align-items: center;
}

.hero-text {
    max-width: 760px;

    padding: 70px 0;
}


/* LABEL */

.hero-label {
    display: inline-block;

    margin-bottom: 18px;

    padding: 8px 15px;

    color: #ffffff;

    background: rgba(13,110,253,0.85);

    border-radius: 30px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* TITLE */

.hero-text h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(42px, 5.5vw, 70px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.5px;
}


/* DESCRIPTION */

.hero-text p {
    max-width: 620px;

    margin-bottom: 30px;

    color: rgba(255,255,255,0.80);

    font-size: 15px;

    line-height: 1.8;
}


/* BUTTONS */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.hero-buttons .btn {
    padding: 13px 24px;

    font-size: 12px;

    font-weight: 700;

    border-radius: 8px;
}


/* SLIDER INDICATORS */

.hero-slider .carousel-indicators {
    z-index: 5;

    justify-content: flex-start;

    width: auto;

    margin-left: max(
        15px,
        calc((100% - 1320px) / 2)
    );

    margin-right: 0;

    bottom: 30px;
}

.hero-slider .carousel-indicators button {
    width: 30px;
    height: 4px;

    margin: 0 4px;

    border: 0;

    border-radius: 10px;

    opacity: 0.45;
}

.hero-slider .carousel-indicators button.active {
    width: 55px;

    opacity: 1;
}


/* CONTROLS */

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    z-index: 5;

    width: 60px;

    opacity: 0;

    transition: opacity 0.3s ease;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 0.8;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 45px;
    height: 45px;

    padding: 10px;

    background-color: rgba(0,0,0,0.35);

    background-size: 45%;

    border-radius: 50%;
}


/* SLIDE ANIMATION */

.hero-slider .carousel-item {
    transition:
        transform 1s ease-in-out,
        opacity 1s ease-in-out;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item,
    .hero-content {
        min-height: 590px;
    }

    .hero-text h1 {
        font-size: 56px;
    }

}


@media (max-width: 991.98px) {

    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item,
    .hero-content {
        min-height: 560px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4,24,48,0.88),
                rgba(4,24,48,0.48)
            );
    }

    .hero-text {
        max-width: 650px;
    }

    .hero-text h1 {
        font-size: 50px;
    }

}


@media (max-width: 767.98px) {

    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item,
    .hero-content {
        min-height: 570px;
    }

    .hero-text {
        padding: 50px 20px;
    }

    .hero-text h1 {
        font-size: 40px;

        letter-spacing: -0.8px;
    }

    .hero-text p {
        font-size: 13px;

        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;

        text-align: center;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }

    .hero-slider .carousel-indicators {
        left: 20px;

        margin-left: 0;

        bottom: 22px;
    }

}


@media (max-width: 575.98px) {

    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item,
    .hero-content {
        min-height: 540px;
    }

    .hero-text {
        padding: 40px 18px;
    }

    .hero-label {
        font-size: 8px;

        letter-spacing: 1.5px;
    }

    .hero-text h1 {
        font-size: 34px;

        line-height: 1.08;
    }

    .hero-text p {
        font-size: 12px;
    }

    .hero-slider .carousel-indicators button {
        width: 22px;
    }

    .hero-slider .carousel-indicators button.active {
        width: 40px;
    }

}



