*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#f5f7fb;
color:#222;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#0B3D91;
padding:20px 0;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo h2{
color:white;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-weight:500;
}

.hero{
padding:80px 0;
}

.hero-content{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
}

.left{
flex:1;
}

.right{
flex:1;
text-align:center;
}

.right img{
width:100%;
max-width:500px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
line-height:1.8;
margin-bottom:30px;
}

.buttons{
display:flex;
gap:15px;
}

.call,
.whatsapp{
padding:15px 28px;
text-decoration:none;
border-radius:8px;
font-weight:600;
color:white;
}

.call{
background:#1565C0;
}

.whatsapp{
background:#25D366;
}
.services{
padding:80px 0;
background:#ffffff;
}

.services h2{
text-align:center;
font-size:40px;
margin-bottom:10px;
}

.subtitle{
text-align:center;
margin-bottom:50px;
color:#666;
}

.service-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.service-box{
background:#f8f8f8;
padding:40px;
border-radius:15px;
text-align:center;
transition:.3s;
}

.service-box:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.service-box i{
color:#0B3D91;
margin-bottom:20px;
}

.service-box h3{
margin-bottom:15px;
}
/*==========================
Brands
===========================*/

.brands{

padding:80px 0;

background:#eef4ff;

}

.brands h2{

text-align:center;

font-size:40px;

margin-bottom:15px;

}

.brand-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

margin-top:40px;

}

.brand{

background:white;

padding:25px;

border-radius:12px;

text-align:center;

font-size:20px;

font-weight:600;

transition:.3s;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.brand:hover{

background:#0B3D91;

color:white;

transform:translateY(-6px);

}
/*==========================
Why Choose Us
===========================*/

.why{

padding:80px 0;

background:white;

}

.why h2{

text-align:center;

font-size:40px;

margin-bottom:50px;

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.why-box{

background:#f7f7f7;

padding:35px;

border-radius:15px;

text-align:center;

transition:.3s;

}

.why-box:hover{

background:#0B3D91;

color:white;

}

.why-box i{

font-size:45px;

margin-bottom:20px;

color:#1565C0;

}

.why-box:hover i{

color:white;

}
/*==========================
Reviews
===========================*/

.reviews{

padding:80px 0;

background:#eef4ff;

}

.reviews h2{

text-align:center;

font-size:40px;

margin-bottom:10px;

}

.review-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:40px;

}

.review-card{

background:white;

padding:30px;

border-radius:15px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.3s;

}

.review-card:hover{

transform:translateY(-8px);

}

.review-card h3{

color:#f4b400;

margin-bottom:15px;

}

.review-card h4{

margin-top:20px;

color:#1565C0;

}
/*==========================
FAQ
===========================*/

.faq{

padding:80px 0;

background:white;

}

.faq h2{

text-align:center;

font-size:40px;

margin-bottom:40px;

}

.faq-item{

background:#f7f7f7;

padding:25px;

margin-bottom:20px;

border-left:5px solid #1565C0;

border-radius:8px;

}

.faq-item h3{

margin-bottom:10px;

color:#0B3D91;

}
/* Contact */

.contact{
padding:80px 0;
background:#eef4ff;
}

.contact h2{
text-align:center;
font-size:40px;
margin-bottom:10px;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.contact-card{
background:white;
padding:30px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.contact-card i{
font-size:40px;
color:#0B3D91;
margin-bottom:15px;
}
/* Areas */

.areas{
padding:70px 0;
background:white;
}

.area-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:40px;
}

.area-grid span{
background:#0B3D91;
color:white;
padding:15px;
text-align:center;
border-radius:8px;
}
footer{

background:#0B3D91;

color:white;

text-align:center;

padding:40px;

}

footer p{

margin-top:10px;

}
/* Floating WhatsApp Button */

.floating-whatsapp{
position:fixed;
right:20px;
bottom:90px;
width:60px;
height:60px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,.3);
z-index:999;
}

/* Floating Call Button */

.floating-call{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
background:#1565C0;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:26px;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,.3);
z-index:999;
}
/* Sticky Header */

header{
position:sticky;
top:0;
left:0;
width:100%;
z-index:999;
box-shadow:0 2px 15px rgba(0,0,0,.1);
}
html{
scroll-behavior:smooth;
}
.hero{
padding:80px 0;
}
.call,
.whatsapp{

padding:15px 35px;

border-radius:50px;

font-weight:600;

font-size:17px;

transition:.3s;

}

.call:hover{

transform:translateY(-4px);

background:#003b8e;

}

.whatsapp:hover{

transform:translateY(-4px);

background:#1ebd5a;

}
.service-box,
.review-card,
.brand,
.why-box,
.contact-card{

transition:.4s;

}

.service-box:hover,
.review-card:hover,
.brand:hover,
.why-box:hover,
.contact-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.15);

}
/*==========================
Statistics
===========================*/

.stats{
padding:70px 0;
background:#0B3D91;
color:white;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
text-align:center;
}

.stat-box h2{
font-size:42px;
color:#F4B400;
margin-bottom:10px;
}

.stat-box p{
font-size:18px;
}
.process{
padding:80px 0;
background:white;
}

.process h2{
text-align:center;
font-size:40px;
margin-bottom:50px;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.process-box{
text-align:center;
padding:30px;
background:#f5f5f5;
border-radius:15px;
}

.process-box h3{
width:60px;
height:60px;
line-height:60px;
margin:auto;
border-radius:50%;
background:#1565C0;
color:white;
margin-bottom:20px;
}
.cta{
padding:80px;
text-align:center;
background:#1565C0;
color:white;
}

.cta h2{
font-size:40px;
margin-bottom:20px;
}

.cta p{
margin-bottom:30px;
font-size:18px;
}