
  
    /* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BASE ================= */
html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
font-family: 'Montserrat', sans-serif;
}
.logo {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  animation: fadeInDown 1.5s;
  position: absolute;
  top: 5%;
  left: 5%;
}
/* ================= PAGE TRANSITION ================= */
.page-transition {
  position: fixed;
  inset: 0;
  /* background: #1d6c78; */
  z-index: 9999;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease;
}
.page-transition.active { transform: scaleX(1); }

/* ================= FLOATING ICONS ================= */
.floating-element {
  position: fixed;
  font-size: 38px;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ================= CURSOR ================= */
.cursor-dot,
.cursor-outline {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  z-index: 10000;
}
.cursor-dot {
  width: 10px;
  height: 10px;
  background: #ddd;
}
.cursor-outline {
  width: 60px;
  height: 60px;
  border: 2px solid #ddd;
  transition: all 0.15s ease-out;
}
/* ================= NEXT PAGE BUTTON ================= */
.next-page-btn,.next-back-btn{
  position: fixed;
  transform: translateY(-50%);
    width: 160px;
    height: 50px;
  border-radius: 10px;
  background: transparent;
  color: gray;
  border: none;
  border: 2px solid #fff;
  cursor: pointer;
  z-index: 1000;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.next-page-btn{
 top: 50%;
 right: 2%;
}
.next-back-btn{
top: 50%;
left: 2%;
}

/* text inside */
 .next-page-btn .nbtn {
  font-size: 14px;
  font-weight: 600;
  color: gray;
  letter-spacing: 1px;
  white-space: nowrap;
}
 .next-back-btn .nbtn {
  font-size: 14px;
  font-weight: 600;
  color: gray;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* icon */
.next-page-btn,.next-back-btn i {
  font-size: 18px;
  transition: 0.3s;
}

/* hover */
.next-page-btn:hover {
  background: #B31802;
  color: gray;
  transform: translateY(-50%) scale(1.1);
}
.next-page-btn:hover .nbtn{
  color: #fff;

}
.next-back-btn:hover .nbtn{
  color: #fff;
}

.next-back-btn:hover {
  background: #B31802;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.next-page-btn:hover i {
  transform: translateX(5px);
}
.next-back-btn:hover i {
  transform: translateX(-5px);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
 .hero {
  padding: 50px 20px;
}
.image-section{
  margin-top: 40px;
}
  .nav{
    display: none;
  } 
  .logo {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  animation: fadeInDown 1.5s;
  position: absolute;
  z-index: 999;
  top: 5%;
  left: 5%;
}
.next-back-btn{
    top: auto;
    bottom: 20px;
    transform: none;
    width: 160px;
    height: 50px;
    border-radius: 12px;
    background: transparent;
    color: gray;
    flex-direction:row;
  } 
.next-page-btn{
    top: auto;
    bottom: 20px;
    transform: none;
    width: 160px;
    height: 50px;
    border-radius: 12px;
    background: transparent;
    color: gray;
    flex-direction:row;
  } 
  /* text inside */
 .next-page-btn .nbtn {
  font-size: 14px;
  font-weight: 600;
  color: gray;
  letter-spacing: 1px;
  white-space: nowrap;
}
 .next-back-btn .nbtn {
  font-size: 14px;
  font-weight: 600;
  color: gray;
  letter-spacing: 1px;
  white-space: nowrap;
}
  .next-page-btn,.next-back-btn i {
    font-size: 16px;
  }
/* hover */
  .next-page-btn:hover {
  background: #B31802;
  transform: translateY(0);
}

.next-back-btn:hover {
  background: #B31802;
  transform: translateY(0);
}
.next-page-btn:hover .nbtn{
  color: #fff;

}
.next-back-btn:hover .nbtn{
  color: #fff;

}

.next-page-btn:hover i {
  transform: translateX(5px);
}
.next-back-btn:hover i {
  transform: translateX(-5px);
}
  .cursor-dot,.cursor-outline{
    display: none;
  }

}
/* ================= SMALL MOBILE ================= */
 @media (max-width: 480px) {
  .next-page-btn {
    width: 140px;
    height: 45px;
  }

  .next-page-btn .nbtn {
    font-size: 14px;
  }
} 

 /* ================= CONTACT FLOAT BTN ================= */
.contact-open-btn{
  position:fixed;right:55px;bottom:25px;
  width:60px;height:60px;border-radius:50%;
  background:linear-gradient(135deg,#1d6c78);
  color:#fff;border:none;font-size:22px;
  cursor:pointer;z-index:1200;
  box-shadow:0 20px 40px rgba(0,0,0,.35)
}

/* ================= CONTACT SIDEBAR ================= */
.contact-sidebar{
  position:fixed;top:0;right:-450px;
  width:350px;height:100vh;
  background:#1d6c78;
  backdrop-filter:blur(16px);
  padding:30px;transition:.4s;
  z-index:1300
}
.contact-sidebar.active{right:0}

.close-btn{
  position:absolute;top:18px;right:25px;color: #fff;
  width:38px;height:38px;border-radius:50%;
  background:#1d6c78;display:flex;align-items:center;justify-content:center;
  cursor:pointer;font-size:22px
}

.input-box{position:relative;margin-bottom:16px}
.input-box i{position:absolute;left:14px;top:50%;transform:translateY(-50%)}
.input-box input,.input-box textarea{
  width:100%;padding:14px 14px 14px 40px;
  border-radius:10px;border:1px solid #ddd
}

.contact-form button{
  width:100%;padding:14px;border-radius:50px;
  border:none;background:#1d6c78;color:#fff
}
.whatsapp-btn{
    text-decoration: none;
    color: #fff;
    font-size: 20px;

}
.social-icons a{
    font-size: 20px;
    color: #fff;
}
.subscribe-box h4{
    font-size: 20px;

}
.subscribe-box input{
    display: flex;
    gap: 0px;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 5px;
    text-align: center;
}
.subscribe-box button{
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    background-color: #fff;
    color: #1d6c78;
}
.map-box{
    margin-top: 20px;
}
.contact-address h5{
    font-size: 25px;
    color: #fff;
}
.contact-address p{
    font-size: 20px;
    color: #fff;
}


/* ================= RESPONSIVE ================= */

/* -------- Tablets -------- */
@media (max-width: 992px) {

  .contact-open-btn{
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .contact-sidebar{
    width: 320px;
    padding: 25px;
  }

  .contact-title{
    font-size: 22px;
  }

  .contact-sub{
    font-size: 14px;
  }

  .contact-address h5{
    font-size: 22px;
  }

  .contact-address p{
    font-size: 16px;
  }
}


/* -------- Mobile -------- */
@media (max-width: 768px) {

  .contact-open-btn{
    right: 5%;
    top: 6%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    color: #fff;
  }

  .contact-sidebar{
    width: 100%;
    right: -100%;
    padding: 20px;
  }

  .contact-sidebar.active{
    right: 0;
  }

  .close-btn{
    top: 15px;
    right: 30px;
    width: 54px;
    height: 54px;
    font-size: 25px;
    color: #fff;
  }

  .whatsapp-btn{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    margin: 15px 0;
  }

  .social-icons{
    margin: 15px 0;
    display: flex;
    gap: 15px;
  }

  .subscribe-box h4{
    font-size: 18px;
  }

  .subscribe-box input{
    height: 45px;
    font-size: 14px;
  }

  .subscribe-box button{
    width: 50%;
    font-size: 15px;
  }

  .map-box iframe{
    width: 100%;
    height: 180px;
    border-radius: 10px;
  }

  .contact-address h5{
    font-size: 20px;
    margin-top: 20px;
  }

  .contact-address p{
    font-size: 15px;
  }
}


/* -------- Small Mobile -------- */
@media (max-width: 480px) {

  .contact-open-btn{
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .contact-title{
    font-size: 20px;
  }

  .whatsapp-btn{
    font-size: 16px;
  }

  .social-icons a{
    font-size: 18px;
  }

  .map-box iframe{
    height: 150px;
  }
}

/* hero section */
.gallery-section{
  position:relative;
  min-height:100vh;
  background:
 linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
 url("./images/bg5.avif");
 background-repeat: no-repeat;
 background-size: cover;
 background-attachment: fixed;
 background-blend-mode:soft-light;
  overflow:hidden;
  padding:80px 20px;
}

/* Center text */
/* Center content */
.center-content {
  text-align: center;
  max-width: 600px;
  margin: 50px auto;
  position: relative;
  z-index: 10;
  padding: 40px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

/* .top-text{
  font-size:12px;
  letter-spacing:2px;
  color:#333;
} */

.center-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin: 15px 0;
  color: #191C38;
  font-weight: 600;
  line-height: 1.2;
}

.center-content h1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: 3px;
  top: 120px;
  border-radius: 5px;
  background:linear-gradient(to right,gray,#191C38)
} 

.center-content p{
  font-size:17px;
  line-height:1.7;
  margin-top:10px;
  color: black;
}

.center-content button {
  padding: 14px 35px;
  background: linear-gradient(135deg, #caa24d, #f0d98a);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  color: #B31802;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(202, 162, 77, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 15px;
}

.center-content button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(202, 162, 77, 0.4);
}

.center-content button:active {
  transform: translateY(-1px);
}

.center-content button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.7s ease;
}

.center-content button:hover::after {
  left: 100%;
}

/* Image style */
.img{
  position:absolute;
  width:220px;
  height:240px;
  border-radius:100px 100px 20px 20px;
  overflow:hidden;
  transform: rotate(10deg);
  transition: all 0.6s ease;
}

.img:hover{
  transform: rotate(0deg) scale(1.1);
}

.img img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity: 1;
  transition: opacity 0.6s ease; /* 🔥 MUST */
}


/* Image positions */
.img1{top:8%;left:8%;}
.img2{top:10%;right:10%;}
.img3{left:15%;bottom:30%;}
.img4{right:15%;bottom:30%;}
.img5{bottom:8%;left:34%;}
.img6{bottom:8%;right:34%;} 

/* Mobile responsive */
@media(max-width:768px){
  .img{
    width:120px;
    height:170px;
  }
  .img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: opacity 0.6s ease;
}
  .center-content h1{
    font-size:34px;
  }
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  .gallery-section{
    padding: 60px 15px;
  }
  .center-content h1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: 3px;
  top: 90px;
  border-radius: 5px;
  background:linear-gradient(to right,gray,#191C38)
} 

  /* center text */
   .center-content {
    padding: 30px 20px;
  }
  
  .center-content h1 {
    font-size: 34px;
  }
  
  .center-content p {
    font-size: 14px;
  }
    .center-content {
    margin-bottom: 30px;
  }

  /* 🔥 IMAGE GRID FOR MOBILE */
  .img{
    position: relative;      /* absolute remove */
    transform: none;         /* rotation remove */
    width: 140px;
    height: 180px;
  }

  .img:hover{
    transform: scale(1.05);
  }

  /* image container */
  .gallery-section{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* images wrap */
  .gallery-images{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
  }

  /* remove desktop positions */
  .img1,.img2,.img3,.img4,.img5,.img6{
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .footer{
  display: block;
  width: 100%;
  height: 80px;
  margin-top: 10px;
}
}
