
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

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

body{
font-family:'Poppins',sans-serif;
background:#0f172a;
color:#e5e7eb;
line-height:1.6;
}

header{
background:linear-gradient(90deg,#0f172a,#1e293b);
padding:20px 40px;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
border-bottom:1px solid #334155;
}

.logo{
font-size:22px;
font-weight:700;
color:#38bdf8;
}

.contact-top{
font-size:13px;
color:#cbd5f5;
}

nav{
background:#020617;
padding:15px 40px;
}

nav a{
color:#e2e8f0;
margin-right:25px;
text-decoration:none;
font-weight:500;
}

nav a:hover{
color:#38bdf8;
}

.hero{
padding:120px 40px;
text-align:center;
background:radial-gradient(circle at top,#1e293b,#020617);
}

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

.hero p{
font-size:18px;
max-width:700px;
margin:auto;
}

.hero button{
margin-top:30px;
padding:14px 30px;
border:none;
background:#38bdf8;
color:#020617;
font-weight:600;
border-radius:6px;
cursor:pointer;
}

.section{
padding:80px 40px;
max-width:1100px;
margin:auto;
}

.section h2{
font-size:32px;
margin-bottom:30px;
text-align:center;
}

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

.card{
background:#1e293b;
padding:30px;
border-radius:10px;
border:1px solid #334155;
transition:0.3s;
}

.card:hover{
transform:translateY(-6px);
border-color:#38bdf8;
}

.about{
display:flex;
gap:40px;
align-items:center;
flex-wrap:wrap;
}

.about img{
width:320px;
border-radius:10px;
}

.about-text{
flex:1;
}

.cta{
text-align:center;
padding:80px 40px;
background:linear-gradient(90deg,#1e293b,#020617);
}

.cta h2{
margin-bottom:20px;
}

.cta a{
display:inline-block;
padding:15px 30px;
background:#38bdf8;
color:#020617;
font-weight:600;
border-radius:6px;
text-decoration:none;
}

footer{
background:#020617;
text-align:center;
padding:30px;
font-size:14px;
border-top:1px solid #334155;
}

.contact-list p{
margin:8px 0;
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
padding:15px 18px;
border-radius:50px;
font-weight:600;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}
