@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif !important;
  overflow-x: hidden;
}


 .error-message {
    display: none;
    color: red;
    font-size: 0.9em;
    margin-top: 4px;
  }

  .error-message.visible {
    display: block;
  }
a
{
  color:#fff !important;
  text-decoration: none !important;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Adjust opacity as needed */
  z-index: 1;
  color: white;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 70px;
  z-index: 1000;
  background: transparent;
}

@media (max-width: 768px) {
  header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  z-index: 1000;
  background: transparent;
   
  }
}

.logo {
  width:70px
}


.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: -30px;
}

.enquire {
  padding: 10px 30px;
  background: #C49E73;
  border: none;
  color:#fff;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 1mm;
  transition: background 0.3s ease, transform 0.3s ease;
}



.enquire:hover {
  background: #C49E73;
  color:#000;
  transform: scale(1.05);
  
} 


.whatsapp-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  padding:10px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hamburger:hover,
.whatsapp-icon:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.hamburger {
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
   z-index: 998;
}

.whatsapp-icon {
  background-image: url('images/whatsapp.png');
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px;
  background-size: 50%;
}

#sideMenu {
  position: fixed;
  right: -300px;
  top: 0;
  height: 100%;
  width: 250px;
  background-color: #C49E73;
  color: white;
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 1100;
}

#sideMenu.show {
  right: 0;
}

#sideMenu .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: white;
  font-weight: bold;
  z-index: 1101;
}


#sideMenu ul {
  list-style: none;
  padding: 0;
}

#sideMenu ul li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-weight: 500;
}

.slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 300vw;
  transition: transform 1.5s ease-in-out;
}

.slide {
 min-width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
   position: relative;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 80px 100px 80px;
  box-sizing: border-box;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.text {
  max-width: 550px;
  color: white;
}

.text h1 {
  font-size: 48px;
  margin: 0 0 20px;
  line-height: 1.2;
  color: white;
}

.text p {
  font-size: 18px;
  color: white;
}

.arrows {
  position: absolute;
  bottom: 60px;
  right: 100px;
  display: flex;
  gap: 10px;
}

.arrows div {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
 
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}


@media screen and (max-width: 768px) {
  .text h1 {
    font-size: 32px;
  }

  .text p {
    font-size: 16px;
    max-width: 90%;
  }

  .slide {
    padding: 0 20px 80px 20px;
  }



  .enquire {
    padding: 8px 16px;
    font-size: 14px;
  }

  
  .whatsapp-icon {
    width: 32px;
    height: 32px;
    padding: 20px;
  }

  #sideMenu {
    width: 200px;
    padding: 40px 15px;
  }

  #sideMenu ul li {
    font-size: 14px;
  }

  .arrows {
    bottom: 30px;
    right: 30px;
  }

  .arrows div {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .text h1 {
    font-size: 24px;
  }

  .text p {
    font-size: 14px;
  }

  .enquire {
    font-size: 14px;
    padding: 8px 12px;
  }


  .whatsapp-icon {
    width: 32px;
    height: 32px;
    padding: 20px;
  }

  .arrows {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .arrows div {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

 

.intro-section.visible {
  opacity: 1;
  transform: translateY(0);
}



.intro-section {
  /* background-color: #ffeacf; */
    background-color: #F4F1EE;
  color: #313435;
  padding: 70px;
  text-align: left;
  width:100%;
}

.intro-section h2 {
  font-size: 36px;
  font-weight: 500;
  color: #1790ad;
  margin-bottom: 10px;
}

.intro-section h3 {
  font-size: 20px;
  font-weight: 500;
  color: #1790ad;
  margin-bottom: 20px;
}

.intro-section p {

  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #272626;
}


.intro-stat {
  flex: 1 1 200px;
  min-width: 180px;
  border-left: 2px solid #7b6f61;
  margin-top:10px !important;
}

.intro-stat span.label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #6d6257;
  margin-bottom: 8px;
}

.intro-stat span.value {
  font-size: 30px;
  font-weight: 600;
  color: #1790ad;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .intro-section {
    padding: 60px 20px 30px;
  }
  .intro-section h2 {
    font-size: 26px;
  }
  .intro-section h3 {
    font-size: 18px;
  }
  .intro-section p {
    font-size: 15px;
  }
  .intro-stats {
    flex-direction: column;
    gap: 20px;
  }
 
}

@media screen and (max-width: 480px) {
  .intro-section h2 {
    font-size: 22px;
  }
  .intro-section h3 {
    font-size: 16px;
  }
  .intro-section p {
    font-size: 14px;
  }
  .intro-stat span.value {
    font-size: 20px;
  }

}




.amenities-section {
    margin: 0 !important;
  padding: 0 !important;
  background: #F4F1EE;
  overflow-x: auto;
  white-space: nowrap;
  /* padding: 50px 0; */
}

.amenities-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.amenity-card {
 position: relative;
  flex: 0 0 85vw; 
  max-width: 450px;
  height: 90vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.4s ease-in-out;
  cursor: pointer;
  scroll-snap-align: start;

}

@media (max-width: 768px) {
  .amenities-scroll {
    flex-wrap: wrap;
    overflow: visible;

    justify-content: center;
  }

  .amenity-card {
    flex: 0 0 calc(25% - 1rem); 
    height: 250px;
  }
  .image-wrapper img {
    transform: scale(1.5) translateY(0);
  }
}


/* Vertical label on left side */
.label-vertical {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  color: white;

  writing-mode: vertical-rl;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: 2px;
}


.overlay h3 {
  font-size: 18px;
  margin: 10px;
  font-weight: 400;
}

.circle-arrow {
  font-size: 24px;
  color: white;
  margin-top: 10px;
  transition: margin-left 0.3s ease;
}



.video-section {
  background: #F4F1EE;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}


.video-wrapper {
  position: relative;
  width: 60vw;
  max-width: 100vw;
  margin: 0 auto;
  overflow: hidden;
  transition: width 1s ease-out, opacity 1s ease-out;
  opacity: 0;
  will-change: width, opacity;
}

.video-wrapper.enlarged {
  width: 100vw;
  opacity: 1;
}

.video-wrapper img {
  width: 100%;
  display: block;
  height: auto;
  transition: transform 0.6s ease-out;
}



.video-wrapper video {
  width: 100%;
  display: block;
}

.video-wrapper.visible {
  opacity: 1;
  transform: scale(1);
}
.video-preview {
  width: 100%;
  height: auto;
  display: block;

  transition: transform 0.5s ease-in-out;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height:85px;
  width:85px;
 
  border-radius: 50%;
  padding: 10px ;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.play-button:hover {
 
  transform: translate(-50%, -50%) scale(1.1);
}

@media screen and (max-width: 768px) {
  .video-wrapper {
    width: 90vw;
  }
  .video-wrapper.enlarged {
    width: 95vw;
  }
  .play-button {
    font-size: 30px;
    padding: 10px 20px;
    height: 60px;
    width:60px;
  }

  
}



.circle-arrow {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid white;
  transition: all 0.3s ease;
}

.circle-arrow:hover {
  background-color: white;
  color: #333;
}



.plans-section {
  background: #fff;
  padding: 20px;
  text-align: left;
}

.plans-header h2 {
  font-size: 34px;
  font-weight: 600;
  color: #1790ad;

}

@media screen and (max-width: 768px) {
  
.plans-header h2 {
  font-size: 26px;
  

}
}
@media screen and (max-width: 480px) {
  
.plans-header h2 {
  font-size: 22px;
  
}
}
.tab-buttons {
  display: flex;
  justify-content: left;
  gap: 40px;
  margin-top: 10px;
  
  padding-bottom: 10px;
}

.tab-buttons .tab {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: border-bottom 0.3s ease;
  position: relative;
}

.tab-buttons .tab.active {
  color: #1790ad;
}

.tab-buttons .tab.active::after {
  content: '';
  position: absolute;
  width: 100%;
 
  background: #1790ad;
  bottom: 0;
  left: 0;
}

.tab-content {
  display: none;
  padding-top: 40px;
}

.tab-content.active {
  display: block;
}

.plan-image {
 width: auto;
  height: 300px;
  display: block;
  max-width: 100%;
  border:solid 1px silver;
  padding:10px;
  filter: blur(3px);
}

.plan-image1 {
 width: auto;
  height: 600px;
  display: block;
  max-width: 100%;
  border:solid 1px silver;
  padding:10px;
}
@media screen and (max-width: 768px) {
 .plan-image {
width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
filter: blur(3px);
}
 .plan-image1 {
width: 100%;
  height: auto;
  display: block;
  max-width: 100%;

}
  }
  

.legends {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
  color: #6d6257;
}

.legends h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #c97e40;
}

.legends ul {
  columns: 2;
  padding-left: 20px;
  line-height: 1.6;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .tab-buttons {
    /* flex-direction: column; */
    gap: 10px;
  }

  .legends ul {
    columns: 1;
  }
}



.footer-section {
  background: #F4F1EE;
  padding: 60px 40px 30px;
  color: #334a52;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  flex: 1 1 45%;
}

.footer-right {
  flex: 1 1 45%;
}

.address-block {
  margin-bottom: 30px;
}

.address-block h4 {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #4d4038;
}

.address-block p {
  font-size: 15px;
  color: #6c6258;
}

.address-block a {
  color: #6c6258;
  text-decoration: none;
}

.social-icons a {
  margin-right: 15px;
  font-size: 18px;
  color: #a8a29e;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #000;
}

.footer-right h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #4d4038;
}

.callback-form input[type="text"],
.callback-form input[type="email"],
.callback-form input[type="tel"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 8px;
  margin-top: 15px;
  border-radius: 25px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.input-row {
  display: flex;
  gap: 10px;
}

.input-row input {
  flex: 1;
}

.terms {
  font-size: 13px;
  color: #6c6258;
  margin: 10px 0;
  display: block;
}

.terms a {
  color: #007BFF;
  text-decoration: none;
}

.captcha-box {
  background: #fff;
  padding: 10px;
  margin: 20px 0;
  border-radius: 6px;
  font-size: 14px;
  display: inline-block;
}

.callback-form button {
  background: #C49E73;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.callback-form button:hover {
  background: #C49E73;
  color:#000;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  color: #5a504a;
}

.footer-bottom hr {
  margin-bottom: 10px;
  border: none;
  border-top: 1px solid #a69d94;
}

.footer-bottom p {
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }

  .input-row {
    flex-direction: column;
  }

  .callback-form button {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .text {
    max-width: 90%;
    margin-top:100%;
    
    padding: 10px;

    text-align: left;
  }

  .text h1 {
    font-size: 1.5rem;
  }

  .text p {
    font-size: 1rem;
  }


  .text p {
    font-size: 1rem;
  }

  .slider {
     height: auto; 
  }
   .slide {
    min-width: 100vw;
    height: 93vh;  
    aspect-ratio: 16 / 9; 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
  }

}

.modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #000;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}



#autoPopupModal h5 {
  font-weight: 700;
  color: #073b80;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  z-index: 10000;
}


.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}


.map-section {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* Mobile responsive tweak (optional) */
@media (max-width: 768px) {
  .map-section iframe {
    height: 300px;
  }
}



.location-section {
  text-align: center;
  padding: 60px 20px;
  background-color: rgba(23,144,173,0.8);
}

.location-section h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
  color:#fff;

}

@media screen and (max-width: 768px) {
  
.location-section h2 {
  font-size: 26px;
  

}
}
@media screen and (max-width: 480px) {
  
.location-section h2 {
  font-size: 22px;
  
}
}

.location-section .subtitle {
  font-size: 16px;
  color: #fbfbfb;
  margin-bottom: 30px;
  font-weight: 500;
}

.location-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 20px;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 15px;
  color: #fefefe;
  line-height: 1.6;
}

.location-points span {
  position: relative;
  padding-left: 14px;
}

.location-points span::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .location-points {
  display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  
  .location-points span {
    padding-left: 10px;
  }
}

 .section {
      

      margin: 0 auto;
    }
     .image-wrapper {
   height: 100%;
  width: 100%;
  overflow: hidden;
     
    }

    .image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      will-change: transform;
      /* start slightly zoomed & shifted down */
      transform: scale(1.5) translateY(0);
    }





#scrollTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: #C49E73;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  height:50px;
  width:50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}
#scrollTopBtn:hover {
  background-color: #C49E73;
}

.facility-card {
  background: rgba(255, 255, 255, 0.15); /* Transparent white */
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px; /* slightly reduced */
  padding: 1rem 0.5rem; /* reduced padding */
  min-height: 140px; /* reduced height */
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(31, 38, 135, 0.1); /* reduced shadow */
}

.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(31, 38, 135, 0.15);
}

.facility-card i {
  font-size: 2rem !important; /* smaller icons */
  margin-bottom: 0.5rem;
}

.facility-card h6 {
  font-size: 0.85rem;
  line-height: 1.3;
}

#club-facilities h2 {
  font-size: 32px;
  font-weight: 500;
  color: #1790ad;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  #club-facilities h2 {
    font-size: 24px;
  }
  .facility-card i {
  font-size: 1.5rem !important; /* smaller icons */
  margin-bottom: 0.5rem;
}
}

@media screen and (max-width: 480px) {
  #club-facilities h2 {
    font-size: 20px;
  }
  .facility-card i {
  font-size: 1.5rem !important; /* smaller icons */
  margin-bottom: 0.5rem;
}
}
