*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#fff;
}

.container{
width:90%;
margin:auto;
}

header{
background:#111;
padding:15px 0;
position:sticky;
top:0;
z-index:999;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:55px;
}

nav ul{
display:flex;
list-style:none;
}

nav li{
margin-left:30px;
}

nav a{
color:#fff;
text-decoration:none;
}

.menu-btn{
display:none;
font-size:30px;
color:#fff;
cursor:pointer;
}

.hero{
position:relative;
overflow:hidden;
height:80vh;
}

.slide{
display:none;
position:absolute;
width:100%;
height:100%;
}

.slide.active{
display:block;
animation:fade 1s;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.caption{
position:absolute;
top:50%;
left:10%;
transform:translateY(-50%);
color:#fff;
}

.caption h1{
font-size:50px;
}

@keyframes fade{
from{opacity:0}
to{opacity:1}
}

.about{
padding:70px 0;
}

.about .container{
display:flex;
align-items:center;
gap:40px;
}

.about img{
width:100%;
border-radius:10px;
}

.about-img{
flex:1;
}

.about-text{
flex:1;
}

.title{
text-align:center;
margin-bottom:40px;
}

.tabs{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:30px;
}

.tab{
padding:12px 25px;
border:none;
background:#111;
color:#fff;
cursor:pointer;
}

.tab.active{
background:#d4af37;
}

.service{
display:none;
text-align:center;
}

.service.active{
display:block;
}

.service img{
width:450px;
max-width:100%;
filter:grayscale(100%);
transition:.5s;
border-radius:10px;
}

.service img:hover{
filter:grayscale(0%);
transform:scale(1.03);
}

/* Testimonials */

.testimonials{
    padding:80px 20px;
    background:#f8f6f2;
    text-align:center;
}

.testimonial-slider{
    max-width:750px;
    margin:auto;
}

.testimonial{
    display:none;
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.5s;
}

.testimonial.active{
    display:block;
}

.client-img{
    width:110px;
    height:110px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #d4af37;
    margin-bottom:20px;
}

.testimonial h3{
    margin:10px 0;
    color:#222;
}

.testimonial p{
    color:#666;
    line-height:1.8;
    margin:15px 0;
}

.stars{
    color:#d4af37;
    font-size:22px;
    letter-spacing:3px;
}

@media(max-width:768px){

.testimonial{
    padding:25px;
}

.client-img{
    width:90px;
    height:90px;
}

}

#contact .container{
display:flex;
gap:40px;
}

.form{
flex:1;
}

.form input,
.form textarea{
width:100%;
padding:15px;
margin:10px 0;
}

.form button{
padding:15px;
background:#111;
color:white;
border:none;
width:100%;
}

.map{
flex:1;
}

.map iframe{
width:100%;
height:350px;
border:none;
}

footer{
background:#111;
color:#fff;
text-align:center;
padding:20px;
}

@media(max-width:768px){

.menu-btn{
display:block;
}

nav ul{
display:none;
position:absolute;
background:#111;
width:100%;
left:0;
top:80px;
flex-direction:column;
}

nav ul.show{
display:flex;
}

nav li{
margin:20px;
}

.about .container,
#contact .container{
flex-direction:column;
}

.hero{
height:60vh;
}

.caption h1{
font-size:32px;
}

}

/*==========================
        Gallery
===========================*/

.gallery{

padding:90px 0;

background:#faf8f5;

}

.section-title{

text-align:center;

margin-bottom:50px;

}

.section-title h2{

font-size:40px;

color:#222;

margin-bottom:10px;

}

.section-title p{

color:#777;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:25px;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:15px;

cursor:pointer;

box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.gallery-item img{

width:100%;

height:320px;

object-fit:cover;

transition:.6s;

display:block;

}

.gallery-item:hover img{

transform:scale(1.15);

}

.overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.45);

display:flex;

justify-content:center;

align-items:center;

opacity:0;

transition:.5s;

}

.gallery-item:hover .overlay{

opacity:1;

}

.overlay h3{

color:white;

font-size:24px;

letter-spacing:1px;

}

/* Lightbox */

#lightbox{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.95);

display:none;

justify-content:center;

align-items:center;

z-index:9999;

}

#lightbox img{

max-width:90%;

max-height:90%;

border-radius:12px;

box-shadow:0 0 30px rgba(255,255,255,.2);

}

#close{

position:absolute;

right:40px;

top:20px;

font-size:45px;

color:#fff;

cursor:pointer;

}

@media(max-width:768px){

.gallery{

padding:60px 20px;

}

.section-title h2{

font-size:30px;

}

.gallery-item img{

height:240px;

}

}