*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f4f8ff;
    color:#222;
}


/* ================= NAVBAR ================= */

/* ===== Logo ===== */

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{

    width:85px;

    height:85px;

    object-fit:contain;

}

.logo-text h2{

    color:#fff;

    font-size:22px;

    margin:0;

    font-weight:700;

}

.logo-text span{

    color:#FFD54F;

    font-size:13px;

}


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

.hero{
    min-height:90vh;
    background:linear-gradient(135deg,#0B3D91,#2563EB);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 8%;
    color:#fff;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    width:100%;
    max-width:1200px;
}

.hero-left{
    flex:1;
}

.hero-left h1{
    font-size:56px;
    line-height:1.2;
    margin-bottom:20px;
}

.tagline{
    font-size:22px;
    color:#FFD54F;
    margin-bottom:15px;
}

.courses{
    font-size:18px;
    margin-bottom:30px;
    line-height:1.7;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
    margin-left:15px;
}

.whatsapp-btn:hover{
    background:#1EBE5D;
}



.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-logo{
    width:420px;
    max-width:100%;
    filter:drop-shadow(0 20px 40px rgba(0,0,0,.35));
    animation:float 4s ease-in-out infinite;
}

/* Floating animation */

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

}

/* Mobile */

@media(max-width:768px){

    .hero-content{
        flex-direction:column;
        text-align:center;
    }

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

    .hero-logo{
        width:260px;
    }

}

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

.about-section{
    padding:80px 8%;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.about-content p{
    margin-bottom:18px;
    line-height:1.8;
    color:#444;
}

.highlight-box{
    background:#fff;
    border-left:5px solid #0B3D91;
    padding:18px 20px;
    border-radius:12px;
    margin-top:20px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.highlight-box h3{
    color:#0B3D91;
    margin-bottom:10px;
}

.highlight-box p{
    margin-bottom:8px;
}

/* Mobile */

@media(max-width:768px){

    .about-container{
        grid-template-columns:1fr;
    }

}
.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:#0B3D91;
    color:#fff;
    position:sticky;
    top:0;
    z-index:999;
}


.nav a{
    color:#fff;
    text-decoration:none;
    margin-left:18px;
    font-weight:600;
}

.nav a:hover{
    color:#FFC107;
}



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

.hero{
    height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#0B3D91,#2563EB);
    color:#fff;
    text-align:center;
}

.btn{
    display:inline-block;
    background:#FFC107;
    color:#000;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    margin-top:20px;
}

/* ================= SECTION TITLE ================= */

.section-title{
    text-align:center;
    margin-top:60px;
}

.section-title h2{
    color:#0B3D91;
    font-size:34px;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
}

/* ================= GRID ================= */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    padding:40px 8%;
}

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

.card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(0,0,0,.10);
    transition:transform .3s ease, box-shadow .3s ease;
}

.card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.20);
    z-index:999;

}
.card h3{
    color:#0B3D91;
    margin-bottom:12px;
}

.card p{
    color:#555;
    line-height:1.7;
}

.card a{
    color:#0B3D91;
    text-decoration:none;
    font-weight:bold;
}

.card a:hover{
    color:#FFC107;
}
/* ================= COUNTER ================= */

.counter-section{

    background:#ffffff;

    padding:70px 8%;

}

.counter-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.counter-box{

    background:#0B3D91;

    color:#fff;

    padding:35px 20px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

}

.counter-box:hover{

    transform:translateY(-8px);

    background:#2563EB;

}

.counter-box h2{

    font-size:48px;

    color:#FFC107;

    margin-bottom:10px;

}

.counter-box p{

    font-size:18px;

    font-weight:600;

}
/* ================= FOOTER ================= */

footer{
    background:#0B3D91;
    color:#fff;
    text-align:center;
    padding:30px;
}

footer p{
    color:#fff;
    margin-top:8px;
}

footer a{
    color:#FFC107;
    text-decoration:none;
}