*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
  text-decoration: none;
} 

body{
  font-family:Poppins,sans-serif;
  background:var(--light);
}

/* ==================== Navbar ====================== */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 4%;
  background:#FFFFFF;
  border: #383737;
  box-shadow:0 0 15px rgba(0,0,0,0.5);
  position:relative;
  z-index:1000;
}

.nav-links{
  display:flex;
  gap:35px;
}

.nav-links li{
  list-style:none;
}

.nav-links li a{
  color:#5C4033;
  font-size:16px;
  font-weight:500;
  position:relative;
  transition:0.3s;
}

.nav-links li a::after{
  content:"";
  position:absolute;
  width:0%;
  height:2px;
  left:0;
  bottom:-5px;
  background: #bd8306;
  transition:0.4s;
}

.nav-links li a:hover::after{
  width:100%;
}

.nav-links li a:hover{
  color:#6B8E6E;
}

.logo h2{
  color: #bd8306;
  font-size: 20px;
  font-family:'Playfair Display',serif;
}

.menu-toggle{
  display:none;
  font-size:28px;
  color:#6B8E6E;
  cursor:pointer;
}

/*==================== Floating Buttons =====================*/

.floating-buttons{
position:fixed;
right:5px;
bottom:30px;
display:flex;
flex-direction:column;
gap:2px;
z-index:999;
}

.call-btn,
.whatsapp-btn{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:white;
border-radius:50%;
box-shadow:0 6px 20px rgba(0,0,0,0.25);
transition:.4s;
}

.call-btn{
background:#19d9b9;
}

.whatsapp-btn{
background:#25D366;
}

.call-btn:hover{
transform:translateY(-5px);
background:#b8962e;
}

.whatsapp-btn:hover{
transform:translateY(-5px);
background:#1ebe5d;
}

@media(max-width:600px){

.call-btn,
.whatsapp-btn{
width:48px;
height:48px;
font-size:18px;
}

}


/* ================= HERO SECTION ================= */
.hero{
position:relative;
height: 100vh;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
opacity:0;
transition:opacity 1.5s ease-in-out;
}

.slide.active{
opacity:1;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
}

.hero-content{
position:absolute;
top:50%;
left:8%;
transform:translateY(-50%);
color:white;
max-width:550px;
}

.hero-content h1{
font-family:'Playfair Display',serif;
font-size:65px;
line-height:1.2;
margin-bottom:20px;
}

.hero-content span{
color:#c89b3c;
}

.hero-content p{
font-size:18px;
margin-bottom:35px;
line-height:1.6;
}

.hero-btn{
display:inline-block;
padding:14px 38px;
background:#c89b3c;
color:white;
text-decoration:none;
border-radius:40px;
font-size:16px;
}

/* <!-- ================= ABOUT US SECTION ================= --> */
.about{
padding:120px 8%;
background:#fffaf4;
}

.about-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
}

.about-images{
flex:1;
position:relative;
min-width:300px;
}

.about-images img{
width:80%;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,0.15);
}

.about-images .img2{
position:absolute;
width:30%;
bottom:-10px;
right:0;
border:8px solid white;
}

.about-content{
flex:1;
min-width:300px;
}

.section-tag{
color:#bd8306;
font-weight:500;
letter-spacing:2px;
margin-bottom:15px;
}
.about-content h2{
font-family:'Playfair Display',serif;
font-size:46px;
margin-bottom:20px;
color:#222;
}

.about-content span{
color:#bd8306;
}

.about-content p{
font-size:17px;
line-height:1.8;
color:#555;
margin-bottom:25px;
}

.about-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-bottom:35px;
}

.feature{
background:white;
padding:15px 20px;
border-radius:40px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
font-size:15px;
}

.about-btn{
display:inline-block;
padding:14px 38px;
background:#dba93b;
color:white;
text-decoration:none;
border-radius:40px;
font-size:16px;
transition:.4s;
}

.about-btn:hover{
background:#bd8306;
}

/* ================= SERVICES ================= */
.services{
  padding:120px 8%;
  background:#fdf9f5;
}

.services-heading{
  text-align:center;
  max-width:750px;
  margin:auto;
  margin-bottom:60px;
}

.services-heading span{
  color: #bd8306;
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:600;
}

.services-heading h2{
  font-size:3.5rem;
  margin:15px 0;
  color: #1f1a17;
  font-family:'Playfair Display', serif;
}

.services-heading p{
  color:#666;
  line-height:1.8;
}

.services-container{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.service-card{
  position:relative;
  overflow:hidden;
  border-radius:25px;
  height:450px;
  cursor:pointer;
}

.service-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s;
}

.service-card:hover img{
  transform:scale(1.1);
}

.service-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
  to top,
  rgba(0,0,0,.85),
  rgba(0,0,0,.2));
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:30px;
}

.service-overlay span{
  color: #bd8306;
  font-size:3rem;
  font-weight:700;
  margin-bottom:10px;
}

.service-overlay h3{
  color:#fff;
  font-size:1.8rem;
  margin-bottom:10px;
  font-family:'Playfair Display', serif;
}

.service-overlay p{
  color:#ddd;
  line-height:1.7;
}

/* ================= GALLERY ================= */
.gallery{
padding:80px 8%;
background:white;
text-align:center;
}

.gallery h2{
font-family:'Playfair Display',serif;
font-size:46px;
margin-bottom:20px;
}

.gallery h2 span{
color:#bd8306;
}

.gallery-subtitle{
max-width:650px;
margin:0 auto 60px;
color:#666;
font-size:16px;
}

.gallery-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.gallery-card{
position:relative;
overflow:hidden;
border-radius:25px;
cursor:pointer;
}

.gallery-card img{
width:100%;
height:380px;
/* object-fit:cover; */
transition:.6s ease;
}

.gallery-overlay{
position:absolute;
inset:0;
background:linear-gradient(transparent,#00000090);
display:flex;
align-items:flex-end;
padding:25px;
opacity:0;
transition:.5s;
}

.gallery-overlay h4{
color:white;
font-size:20px;
font-family:'Playfair Display',serif;
}

.gallery-card:hover img{
transform:scale(1.12);
}

.gallery-card:hover .gallery-overlay{
opacity:1;
}

/* ================= WHY CHOOSE US ================= */

.why-us{
  padding:120px 8%;
  background:#fdf9f5;
  display:grid;
  grid-template-columns:40% 55%;
  justify-content:space-between;
  align-items:center;
  gap:50px;
}

.why-left .section-tag{
  color: #bd8306;
  text-transform:uppercase;
  letter-spacing:3px;
  font-weight:600;
}

.why-left h2{
  font-size:3.3rem;
  line-height:1.2;
  margin:20px 0;
  color: #1f1a17;
  font-family:'Playfair Display',serif;
}

.why-left p{
  color:#666;
  line-height:1.9;
  margin-bottom:30px;
}

.why-right{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

.why-card{
  background:#fff;
  padding:35px 25px;
  border-radius:25px;
  transition:.4s;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.why-card:hover{
  transform:translateY(-10px);
}

.icon-box{
  width:70px;
  height:70px;
  background:rgba(201,164,108,.15);
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:20px;
}

.icon-box i{
  font-size:28px;
  color: #bd8306;
}

.why-card h3{
  font-size:1.3rem;
  margin-bottom:12px;
  color: #1f1a17;
}

.why-card p{
  color:#666;
  line-height:1.7;
}

.btn{
  display:inline-block;
  padding:14px 35px;
  background:#bd8306;
  color:#fff;
  border-radius:50px;
  transition:.4s;
}

.btn:hover{
  transform:translateY(-5px);
}

.btn-outline{
  background:transparent;
  border:2px solid #fff;
}

/* ================= CONTACT US ================= */
.contact{
padding:120px 8%;
background:white;
}

.contact-container{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:60px;
flex-wrap:wrap;
}

.contact-info{
flex:1;
min-width:300px;
}

.contact-info h2{
font-family:'Playfair Display',serif;
font-size:46px;
margin-bottom:20px;
}

.contact-info h2 span{
color:#bd8306;
}

.contact-info p{
color:#666;
margin-bottom:35px;
line-height:1.8;
}

.contact-details div{
margin-bottom:20px;
font-size:16px;
color:#444;
}

.contact-details span{
color:#bd8306;
font-weight:600;
margin-right:8px;
}

.contact-form{
flex:1;
min-width:300px;
background:#fffaf4;
padding:45px 35px;
border-radius:30px;
box-shadow:0 12px 40px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:15px 18px;
margin-bottom:20px;
border:none;
border-radius:40px;
font-size:15px;
background:white;
box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.contact-form textarea{
height:130px;
border-radius:20px;
resize:none;
}

.contact-btn{
display:inline-block;
padding:14px 38px;
background:#c89b3c;
color:white;
border:none;
border-radius:40px;
font-size:16px;
cursor:pointer;
transition:.4s;
}

.contact-btn:hover{
background:#bd8306;
}

/* ================= FOOTER ================= */
.unique-footer{
position:relative;
padding:80px 8%;
background:url("../images/footer.png") center/cover no-repeat;
color:white;
overflow:hidden;
}

.unique-footer::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.55); 
z-index:0;
}

.footer-wrapper,
.footer-bottom{
z-index:1;
}

.footer-wrapper{
position:relative;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

.footer-brand h2{
font-family:'Playfair Display',serif;
font-size:28px;
margin-bottom:15px;
color:#bd8306;
}

.footer-brand p{
font-size:15px;
line-height:1.7;
max-width:320px;
}

.footer-links h4{
margin-bottom:18px;
font-size:18px;
font-family:'Playfair Display',serif;
}

.footer-links a{
display:block;
margin-bottom:10px;
color:white;
font-size:14px;
transition:.3s;
}

.footer-links a:hover{
color:#bd8306;
padding-left:6px;
}

.footer-contact p{
font-size:14px;
margin-bottom:10px;
}

.footer-social{
margin-top:15px;
}

.footer-social a{
display:inline-flex;
align-items:center;
justify-content:center;
width:38px;
height:38px;
margin-right:10px;
background:#bd8306;
color:white;
border-radius:50%;
transition:.4s;
}

.footer-social a:hover{
background:white;
color:#6B8E6E;
transform:translateY(-4px);
}

.footer-bottom{
margin-top:50px;
text-align:center;
font-size:14px;
border-top:1px solid rgba(255,255,255,0.2);
padding-top:18px;
}

/* ========================= Responsive ========================= */

/* 1024px */
@media screen and (max-width:1024px){
  .navbar{
    padding: 22px 4%;
  }
    .nav-links{
    gap:25px;
  }

   .hero{
    height: 85vh;
  }

  .about-content h2{
font-size:36px;
}

 .services{
    padding:100px 6%;
  }

  .services-heading h2{
    font-size:3rem;
  }

  .services-container{
    gap:20px;
  }

  .service-card{
    height:400px;
  }

  .gallery-container{
grid-template-columns:repeat(3,1fr);
}

.why-us{
    padding:100px 6%;
    gap:40px;
  }

  .why-left h2{
    font-size:2.8rem;
  }

}

/* 768px */
@media(max-width:768px){
  .navbar{
    padding: 15px 4%;
  }
  .nav-links{
    position:absolute;
    top:100%;
    right:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    display:none;
    padding:30px;
    gap:1.5rem;
    box-shadow:0 10px 20px rgba(0,0,0,0.05);
  }

  .nav-links.active{
    display:flex;
  }

  .logo h2{
  color: #c89b3c;
  font-size: 18px;
}

  .menu-toggle{
    display:block;
  }

   .hero{
    height: 80vh;
  }

  .about-images .img2{
position:absolute;
width:30%;
bottom:-10px;
right:0;
border:8px solid white;
}

 .services-container{
    grid-template-columns:repeat(2,1fr);
  }

  .services-heading h2{
    font-size:2.5rem;
  }

  .gallery-container{
grid-template-columns:repeat(2,1fr);
}

.gallery h2{
font-size:36px;
}

.why-us{
    grid-template-columns:1fr;
    text-align:center;
  }

  .why-right{
    grid-template-columns:repeat(2,1fr);
  }

  .icon-box{
    margin:auto;
    margin-bottom:20px;
  }

  .contact-info h2{
font-size:36px;
}

.footer-wrapper{
grid-template-columns:1fr 1fr;
}

}

/* 480px */
@media(max-width:480px){
  .logo h2{
    font-size: 15px;
  }

  .navbar{
    padding:10px 5%;
  }

   .hero{
    height: 45vh;
  }

  .about{
padding:60px 6%;
}

.about-content h2{
  font-size: 25px;
margin-bottom:10px;
}

.about-content span{
color:#c89b3c;
}

.about-content p{
font-size: 12px;
margin-bottom:15px;
}

.about-features{
grid-template-columns:1fr;
gap:10px;
}

.feature{
padding:10px 15px;
font-size:12px;
}

.about-images .img2{
position:absolute;
width:30%;
bottom:-10px;
right:20px;
border:8px solid white;
}

.about-btn{
padding:12px 30px;
font-size:12px;
}

 .services{
    padding:70px 5%;
  }

  .services-heading{
    text-align:left;
  }

  .services-heading h2{
    font-size:2rem;
  }

  .services-container{
    grid-template-columns:1fr;
  }

  .service-card{
    height:380px;
  }

  .service-overlay{
    padding:20px;
  }

  .service-overlay span{
    font-size:2rem;
  }

  .service-overlay h3{
    font-size:1.4rem;
  }

  .gallery{
padding:50px 6%;
}

.gallery-container{
grid-template-columns:1fr;
}

.gallery h2{
font-size:30px;
}

.gallery-card img{
height: 400px;
}

.btn{
    width:220px;
    text-align:center;
  }

  .why-us{
    padding:70px 5%;
    text-align:left;
  }

  .why-left h2{
    font-size:2rem;
  }

  .why-right{
    grid-template-columns:1fr;
  }

  .why-card{
    padding:25px 20px;
  }

  .icon-box{
    margin:0 0 20px;
  }
  .contact{
padding:50px 6%;
}

.contact-info h2{
font-size:30px;
}

.unique-footer{
background:url("../images/download.png") center/cover no-repeat;
text-align: left;
}

.unique-footer{
padding:60px 7%;
}

.footer-wrapper{
grid-template-columns:1fr;
text-align:left;
}

.footer-brand p{
margin:auto;
}
}

@media(max-width:375px){
    .hero{
        height: 40vh;
    }
}

@media(max-width:320px){
    .hero{
        height: 35vh;
    }
}