*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
line-height:1.6;
color:#222;
background:#fff;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#0f172a;
padding:15px 0;
position:sticky;
top:0;
z-index:999;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:28px;
font-weight:bold;
color:#fff;
}

nav a{
color:#fff;
text-decoration:none;
margin-left:20px;
font-size:15px;
}
nav a:hover{
color:#22c55e;
}

.hero{
height:90vh;
display:flex;
align-items:center;
position:relative;
overflow:hidden;
}

.hero-slider{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:0;
}

.hero-slider img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
animation:fade 24s infinite;
}

.hero-slider img:nth-child(1){
animation-delay:0s;
}

.hero-slider img:nth-child(2){
animation-delay:6s;
}

.hero-slider img:nth-child(3){
animation-delay:12s;
}

.hero-slider img:nth-child(4){
animation-delay:18s;
}

@keyframes fade{

0%{
opacity:0;
}

10%{
opacity:1;
}

25%{
opacity:1;
}

35%{
opacity:0;
}

100%{
opacity:0;
}

}

.hero::before{
content:'';
position:absolute;
inset:0;
background:rgba(0,0,0,0.6);
}

.hero-content{
position:relative;
z-index:2;
color:#fff;
max-width:700px;
}

.hero h1{
font-size:52px;
margin-bottom:20px;
line-height:1.2;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:14px 30px;
background:#22c55e;
color:#fff;
text-decoration:none;
border-radius:5px;
margin-right:15px;
font-weight:bold;
}
.btn:hover{
background:#15803d;
transition:.3s;
}

.section{
padding:70px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:38px;
margin-bottom:15px;
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.service-box{
background:#f8fafc;
padding:30px;
border-radius:10px;
transition:0.3s;
}

.service-box:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.service-box h3{
margin-bottom:15px;
font-size:22px;
}

.why{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.why-box{
text-align:center;
padding:25px;
background:#f1f5f9;
border-radius:10px;
}

.area-list{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:15px;
margin-top:30px;
}

.area-item{
background:#e2e8f0;
padding:15px;
border-radius:6px;
text-align:center;
font-weight:bold;
}

.faq{
max-width:900px;
margin:auto;
}

.faq-item{
margin-bottom:20px;
padding:20px;
background:#f8fafc;
border-radius:8px;
}

footer{
background:#0f172a;
color:#fff;
padding:50px 0;
margin-top:50px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.footer-grid a{
color:#fff;
text-decoration:none;
}

.call-btn{
position:fixed;
bottom:20px;
right:20px;
background:#22c55e;
color:#fff;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
z-index:999;
}

@media(max-width:768px){
.hero{
height:75vh;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:16px;
}

nav{
display:none;
}
}

/* ===========================
SERVICE PAGE CSS
===========================*/

.breadcrumb{
background:#f8fafc;
padding:15px 0;
font-size:15px;
}

.breadcrumb a{
text-decoration:none;
color:#0f172a;
font-weight:600;
}

.service-hero{
padding:50px 0 70px;
background:#f7f9fc;
overflow:hidden;
}

.service-hero-grid{
display:grid;
grid-template-columns:1.05fr .95fr;
align-items:center;
gap:70px;
}

.service-hero h1{
font-size:58px;
line-height:1.08;
font-weight:800;
color:#0f172a;
margin-bottom:25px;
letter-spacing:-1px;
}

.service-hero h1 span{
color:#22c55e;
}

.service-hero p{
font-size:19px;
line-height:1.9;
color:#555;
margin-bottom:35px;
max-width:620px;
}

.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
margin-top:35px;
}

.hero-image{
width:100%;
height:620px;
object-fit:cover;
border-radius:18px;
box-shadow:0 25px 60px rgba(0,0,0,.18);
transition:.4s;
}

.hero-image:hover{
transform:scale(1.02);
}

.bg-light{
background:#f8fafc;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
}

.service-card{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.service-card:hover{
transform:translateY(-6px);
}

.service-card h3{
margin-bottom:15px;
color:#0f172a;
}

.service-card ul{
padding-left:22px;
margin-top:15px;
}

.service-card li{
margin-bottom:10px;
line-height:1.7;
}

@media(max-width:768px){

.service-hero-grid{
grid-template-columns:1fr;
}

.service-hero{
padding:50px 0;
}

.service-hero h1{
font-size:34px;
}

}

.service-card p{
color:#555;
line-height:1.8;
}

.section h2{
font-size:38px;
margin-bottom:25px;
color:#0f172a;
}

.section p{
margin-bottom:20px;
line-height:1.9;
color:#444;
}

.service-tag{
display:inline-block;
padding:10px 18px;
background:#dcfce7;
color:#15803d;
border-radius:30px;
font-size:14px;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;
margin-bottom:25px;
}

.service-box{
    display:block;
    text-decoration:none;
    color:inherit;
}

.service-box:hover{
    transform:translateY(-5px);
}