<style>
/* HEADER */

.header{
    width:100%;
    background:#fff;
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
    padding:18px 0;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.logo img{
    width:60px;
}

.logo-text h2{
    font-size:22px;
    color:#111;
    margin:0;
    font-weight:800;
}

.logo-text span{
    color:#16c95f;
    font-size:14px;
    font-weight:600;
}

.navbar{
    display:flex;
    align-items:center;
    gap:35px;
}

.navbar a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    font-size:16px;
}

.call-btn{
    background:#16c95f;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

/* DROPDOWN */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:230px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    padding:10px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.3s ease;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:12px 20px;
}

/* PAGE SPACE */

body{
    padding-top:120px;
}


*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f5f7fb;
overflow-x:hidden;
padding-top:130px;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
padding:18px 0;
transition:0.4s;
}

header.active{
background:#fff;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.navbar-brand{
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
}

.navbar-brand img{
width:72px;
}

.logo-text h3{
font-size:28px;
font-weight:800;
margin:0;
line-height:1;
color:#fff;
}

.logo-text p{
margin:0;
font-size:13px;
font-weight:700;
color:#22c55e;
}

header.active .logo-text h3{
color:#111;
}

.navbar-nav .nav-link{
color:#fff;
font-weight:600;
margin-left:18px;
transition:0.3s;
}

header.active .navbar-nav .nav-link{
color:#111;
}

.navbar-nav .nav-link:hover{
color:#22c55e;
}

.dropdown-menu{
border:none;
border-radius:18px;
padding:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.dropdown-item{
padding:10px 15px;
border-radius:10px;
font-weight:500;
}

.dropdown-item:hover{
background:#6d28ff;
color:#fff;
}

.whatsapp-btn{
background:#22c55e;
padding:13px 28px;
border-radius:50px;
color:#fff;
text-decoration:none;
font-weight:700;
margin-left:20px;
display:inline-block;
}

.whatsapp-btn:hover{
background:#0ea84b;
color:#fff;
}

/* HERO */

.hero{
min-height:100vh;
background:
linear-gradient(rgba(20,20,20,0.72),rgba(20,20,20,0.72)),
url('assets/images/front.jpg');

background-size:cover;
background-position:center;
display:flex;
align-items:center;
position:relative;
overflow:hidden;
}

.hero::before{
content:'';
position:absolute;
width:650px;
height:650px;
background:rgba(109,40,255,0.25);
border-radius:50%;
top:-220px;
right:-220px;
filter:blur(80px);
animation:move 6s infinite alternate;
}

@keyframes move{
0%{
transform:translateY(0);
}
100%{
transform:translateY(35px);
}
}

.hero-content{
position:relative;
z-index:2;
}

.hero h5{
color:#22c55e;
font-weight:700;
letter-spacing:1px;
margin-bottom:20px;
}

.hero h1{
font-size:74px;
font-weight:900;
line-height:1.15;
color:#fff;
max-width:900px;
}

.hero p{
font-size:19px;
line-height:1.9;
color:#e5e5e5;
margin-top:25px;
max-width:760px;
}

.hero-btn{
margin-top:35px;
}

.btn-main{
background:#22c55e;
padding:16px 34px;
border-radius:50px;
color:#fff;
text-decoration:none;
font-weight:700;
display:inline-block;
margin-right:15px;
transition:0.4s;
}

.btn-main:hover{
transform:translateY(-5px);
color:#fff;
}

.btn-outline-custom{
border:2px solid #fff;
padding:16px 34px;
border-radius:50px;
color:#fff;
text-decoration:none;
font-weight:700;
display:inline-block;
}

.btn-outline-custom:hover{
background:#fff;
color:#111;
}

.float-box{
position:absolute;
right:5%;
bottom:60px;
background:#fff;
padding:30px;
border-radius:25px;
width:320px;
z-index:2;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
animation:float 3s infinite ease-in-out;
}

@keyframes float{
0%{
transform:translateY(0);
}
50%{
transform:translateY(-10px);
}
100%{
transform:translateY(0);
}
}

.float-box h4{
font-weight:800;
margin-bottom:12px;
}

.float-box p{
color:#666;
font-size:15px;
line-height:1.7;
}

/* SECTION */

.section{
padding:100px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:48px;
font-weight:900;
color:#111;
}

.section-title p{
font-size:18px;
color:#666;
margin-top:15px;
}

/* COUNTER */

.counter-card{
background:#fff;
padding:40px 20px;
border-radius:25px;
text-align:center;
height:100%;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
}

.counter-card:hover{
transform:translateY(-10px);
}

.counter-card h2{
font-size:52px;
font-weight:900;
color:#6d28ff;
}

.counter-card p{
font-weight:600;
margin-top:10px;
}

/* STUDENT */

.student-area{
background:#111827;
padding:18px 0;
overflow:hidden;
}

.track{
display:flex;
width:max-content;
animation:marquee 35s linear infinite;
}

@keyframes marquee{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}

.student-card{
background:#fff;
padding:12px 18px;
border-radius:60px;
display:flex;
align-items:center;
margin-right:18px;
min-width:320px;
}

.student-card img{
width:58px;
height:58px;
border-radius:50%;
object-fit:cover;
margin-right:12px;
border:3px solid #6d28ff;
}

.student-card h6{
margin:0;
font-weight:700;
}

.student-card p{
margin:0;
font-size:13px;
color:#666;
}

/* COURSE */

.course-card{
background:#fff;
padding:40px 30px;
border-radius:25px;
height:100%;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
position:relative;
overflow:hidden;
}

.course-card:hover{
transform:translateY(-12px);
}

.course-card::before{
content:'';
position:absolute;
width:120px;
height:120px;
background:#6d28ff;
opacity:0.08;
border-radius:50%;
top:-40px;
right:-40px;
}

.course-card i{
font-size:55px;
color:#6d28ff;
margin-bottom:20px;
}

.course-card h4{
font-weight:800;
margin-bottom:10px;
}

.course-card p{
color:#666;
line-height:1.8;
}

/* WHY */

.why-box{
background:#fff;
padding:30px;
border-radius:20px;
height:100%;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.why-box i{
font-size:42px;
color:#22c55e;
margin-bottom:18px;
}

.why-box h4{
font-weight:800;
margin-bottom:10px;
}

.why-box p{
color:#666;
line-height:1.8;
}

/* GALLERY */

.gallery img{
width:100%;
height:280px;
object-fit:cover;
border-radius:22px;
margin-bottom:25px;
transition:0.4s;
}

.gallery img:hover{
transform:scale(1.04);
}

/* OWNER */

.owner{
background:linear-gradient(135deg,#6d28ff,#9333ea);
padding:60px;
border-radius:35px;
color:#fff;
overflow:hidden;
}

.owner img{
width:100%;
max-width:420px;
}

.owner h2{
font-size:48px;
font-weight:900;
}

.owner p{
line-height:1.9;
margin-top:20px;
}

/* FOOTER */

footer{
background:#0f172a;
padding:80px 0 25px;
color:#fff;
}

footer h4{
font-weight:800;
margin-bottom:22px;
}

footer p{
color:#d1d5db;
line-height:1.9;
}

.footer-link{
display:block;
margin-bottom:12px;
color:#d1d5db;
text-decoration:none;
}

.footer-link:hover{
color:#22c55e;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.1);
padding-top:25px;
margin-top:45px;
text-align:center;
}

/* MOBILE */

@media(max-width:768px){

.navbar{
background:#fff;
padding:12px 15px;
border-radius:18px;
}

.logo-text h3{
font-size:22px;
color:#111 !important;
}

.logo-text p{
font-size:11px;
}

.navbar-nav{
padding-top:15px;
}

.navbar-nav .nav-link{
color:#111 !important;
margin-left:0;
padding:10px 0;
}

.whatsapp-btn{
margin-left:0;
margin-top:12px;
}

.hero{
text-align:center;
padding:140px 0 80px;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:16px;
}

.hero-btn a{
display:block;
margin-bottom:15px;
}

.float-box{
position:relative;
right:0;
bottom:0;
width:100%;
margin-top:40px;
}

.section-title h2{
font-size:34px;
}

.owner{
padding:40px 25px;
text-align:center;
}

.owner h2{
font-size:36px;
}

}

/* DROPDOWN */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:240px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    padding:10px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.3s ease;
    z-index:999;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:12px 20px;
    color:#222;
    font-size:15px;
    transition:0.3s;
}

.dropdown-menu a:hover{
    background:#f5f5f5;
    color:#16c95f;
}

</style>