*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

:root{

    --navy:#14264d;
    --gold:#f7b733;
    --bg:#faf8f5;
}

body{

    background:var(--bg);
    overflow-x:hidden;
}

/* ======================
   HEADER
====================== */

.header{

    width:100%;
    position:absolute;
    top:0;
    left:0;
    z-index:1000;
}

.navbar{

    height:110px;

    background:white;

    border-bottom-right-radius:45px;

    display:flex;

    justify-content:space-between;
    align-items:center;

    padding:0 40px;
}

.logo{

    display:flex;
    align-items:center;
    gap:15px;
}

.logo h1{

    font-size:4rem;
    font-weight:400;
    color:var(--navy);
}

.logo span{

    font-size:1.2rem;
    letter-spacing:1px;
}

.nav-links{

    list-style:none;

    display:flex;

    gap:50px;
}

.nav-links a{

    text-decoration:none;
    color:#111;

    font-weight:700;
}

.nav-links a:hover{
    font-weight:bolder;
    background-color:#9fd4ff;
    border-radius: 10px;
    padding: 5px;                                                               
}


.apply-btn{

    background:var(--navy);

    color:white;

    text-decoration:none;

    padding:18px 42px;

    border-radius:50px;

    font-weight:700;
}

/* ======================
   HERO
====================== */

.hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:
    46%
    54%;

    align-items:center;
}

/* LEFT */

.hero-left{

    padding-left:85px;
    padding-top:100px;
}

.spark{

    display:flex;

    gap:12px;

    margin-left:520px;
    margin-bottom:25px;
}

.spark span{

    background:var(--gold);

    width:8px;
    height:55px;

    border-radius:50px;
}

.spark span:nth-child(1){

    transform:rotate(-25deg);
}

.spark span:nth-child(3){

    transform:rotate(25deg);
}

.hero-left h1{

    color:var(--navy);

    font-size:3.6rem;

    line-height:1.05;

    font-weight:800;

    margin-bottom:35px;
}

.hero-left p{

    max-width:520px;

    font-size:1.25rem;

    line-height:1.8;

    font-weight:600;

    font-style:italic;

    margin-bottom:45px;
}

.hero-buttons{

    display:flex;

    align-items:center;

    gap:35px;
}

.discover-btn{

    background:var(--navy);

    color:white;

    text-decoration:none;

    padding:22px 50px;

    border-radius:60px;

    font-weight:600;
}

.watch-btn{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    color:black;

    font-weight:700;
}

.play-circle{

    width:55px;
    height:55px;

    border-radius:50%;

    border:1px solid var(--navy);

    display:flex;

    justify-content:center;
    align-items:center;
}

/* RIGHT */

.hero-right{

    position:relative;

    height:100vh;

    display:flex;

    align-items:flex-end;
}

/* SVG-LIKE CURVE */

.hero-image{

    width:100%;
    height:88%;

    overflow:hidden;

    border-top-left-radius:320px;
    border-bottom-left-radius:220px;

    position:relative;
}

.hero-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

/* PURPOSE CARD */

.purpose-card{

    position:absolute;

    left:-20px;
    bottom:0;

    width:360px;
    height:210px;

    background:var(--navy);

    border-radius:
    180px
    180px
    0
    0;

    display:flex;

    flex-direction:column;

    justify-content:center;
    align-items:center;

    color:white;

    text-align:center;
}

.purpose-icon{

    color:var(--gold);

    font-size:2rem;

    margin-bottom:15px;
}

.purpose-card h3{

    font-size:1.2rem;

    line-height:1.6;
}
/* ======================
   FEATURES SECTION
====================== */

.features{

    background:white;

    padding:80px 60px;

    position:relative;
}

.features-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:20px;
}

.feature-item{

    text-align:center;

    padding:10px 25px;

    position:relative;

    transition:.4s;
}

.feature-item:not(:last-child)::after{

    content:"";

    position:absolute;

    right:-10px;
    top:20px;

    width:1px;
    height:140px;

    background:#ececec;
}

.feature-icon{

    width:90px;
    height:90px;

    border-radius:50%;

    margin:auto auto 25px;

    display:flex;

    justify-content:center;
    align-items:center;

    font-size:2rem;
}

.academic{

    background:#ebe8ff;
    color:#6c63ff;
}

.creative{

    background:#fff4d6;
    color:#f7b733;
}

.holistic{

    background:#e7ffe9;
    color:#2db84d;
}

.global{

    background:#e5f7ff;
    color:#3d87ff;
}

.feature-item h3{

    color:var(--navy);

    font-size:1.45rem;

    font-weight:700;

    margin-bottom:15px;
}

.feature-item p{

    color:#757575;

    line-height:1.8;

    font-size:1rem;
}

.feature-item:hover{

    transform:translateY(-10px);
}

.feature-item:hover .feature-icon{

    transform:scale(1.08);
}

.feature-icon{

    transition:.4s;
}

/* ======================
   WHY SECTION
====================== */

.why-section{

    padding:120px 80px;

    background:#faf8f5;
}

.section-title{

    text-align:center;

    max-width:700px;

    margin:auto auto 70px;
}

.section-title span{

    color:#f7b733;

    font-weight:700;

    letter-spacing:3px;
}

.section-title h2{

    color:var(--navy);

    font-size:3rem;

    margin:20px 0;
}

.section-title p{

    color:#777;

    line-height:1.8;
}

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;
}

.why-card{

    background:white;

    padding:50px 30px;

    border-radius:30px;

    text-align:center;

    box-shadow:
    0 10px 40px
    rgba(0,0,0,.05);

    transition:.4s;
}

.why-card:hover{

    transform:translateY(-10px);
}

.why-card i{

    font-size:3rem;

    color:#f7b733;

    margin-bottom:25px;
}

.why-card h3{

    color:var(--navy);

    margin-bottom:15px;
}

/* ======================
   HIGHLIGHTS
====================== */

.highlights{

    background:var(--navy);

    padding:70px;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    text-align:center;
}

.highlight-box{

    color:white;
}

.highlight-box h1{

    color:#f7b733;

    font-size:4rem;
}

.highlight-box p{

    font-size:1.2rem;
}

/* ======================
   ADMISSION
====================== */

.admission{

    margin:100px;

    background:
    linear-gradient(
    135deg,
    #14264d,
    #243f73);

    padding:70px;

    border-radius:40px;

    display:flex;

    justify-content:space-between;
    align-items:center;

    color:white;
}

.admission h2{

    font-size:3rem;

    margin-bottom:20px;
}

.admission-btn{

    background:#f7b733;

    color:black;

    padding:20px 45px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;
}

/* ======================
        FOOTER
====================== */

.footer{

    background:var(--navy);

    color:white;

    margin-top:120px;
}

.footer-top{

    max-width:1400px;

    margin:auto;

    padding:80px 60px;

    display:grid;

    grid-template-columns:
    2fr
    1fr
    1fr
    1.5fr;

    gap:60px;
}

/* Logo */

.footer-logo{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;
}

.footer-logo h1{

    font-size:4rem;

    font-weight:400;

    color:var(--gold);
}

.footer-logo span{

    font-size:1.1rem;

    letter-spacing:1px;
}

.footer-col p{

    color:#d7d7d7;

    line-height:1.9;
}

/* Headings */

.footer-col h3{

    font-size:1.3rem;

    margin-bottom:25px;

    color:white;
}

/* Links */

.footer-col ul{

    list-style:none;
}

.footer-col li{

    margin-bottom:15px;
}

.footer-col a{

    color:#d7d7d7;

    text-decoration:none;

    transition:.3s;
}

.footer-col a:hover{

    color:var(--gold);

    padding-left:5px;
}

/* Social */

.social-icons{

    display:flex;

    gap:15px;

    margin-top:25px;
}

.social-icons a{

    width:45px;
    height:45px;

    background:
    rgba(255,255,255,.08);

    border-radius:50%;

    display:flex;

    justify-content:center;
    align-items:center;

    color:white;

    transition:.3s;
}

.social-icons a:hover{

    background:var(--gold);

    color:var(--navy);

    transform:translateY(-5px);
}

/* Newsletter */

.newsletter{

    margin-top:25px;

    display:flex;

    border-radius:50px;

    overflow:hidden;

    background:white;
}

.newsletter input{

    flex:1;

    border:none;

    outline:none;

    padding:16px;

    font-size:15px;
}

.newsletter button{

    border:none;

    background:var(--gold);

    padding:0 25px;

    font-weight:700;

    cursor:pointer;
}

/* Bottom */

.footer-bottom{

    border-top:
    1px solid
    rgba(255,255,255,.1);

    text-align:center;

    padding:25px;
}

.footer-bottom p{

    color:#bfbfbf;
}


/* ===================
   MOBILE MENU
=================== */

.menu-btn{

    display:none;

    width:40px;
    height:30px;

    cursor:pointer;

    flex-direction:column;

    justify-content:space-between;
}

.menu-btn span{

    width:100%;
    height:4px;

    background:var(--navy);

    border-radius:20px;

    transition:.4s;
}

.menu-btn.active span:nth-child(1){

    transform:
    rotate(45deg)
    translate(8px,8px);
}

.menu-btn.active span:nth-child(2){

    opacity:0;
}

.menu-btn.active span:nth-child(3){

    transform:
    rotate(-45deg)
    translate(8px,-8px);
}

.mobile-menu{

    position:fixed;

    top:0;
    right:-320px;

    width:300px;
    height:100vh;

    background:white;

    z-index:2000;

     padding:80px 35px 40px;

    transition:.4s;

    box-shadow:
    -5px 0 30px
    rgba(0,0,0,.1);

    display:flex;

    flex-direction:column;

    gap:25px;
}

.mobile-menu.show{

    right:0;
}

.mobile-menu a{

    text-decoration:none;

    color:var(--navy);

    font-size:1.1rem;

    font-weight:700;
}

.mobile-apply{

    background:var(--navy);

    color:white !important;

    padding:18px;

    text-align:center;

    border-radius:50px;

    margin-top:20px;
}

.overlay{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    rgba(0,0,0,.4);

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:1500;
}

.overlay.show{

    opacity:1;

    visibility:visible;
}

@media(max-width:1200px){

    .hero{

        grid-template-columns:1fr;

        padding-top:90px;
    }

    .hero-left{

        padding:60px;
        text-align:center;
    }

    .spark{

        justify-content:center;
        margin-left:0;
    }

    .hero-buttons{

        justify-content:center;
    }

    .hero-right{

        height:auto;
        display:flex;

    justify-content:center;

    position:relative;
    }

   .hero-image{

    width:100%;

    height:700px;

    margin:auto;
}

    .features-container,
    .why-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .highlights{

        grid-template-columns:
        repeat(2,1fr);

        gap:40px;
    }

    .footer-top{

        grid-template-columns:
        repeat(2,1fr);
    }
}

/* ===================================
   TABLET (769px - 960px)
=================================== */

@media (min-width:769px) and (max-width:960px){

    /* HERO */

    .hero{

        display:flex;

        flex-direction:column;

        align-items:center;

        justify-content:center;

        padding-top:100px;
    }

    /* LEFT CONTENT */

    .hero-left{

        width:100%;

        padding:40px;

        text-align:center;
    }

    .hero-buttons{

        justify-content:center;
    }

    /* IMAGE SECTION */

    .hero-right{

        width:100%;

        display:flex;

        justify-content:center;

        align-items:center;

        position:relative;

        padding:0 0 60px;
    }

    .hero-image{

        width:100% !important;

        max-width:650px;

        height:550px;

        margin:0 auto;
        margin-right: 0px;

        display:block;

        border-top-left-radius:220px;

        border-bottom-left-radius:150px;
    }

    .hero-image img{

        width:100%;

        height:100%;

        object-fit:cover;

        display:block;
    }

    /* BLUE CARD */

    .purpose-card{

        left:50% !important;

        transform:translateX(-50%);

        width:260px;

        height:160px;
    }
}

@media(max-width:768px){

    .nav-links,
    .apply-btn{

        display:none;
    }

    .menu-btn{

        display:flex;
    }

    .navbar{

        padding:0 18px;
        height:75px;
    }

    .logo h1{

        font-size:2.8rem;
    }

    .logo span{

        font-size:.8rem;
    }

    .hero{

        min-height:auto;
    }

    .hero-left{

         padding:40px 25px 30px;

        text-align:center;
    }

    .hero-left h1{

        font-size:2.7rem;
    }

    .hero-left p{

        font-size:1rem;
    }

    .hero-buttons{

        flex-direction:column;
        gap:20px;
    }

    .hero-right{

        height:auto;
    }

    .hero-image{

        height:450px;

        border-top-left-radius:180px;
        border-bottom-left-radius:120px;
    }

    .purpose-card{

        width:240px;

        height:180px;

        left:0;

        bottom:0;

        border-radius:
        120px
        120px
        0
        0;

        padding:20px;

        display:flex;

        flex-direction:column;

        justify-content:center;

        align-items:center;
    }

    .purpose-icon{

        font-size:1.6rem;

        margin-bottom:10px;
    }

    .purpose-card h3{

        font-size:1.1rem;

        line-height:1.4;

        margin:0;
    }

    .features-container,
    .why-grid,
    .highlights,
    .footer-top{

        grid-template-columns:1fr;
    }

    .feature-item::after{

        display:none;
    }

    .admission{

        margin:20px;

        padding:40px;

        flex-direction:column;

        gap:30px;

        text-align:center;
    }

    .admission h2{

        font-size:2rem;
    }

    .footer{

        text-align:center;
    }

    .social-icons{

        justify-content:center;
    }

    .newsletter{

        flex-direction:column;

        border-radius:20px;
    }

    .newsletter button{

        padding:18px;
    }
}

@media(max-width:480px){

    .hero-left h1{

        font-size:2.2rem;
    }

    .section-title h2{

        font-size:2rem;
    }

    .highlight-box h1{

        font-size:2.5rem;
    }

    .discover-btn{

        width:100%;
        text-align:center;
    }
}

