*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
  text-decoration: none;
} 
:root{
  --primary:#6d1f2f;
  --gold:#c9a46c;
  --dark:#1f1a17;
  --light:#faf7f2;
}

body{
  font-family:Poppins,sans-serif;
  background:var(--light);
}

/* ================= NAVBAR ================= */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:20px 4%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,.15);
  backdrop-filter:blur(12px);
  z-index:1000;
}

.logo{
  color:#fff;
  font-size:2rem;
  font-weight:700;
  font-family:'Playfair Display',serif;
}

.navbar a{
  color:#fff;
  margin-left:30px;
  font-weight:500;
  position:relative;
}

.navbar a::after{
  content:'';
  position:absolute;
  bottom:-5px;
  left:0;
  width:0;
  height:2px;
  background:#c9a46c;
  transition:.4s;
}

.navbar a:hover::after{
  width:100%;
}

.menu-btn{
  display:none;
  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 ========================*/

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:120px 8%;
  background:
  linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
  url('../images/WhatsApp\ Image\ 2026-06-03\ at\ 4.18.08\ PM.jpeg');
  background-size:cover;
  background-position:center;
}

.hero-content{
  width:55%;
  color:white;
}

.hero-content h1{
  font-size:5.5rem;
  line-height:1.1;
  font-family:'Playfair Display',serif;
}

.hero-content p{
  margin:25px 0;
  max-width:550px;
}

.hero-image{
  width:40%;
  display:flex;
  justify-content:center;
}

.hero-image img{
  width:400px;
  height:400px;
  object-fit:cover;
  border-radius:50%;
  border:8px solid rgba(255,255,255,.2);
  animation:float 4s infinite ease-in-out;
}

.hero-btns{
    display: flex;
    gap: .5rem;
}
.btn{
  display:inline-block;
  padding:14px 35px;
  background:#c9a46c;
  color:#fff;
  border-radius:50px;
  transition:.4s;
}

.btn:hover{
  transform:translateY(-5px);
}

.btn-outline{
  background:transparent;
  border:2px solid #fff;
}

/* ================= ABOUT ================= */
.about{
  padding:120px 8%;
  background:#fff;
}

.about-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.about-images{
  position:relative;
}

.main-img{
  width:100%;
  height:650px;
  object-fit:cover;
  border-radius:25px;
}

.small-img{
  position:absolute;
  width:220px;
  height:260px;
  object-fit:cover;
  border-radius:20px;
  right:-40px;
  bottom:50px;
  border:8px solid #fff;
  box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.experience-card{
  position:absolute;
  left:-30px;
  bottom:80px;
  background:var(--primary);
  padding:25px 35px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.experience-card h2{
  color:var(--gold);
  font-size:3rem;
  margin-bottom:5px;
}

.experience-card span{
  color:#fff;
  font-size:14px;
}

.section-tag{
  color:var(--gold);
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:600;
}

.about-content h2{
  font-size:3.5rem;
  line-height:1.2;
  margin:20px 0;
  color:var(--dark);
  font-family:'Playfair Display',serif;
}

.about-content p{
  color:#666;
  line-height:1.9;
  margin-bottom:18px;
}

.about-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin:35px 0;
}

.feature{
  display:flex;
  align-items:center;
  gap:10px;
}

.feature i{
  color:var(--gold);
  font-size:18px;
}

.feature span{
  color:#333;
  font-weight:500;
}

/* ================= SERVICES ================= */
.services{
  padding:120px 8%;
  background:#fdf9f5;
}

.services-heading{
  text-align:center;
  max-width:750px;
  margin:auto;
  margin-bottom:60px;
}

.services-heading span{
  color:var(--gold);
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:600;
}

.services-heading h2{
  font-size:3.5rem;
  margin:15px 0;
  color:var(--dark);
  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:var(--gold);
  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:120px 8%;
  background:#fff;
}

.gallery-heading{
  text-align:center;
  max-width:700px;
  margin:auto;
  margin-bottom:60px;
}

.gallery-heading span{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:3px;
  font-weight:600;
}

.gallery-heading h2{
  font-size:3.5rem;
  margin:15px 0;
  color:var(--dark);
  font-family:'Playfair Display',serif;
}

.gallery-heading p{
  color:#666;
  line-height:1.8;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:250px;
  gap:25px;
}

.item1{
  grid-row:span 2;
}

.item4{
  grid-row:span 2;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:25px;
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.7s;
}

.gallery-item:hover img{
  transform:scale(1.12);
}

.gallery-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
  to top,
  rgba(0,0,0,.85),
  rgba(0,0,0,.1));
  display:flex;
  align-items:flex-end;
  padding:25px;
  opacity:0;
  transition:.5s;
}

.gallery-item:hover .gallery-overlay{
  opacity:1;
}

.gallery-overlay h3{
  color:#fff;
  font-size:1.5rem;
  font-family:'Playfair Display',serif;
}

/* ================= 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:var(--gold);
  text-transform:uppercase;
  letter-spacing:3px;
  font-weight:600;
}

.why-left h2{
  font-size:3.3rem;
  line-height:1.2;
  margin:20px 0;
  color:var(--dark);
  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:var(--gold);
}

.why-card h3{
  font-size:1.3rem;
  margin-bottom:12px;
  color:var(--dark);
}

.why-card p{
  color:#666;
  line-height:1.7;
}

/* ================= 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:#c89b3c;
}

.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:#c89b3c;
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:#a67c29;
}

/* ================= 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:#D4AF37;
}

.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:#D4AF37;
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:#D4AF37;
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;
}

/* ================= 1024px ================= */

@media(max-width:1024px){

  .header{
    padding:18px 5%;
  }

  .logo{
    font-size:1.7rem;
  }

  .navbar a{
    margin-left:20px;
    font-size:15px;
  }

  .hero-content h1{
    font-size:4.5rem;
  }

  .hero-image img{
    width:330px;
    height:330px;
  }

  .about-container{
    gap:50px;
  }

  .about-content h2{
    font-size:2.8rem;
  }

  .main-img{
    height:550px;
  }

  .small-img{
    width:180px;
    height:220px;
  }

   .services{
    padding:100px 6%;
  }

  .services-heading h2{
    font-size:3rem;
  }

  .services-container{
    gap:20px;
  }

  .service-card{
    height:400px;
  }

  .gallery{
    padding:100px 6%;
  }

  .gallery-heading h2{
    font-size:3rem;
  }

  .why-us{
    padding:100px 6%;
    gap:40px;
  }

  .why-left h2{
    font-size:2.8rem;
  }


}

@media(max-width:768px){

  .menu-btn{
    display:block;
    color:#fff;
    font-size:28px;
    z-index:1001;
  }

  .navbar{
    position:absolute;
    top:100%;
    right:-100%;
    width:280px;
    background:#6d1f2f;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:25px;
    padding:40px 20px;
    transition:.4s;
  }

  .navbar.active{
    right:0;
  }

  .navbar a{
    margin-left:0;
    display:block;
    width:100%;
    text-align:center;
    font-size:17px;
  }

  .hero{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    gap:40px;
  }

  .hero-content{
    width:100%;
  }

  .hero-content h1{
    font-size:3.5rem;
  }

  .hero-content p{
    margin:auto;
    margin-top:20px;
    margin-bottom:25px;
  }

  .hero-btns{
    gap: .5rem;
    align-items: center;
    justify-content: center;
  }

  .hero-image{
    width:100%;
  }

  .hero-image img{
    width:280px;
    height:280px;
  }

  .about{
    padding:90px 6%;
  }

  .about-container{
    grid-template-columns:1fr;
  }

  .about-images{
    max-width:600px;
    margin:auto;
  }

  .about-content{
    text-align:center;
  }

  .about-features{
    grid-template-columns:1fr 1fr;
  }

   .services-container{
    grid-template-columns:repeat(2,1fr);
  }

  .services-heading h2{
    font-size:2.5rem;
  }

   .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-heading h2{
    font-size:2.5rem;
  }

  .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;
}
}

@media(max-width:480px){

  .header{
    padding:15px 5%;
  }

  .logo{
    font-size:1.3rem;
  }

  .navbar{
    width:100%;
    right:-100%;
  }

  .hero{
    padding:120px 5% 60px;
  }

  .hero-content h1{
    font-size:2.4rem;
  }

  .hero-content p{
    font-size:14px;
    line-height:1.8;
  }

  .hero-btns{
    flex-direction:column;
    align-items:center;
    gap:8px;
  }

  .btn{
    width:220px;
    text-align:center;
  }

  .hero-image img{
    width:220px;
    height:220px;
  }

  .about{
    padding:70px 5%;
  }

  .about-content{
    text-align: left;
  }

  .main-img{
    height:400px;
  }

  .small-img{
    width:120px;
    height:150px;
    right:-10px;
    bottom:20px;
  }

  .experience-card{
    left:0;
    bottom:15px;
    padding:15px 20px;
  }

  .experience-card h2{
    font-size:2rem;
  }

  .about-content h2{
    font-size:2rem;
  }

  .about-features{
    grid-template-columns:1fr;
    text-align:left;
  }

  .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:70px 5%;
  }

  .gallery-heading{
    text-align:left;
  }

  .gallery-heading h2{
    font-size:2rem;
  }

  .gallery-grid{
    grid-template-columns:1fr;
    grid-auto-rows:300px;
  }

  .item1,
  .item4{
    grid-row:span 1;
  }

  .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;
}
}