
body{
margin:0;
font-family:Arial, sans-serif;
background:#020617;
color:white;
}

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#020617;
border-bottom:1px solid #1e293b;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:bold;
}

.logo img{
width:40px;
}

nav a{
margin-left:20px;
color:#cbd5f5;
text-decoration:none;
}

.hero{
text-align:center;
padding:120px 20px;
background:linear-gradient(#020617,#0f172a);
}

.hero h1{
font-size:48px;
}

.hero p{
max-width:600px;
margin:auto;
}

.btn{
display:inline-block;
margin-top:30px;
padding:14px 35px;
background:#2563eb;
border-radius:8px;
color:white;
text-decoration:none;
}

.services{
padding:80px 20px;
text-align:center;
}

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

.card{
background:#111827;
padding:30px;
border-radius:10px;
}

.card img{
width:60px;
margin-bottom:10px;
}

.stats{
display:flex;
justify-content:center;
gap:60px;
padding:60px;
}

.stat h3{
color:#38bdf8;
font-size:36px;
}

footer{
text-align:center;
padding:40px;
background:#020617;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
padding:12px 18px;
border-radius:30px;
color:white;
text-decoration:none;
}
