    .error{
        color:red;
        font-size: 10px;
        padding: 0;
    }

    .swiper-slide {
  text-align: center;
  background: transparent;
}

.amenity-caption {
  color: #fff;
  margin-top: 10px;
  font-size: 1rem;
}
.swiper-pagination {
    bottom: 0% !important;
}
.table-confi {
    border-radius: 5px;
    border: 1px solid #fff; /* Optional: white border */
    height:550px;
    padding:60px;
    margin-right:5px;
}
.swiper-slide img {
  width: 100%;
  border-radius: 8px;
}

.gallerySwiper .swiper-slide {
  padding: 30px;
}


.enquire-button {
    display: inline-flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 0;
    height: 48px; /* Set desired button height */
    border-radius: 48px; /* Full pill shape */
    background-color: #ffffff;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.enquire-button .icon {
    background-color: #b59a5a; /* gold */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Match button height */
    aspect-ratio: 1 / 1; /* Keep it a perfect circle */
    font-size: 18px;
    margin-left: 12px;
}

.abt-img-wrapper {
  margin-top: -130px;
}

/* Responsive fix for mobile view */
@media (max-width: 767.98px) {
  .abt-img-wrapper {
    margin-top: 0; /* reset the margin for mobile */
  }
}

  .custom-button {
    background-color: #A99561 !important;
    color: white !important;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
  }



  /* Lightbox styles */
  .gallery-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
  }
  
  .lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    max-height: 80vh;
  }
  
  .close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .close-lightbox:hover {
    color: #bbb;
  }
  
  /* Make images clickable */
  .gallery-lightbox {
    cursor: pointer;
    display: block;
  }
  
  .gallery-lightbox:hover {
    opacity: 0.8;
  }



 /* Modal/Lightbox Style */
  .imagemodal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
  }

  .imagemodal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 1200px;
    max-height: 80vh;
    animation-name: zoom;
    animation-duration: 0.6s;
  }

  @keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
  }

  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }

  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }

  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }

  /* Make images clickable */
  .gallery-img {
    cursor: pointer;
    transition: 0.3s;
  }

  .gallery-img:hover {
    opacity: 0.7;
  }