* {
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
}

:root {
    --primary: #1a5f7a;
    --secondary: #57cc99;
    --accent: #ff9a3c;
    --light: #f8f9fa;
    --dark: #2d3436;
    --gray: #6c757d;
    --border: #eaecf0;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}
.apply-section-logo {
      width: 180px;
    height: 180px;

    padding: 5px;

    border-radius: 50%;
    overflow: hidden;

    margin: 0 auto 25px;

    background: linear-gradient(
        135deg,
        #1a5f7a,
        #57cc99,
        #ff9a3c,
        #845ec2
    );

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
}

.apply-section-logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    border-radius: 50%;

    border: 4px solid #fff;
}
/* =========================================================
   A3 PROGRESSIVE - ABOUT OUR SCHOOL
========================================================= */

.school-about-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(87, 204, 153, 0.18),
            transparent 23%
        ),
        radial-gradient(
            circle at 95% 15%,
            rgba(255, 154, 60, 0.16),
            transparent 23%
        ),
        radial-gradient(
            circle at 85% 90%,
            rgba(132, 94, 194, 0.14),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #effaff,
            #ffffff,
            #f4fff8
        );
}


/* =========================================================
   HEADING
========================================================= */

.school-about-heading {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.about-kicker {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 50px;

    color: #ff7a00;

    background: rgba(255, 154, 60, 0.12);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.school-about-heading h2 {
    font-size: 45px;

    line-height: 1.15;

    color: #2d3436;

    margin-bottom: 15px;
}

.school-about-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #1a5f7a,
        #57cc99,
        #ff9a3c
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-intro {
    color: #6c757d;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   A3 PROGRESSIVE - BEAUTIFUL ABOUT SECTION
========================================================= */

.school-about-section {
    position: relative;
    overflow: hidden;

    padding: 120px 0;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(87, 204, 153, 0.20),
            transparent 22%
        ),
        radial-gradient(
            circle at 92% 12%,
            rgba(255, 154, 60, 0.18),
            transparent 22%
        ),
        radial-gradient(
            circle at 85% 88%,
            rgba(132, 94, 194, 0.14),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #edfaff 0%,
            #ffffff 45%,
            #f3fff8 100%
        );
}


/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.about-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-one {
    width: 350px;
    height: 350px;

    top: -150px;
    right: -100px;

    background: rgba(87, 204, 153, 0.08);
}

.shape-two {
    width: 220px;
    height: 220px;

    bottom: -100px;
    left: -70px;

    background: rgba(255, 154, 60, 0.09);
}

.shape-three {
    width: 120px;
    height: 120px;

    top: 45%;
    left: 45%;

    background: rgba(132, 94, 194, 0.06);
}


/* =========================================================
   HEADER
========================================================= */

.about-hero-heading {
    position: relative;
    z-index: 2;

    max-width: 800px;

    margin: 0 auto 75px;

    text-align: center;
}


.about-top-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 18px;

    border-radius: 50px;

    background: rgba(255, 154, 60, 0.12);

    color: #f07d00;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.about-hero-heading h2 {
    color: #2d3436;

    font-size: 46px;

    line-height: 1.1;

    margin-bottom: 16px;
}


.about-hero-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #1a5f7a,
        #168aad,
        #57cc99,
        #ff9a3c
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.about-intro {
    color: #6c757d;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   MAIN ABOUT
========================================================= */

.about-main {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 75px;

    align-items: center;
}


/* =========================================================
   IMAGE
========================================================= */

.about-image-side {
    position: relative;
}


.about-image-frame {
    position: relative;

    width: 100%;
    height: 540px;

    overflow: hidden;

    border-radius: 32px;

    border: 8px solid #ffffff;

    box-shadow:
        0 25px 60px rgba(26, 95, 122, 0.18);
}


.about-image-frame img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.about-image-frame:hover img {
    transform: scale(1.08);
}


.image-shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.55),
            transparent 45%
        );
}


/* =========================================================
   ESTABLISHED BADGE
========================================================= */

.established-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 20px;

    border-radius: 17px;

    background: rgba(26,95,122,0.94);

    color: #ffffff;

    backdrop-filter: blur(8px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.18);
}


.badge-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #ff9a3c,
        #ff6b6b
    );
}


.established-badge strong {
    display: block;

    color: #ffe082;

    font-size: 25px;

    line-height: 1;
}


.established-badge span {
    font-size: 11px;

    color: rgba(255,255,255,0.80);
}


/* =========================================================
   FLOATING CARD
========================================================= */

.about-floating-card {
    position: absolute;

    right: -25px;
    top: 60px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 15px 30px rgba(0,0,0,0.12);
}


.floating-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #57cc99,
        #168aad
    );
}


.about-floating-card strong {
    display: block;

    color: #2d3436;

    font-size: 14px;
}


.about-floating-card span {
    display: block;

    color: #8a959b;

    font-size: 11px;
}


/* =========================================================
   TEXT
========================================================= */

.about-text-side {
    position: relative;

    max-width: 650px;
}


.story-label {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #57cc99;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.about-text-side h3 {
    color: #2d3436;

    font-size: 42px;

    line-height: 1.12;

    margin-bottom: 22px;
}


.about-text-side h3 span {
    display: block;

    color: #1a5f7a;
}


.about-text-side > p {
    color: #6c757d;

    font-size: 15px;

    line-height: 1.85;

    margin-bottom: 17px;
}


.about-text-side > p strong {
    color: #1a5f7a;
}


/* =========================================================
   SCHOOL DETAILS
========================================================= */

.about-details {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 28px;
}


.about-detail-card {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px;

    border-radius: 15px;

    background: #ffffff;

    border: 1px solid #edf1f3;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.04);

    transition: 0.3s;
}


.about-detail-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 25px rgba(0,0,0,0.08);
}


.detail-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: #ffffff;

    font-size: 17px;
}


.detail-icon.founder {
    background: linear-gradient(
        135deg,
        #1a5f7a,
        #168aad
    );
}


.detail-icon.year {
    background: linear-gradient(
        135deg,
        #57cc99,
        #00b894
    );
}


.about-detail-card small {
    display: block;

    color: #8a959b;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 3px;
}


.about-detail-card h4 {
    color: #2d3436;

    font-size: 14px;

    line-height: 1.4;
}


/* =========================================================
   MOTTO
========================================================= */

.motto-card {
    display: flex;

    align-items: center;

    gap: 15px;

    margin: 18px 0 28px;

    padding: 17px 20px;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            rgba(255,154,60,0.11),
            rgba(255,107,107,0.07)
        );

    border: 1px solid rgba(255,154,60,0.16);
}


.motto-symbol {
    width: 50px;
    height: 50px;

    min-width: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #ff9a3c,
        #ff6b6b
    );

    color: #ffffff;
}


.motto-card small {
    display: block;

    color: #f07d00;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 3px;
}


.motto-card h4 {
    color: #2d3436;

    font-size: 15px;

    margin-bottom: 2px;
}


.motto-card p {
    color: #8a959b;

    font-size: 11px;
}


/* =========================================================
   ACTION BUTTON
========================================================= */

.about-action-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 27px;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #1a5f7a,
        #57cc99
    );

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(26,95,122,0.18);

    transition: 0.3s;
}


.about-action-btn:hover {
    color: #ffffff;

    transform: translateY(-4px);

    background: linear-gradient(
        135deg,
        #ff9a3c,
        #ff6b6b
    );
}


.about-action-btn i {
    transition: 0.3s;
}


.about-action-btn:hover i {
    transform: translateX(6px);
}


/* =========================================================
   VISION / MISSION / PHILOSOPHY
========================================================= */

.about-cards {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 90px;
}


.about-info-card {
    position: relative;

    padding: 32px;

    border-radius: 23px;

    background: #ffffff;

    border: 1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.06);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.about-info-card:hover {
    transform: translateY(-9px);

    box-shadow:
        0 22px 42px rgba(0,0,0,0.10);
}


.about-info-card::after {
    content: "";

    position: absolute;

    right: -40px;
    bottom: -50px;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    opacity: 0.09;
}


.vision-card::after {
    background: #168aad;
}


.mission-card::after {
    background: #00b894;
}


.philosophy-card::after {
    background: #845ec2;
}


/* Card top */

.info-card-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 22px;
}


.info-card-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: #ffffff;

    font-size: 21px;
}


.vision-card .info-card-icon {
    background: linear-gradient(
        135deg,
        #1a5f7a,
        #168aad
    );
}


.mission-card .info-card-icon {
    background: linear-gradient(
        135deg,
        #57cc99,
        #00b894
    );
}


.philosophy-card .info-card-icon {
    background: linear-gradient(
        135deg,
        #845ec2,
        #5f27cd
    );
}


.info-card-top > span {
    color: #d7dde1;

    font-size: 28px;

    font-weight: 900;
}


.about-info-card h3 {
    color: #2d3436;

    font-size: 22px;

    margin-bottom: 10px;
}


.about-info-card p {
    position: relative;
    z-index: 2;

    color: #6c757d;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CORE VALUES
========================================================= */

.values-section {
    position: relative;
    z-index: 2;

    margin-top: 80px;

    padding: 50px;

    border-radius: 27px;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #123f52,
        #1a5f7a,
        #168aad,
        #57cc99
    );

    box-shadow:
        0 20px 45px rgba(26,95,122,0.20);
}


.values-heading {
    text-align: center;

    margin-bottom: 35px;
}


.values-heading span {
    color: #ffe082;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;
}


.values-heading h3 {
    color: #ffffff;

    font-size: 30px;

    margin-top: 5px;
}


.values-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 13px;
}


.value-box {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 14px 10px;

    border-radius: 11px;

    background: rgba(255,255,255,0.11);

    border: 1px solid rgba(255,255,255,0.10);

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    transition: 0.3s;
}


.value-box:hover {
    transform: translateY(-4px);

    background: rgba(255,255,255,0.22);
}


.value-box i {
    color: #ffe082;
}


/* =========================================================
   MOTTO BANNER
========================================================= */

.about-motto-banner {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 60px;

    padding: 28px 32px;

    border-radius: 22px;

    background: linear-gradient(
        135deg,
        #ff9a3c,
        #ff6b6b,
        #845ec2
    );

    color: #ffffff;

    box-shadow:
        0 18px 40px rgba(132,94,194,0.20);
}


.motto-banner-icon {
    width: 65px;
    height: 65px;

    min-width: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255,255,255,0.18);

    font-size: 26px;
}


.motto-banner-text span {
    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    color: rgba(255,255,255,0.80);
}


.motto-banner-text h3 {
    color: #ffffff;

    font-size: 24px;

    margin: 4px 0;
}


.motto-banner-text p {
    color: rgba(255,255,255,0.82);

    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-main {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-text-side {
        max-width: 100%;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .school-about-section {
        padding: 75px 0;
    }

    .about-hero-heading {
        margin-bottom: 45px;
    }

    .about-hero-heading h2 {
        font-size: 31px;
    }

    .about-image-frame {
        height: 350px;

        border-width: 5px;

        border-radius: 22px;
    }

    .about-floating-card {
        right: 10px;
        top: 25px;
    }

    .about-text-side h3 {
        font-size: 30px;
    }

    .about-details {
        grid-template-columns: 1fr;
    }

    .values-section {
        padding: 30px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-motto-banner {
        flex-direction: column;

        text-align: center;

        padding: 30px 20px;
    }

    .motto-banner-text h3 {
        font-size: 20px;
    }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 400px) {

    .values-grid {
        grid-template-columns: 1fr;
    }

}