*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#f4f7fc;
color:#1e293b;
}

.hero{
padding:30px 8% 80px;
background:linear-gradient(135deg,#0b4fd4,#0a1f44);
color:white;
overflow:hidden;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.logo{
font-size:2rem;
font-weight:800;
}

.logo span{
display:block;
font-size:0.9rem;
font-weight:500;
}

.nav-links{
display:flex;
gap:30px;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:500;
}

.quote-btn,.btn{
text-decoration:none;
font-weight:700;
border-radius:40px;
transition:0.3s;
}

.quote-btn{
background:#ffd028;
color:#111827;
padding:14px 24px;
}

.hero-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:40px;
margin-top:60px;
}

.badge{
display:inline-block;
background:rgba(255,255,255,0.12);
padding:10px 18px;
border-radius:30px;
margin-bottom:20px;
font-weight:600;
}

.hero-text h1{
font-size:4rem;
line-height:1.1;
margin-bottom:25px;
}

.hero-text p{
font-size:1.2rem;
margin-bottom:35px;
max-width:650px;
color:#dbeafe;
}

.buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
margin-bottom:40px;
}

.btn{
padding:16px 30px;
}

.primary{
background:#25D366;
color:white;
}

.secondary{
background:white;
color:#0f172a;
}

.hero-image img{
width:100%;
border-radius:30px;
box-shadow:0 25px 60px rgba(0,0,0,0.35);
}

.stats{
display:flex;
gap:25px;
flex-wrap:wrap;
}

.stats div{
background:rgba(255,255,255,0.1);
padding:18px 22px;
border-radius:18px;
min-width:150px;
}

.stats strong{
display:block;
font-size:1.5rem;
}

.stats span{
font-size:0.95rem;
color:#dbeafe;
}

.services,.contact{
padding:90px 8%;
}

.services h2,.why h2,.contact h2{
text-align:center;
font-size:3rem;
margin-bottom:50px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:white;
padding:40px 28px;
border-radius:24px;
text-align:center;
box-shadow:0 10px 30px rgba(15,23,42,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
}

.icon{
font-size:3.2rem;
margin-bottom:18px;
}

.card h3{
margin-bottom:14px;
font-size:1.4rem;
}

.why{
padding:90px 8%;
background:#0f172a;
color:white;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:24px;
}

.why-card{
background:rgba(255,255,255,0.08);
padding:30px;
border-radius:20px;
text-align:center;
font-size:1.1rem;
font-weight:600;
}

.contact{
text-align:center;
}

.contact p{
font-size:1.15rem;
margin-bottom:30px;
}

.big-btn{
display:inline-block;
background:#25D366;
color:white;
padding:18px 40px;
border-radius:50px;
text-decoration:none;
font-weight:700;
font-size:1.1rem;
}

.number{
margin-top:25px;
font-size:1.8rem;
font-weight:700;
}

footer{
background:#020817;
color:white;
text-align:center;
padding:30px;
}

@media(max-width:900px){
.hero-wrapper{
grid-template-columns:1fr;
}

.hero-text h1{
font-size:2.8rem;
}

.nav-links{
display:none;
}
}
