body{
font-family:Arial;
margin:0;
background:#f4f4f4;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:white;
position:sticky;
top:0;
}

.logo{
display:flex;
align-items:center;
}

.logo-box img{
width:60px;
margin-left:10px;
}

.logo-box h2{
margin:0;
color:#1e88e5;
}

.logo-box p{
margin:0;
font-size:12px;
color:gray;
}

nav a{
margin-left:10px;
text-decoration:none;
color:#333;
font-weight:bold;
}

nav a:hover{
color:#1e88e5;
}

.hero{
height:400px;
align-items:center;
background:#1e90ff;
color:white;
display:flex;
flex-direction:column;
justify-content:center;
}

.hero button{
padding:12px 25px;
background:white;
color:#1e90ff;
border:none;
font-size:16px;
}

.services{
padding:50px;
text-align:center;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.card{
background:white;
padding:20px;
border-radius:10px;
}

.card img{
width:100%;
border-radius:10px;
}

.booking{
background:#dfe6e9;
padding:50px;
text-align:center;
}

.booking input,
.booking select{
width:300px;
padding:10px;
margin:10px auto;
}

.booking button{
padding:12px 30px;
background:#1e90ff;
color:white;
border:none;
}

.technician{
padding:50px;
text-align:center;
}

.tech-grid{
display:flex;
justify-content:center;
gap:30px;
}

.tech{
background:white;
padding:20px;
border-radius:10px;
}

.stats{
display:flex;
justify-content:center;
gap:50px;
padding:40px;
background:#222;
color:white;
}

.reviews{
background:white;
padding:50px;
text-align:center;
}

.review-box{
display:flex;
justify-content:center;
gap:20px;
}

.review{
background:#f1f2f6;
padding:20px;
border-radius:10px;
}

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px;
border-radius:50px;
text-decoration:none;
}
