*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#07121f;
color:white;
}

html,
body{
    width:100%;
    overflow-x:hidden;
}

a{
text-decoration:none;
}












/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
position:fixed;
width:100%;
top:0;
z-index:1000;
backdrop-filter:blur(15px);
background:rgba(0,0,0,0.15);
}

.logo img{
height:70px;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
color:white;
font-weight:500;
transition:.3s;
}

.nav-links a:hover{
color:#28d87b;
}

.menu-btn{
display:none;
font-size:26px;
cursor:pointer;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
justify-content:space-between;
align-items:center;
gap:50px;
}

.hero-content{
max-width:650px;
}

.hero-badge{
display:inline-flex;
align-items:center;
gap:10px;
padding:10px 20px;
border-radius:50px;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(15px);
margin-bottom:25px;
}

.hero h1{
font-size:4rem;
font-weight:800;
line-height:1.2;
}

.hero h1 span{
background:linear-gradient(
90deg,
#26d97f,
#1e90ff
);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
margin-top:25px;
font-size:18px;
color:#cfd5db;
line-height:1.8;
}

.hero-buttons{
margin-top:35px;
display:flex;
gap:15px;
}

.btn-primary{
padding:15px 35px;
background:linear-gradient(
90deg,
#28d87b,
#1e90ff
);
border-radius:50px;
color:white;
font-weight:600;
}

.btn-secondary{
padding:15px 35px;
border:1px solid white;
border-radius:50px;
color:white;
}

.hero-image{
display:flex;
flex-direction:column;
gap:20px;
}

.glass-card{
padding:30px;
max-width:250px;
width:100%;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(15px);
border-radius:20px;
border:1px solid rgba(255,255,255,0.1);
}

.glass-card h3{
font-size:2rem;
color:#28d87b;
}

/* TRUST SECTION */

.trust-section{
padding:100px 8%;
background:white;
color:#111;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:2.5rem;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.trust-card{
background:white;
padding:35px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:.4s;
}

.trust-card:hover{
transform:translateY(-10px);
}

.trust-card .icon{
font-size:40px;
margin-bottom:20px;
color:#1e90ff;
}

.trust-card h3{
margin-bottom:15px;
}



/* ANIMATED BACKGROUND */

.bg-animation{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
    overflow:hidden;
    pointer-events:none;
}

.bg-animation span{
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    filter:blur(120px);
    opacity:.15;
    animation:float 10s ease-in-out infinite;
}

.bg-animation span:nth-child(1){
background:#1e90ff;
top:10%;
left:10%;
}

.bg-animation span:nth-child(2){
background:#28d87b;
top:20%;
right:10%;
}

.bg-animation span:nth-child(3){
background:#1e90ff;
bottom:20%;
left:30%;
}

.bg-animation span:nth-child(4){
background:#28d87b;
bottom:10%;
right:20%;
}

.bg-animation span:nth-child(5){
background:#1e90ff;
top:50%;
left:60%;
}

@keyframes float{
0%,100%{
transform:translateY(0);
}
50%{
transform:translateY(-40px);
}
}



/* MOBILE */

@media(max-width:991px){

.hero{
flex-direction:column;
text-align:center;
min-height: calc(100vh - 90px);
}



.hero-image{
    width:100%;
    align-items:center;
}

.nav-links{
display:none;
}

.menu-btn{
display:block;
}

.hero h1{
font-size:2.8rem;
}

.hero-buttons{
justify-content:center;
}

}


















/* ABOUT SECTION */

.about-section{
padding:120px 8%;
background:#f8fbff;
color:#111;
}

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.section-badge{
display:inline-block;
padding:10px 18px;
border-radius:50px;
background:#e8f6ff;
color:#1e90ff;
font-weight:600;
margin-bottom:20px;
}

.about-left h2{
font-size:3rem;
margin-bottom:20px;
}

.about-left span{
color:#28d87b;
}

.about-left p{
line-height:1.9;
margin-bottom:20px;
color:#555;
}

.about-right{
display:grid;
gap:20px;
}

.about-card{
background:white;
padding:25px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.about-card:hover{
transform:translateY(-8px);
}

.about-card i{
font-size:32px;
color:#1e90ff;
margin-bottom:15px;
}

/* STATS */

.stats-section{
padding:120px 8%;
background:#07121f;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:50px;
}

.stat-card{
background:rgba(255,255,255,.08);
backdrop-filter:blur(15px);
padding:35px;
border-radius:20px;
text-align:center;
border:1px solid rgba(255,255,255,.1);
}

.stat-card h3{
font-size:3rem;
background:linear-gradient(
90deg,
#28d87b,
#1e90ff
);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.stat-card p{
margin-top:10px;
}

/* HOW IT WORKS */

.how-section{
padding:120px 8%;
background:white;
color:#111;
}

.steps-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:50px;
}

.step-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.step-card:hover{
transform:translateY(-10px);
}

.step-number{
font-size:3rem;
font-weight:800;
color:#1e90ff;
margin-bottom:15px;
}

/* REVEAL */

.reveal{
opacity:1;
transform:none;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

@media(max-width:991px){

.about-container{
grid-template-columns:1fr;
}

.stats-grid{
grid-template-columns:1fr 1fr;
}

.steps-grid{
grid-template-columns:1fr;
}

.about-left h2{
font-size:2.2rem;
}

}

@media(max-width:600px){

.stats-grid{
grid-template-columns:1fr;
}

}