/*=========================================================
GOOGLE FONT
=========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#f7faff;

    overflow-x:hidden;

}

/*=========================================================
ROOT COLORS
=========================================================*/

:root{

    --primary:#0b2341;

    --secondary:#0f6fff;

    --gradient:linear-gradient(135deg,#0f6fff,#00c2ff);

    --text:#666;

    --white:#fff;

}

/*=========================================================
ABOUT SECTION
=========================================================*/

.about-school{

    padding:110px 7%;

    position:relative;

    overflow:hidden;

}

/* BACKGROUND GLOW */

.about-school::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(15,111,255,.10);

    border-radius:50%;

    filter:blur(120px);

    left:-150px;

    top:-150px;

}

.about-school::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(0,194,255,.10);

    border-radius:50%;

    filter:blur(120px);

    right:-150px;

    bottom:-150px;

}

/*=========================================================
CONTAINER
=========================================================*/

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    position:relative;

    z-index:2;

}

/*=========================================================
IMAGE
=========================================================*/

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    display:block;

    border-radius:35px;

    box-shadow:
    0 30px 70px rgba(0,0,0,.15);

    transition:.6s;

}

.about-image:hover img{

    transform:
    scale(1.05)
    rotate(-1deg);

}

/* PREMIUM BORDER */

.about-image::before{

    content:"";

    position:absolute;

    inset:-10px;

    border-radius:42px;

    background:var(--gradient);

    opacity:.15;

    z-index:-1;

}

/* FLOATING */

.about-image{

    animation:aboutFloat 5s ease-in-out infinite;

}

@keyframes aboutFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=========================================================
CONTENT
=========================================================*/

.about-content span{

    display:inline-block;

    background:#eef5ff;

    color:#0f6fff;

    padding:10px 22px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    margin-bottom:22px;

}

.about-content h2{

    font-size:48px;

    color:var(--primary);

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.about-content p{

    font-size:16px;

    line-height:2;

    color:var(--text);

    margin-bottom:18px;

}

/*=========================================================
FEATURE GRID
=========================================================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:35px;

}

/*=========================================================
FEATURE CARD
=========================================================*/

.about-feature{

    background:#fff;

    border-radius:22px;

    padding:22px;

    display:flex;

    align-items:center;

    gap:18px;

    box-shadow:
    0 18px 40px rgba(0,0,0,.06);

    border:1px solid transparent;

    transition:.45s;

}

.about-feature:hover{

    transform:
    translateY(-10px);

    border-color:#8ec5ff;

    box-shadow:
    0 30px 60px rgba(15,111,255,.18);

}

/* ICON */

.about-feature i{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--gradient);

    color:#fff;

    border-radius:18px;

    font-size:24px;

    flex-shrink:0;

}

/* TEXT */

.about-feature span{

    margin:0;

    padding:0;

    background:none;

    color:#222;

    font-size:15px;

    font-weight:600;

}
/* ==========================================================
OUR LEGACY
========================================================== */

.about-legacy{

    padding:100px 7%;

    background:linear-gradient(180deg,#ffffff,#f4f9ff);

    position:relative;

    overflow:hidden;

}

.about-legacy::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(15,111,255,.08);

    border-radius:50%;

    filter:blur(120px);

    right:-180px;

    top:-180px;

}

/* REVERSE */

.reverse{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/* ==========================================================
CHECKLIST
========================================================== */

.about-list{

    margin-top:35px;

    display:grid;

    gap:18px;

}

.about-list li{

    list-style:none;

    display:flex;

    align-items:center;

    gap:18px;

    background:#fff;

    padding:18px 22px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.about-list li:hover{

    transform:translateX(10px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.about-list i{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--gradient);

    color:#fff;

    font-size:15px;

}

/* ==========================================================
SECTION TITLE
========================================================== */

.about-title{

    text-align:center;

    margin-bottom:70px;

}

.about-title span{

    color:#0f6fff;

    font-weight:700;

    letter-spacing:1px;

}

.about-title h2{

    margin-top:18px;

    font-size:48px;

    color:#0b2341;

}

.about-title p{

    max-width:760px;

    margin:20px auto 0;

    color:#666;

    line-height:1.9;

}

/* ==========================================================
WHY CHOOSE
========================================================== */

.about-highlights{

    padding:110px 7%;

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* ==========================================================
CARD
========================================================== */

.about-card{

    background:#fff;

    border-radius:28px;

    padding:40px 30px;

    position:relative;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.06);

    transition:.45s;

}

.about-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:var(--gradient);

    transform:scaleX(0);

    transition:.45s;

}

.about-card:hover::before{

    transform:scaleX(1);

}

.about-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 70px rgba(15,111,255,.18);

}

.about-card i{

    width:75px;

    height:75px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    background:var(--gradient);

    color:#fff;

    font-size:30px;

    margin-bottom:25px;

}

.about-card h3{

    color:#0b2341;

    font-size:24px;

    margin-bottom:18px;

}

.about-card p{

    color:#666;

    line-height:1.9;

    font-size:15px;

}

.about-card::after{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    background:rgba(15,111,255,.08);

    border-radius:50%;

    right:-60px;

    bottom:-60px;

    transition:.45s;

}

.about-card:hover::after{

    transform:scale(1.35);

}

/* ==========================================================
CORE VALUES
========================================================== */

.core-values{

    padding:110px 7%;

    background:#f7fbff;

}

.values-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.value-card{

    background:#fff;

    padding:35px 28px;

    border-radius:28px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.06);

    transition:.45s;

}

.value-card:hover{

    transform:translateY(-12px);

}

.value-card i{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--gradient);

    color:#fff;

    font-size:30px;

}

.value-card h3{

    color:#0b2341;

    margin-bottom:15px;

}

.value-card p{

    color:#666;

    line-height:1.8;

}

/* ==========================================================
TIMELINE
========================================================== */

.school-timeline{

    padding:110px 7%;

    background:#fff;

}

.timeline{

    position:relative;

    max-width:900px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:25px;

    top:0;

    bottom:0;

    width:4px;

    background:var(--gradient);

}

.timeline-item{

    position:relative;

    padding-left:80px;

    margin-bottom:45px;

}

.timeline-item::before{

    content:"";

    position:absolute;

    left:10px;

    top:8px;

    width:32px;

    height:32px;

    border-radius:50%;

    background:var(--gradient);

    border:6px solid #fff;

    box-shadow:0 10px 25px rgba(15,111,255,.25);

}

.timeline-item h3{

    color:#0b2341;

    margin-bottom:10px;

    font-size:24px;

}

.timeline-item p{

    color:#666;

    line-height:1.9;

}
/*=========================================================
ADMISSION CTA
=========================================================*/

.about-cta{

    padding:110px 7%;

    position:relative;

    overflow:hidden;

}

.about-cta-box{

    position:relative;

    overflow:hidden;

    border-radius:35px;

    padding:80px 70px;

    text-align:center;

    background:
    linear-gradient(
    135deg,
    #071b34,
    #0f6fff,
    #00b8ff);

    box-shadow:
    0 35px 80px rgba(0,0,0,.18);

}

/*==========================================
FLOATING BLOBS
==========================================*/

.about-cta-box::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:
    rgba(255,255,255,.10);

    border-radius:50%;

    top:-90px;

    right:-90px;

    filter:blur(18px);

    animation:blobOne 8s infinite alternate;

}

.about-cta-box::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:
    rgba(0,194,255,.20);

    border-radius:50%;

    left:-90px;

    bottom:-90px;

    filter:blur(18px);

    animation:blobTwo 8s infinite alternate;

}

/*==========================================
HEADING
==========================================*/

.about-cta-box h2{

    position:relative;

    z-index:2;

    color:#fff;

    font-size:52px;

    font-weight:800;

    margin-bottom:22px;

}

/*==========================================
TEXT
==========================================*/

.about-cta-box p{

    position:relative;

    z-index:2;

    color:#eef7ff;

    font-size:17px;

    line-height:2;

    max-width:850px;

    margin:auto;

}

/*==========================================
BUTTON
==========================================*/

.about-btn{

    position:relative;

    z-index:2;

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:40px;

    padding:18px 45px;

    border-radius:60px;

    background:#fff;

    color:#0f6fff;

    text-decoration:none;

    font-weight:700;

    transition:.45s;

    box-shadow:
    0 18px 45px rgba(255,255,255,.20);

}

.about-btn:hover{

    background:#0b2341;

    color:#fff;

    transform:
    translateY(-8px);

}

/*==========================================
FLOAT ANIMATION
==========================================*/

@keyframes blobOne{

    from{

        transform:
        translateY(0)
        scale(1);

    }

    to{

        transform:
        translateY(35px)
        scale(1.18);

    }

}

@keyframes blobTwo{

    from{

        transform:
        translateX(0);

    }

    to{

        transform:
        translateX(35px);

    }

}

/*==========================================
CUSTOM SCROLLBAR
==========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#eef5ff;

}

::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
    #0f6fff,
    #00b8ff);

    border-radius:50px;

}

/*==========================================
TABLET
==========================================*/

@media(max-width:992px){

    .about-container,

    .reverse{

        grid-template-columns:1fr;

        gap:55px;

    }

    .reverse .about-content{

        order:2;

    }

    .reverse .about-image{

        order:1;

    }

    .about-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .values-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .about-content h2{

        font-size:40px;

    }

    .about-title h2{

        font-size:40px;

    }

    .about-cta-box h2{

        font-size:40px;

    }

}

/*==========================================
MOBILE
==========================================*/

@media(max-width:576px){

    .about-school,

    .about-legacy,

    .about-highlights,

    .core-values,

    .school-timeline,

    .about-cta{

        padding:70px 5%;

    }

    .about-container{

        gap:40px;

    }

    .about-content h2{

        font-size:30px;

    }

    .about-content p{

        font-size:14px;

    }

    .about-image img{

        border-radius:22px;

    }

    .about-features{

        grid-template-columns:1fr;

    }

    .about-grid{

        grid-template-columns:1fr;

    }

    .values-grid{

        grid-template-columns:1fr;

    }

    .about-title h2{

        font-size:30px;

    }

    .about-title p{

        font-size:14px;

    }

    .timeline-item{

        padding-left:60px;

    }

    .timeline::before{

        left:18px;

    }

    .timeline-item::before{

        left:4px;

    }

    .about-cta-box{

        padding:50px 25px;

    }

    .about-cta-box h2{

        font-size:28px;

    }

    .about-cta-box p{

        font-size:14px;

    }

    .about-btn{

        width:100%;

        justify-content:center;

        padding:16px;

    }

}

/*==========================================
SMOOTH ANIMATION
==========================================*/

.about-content{

    animation:fadeAbout .8s ease;

}

@keyframes fadeAbout{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==========================================
GLOBAL HOVER
==========================================*/

.about-image img,
.about-card,
.about-feature,
.value-card,
.about-btn{

    transition:all .45s ease;

}