body{
margin:0;
font-family:Poppins;
background:#0f0f0f;
color:white;
}

.navbar{
display:flex;
justify-content:space-between;
padding:20px 10%;
background:black;
}

.logo{
color:#ff6a00;
font-weight:bold;
font-size:22px;
}

.menu{
list-style:none;
display:flex;
gap:25px;
}

.menu a{
text-decoration:none;
color:white;
}

.hero{
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:url("https://images.unsplash.com/photo-1492724441997-5dc865305da7") center/cover no-repeat;
}

.hero-content{
background:rgba(0,0,0,0.6);
padding:40px;
border-radius:10px;
}

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

.cta{
margin-top:20px;
padding:12px 25px;
background:#ff6a00;
border:none;
color:white;
cursor:pointer;
}

.services{
padding:100px 10%;
text-align:center;
}

.services-grid{
display:flex;
justify-content:center;
gap:30px;
margin-top:40px;
flex-wrap:wrap;
}

.service{
background:#1b1b1b;
padding:30px;
width:260px;
border-radius:10px;
}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:40px;
}

.portfolio-grid img{
width:100%;
border-radius:10px;
}

.project{
background:#222;
width:260px;
height:160px;
display:flex;
align-items:center;
justify-content:center;
}

.contact{
text-align:center;
padding:100px 20px;
}

footer{
text-align:center;
padding:30px;
background:black;
}

.testimonials{
padding:100px 10%;
text-align:center;
background:#181818;
}

.testimonial-grid{
display:flex;
gap:30px;
justify-content:center;
margin-top:40px;
flex-wrap:wrap;
}

.testimonial{
background:#222;
padding:30px;
width:260px;
border-radius:10px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 18px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
background:black;
flex-wrap:wrap;
}

.menu{
display:flex;
gap:25px;
list-style:none;
padding:0;
}