body{
font-family:Poppins;
margin:0;
background:#f4f4f4;
}

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:#111;
color:white;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
}

.hero{
background:url('https://images.unsplash.com/photo-1555963966-b7ae5404b6ed');
background-size:cover;
background-position:center;
padding:120px 20px;
color:white;
text-align:center;
}

.hero h1{
font-size:40px;
}

.btn{
background:#ff9800;
padding:12px 25px;
text-decoration:none;
color:white;
margin:10px;
display:inline-block;
border-radius:5px;
}

.whatsapp{
background:#25D366;
}

.services{
padding:60px 20px;
text-align:center;
}

.service-grid{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.service-card{
background:white;
width:300px;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.service-card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:8px;
}

.about{
padding:60px;
background:white;
text-align:center;
}

.about-grid{
display:flex;
justify-content:center;
gap:50px;
flex-wrap:wrap;
}

.cta{
background:#ff9800;
padding:60px;
text-align:center;
color:white;
}

footer{
background:#111;
color:white;
padding:40px;
}

.footer-grid{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
}

.copy{
text-align:center;
margin-top:20px;
}

.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
font-size:30px;
padding:15px;
border-radius:50%;
text-decoration:none;
}