body{
margin:0;
font-family:Arial,Helvetica,sans-serif;
background:#f4f7fb;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.site-header{
position:sticky;
top:0;
background:#0B5ED7;
padding:18px 0;
z-index:999;
}

.header-container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo a{
color:white;
text-decoration:none;
}

.main-menu ul{
display:flex;
list-style:none;
gap:30px;
}

.main-menu a{
color:white;
text-decoration:none;
font-weight:bold;
}

.call-btn{
background:#ffffff;
color:#0B5ED7;
padding:12px 24px;
border-radius:6px;
font-weight:bold;
margin-right:10px;
text-decoration:none;
}

.whatsapp-btn{
background:#25D366;
color:white;
padding:12px 24px;
border-radius:6px;
font-weight:bold;
text-decoration:none;
}

.hero{
    min-height:700px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
    color:#fff;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:35px;
}
.services{
padding:80px 0;
}

.services h2{
text-align:center;
margin-bottom:50px;
font-size:40px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.service-card{
background:white;
padding:35px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
transition:.3s;
}

.service-card:hover{
transform:translateY(-10px);
}

.footer{
background:#111;
color:white;
padding:35px;
text-align:center;
margin-top:80px;
}
.stats{
padding:80px 0;
background:#ffffff;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
text-align:center;
}

.stat{
background:#f4f7fb;
padding:30px;
border-radius:12px;
}

.stat h2{
font-size:45px;
color:#0B5ED7;
}

.why-us{
padding:90px 0;
background:#eef4ff;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.why-box{
background:#fff;
padding:35px;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.cta{
background:#0B5ED7;
color:#fff;
text-align:center;
padding:100px 20px;
}

.secondary{
background:#ffffff;
color:#0B5ED7;
margin-left:15px;
}

.hero-buttons{
margin-top:35px;
}
.service-card img{

width:100%;

height:220px;

object-fit:cover;

border-radius:10px;

margin-bottom:15px;

}

.service-card{

overflow:hidden;

}
.service-category{

display:inline-block;

background:#0B5ED7;

color:#fff;

padding:6px 12px;

border-radius:20px;

font-size:13px;

margin:10px 0;

}
.testimonials{
padding:80px 0;
background:#f8f9fa;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.testimonial-card{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,.08);
text-align:center;
}

.customer-image img{
width:90px;
height:90px;
border-radius:50%;
object-fit:cover;
margin-bottom:20px;
}
.booking{
padding:80px 0;
background:#f4f7fb;
}

.booking form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.booking input,
.booking select,
.booking textarea{
padding:15px;
border:1px solid #ddd;
border-radius:8px;
font-size:16px;
width:100%;
}

.booking textarea{
min-height:150px;
resize:vertical;
}

.booking button{
background:#0B5ED7;
color:#fff;
padding:15px;
border:none;
border-radius:8px;
font-size:18px;
cursor:pointer;
}

.booking button:hover{
background:#0849a6;
}