*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f172a;
    color:white;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
    position:sticky;
top:0;
z-index:1000;
}

.logo-section{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-section img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #f59e0b;
}


.logo-section h2{
    color:#f59e0b;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav a{
    color:white;
    text-decoration:none;
}

.hero{
    height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    position:relative;
overflow:hidden;

    background:linear-gradient(
    135deg,
    #0f172a,
    #1e293b,
    #0f172a
);
}

.hero-content{
    max-width:900px;
}

.badge{
    background:#f59e0b;
    color:black;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 0 25px rgba(245,158,11,.4);
}

.hero h1{
    font-size:4rem;
    margin-top:25px;
    text-shadow:0 0 25px rgba(245,158,11,.4);
    letter-spacing:-2px;
}

.hero h1 span{
    background:linear-gradient(90deg,#f59e0b,#ffd166);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero{
    min-height:90vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
}
.buttons{
    margin-top:35px;
}
.btn{
    display:inline-block;
    padding:15px 35px;
    background:#f59e0b;
    color:black;
    text-decoration:none;
    border-radius:10px;
    font-weight:700;
    margin:10px;
    transition:0.3s;
    box-shadow:0 0 20px rgba(245,158,11,.4);
}


.btn2{
    background:transparent;
    border:2px solid #f59e0b;
    color:white;
}
.courses{
    padding:100px 8%;
}

.courses h2{
    text-align:center;
    font-size:3rem;
    color:#f59e0b;
    margin-bottom:50px;
}

.course-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:rgba(255,255,255,0.05);
    padding:35px;
    border-radius:20px;
    backdrop-filter:blur(15px);
    transition:.3s;
    border:1px solid rgba(255,255,255,0.1);
}

.card:hover{
    transform:translateY(-10px);
    border-color:#f59e0b;
}

.card h3{
    color:#f59e0b;
    margin-bottom:10px;
}

html{
    scroll-behavior:smooth;
}
.features{
    padding:100px 8%;
}

.features h2{
    text-align:center;
    font-size:3rem;
    color:#f59e0b;
    margin-bottom:50px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.feature-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    padding:30px;
    border-radius:20px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#f59e0b;
}

.feature-card h3{
    color:#f59e0b;
    margin-bottom:15px;
}
.hero-image img{
    width:300px;
    height:auto;
    border-radius:20px;
}
.btn:hover{
    transform:translateY(-5px);
}
.whatsapp-btn{
    position:fixed;
    bottom:20px;
    right:20px;
    width:70px;
    height:70px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:35px;
    text-decoration:none;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
}
.admission{
    padding:100px 8%;
    text-align:center;
}

.admission h2{
    color:#f59e0b;
    font-size:3rem;
    margin-bottom:40px;
}

.admission form{
    max-width:600px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.admission input,
.admission select{
    padding:15px;
    border:none;
    border-radius:10px;
    font-size:16px;
}
.card,
.feature-card{
    transition:0.4s ease;
}

.card:hover,
.feature-card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 10px 30px rgba(245,158,11,0.2);
}
footer{
    margin-top:80px;
    padding:50px 20px;
    text-align:center;
    background:rgba(255,255,255,0.03);
    border-top:1px solid rgba(255,255,255,0.1);
}

footer h2{
    color:#f59e0b;
    margin-bottom:15px;
}

footer p{
    margin:8px 0;
    color:#cbd5e1;
}
.hero::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(245,158,11,0.08);
    border-radius:50%;
    top:-150px;
    right:-100px;
    filter:blur(80px);
}
.card,box-shadow:0 8px 30px rgba(0,0,0,);
.feature-card{
    opacity:0;
    transform:translateY(40px);
    transition:all .6s ease;
    background:rgba(255,255,255,0.08);
}
@media(max-width:768px){

    .hero h1{
        font-size:2.5rem;
    }

    nav{
        flex-direction:column;
        gap:15px;
        position:sticky;
top:0;
z-index:1000;
    }

    nav ul{
        gap:15px;
    }

}
.hero-image img{
    width:450px;
    border-radius:25px;
    box-shadow:0 0 40px rgba(245,158,11,.25);
}
#theme-toggle{
    padding:10px 15px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    background:#f59e0b;
    font-size:18px;
    font-weight:bold;
}

.light-mode{
    background:white;
    color:black;
}

.light-mode nav{
    background:#f1f5f9;
}

.light-mode .card,
.light-mode .feature-card,
.light-mode .stat-box{
    background:#ffffff;
    color:black;
}
.app-section{
    text-align:center;
}
nav a{
    transition:0.3s;
}

nav a:hover{
    color:#f59e0b;
}
.btn{
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 0 30px rgba(245,158,11,.8);
}
.hero-image img{
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }
}
border:3px solid rgba(245,158,11,.3);
box-shadow:0 0 50px rgba(245,158,11,.25);

footer a{
    color:#f59e0b;
    text-decoration:none;
}

footer a:hover{
    text-decoration:underline;
}
html{
    scroll-behavior:smooth;
}
.hero-content{
    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
nav a{
    position:relative;
}

nav a::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    background:#f59e0b;
    left:0;
    bottom:-5px;
    transition:0.3s;
}

nav a:hover::after{
    width:100%;
}
.hero-image img{
    transition:0.5s;
}

.hero-image img:hover{
    transform:scale(1.05);
}
/* Mobile Responsive */

@media(max-width:768px){

    .hero{
        flex-direction:column;
        text-align:center;
        padding:40px 20px;
    }

    .hero-content{
        width:100%;
    }

    .hero h1{
        font-size:2.5rem;
    }

    .hero p{
        font-size:1rem;
    }

    .hero-image img{
        width:90%;
        max-width:350px;
        margin-top:30px;
    }

    .buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .btn{
        width:220px;
    }

    nav{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        gap:15px;
    }
}
.founders{
    padding:80px 8%;
    text-align:center;
}

.founders h2{
    color:#f59e0b;
    font-size:3rem;
    margin-bottom:40px;
}

.founder-box{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    padding:25px;
    border-radius:20px;
    margin:20px auto;
    max-width:500px;
    transition:.3s;
}

.founder-box:hover{
    transform:translateY(-8px);
    border-color:#f59e0b;
}

.founder-box h3{
    color:#f59e0b;
    margin-bottom:10px;
}