*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f6f8ff;
color:#222;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* Header */

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,.08);
z-index:999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:24px;
font-weight:700;
color:#5b3df5;
}

.logo img{
width:90;
height:45px;

}

nav a{
text-decoration:none;
margin-left:30px;
font-weight:500;
color:#333;
transition:.3s;
}

nav a:hover{
color:#5b3df5;
}

/* Hero */

.hero{
padding:150px 0 80px;
background:linear-gradient(135deg,#5b3df5,#7f5cff);
color:#fff;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:70px;
}

.badge{
display:inline-block;
padding:10px 18px;
background:rgba(255,255,255,.15);
border-radius:50px;
font-size:15px;
margin-bottom:20px;
backdrop-filter:blur(8px);
}

.badge i{
margin-right:8px;
}

.hero h1{
font-size:58px;
line-height:70px;
margin-bottom:20px;
}

.hero h1 span{
color:#FFD54F;
}

.hero p{
font-size:18px;
line-height:32px;
opacity:.95;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:15px;
margin-bottom:40px;
flex-wrap:wrap;
}

.btn{
background:#fff;
color:#5b3df5;
padding:15px 30px;
border-radius:50px;
font-weight:600;
text-decoration:none;
transition:.3s;
cursor:pointer;
}

.btn:hover{
transform:translateY(-4px);
}

.btn2{
background:#FFD54F;
color:#222;
padding:15px 30px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn2:hover{
transform:translateY(-4px);
}

.stats{
display:flex;
gap:45px;
}

.stats h3{
font-size:34px;
}

.stats p{
margin-top:5px;
font-size:14px;
}

/* Phone */

.hero-right{
position:relative;
display:flex;
justify-content:center;
}

.phone{
width:320px;
background:#fff;
padding:40px;
border-radius:35px;
text-align:center;
box-shadow:0 25px 60px rgba(0,0,0,.2);
color:#222;
animation:float 3s ease infinite;
}

.phone img{
width:90px;
margin-bottom:20px;
}

.phone h2{
margin-bottom:15px;
}

.phone p{
color:#666;
margin:10px 0;
}

.float{
position:absolute;
width:70px;
height:70px;
background:#fff;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
font-size:30px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
animation:float 4s infinite;
}

.book{
left:20px;
top:40px;
color:#ff9800;
}

.pdf{
right:20px;
top:60px;
color:#e53935;
}

.trophy{
left:40px;
bottom:40px;
color:#ffc107;
}

.graduation{
right:40px;
bottom:60px;
color:#5b3df5;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0);
}

}

/* Sections */

.section{
padding:90px 0;
}

.light{
background:#fff;
}

.title{
text-align:center;
font-size:40px;
margin-bottom:60px;
color:#333;
}

/* Cards */

.cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.card{
background:#fff;
padding:40px 25px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:45px;
color:#5b3df5;
margin-bottom:20px;
}

.card h3{
margin-bottom:12px;
}

/* About */

.about{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
max-width:900px;
margin:auto;
}

.about div{
background:#fff;
padding:22px;
border-radius:15px;
font-size:18px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.about i{
color:#4CAF50;
margin-right:10px;
}

/* Download */

.download{
padding:90px 20px;
text-align:center;
background:linear-gradient(135deg,#5b3df5,#7f5cff);
color:#fff;
}

.download h2{
font-size:42px;
margin-bottom:20px;
}

.download p{
font-size:18px;
margin-bottom:35px;
}

.download-btn{
display:inline-block;
background:#fff;
color:#5b3df5;
padding:16px 35px;
border-radius:50px;
font-size:18px;
font-weight:600;
cursor:pointer;
transition:.3s;
text-decoration:none;
}

.download-btn:hover{
transform:scale(1.05);
}

.continue{
margin-top:25px;
}

.continue a{
color:#fff;
text-decoration:none;
}

/* Contact */

.contact-box{
max-width:500px;
margin:auto;
padding:30px;
border-radius:18px;
background:#fff;
box-shadow:0 10px 30px rgba(0,0,0,.08);
font-size:22px;
text-align:center;
}

.contact-box i{
font-size:40px;
color:#5b3df5;
display:block;
margin-bottom:15px;
}

/* Footer */

footer{
background:#222;
color:#fff;
text-align:center;
padding:45px 20px;
}

footer img{
width:70px;
margin-bottom:15px;
}

footer h3{
margin-bottom:10px;
}

footer p{
margin-top:10px;
color:#bbb;
}

/* Responsive */

@media(max-width:992px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero h1{
font-size:42px;
line-height:55px;
}

.hero-buttons{
justify-content:center;
}

.stats{
justify-content:center;
}

.cards{
grid-template-columns:repeat(2,1fr);
}

.about{
grid-template-columns:1fr;
}

nav{
display:none;
}

}

@media(max-width:600px){

.hero{
padding-top:120px;
}

.hero h1{
font-size:34px;
line-height:45px;
}

.hero p{
font-size:16px;
}

.cards{
grid-template-columns:1fr;
}

.phone{
width:280px;
padding:30px;
}

.float{
width:55px;
height:55px;
font-size:24px;
}

.title{
font-size:30px;
}

.download h2{
font-size:30px;
}

.stats{
flex-direction:column;
gap:20px;
}

.btn,
.btn2,
.download-btn{
width:100%;
text-align:center;
}/* Animation */

.hidden{
opacity:0;
transform:translateY(50px);
transition:.8s;
}

.show{
opacity:1;
transform:translateY(0);
}

nav a.active{
color:#5b3df5;
font-weight:700;
}

.btn,
.btn2,
.download-btn{
position:relative;
overflow:hidden;
}

.ripple{
position:absolute;
width:15px;
height:15px;
background:rgba(255,255,255,.6);
border-radius:50%;
transform:scale(0);
animation:ripple .6s linear;
pointer-events:none;
}

@keyframes ripple{

to{

transform:scale(20);

opacity:0;

}

}

}