*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f8ff;
    color:#001f5b;
    overflow-x:hidden;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* IMAGE FIX */

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* BACKGROUND */

.bg-animation{
    position:fixed;
    width:100%;
    height:100%;
    overflow:hidden;
    z-index:-1;
}

.bg-animation span{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    animation:move 15s linear infinite;
}

.bg-animation span:nth-child(1){
    width:400px;
    height:400px;
    background:#ff7a0035;
    top:-100px;
    left:-100px;
}

.bg-animation span:nth-child(2){
    width:350px;
    height:350px;
    background:#001f5b35;
    right:-100px;
    top:20%;
}

.bg-animation span:nth-child(3){
    width:300px;
    height:300px;
    background:#ffb34735;
    bottom:-100px;
    left:30%;
}

@keyframes move{

    0%{
        transform:translateY(0px) rotate(0deg);
    }

    50%{
        transform:translateY(-50px) rotate(180deg);
    }

    100%{
        transform:translateY(0px) rotate(360deg);
    }

}

/* HEADER */

.header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(255,255,255,0.2);
}

.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 0;
}

.logo img{
    height:75px;
}

/* MENU */

.menu{
    display:flex;
    list-style:none;
    gap:35px;
}

.menu a{
    text-decoration:none;
    color:#001f5b;
    font-weight:600;
    transition:.3s;
}

.menu a:hover{
    color:#ff7a00;
}

/* BUTTON */

.btn{
    padding:14px 30px;
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
    position:relative;
    overflow:hidden;
}

.btn::before{
    content:'';
    position:absolute;
    width:50px;
    height:300%;
    background:rgba(255,255,255,0.4);
    top:-100%;
    left:-120px;
    transform:rotate(25deg);
    transition:.8s;
}

.btn:hover::before{
    left:120%;
}

.btn-outline{
    padding:14px 30px;
    border:2px solid #001f5b;
    color:#001f5b;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
}

/* MOBILE */

.mobile-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

.mobile-menu{
    position:fixed;
    top:90px;
    right:-100%;
    width:260px;
    background:#001f5b;
    display:flex;
    flex-direction:column;
    gap:20px;
    padding:30px;
    transition:.4s;
    z-index:999;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{
    color:#fff;
    text-decoration:none;
}

/* HERO */

.hero{
    padding:180px 0 100px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.tag{
    background:#eaf1ff;
    padding:10px 20px;
    border-radius:40px;
    display:inline-block;
    font-weight:600;
}

.hero-content h1{
    font-size:68px;
    line-height:1.1;
    margin:25px 0;
}

.hero-content h1 span{
    background:linear-gradient(90deg,#ff7a00,#ffb347);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    color:#555;
    font-size:18px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin:40px 0;
}

.stats{
    display:flex;
    gap:40px;
}

.stat-box h2{
    color:#ff7a00;
    font-size:40px;
}

.image-card{
    background:#fff;
    padding:20px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
    animation:float 4s infinite ease-in-out;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* SECTION */

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title.left{
    text-align:left;
}

.section-title h2{
    font-size:50px;
}

.section-title p{
    color:#666;
}

/* COURSE */

.course-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.course-card{
    background:#fff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:.4s;
}

.course-card:hover{
    transform:translateY(-10px);
}

.active{
    background:linear-gradient(135deg,#001f5b,#003399);
    color:#fff;
}

.course-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
}

.blue{
    background:#eaf1ff;
    color:#001f5b;
}

.orange{
    background:#fff1e4;
    color:#ff7a00;
}

/* WHY */

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.why-image img{
    border-radius:30px;
}

.why-box{
    background:#fff;
    padding:25px;
    border-radius:20px;
    display:flex;
    gap:20px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.why-box i{
    width:60px;
    height:60px;
    border-radius:15px;
    background:#001f5b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* SCHOLARSHIP */

.scholarship-card{
    background:linear-gradient(135deg,#001f5b,#003399);
    padding:60px;
    border-radius:35px;
    color:#fff;
    display:flex;
    justify-content:space-between;
    gap:40px;
}

.scholarship-card h2{
    font-size:55px;
    margin:20px 0;
}

.scholarship-card h2 span{
    color:#ffb347;
}

.scholarship-date{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.date-box{
    background:#fff;
    color:#001f5b;
    padding:25px;
    border-radius:20px;
    text-align:center;
}

.date-box i{
    color:#ff7a00;
    font-size:30px;
    margin-bottom:10px;
}

/* CONTACT */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.contact-box{
    background:#fff;
    padding:40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.contact-box i{
    font-size:40px;
    color:#ff7a00;
    margin-bottom:20px;
}

/* FOOTER */

.footer{
    background:#001f5b;
    padding:80px 0;
    color:#fff;
    text-align:center;
}

.footer img{
    height:80px;
    margin-bottom:20px;
}

.socials{
    display:flex;
    justify-content:center;
    gap:20px;
    margin:25px 0;
}

.socials a{
    width:50px;
    height:50px;
    border-radius:15px;
    background:#0b2b7d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

/* =====================================
 RESPONSIVE
===================================== */

@media(max-width:1024px){

    .hero-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .course-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .menu,
    .btn{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .hero{
        padding-top:140px;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-buttons a{
        width:100%;
        text-align:center;
    }

    .stats{
        flex-direction:column;
        align-items:center;
        gap:20px;
    }

    .course-grid{
        grid-template-columns:1fr;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-box{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .scholarship-card{
        flex-direction:column;
        text-align:center;
        padding:40px 25px;
    }

    .scholarship-card h2{
        font-size:38px;
    }

    .section-title.left{
        text-align:center;
    }

}

@media(max-width:576px){

    .logo img{
        height:55px;
    }

    .hero{
        padding:120px 0 70px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .section-title h2{
        font-size:32px;
    }

    .course-card,
    .contact-box{
        padding:30px 20px;
    }

    .scholarship-card h2{
        font-size:30px;
    }

}

@media(max-width:400px){

    .hero-content h1{
        font-size:28px;
    }

    .section-title h2{
        font-size:28px;
    }

}