/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
background:#b4c9ff;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

/* HERO */
.hero{
height:300px;
position:relative;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
}

/* SLIDER */
.slider{
position:absolute;
width:100%;
height:100%;
}

.slide{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:1s ease-in-out;
}

.slide.active{
opacity:1;
}

/* 🔥 FIXED OVERLAY */
.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
pointer-events:none;
z-index:1;
}

/* HERO CONTENT */
.hero-content{
position:relative;
z-index:2;
color:white;
text-align:center;
}

.hero-content h1{
font-size:45px;
font-weight:900;
text-shadow:2px 2px 10px rgba(0,0,0,0.7);
}

.hero-content p{
margin-top:10px;
}

/* BUTTON */
.hero button{
margin-top:15px;
padding:12px 25px;
background:linear-gradient(45deg,#ff6b4a,#ff914d);
border:none;
color:white;
border-radius:30px;
cursor:pointer;
position:relative;
z-index:3;
}

.hero button:hover{
transform:scale(1.05);
transition:0.3s;
}

/* ABOUT */
.about{
display:flex;
gap:50px;
padding:60px 0;
align-items:center;
}

.image-grid{
display:grid;
grid-template-columns:repeat(2,120px);
gap:15px;
}

.image-grid img{
width:100%;
border-radius:10px;
}

.about-text span{
color:#f5f4ef;
font-weight:bold;
}

.about-text h2{
margin:10px 0;
}

.about-text p{
margin:10px 0;
}

/* SERVICES */
.services{
text-align:center;
padding:60px 0;
}

.service-boxes{
display:flex;
gap:20px;
margin-top:30px;
}

.box{
flex:1;
padding:20px;
color:white;
border-radius:10px;
}

.blue{background:#4a5d73;}
.gray{background:#9e8c7a;}
.orange{background:#ff6b4a;}

/* CTA */
.cta{
height:250px;
background:url('https://images.unsplash.com/photo-1509062522246-3755977927d7?w=1920') center/cover;
display:flex;
align-items:center;
justify-content:center;
}

.cta-content{
text-align:center;
color:white;
background:rgba(0,0,0,0.6);
padding:20px;
border-radius:10px;
}

/* FOOTER */
footer{
display:flex;
justify-content:space-around;
padding:20px;
background:#eee;
}

/* RESPONSIVE */
@media(max-width:768px){

.about{
flex-direction:column;
text-align:center;
}

.service-boxes{
flex-direction:column;
}

footer{
flex-direction:column;
text-align:center;
gap:10px;
}

.hero-content h1{
font-size:28px;
}
}