@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background: #fff;
  color: #333;
}

.gallery-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

#gallery-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

#gallery-slider .slide {
  flex: 0 0 100%; /* Show one slide at a time */
  box-sizing: border-box;
  padding: 0 10px;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.gallery-btn.prev {
  left: 0;
}

.gallery-btn.next {
  right: 0;
}

.gallery-dots {
  text-align: center;
  margin-top: 15px;
}

.gallery-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.gallery-dots .dot.active {
  background-color: #333;
}


.signature-experiences {
  padding: 4rem 1rem;
  background: #f9f9f9;
  text-align: center;
}

.signature-experiences__header {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.signature-experiences__title {
    font-family: 'Playfair Display';
    font-size: 3rem;
    padding: 0 5rem 0 5rem;
    font-weight: bold;
    margin: 5rem 0 0 0;
}

.signature-experiences__underline {
  width: 60px;
  height: 4px;
  background: #3db8ff;
  margin: 0.5rem auto 1rem;
  border-radius: 4px;
}

.signature-experiences__intro {
  color: #555;
  font-size: 1rem;
  padding: 0 4rem 0 4rem;
}

.signature-experiences__intro-arabic {
  color: #555;
  font-size: 1rem;
  padding: 0 5rem 0 5rem;
}

.signature-experiences__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.signature-card-container {
  height: fit-content;
  width: 19rem;
}

.signature-card {
  display: flex;
  flex-direction: column ;
  background-size: cover !important;           /* ensures full coverage */
  background-position: center !important;      /* centers the image */
  background-repeat: no-repeat !important;     /* prevents tiling */
  background: black;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    padding: 1.5rem;
    overflow: hidden;
    height: 30rem;
    top: 45px;
    justify-content: center;
    position: relative;
}

.signature-card:hover {
  transform: scale(1.02);
  background-size: 105%;
  cursor: pointer;
}

/* Add dark overlay */
.signature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* adjust opacity as needed */
  z-index: 1;
}

/* Ensure overlay content stays above the dark layer */
.signature-card__overlay {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.signature-card__icon {
  font-size: 2rem;
  color: #33cbedba;
  margin-bottom: 0.5rem;
}

.signature-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: whitesmoke;
}

.signature-card__text {
  color: whitesmoke;
  font-size: 1rem;
  flex-grow: 1; /* makes sure image is pushed to the bottom */
}

.signature-card__image {
  display: block !important;
  position: static !important;
  z-index: auto !important;
  max-width: 100% !important;
  height: auto !important;
  margin-top: 1rem !important;
}



/* Contact Page */


  body {
      font-family: 'Segoe UI', sans-serif;
      background: #f9f9f9;
      color: #333;
      margin: 0;
      padding: 0;
    }

.contact-section {
  position: relative;
  background-image: url('images/sandbank_4.webp'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.contact-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.6); /* Dark light blue overlay */
  z-index: 1;
}

  .contact-container {
    width: 50rem;
    top: 1rem;
    margin: 0 0 0 15rem;
    padding: 140px 20px;
    position: relative;
    z-index: 2;
    padding: 5rem 0 0 0;
}
  
  .contact-container h2 {
    text-align: left;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    }

    form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      background: white;
      color: #333;
      text-align: left;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    form div {
      display: flex;
      flex-direction: column;
    }
    label {
      font-weight: 600;
      margin-bottom: 5px;
    }
    input, select, textarea {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
    }
    textarea {
      resize: vertical;
      min-height: 100px;
    }
    .full-width {
      grid-column: span 2;
    }
    button {
      width: 15rem;
      background: transparent;
      color: #3db8ff;
      border: solid #3db8ff 2px;
      padding: 15px;
      font-size: 16px;
      font-weight: bold;
      border-radius: 40px;
      cursor: pointer;
    }
    button:hover {
      background: #3db8ff;
      color: white;
    }

    .contact-details {
      text-align: left;
      color: white;
      z-index: 2;
      margin: -9rem 0 0 0;
    }

    .contact-details .call {
      margin: 5rem 0 2rem 2rem;
    }

    .contact-details .email {
      margin: 0 0 2rem 2rem;
    }

    .contact-details .social {
      margin: 0 0 5rem 2rem;
    }

    .contact-details .contact-short-text {
      margin: 0 0 5rem 2rem;
    }

    .map {
      width: 100%;
      height: 400px;
      margin-top: 40px;
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .map iframe {
        width: 100%;
        height: 400px;
    }
    .faq {
      margin-top: 60px;
      margin-bottom: 2rem;
      width: 100%;
    }
    .faq h3 {
      font-size: 28px;
      margin-bottom: 20px;
    }
    .accordion {
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      margin-bottom: 10px;
    }
    .accordion-item {
      border-bottom: 1px solid #eee;
    }
    .accordion-header {
      padding: 15px;
      cursor: pointer;
      font-weight: bold;
      background: #f4f4f4;
    }
    .accordion-body {
      padding: 15px;
      display: none;
    }
    .accordion-body.open {
      display: block;
    }
    

/* Our Location */
.our-location {
    margin: 0 0 0 2rem;
    padding: 0 0 2rem 0;
}

.our-location a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.our-location i {
    color: #f4af1b;
    font-size: 1.3rem;
}

    
/* SUCCESS POP-UP */
.success-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  display: none;
  z-index: 9999;
  animation: fadeInUp 0.4s ease-out forwards;
}

.success-popup .tick {
  font-size: 40px;
  color: #28a745;
  animation: popTick 0.5s ease forwards;
}

.success-popup h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #333;
}

.success-popup p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popTick {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}


/* ERROR POP-UP */
.error-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ffecec;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  display: none;
  z-index: 9999;
  animation: fadeInUp 0.4s ease-out forwards;
}

.error-popup .error-icon {
  font-size: 40px;
  color: #dc3545;
  animation: popTick 0.4s ease forwards;
}

.error-popup h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #b10000;
}

.error-popup p {
  font-size: 14px;
  color: #a94442;
}


/* Testimonial Section */

.testimonial-slider-container {
  position: relative;
  width: 100rem;
  height: 100%;
  margin: 2rem 0 0 0;
  overflow: hidden;
  text-align: center;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-slide.active {
  display: flex;
}

.testimonial-image {
  
}


.testimonial-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-review {
  width: 36rem;
  height: 10rem;
  background-color: #f9f9f9;
  margin-top: 15rem;
  margin-bottom: 1rem;
  margin-right: 20rem;
}

.testimonial-review p {
  text-align: left;
}

.testimonial-review h4 {
  text-align: right;
  background-color: white;
  margin: 5px 30px 0 0;
}


.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #3db8ff;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
}

.testimonial-prev, .testimonial-next:hover {
  background: transparent;
  color: #333;
}

.testimonial-prev {
  left: 0.5rem;
  background: rgba(255, 255, 255, 0.192);
  color: #3db8ff;
}

.testimonial-prev:hover {
  background: transparent;
  color: #333;
}

.testimonial-next {
  right: 0.5rem;
}

.testimonial-dots {
  margin-top: 1rem;
}

.testimonial-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  display: inline-block;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-dots .dot.active {
  background-color: #333;
}


/* Beach Bliss Moments */
.golden-gallery-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
  overflow: hidden;
}

.golden-gallery-subtitle {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.golden-gallery-underline {
  width: 60px;
  height: 3px;
  background: #e0b000;
  margin: 0.5rem auto 2rem;
}

.golden-gallery-slider-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.golden-gallery-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%; /* 100% * number of slides */
}

.golden-gallery-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.golden-gallery-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.golden-gallery-dots {
  margin-top: 1.5rem;
}

.golden-gallery-dots .golden-dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.golden-gallery-dots .golden-dot.active {
  background-color: #e0b000;
}


/* RESPONSIVE */
@media (min-width: 768px) {
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom, rgba(10, 20, 30, 0.6), rgba(10, 20, 30, 0));
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  height: 7rem;
  top: 0;
  z-index: 9999;
  transition: background 0.3s ease;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

/* NAV MENU */
.nav-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background: rgba(10, 42, 67, 0.4);
  backdrop-filter: blur(10px); 
  transition: left 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  z-index: 9999;
}

.nav-menu.active {
  left: 0;
}

.nav-menu .close-toggle {
  align-self: flex-end;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: left 0.4s ease-in-out;
  padding: 0;
  margin: 0;
}

.nav-menu ul li {
  padding: 0.3rem 0;
  margin: 0; /* Ensure no added margins */
}

.nav-menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 1rem;
}

/* BURGER ICON */
.menu-toggle {
  font-size: 1.5rem;
  cursor: pointer;
  display: block;
  color: white;
}

.logo {
  display: flex;
  align-items: center;
  padding-left: 1rem;
}

.logo img.nav-logo {
  height: 9rem;  /* adjust as needed */
  width: auto;
  object-fit: contain;
  margin: 0 0 0 30rem;
}


/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown-menu {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0a2a43;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
}

.dropdown-menu li {
  padding: 0;
  opacity: 0;
  animation: fadeInUp 0.3s forwards;
}
/* Staggered animation delays */
.dropdown-menu li:nth-child(1) { animation-delay: 0.1s; }
.dropdown-menu li:nth-child(2) { animation-delay: 0.2s; }
.dropdown-menu li:nth-child(3) { animation-delay: 0.3s; }
.dropdown-menu li:nth-child(4) { animation-delay: 0.4s; }
/* Add more if needed */

.dropdown-menu li a {
  color: white;
  font-weight: normal;
  display: block;
  text-decoration: none;
  padding: 0.75rem 1rem;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  top: 0;
}

.dropdown.active .dropdown-menu li {
  animation-delay: 0.1s;
}

/* DROPDOWN ANIMATION */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO SECTION */
.hero-cnt img {
  filter: brightness(75%);
  animation: zoomInOut 30s ease-in-out infinite;
  transform-origin: center center;
}

/* Keyframes for zoom effect */
@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* Slight zoom in */
  }
}

/* Animation for text elements in hero */
.hero-cnt h2,
.hero-cnt p,
.hero-cnt a {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease forwards;
}

.hero-cnt p {
  animation-delay: 0.5s;
}

.hero-cnt a {
  width: 15rem;
  height: 5rem;
  border-radius: 60px;
  animation-delay: 1s;
}

/* Keyframes */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  z-index: 1;
}

section::before,
section::after {
  display: none;
}

section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
}

#text {
  position: relative;
  color: white;
  font-size: 10rem;
  z-index: 1;
  text-align: center;
}

/* WELCOMING SECTION */
.welcome-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  color: #0a2a43;
}

.welcome-container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  height: 100vh;
  width: 100vw;
}

.welcome-text {
  flex: 1;
  text-align: center;
}

.welcome-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.welcome-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.welcome-image img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
 
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* BUTTON STYLE */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: #12AACC;
  font-weight: 600;
  border: solid #12AACC 2px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0a88a2;
}

.hero-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: white;
  font-weight: 600;
  border: solid white 2px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: white;
  border: solid transparent 2px;
  color: #12AACC;
}
  
  
.hero-cnt {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: floralwhite;
    text-align: center;
}   

.hero-cnt #text {
  font-size: 4rem;
  font-family:'Playfair Display';
  padding: 2rem;
  text-align: center;
}

  .hero-cnt p {
    margin: 0px;
    font-size: 1.3rem;
    padding: 2rem;
    width: 500px;
    font-weight: 300;
    margin-top: -2rem;
    text-align: center;
    font-weight: 600;
  }



.btn {
  font-size: 1.1rem;
  margin: 20px 0 20px 0;
  border: solid 2px #12AACC;
}


 /* NAV MENU */
.nav-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background: rgba(10, 42, 67, 0.4);
  backdrop-filter: blur(10px); 
  transition: left 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  z-index: 9999;
}

.nav-menu.active {
  left: 0;
}

.nav-menu .close-toggle {
  align-self: flex-end;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: left 0.4s ease-in-out;
  padding: 0;
  margin: 0;
}

.nav-menu ul li {
  padding: 0.3rem 0;
  margin: 0; /* Ensure no added margins */
}

.nav-menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 1rem;
}

/* BURGER ICON */
.menu-toggle {
  font-size: 2rem;
  cursor: pointer;
  display: block;
  color: white;
  margin: 0 0 0 1rem;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown-menu {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0a2a43;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
}

.dropdown-menu li {
  padding: 0;
  opacity: 0;
  animation: fadeInUp 0.3s forwards;
}
/* Staggered animation delays */
.dropdown-menu li:nth-child(1) { animation-delay: 0.1s; }
.dropdown-menu li:nth-child(2) { animation-delay: 0.2s; }
.dropdown-menu li:nth-child(3) { animation-delay: 0.3s; }
.dropdown-menu li:nth-child(4) { animation-delay: 0.4s; }
/* Add more if needed */

.dropdown-menu li a {
  color: white;
  font-weight: normal;
  display: block;
  text-decoration: none;
  padding: 0.75rem 1rem;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  top: 45px;
}

.dropdown.active .dropdown-menu li {
  animation-delay: 0.1s;
}

/* DROPDOWN ANIMATION */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

  .experiences {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    align-items: center;
  }

  .experience-container {
    width: 100%;
    height: 45%;
  }

  .experience-preview h2 {
    font-size: 4rem;
  }

  .experience-preview p {
    padding-top: 2px;
  }

 .experience-grid {
    display: flex;
    flex-direction: row;

  }


  .slideshow-bg {
    display: flex;
    flex-direction: column;
  position: relative;
  overflow: hidden;
  color: #333;
  text-align: center;
  padding: 4rem 1rem;
  height: 90vh;
}

.slideshow-bg h2 {
  font-family: 'Playfair Display';
  z-index: 2;
  position: relative;
  font-size: 2rem;
  margin-bottom: 0rem;
  margin-top: 0rem;
}

.slideshow-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgb(15 32 39 / 53%); /* light blue overlay */
  z-index: 1;
}

.slideshow-images {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.slideshow-images .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 2s ease-in-out, transform 10s ease-in-out;
  z-index: 0;
}

.slideshow-images .slide.active {
  opacity: 1;
  transform: scale(1.03);
  z-index: 0;
}

.features-scroll-container {
  position: relative;
  z-index: 2;
}

.features-scroll {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 1rem 0;
}

.feature {
  min-width: 220px;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.feature i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

  

  .intro-video {
    width: 100%;
    height: 35rem !important;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
  }

  .intro-video h2 {
    font-size: 3rem;
    justify-content: flex-start;
    top: 0;
    bottom: 2rem;
  }

  .video-wrapper {
    width: 100%;
    height: 29rem !important;
    margin: 1rem 0 0 auto;
    justify-content: center;
  }

  .video-wrapper video {
    width: 100%;
    height: 29rem;
  }
  
  

  .section-underline {
    margin-bottom: 50px;
  }

  .location-content {
    max-width: 1200px;
  }

  .testimonial .testimonial-image {
    position: relative;
    height: 170px;
    z-index: 1000;
    margin-bottom: 15rem;
    object-fit: cover;
    justify-content: center;
    padding-right: 400px;
   
  }

  .testimonial-image img {
    width: 25rem;
    height: 26rem;
    border-radius: 15rem 15rem 0 0;
    align-items: center;
    margin-left: 55rem;
    margin-top: 0;
    }



/* Gallery Wrapper */
/* Flex wrapper for side-by-side layout */
.gallery-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 5rem;
  flex-wrap: wrap; /* allows stacking on small screens */
  gap: 2rem;
}

/* Gallery text aligned to the right */
.gllrytext {
  width: 43%;
  text-align: left;
  margin: 0;
  padding: 5rem 0 0 0;
}

.gllrytext h2 {
    font-family: 'Playfair Display';
    font-size: 2rem;
    text-align: left;
    font-weight: 600;
}

.gllrytext p {
    font-family: 'Poppins';
    text-align: justify;
}

.gllrytext button {
    margin: 2rem 0 0 0;
}

/* Carousel remains on the left */
.carouselgllrycnt {
        width: 395px;
        height: 55vh;
        border-radius: 130rem 130rem 3rem 3rem;
        overflow: hidden;
        margin: 0;
}

.carouselgllryslide {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carouselgllryslide img {
  width: 100%;
  height: auto;
}

/* Gallery buttons */
#gllrynextBtn, #gllryprevBtn {
  width: 2rem;
  background-color: #12aacc17;
  border: none;
  margin: 0 0 0 30rem;
}

/* Optional: fine-tune button spacing */
#gllryprevBtn {
  margin: 0rem 0 0 6.5rem;
}



/*
.auto-gallery-container {
  background-color: #0a2a43;
}

.auto-gallery-slider {
  position: relative;
  width: 60%;
  overflow: hidden;
}

.auto-gallery-images {
  display: flex;
  width: 100%;
}

.auto-gallery-images img {
  height: 400px;
  width: 100%;
  transition: all 0.15s ease;
}

.auto-gallery-images input {
  display: none;
}

.auto-gallery-dots {
  display: flex;
  justify-content: center;
  margin: 5px;
}

.auto-gallery-dots label {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: solid #fff 3px;
  cursor: pointer;
  transition: all 0.15s ease;
  margin: 5px;
}

.auto-gallery-dots label:hover {
  background: #fff;
}

#img1:checked ~ .m1 {
  margin-left: 0;
}
#img2:checked ~ .m2 {
  margin-left: -100%;
}
#img3:checked ~ .m3 {
  margin-left: -200%;
}
#img4:checked ~ .m4 {
  margin-left: -300%;
}
#img5:checked ~ .m5 {
  margin-left: -400%;
}

*/

    
  /* Experience Preview with Text and Overlay */

.experience-preview {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: white;
  transition: background-image 0.4s ease-in-out;
  overflow: hidden;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* 👈 This centers icons/text horizontally */
  background: rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
  padding: 2rem;
  z-index: 1;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  z-index: 2;
}
.experience-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 42, 67, 0.4); /* adjust opacity here */
  z-index: 1;
}

.experience-overlay img {
  width: 100%;
  height: auto;
  display: block;
}


.experience-preview .experience-text {
  position: relative;
  z-index: 2;
  margin: 0 0 10rem 0px;
  text-align: center;
  max-width: 800px;
}

.experience-preview h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', serif;
}

.experience-preview p {
  font-size: 1.2rem;
  line-height: 1.6;
}
.experience-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(10px);
  display: block;
  transform: scale(1.1); /* Optional: slight scale to hide blur edges */
}

.proof {
  background: var(--light-blue);
  padding: 3rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  height: 100vh;

}

.proof h2 {
  font-family: 'Playfair Display';
  font-weight: 600;
  color: white;
  margin-top: 10rem;
  margin-bottom: 1rem;
  font-size: 3rem;
  width: 100%;
  text-align: center;

}

.proof-grid {
  color: #f9f9f9b0;
  display: flex;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 900px;
  margin: 2rem auto 2rem;
  z-index: 2;
}

.proof-item {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.proof-item i {
  font-size: 2rem;
  color: var(--light-orange);
  margin-bottom: 0.5rem;
}

.proof-item h3 {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.badges {
        display: flex;
        flex-direction: column;
        width: 20rem;
        gap: 2rem;
        font-size: 1rem;
        max-width: 900px;
        margin: 0 0 0 0;
        color: #f9f9f9;
        z-index: 2;
}

.badges i {
  color: var(--light-orange);
  margin-right: 0.5rem;
  z-index: 2;
}


/* Booking Pop-Up */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 20, 30, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 2rem;
}

.booking-modal.show {
  display: flex;
}

.booking-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 700px;
  position: relative;
}

.close-booking {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
  transition: color 0.2s ease;
}

.close-booking:hover {
  color: #000;
}

/* Testimonials Section (Mobile First) */
.testimonial-experience {
  width: 100%;
  max-width: 800px;
  height: 250px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-experience img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease-in-out;
}

.testimonials {
  padding: 2.5rem 1.25rem;
  background-color: #12AACC;
  border-radius: 150px;
  text-align: center;
  overflow: hidden;
}

.testimonials h2 {
  font-size: 3rem;
  width: 200px;
  color: white;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  padding: 52px;
}

.carousel-container {
  position: relative;
  width: 70%;
  overflow: hidden;
}

.review-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial {
  min-width: 100%;
  padding: 0px 90px;
  background: #12AACC;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid white;
}

.review-stars {
  padding: 0.5rem 0 0 0;
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial h4 {
  font-size: 0.98rem;
  font-weight: normal;
}

/* Carousel Buttons (Mobile Position) */
.carousel-btn {
  position: absolute;
  bottom: 10px;
  background: #f5a623;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 1.1rem;
  z-index: 10;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: #e5931f;
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}




/* WHY CHOOSE US */
/* WHY CHOOSE US */
.why-choose-us {
  padding: 3rem 1rem;
  background-color: #f9fbfd;
  text-align: center;
  height: 90vh;
  margin: 5rem 0 0 0;
}

.why-choose-us h2 {
  font-size: 1.8rem;
  color: #0a2a43;
  margin: 1.5rem;
  font-family: 'Poppins', serif;
  padding: 20px;
  text-align: center;
}

/* Horizontal scroll container */
.features-scroll-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.features-scroll {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  scroll-snap-align: start;
}

.feature {
  flex: 0 0 80%;
  max-width: 300px;
  min-width: 250px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  text-align: center;
}

.feature i {
  font-size: 2rem;
  color: #12AACC;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0a2a43;
}

.feature p {
  font-size: 0.95rem;
  color: #555;
}

/* Optional scrollbar styling */
.features-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.features-scroll-container::-webkit-scrollbar-thumb {
  background: #12AACC;
  border-radius: 4px;
}



/* GALLERY */
.image-gallery-slider {
 display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.image-gallery-slider h2 {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  color: #0a2a43;
  margin-bottom: 0.5rem;
}

.gallery-subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Slider Wrapper = image + buttons */
.gallery-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: 500px;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slider {
  display: flex;
  width: 100%;
  gap: 0;
  transition: transform 0.4s ease-in-out;
  height: 100%;
}

.slide {
  flex: 0 0 100%;
  padding: 0;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

/* Prev/Next Buttons */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #12aacc;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 5;
}

.gallery-btn.prev {
  left: 10px;
}

.gallery-btn.next {
  right: 10px;
}

.gallery-btn:hover {
  background: #0a88a2;
}

/* Dots */
.gallery-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gallery-dots .dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gallery-dots .dot.active {
  background: #12AACC;
}


/* Footer Section */
.site-footer {
  background-color: #3db8ff; /* deep ocean blue */
  color: white; /* soft sand / light beige */
  padding: 2rem 1rem;
  font-family: 'Arial', sans-serif;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns div {
  flex: 1;
}

.footer-columns h4 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: #fff;
  border-bottom: 2px solid #f4af1b; /* warm gold */
  display: inline-block;
  padding-bottom: 0.25rem;
}

.footer-columns p,
.footer-columns a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d7cec4; /* soft sand text */
  text-decoration: none;
}

.footer-columns a:hover {
  color: #f4af1b; /* warm gold on hover */
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-columns li {
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  font-size: 1.3rem;
  color: #f4af1b;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #d7cec4;
}

/* Location Section Styles */
.location-section {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 0;
}

.location-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937; /* dark gray */
  margin-bottom: 10px;
}

.section-underline {
  width: 60px;
  height: 4px;
  background-color: #3db8ff; /* light blue */
  margin: 0 auto 10px auto;
  border-radius: 2px;
  z-index: 1;
}

.section-description {
  font-size: 1.2rem;
  color: #4b5563; /* medium gray */
  line-height: 1.7;
  margin-bottom: 40px;
  padding: 25px;
}

.map-container {
  width: 90%;
  height: 60%;
  margin-top: 20px;
  position: relative;
}

.map-container iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}



/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.block {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}


/* Contact Page */
.contact-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 155vh !important;
}

.contact-container {
    width: 42rem;
    top: 1rem;
    margin: 0 0 0 0;
    padding: 140px 20px;
    position: relative;
    z-index: 2;
    padding: 5rem 0 0 0;
}

.contact-details {
        text-align: left;
        width: 24rem;
        height: 25rem;
        color: white;
        z-index: 2;
        margin: 0 22rem 0 0;
}

    .contact-section img {
        height: 155vh;
    }

/* Responsive Enhancements */
@media (min-width: 768px) {
  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }
}
  
  
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: white; /* muted sand */
}

#experience-display {
  height: 100vh;
}

.experience-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  align-items: center;
  margin-bottom: 15rem;
  gap: 30px;
  z-index: 1;
}

.experience {
  background-color: #3db8ff;
  color: white;
  width: 12rem;
  height: 12rem;
  text-align: center;
  line-height: 1.5;
  border-radius: 20px;
  padding: 2rem;
  margin: auto;
}



.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: -300px; /* start hidden off screen */
  background: #fff;
  color: #000;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  font-family: Arial, sans-serif;
  opacity: 0;
  transition: all 0.6s ease;
}

.whatsapp-chat.show {
  right: 20px; /* final position */
  opacity: 1;
}

.whatsapp-chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.why-choose-us h2 {
  font-family: 'Playfair Display';
  text-align: left;
    font-size: 3rem;
   } 



@media (min-width: 1024px) {
/* Contact Page */
.contact-section {
        display: flex;
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        height: 105vh !important;
}

.contact-container {
    width: 42rem;
    top: 1rem;
    margin: 0 2rem 0 0;
    padding: 140px 20px;
    position: relative;
    z-index: 2;
    padding: 3rem 0 0 0;
}

.contact-details {
        text-align: left;
        width: 23rem;
        height: 25rem;
        color: white;
        z-index: 2;
        margin: 0rem 0 14rem 0;
}

.contact-section img {
        height: 110vh;
    }
    
.contact-container h2 {
    font-size: 34px;
}

.faq h3 {
    font-size: 28px;
    margin-bottom: 20px;
    padding: 0 0 0 20px;
}

.accordion-header {
    padding: 15px;
    margin: 0 20px 0 20px;
    cursor: pointer;
    font-weight: bold;
    background: #f4f4f4;
}

.accordion-body {
    padding: 26px;
    margin: 0 10px 0 10px;
}
    
}



@media (min-width: 1440px) {
/* Contact Page */
.contact-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        height: 105vh !important;
}

.contact-container {
    width: 55rem;
    top: 1rem;
    margin: 0 0 0 5rem;
    padding: 140px 20px;
    position: relative;
    z-index: 2;
    padding: 3rem 0 0 0;
}

.contact-details {
        text-align: left;
        width: 24rem;
        height: 25rem;
        color: white;
        z-index: 2;
        margin: 0 0 17rem 0;
}

.contact-section img {
        height: 110vh;
    }
    
.contact-container h2 {
    font-size: 34px;
}

.faq h3 {
    font-size: 28px;
    margin-bottom: 20px;
    padding: 0 0 0 20px;
}

.accordion-header {
    padding: 15px;
    margin: 0 20px 0 20px;
    cursor: pointer;
    font-weight: bold;
    background: #f4f4f4;
}

.accordion-body {
    padding: 26px;
    margin: 0 10px 0 10px;
}
    
}



@media (max-width: 767px) {
  /* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom, rgba(10, 20, 30, 0.6), rgba(10, 20, 30, 0));
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  transition: background 0.3s ease;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

/* NAV MENU */
.nav-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background: rgba(10, 42, 67, 0.4);
  backdrop-filter: blur(10px); 
  transition: left 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  z-index: 9999;
}

.nav-menu.active {
  left: 0;
}

.nav-menu .close-toggle {
  align-self: flex-end;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: left 0.4s ease-in-out;
  padding: 0;
  margin: 0;
}

.nav-menu ul li {
  padding: 0.3rem 0;
  margin: 0; /* Ensure no added margins */
}

.nav-menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 1rem;
}

/* BURGER ICON */
.menu-toggle {
  font-size: 1.5rem;
  cursor: pointer;
  display: block;
  color: white;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown-menu {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0a2a43;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
}

.dropdown-menu li {
  padding: 0;
  opacity: 0;
  animation: fadeInUp 0.3s forwards;
}
/* Staggered animation delays */
.dropdown-menu li:nth-child(1) { animation-delay: 0.1s; }
.dropdown-menu li:nth-child(2) { animation-delay: 0.2s; }
.dropdown-menu li:nth-child(3) { animation-delay: 0.3s; }
.dropdown-menu li:nth-child(4) { animation-delay: 0.4s; }
/* Add more if needed */

.dropdown-menu li a {
  color: white;
  font-weight: normal;
  display: block;
  text-decoration: none;
  padding: 0.75rem 1rem;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  top: 0;
}

.dropdown.active .dropdown-menu li {
  animation-delay: 0.1s;
}

/* DROPDOWN ANIMATION */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO SECTION */
section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  z-index: 1;
}

section::before,
section::after {
  display: none;
}

section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
}

#text {
  position: relative;
  color: white;
  font-size: 10rem;
  z-index: 1;
  text-align: center;
}

/* WELCOMING SECTION */
.welcome-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  color: #0a2a43;
}

.welcome-container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  height: 100vh;
  width: 100vw;
}

.welcome-text {
  flex: 1;
  text-align: center;
}

.welcome-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.welcome-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.welcome-image img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
 
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* BUTTON STYLE */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #12AACC;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0a88a2;
}

  #text {
    text-align: center;
    font-family:'Playfair Display', 'Serif';
    padding: 5px;
    font-size: 3rem;
  }

  .hero-cnt {
    display: flex;
    flex-direction: column;
  }
  
  .hero-cnt img {
        filter: brightness(75%);
        animation: zoomInOut 30s ease-in-out infinite;
        transform-origin: center center;
    }

  .hero-cnt p {
    margin: 10px;
    color: white;
    font-size: 1rem;
    text-align: center;
    padding: 0 25px 0 25px;

  }

  .dropdown-menu {
    display: none;
    position: absolute;
    background: none;
    box-shadow: none;
    padding-left: 1rem;
  }
  /* Only show it when parent has 'active' class */
  .dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
    position: static;
  }

  .dropdown-menu li {
    opacity: 1;
    animation: fadeInUp 0.3s ease forwards;
    padding: 0.5rem 0; /* Adds vertical spacing between items */
  }
  .dropdown.active .dropdown-menu li {
    animation: slideDown 0.3s ease;
    animation-delay: 0.05s;
  }

  .dropdown-menu li a {
    padding: 0.5rem 1rem;
  }

  .nav-menu ul li a {
    padding: 0.75rem 1.25rem;
    font-size: 1.1rem;
  }

  /*Nav Overlay*/
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 20, 30, 0.4);
    backdrop-filter: blur(6px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }


  /* SIGNATURE EXPERIENCES SECTION */
  .experiences {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: 150vh;
    padding: -2rem;
    color: white;
    position: relative;
    text-align: left;
    z-index: 1;
    text-align: left;
    overflow: hidden;
  }
  .experiences::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* semi-dark overlay */
    z-index: 0;
  }
  
  .section-heading {
    text-align: left;
  margin-bottom: 2rem;
  }
  
  .section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0a2a43;
  }
  
  .section-heading p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
  }
  
  .experience-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 3;
    height: fit-content;
    position: relative;
    margin-top: -90px; /* Pull up the grid */
  }
  
  .experience {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .experience:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .experience img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .experience-icon {
    font-size: 1rem;
    color: white;
    margin: 0 0 0;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .experience-icon i {
    display: inline-block;
    animation: popIn 0.6s ease-in-out;
  }
  
  .experience:hover .experience-icon {
    transform: scale(1.2) rotate(5deg);
    color: #f4af1b;
  }

  .experience-text {
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 800px;
  
  }
  
  .experience h3 {
    font-size: 1rem;
    margin: 0.1rem 0;
    color: #0a2a43;
  }
  
  .experience p {
    font-size: 0.8rem;
    color: #f9fbfd;
    padding: 0 1rem 1.5rem;
    line-height: 1.6;
    text-align: center;
  }
  
  @keyframes popIn {
    0% { opacity: 0; transform: scale(0.6); }
    100% { opacity: 1; transform: scale(1); }
  }

  

  /* Experience Preview Display */
#experience-display {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: background-image 0.4s ease-in-out;
  display: none;
}

#experience-display.show {
  display: block;
}

.experience-overlay {
  position: relative;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  z-index: 1;
  border-radius: 0;
}

 /* Experience Preview with Text and Overlay */

.experience-preview {
  position: relative;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: white;
  transition: background-image 0.4s ease-in-out;
  overflow: hidden;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* 👈 This centers icons/text horizontally */
  background: rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
  padding: 2rem;
  z-index: 1;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
}
.experience-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 42, 67, 0.4); /* adjust opacity here */
  z-index: 1;
}

.experience-overlay img {
  width: 100%;
  height: auto;
  display: block;
}


.experience-preview .experience-text {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.experience-preview h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', serif;
}

.experience-preview p {
  font-size: 1.1rem;
  line-height: 1.6;
}
.experience-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(10px);
  display: block;
  transform: scale(1.1); /* Optional: slight scale to hide blur edges */
}

.proof {
  background: var(--light-blue);
  padding: 3rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  height: 155vh;

}

.proof h2 {
  font-family: var(--font-heading);
  color: var(--green);
  margin-bottom: 2rem;
  font-size: 3rem;
  width: 50%;
  text-align: center;

}

.proof-grid {
  display: flex;
  flex-direction: column;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 900px;
  margin: 2rem auto 2rem;
}

.proof-item {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.proof-item i {
  font-size: 2rem;
  color: var(--light-orange);
  margin-bottom: 0.5rem;
}

.proof-item h3 {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.badges {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1rem;
  max-width: 900px;
  margin: 4rem auto;
  color: #333;
}

.badges i {
  color: var(--light-orange);
  margin-right: 0.5rem;
}

.intro-video {
    width: 100%;
    height: 80%;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
  }

  .intro-video h2 {
    font-size: 2rem;
    justify-content: flex-start;
    top: 0;
    bottom: 2rem;
  }

  .video-wrapper {
    width: 100%;
    height: 80%;
    margin: 4rem 0 0 auto;
  }

  .section-underline {
    margin-bottom: 50px;
  }


/* Booking Pop-Up */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 20, 30, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 2rem;
}

.booking-modal.show {
  display: flex;
}

.booking-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 700px;
  position: relative;
}

.close-booking {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
  transition: color 0.2s ease;
}

.close-booking:hover {
  color: #000;
}

/* Testimonials Section (Mobile First) */
.testimonial-experience {
  width: 100%;
  max-width: 800px;
  height: 250px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-experience img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease-in-out;
}

.testimonials {
  padding: 2.5rem 1.25rem;
  background-color: #12AACC;
  border-radius: 150px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonials h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 11rem;
  font-family: 'Playfair Display', serif;
  padding: 130px;
}

.carousel-container {
  position: relative;
  width: 70%;
  overflow: hidden;
}

.review-carousel {
  display: flex;
  margin-top: 10px;
  transition: transform 0.5s ease-in-out;
}

.testimonial {
  min-width: 100%;
  padding: 0px 1px;
  background: #12AACC;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-photo {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid white;
}

.review-stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial h4 {
  font-size: 0.98rem;
  font-weight: normal;
}

/* Carousel Buttons (Mobile Position) */
.carousel-btn {
  position: absolute;
  bottom: 10px;
  background: #f5a623;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 1.1rem;
  z-index: 10;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: #e5931f;
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}




/* WHY CHOOSE US */
/* WHY CHOOSE US */
.why-choose-us {
  padding: 3rem 1rem;
  background-color: #f9fbfd;
  text-align: center;
  display: flex;
}

.why-choose-us h2 {
  font-size: 2rem;
  color: #0a2a43;
  margin: 10px;
  font-family: 'Poppins', serif;
  padding: 0px;
  text-align: center;
}

/* Horizontal scroll container */
.features-scroll-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.features-scroll {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  scroll-snap-align: start;
}

.feature {
  flex: 0 0 80%;
  max-width: 300px;
  min-width: 250px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  text-align: center;
}

.feature i {
  font-size: 2rem;
  color: #12AACC;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0a2a43;
}

.feature p {
  font-size: 0.95rem;
  color: #555;
}

/* Optional scrollbar styling */
.features-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.features-scroll-container::-webkit-scrollbar-thumb {
  background: #12AACC;
  border-radius: 4px;
}



/* GALLERY */
.image-gallery-slider {
 display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.image-gallery-slider h2 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: #0a2a43;
  margin-bottom: 0.5rem;
}

.gallery-subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
  font-style: italic;
  text-align: center;
}

/* Slider Wrapper = image + buttons */
.gallery-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: 500px;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slider {
  display: flex;
  width: 100%;
  gap: 0;
  transition: transform 0.4s ease-in-out;
  height: 100%;
}

.slide {
  flex: 0 0 100%;
  padding: 0;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

/* Prev/Next Buttons */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #12aacc;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 5;
}

.gallery-btn.prev {
  left: 10px;
}

.gallery-btn.next {
  right: 10px;
}

.gallery-btn:hover {
  background: #0a88a2;
}

/* Dots */
.gallery-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gallery-dots .dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gallery-dots .dot.active {
  background: #12AACC;
}


/* Footer Section */
.site-footer {
  background-color: #3db8ff; /* deep ocean blue */
  color: white; /* soft sand / light beige */
  padding: 2rem 1rem;
  font-family: 'Arial', sans-serif;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns div {
  flex: 1;
}

.footer-columns h4 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: #fff;
  border-bottom: 2px solid #f4af1b; /* warm gold */
  display: inline-block;
  padding-bottom: 0.25rem;
}

.footer-columns p,
.footer-columns a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d7cec4; /* soft sand text */
  text-decoration: none;
}

.footer-columns a:hover {
  color: #f4af1b; /* warm gold on hover */
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-columns li {
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  font-size: 1.3rem;
  color: #d7cec4;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f4af1b;
}

/* Location Section Styles */
.location-section {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 0;
  height: 90vh;
}

.location-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937; /* dark gray */
  margin-bottom: 10px;
}

.section-underline {
  width: 60px;
  height: 4px;
  background-color: #3db8ff; /* light blue */
  margin: 0 auto 30px auto;
  border-radius: 2px;
}

.section-description {
  font-size: 1rem;
  color: #4b5563; /* medium gray */
  line-height: 1.7;
  margin-bottom: 40px;
}

.map-container {
  max-width: 100vw;
  width: 100%;
  height: 60%;
  margin-top: 20px;
  position: relative;
}

.map-container iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}



/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.block {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}


/* Responsive Enhancements */
@media (min-width: 768px) {
  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: white; /* muted sand */
}

#experience-display {
  height: 100vh;
}

.experience-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  align-items: center;
  margin-bottom: 9rem;
  gap: 15px;
  width: 390px;
}

.experience {
  background-color: #3db8ff;
  color: white;
  width: 20rem;
  height: 10rem;
  text-align: center;
  line-height: 1.5;
  border-radius: 20px;
  padding: 10px;
  margin: auto;
}



/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 1.6rem;
  padding: 0.8rem;
  border-radius: 50%;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-float:hover {
  background: #20b955;
}

}


@media (max-width: 425px) {
  .hero-cnt p {
    width: 23rem;
  }  

  .logo img {
    width: 60px;
    height: 60px;
  }

  .experiences {
    height: 100vh;
  }

  .experience-preview {
    height: 100vh;
  }

  .experience-preview h2 {
    font-size: 2rem;
  }

  .experience-preview p {
    font-size: 1rem;
  }

  .experience-preview .experience-text {
    margin-bottom: 10rem;
  }

  .experience-grid {
    margin-top: -18rem;
  }

  .experience-icon {
    font-size: 1rem;
  }

  .proof {
    height: 230vh;
    margin-top: 0;
  }

  .proof h2 {
    font-size: 2rem;
    text-align: center;

  }

  .testimonials {
    border-radius: 150px;
  }

  .testimonials h2 {
    font-size: 2rem;
    padding: 10px 75px;
    margin-bottom: 30px;
  }

  .testimonial p {
    font-size: 1rem;
  }

  .testimonial h4 {
    font-size: 0.9rem;
    font-weight: bold;
  }



  .carousel-container {
    width: 300px;
  }

  .review-carousel {
    height: 550px;
    display: flex;
    overflow: hidden;
  }

  .review-stars {
    font-size: 1rem;
  }

  .testimonial {
    width: 300px;
    padding: 50px 1px;
    margin-top: 125px;
    flex-shrink: 0;
  }

  
  .testimonial-image img {
    height: 180px;
    width: 140px;
    padding-bottom: 40px;
    margin-left: 80px;
    border-radius: 60px 60px 0px 0px;
    }

  .why-choose-us h2 {
    padding-bottom: 25rem;
    width: 0px;
    font-size: 2rem;
  }

  .features-scroll-container {
    padding-top: 10rem;
  }

  .gallery-slider-wrapper {
    max-height: 421px;
  }

  .intro-video {
    height: 45%;
  }
  
  .intro-video h2 {
    text-align: center;
  }

  .video-wrapper {
    height: 60%;
    margin: 1rem 0 0 auto;
  }
  
  .video-wrapper video {
      object-fit: cover;
      height: 15rem;
  }


  .location-section {
    height: 90vh;
    padding: 75px 20px 0;

  }

  .section-description {
    margin-bottom: 20px;
  }

  .map-container {
    margin-top: 5px;
  }

  .proof-grid {
    display: flex;
    flex-direction: row;
    width: 350px;
    gap: 10px;
  }

  .proof-item {
    padding: 5px;
    width: 80px;
  }

  .proof-item i {
    font-size: 1rem;
  }

  .proof-item h3 {
    font-size: 1.3rem;
  }

  .proof-item p {
    font-size: 0.7rem;
  }

  .badges {
    gap: 1rem;
    margin: 10px;
  }
  
  
  
  
  
  /* Gallery text aligned to the right */
.gllrytext {
  width: 100%;
  text-align: center;
  margin: 0 0 0 0;
}

.gllrytext h2 {
    width: 24rem;
    font-family: 'Playfair Display';
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding: 0 0 0 0;
}

.gllrytext p {
    width: 23rem;
    font-family: 'Poppins';
    font-size: 1rem;
    text-align: center;
    padding: 0 0 1rem 1.2rem;
}

.gllrytext button {
    margin: 2rem 0 0 0;
}

/* Carousel remains on the left */
.carouselgllrycnt {
        width: 395px;
        height: 50vh;
        border-radius: 200rem 200rem 3rem 3rem;
        overflow: hidden;
        margin: 0;
}

.carouselgllryslide {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carouselgllryslide img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Gallery buttons */
#gllrynextBtn, #gllryprevBtn {
  width: 2rem;
  background-color: #12aacc17;
  border: none;
  margin: 0 0 0 14.5rem;
}

/* Optional: fine-tune button spacing */
#gllryprevBtn {
  margin: 0rem 0 0 2.5rem;
    }
    

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200vh !important;
} 

.contact-section img {
    height: 200vh;
}
    
    
.contact-container {
    color: white;
    width: 24rem !important;
    height: fit-content !important;
    top: 1rem;
    margin: 0 10rem 0 10rem;
    padding: 140px 20px;
    position: relative;
    z-index: 2;
    padding: 0 0 0 0;
    }
    
    
.contact-details {
    text-align: left;
    width: 24rem;
    height: 25rem;
    color: white;
    z-index: 2;
    margin: 0 0 0 0;
}

.contact-details .call {
    margin: 5rem 0 2rem 0rem;
}

.contact-details .email {
    margin: 0 0 2rem 0;
}

.our-location {
    margin: 0 0 0 0;
    padding: 0 0 2rem 0;
}

.contact-details .social {
    margin: 0 0 0 0;
}

.social-icons {
        display: flex;
        gap: 1rem;
        margin-top: 0.5rem;
        margin-left: 0rem;
    }
    
    
    form {
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: 24rem;
    grid-template-columns: 1fr;
    gap: 20px;
    background: white;
    color: #333;
    text-align: left;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    label {
    
    }
    
    input, select, textarea {
        background-color: white;
    }
    
    .full-width button {
        align-items: center;
        align-self: flex-end;
        width: 10rem;
        height: 4rem;
        margin: 1rem 0px 0 0rem;
        color: #3db8ff;
        border: solid #3db8ff;
    }
    
    .faq h3 {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
}











@media (max-width: 390px) {
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content !important;
    padding: 3rem 0 3rem 0;
} 

.contact-section img {
    height: 200vh;
}
    
    
.contact-container {
    color: white;
    width: 21rem !important;
    height: fit-content !important;
    top: 1rem;
    margin: 0 10rem 0 10rem;
    padding: 140px 20px;
    position: relative;
    z-index: 2;
    padding: 0 0 0 0;
    }
    
.carouselgllrycnt {
    width: 357px;
}
    
.contact-details {
    text-align: left;
    width: 21rem;
    height: 25rem;
    color: white;
    z-index: 2;
    margin: 0 0 0 0;
}

.contact-details .call {
    margin: 5rem 0 2rem 0rem;
}

.contact-details .email {
    margin: 0 0 2rem 0;
}

.our-location {
    margin: 0 0 0 0;
    padding: 0 0 2rem 0;
}

.contact-details .social {
    margin: 0 0 0 0;
}

.social-icons {
        display: flex;
        gap: 1rem;
        margin-top: 0.5rem;
        margin-left: 0rem;
    }
    
    
    form {
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: 21rem;
    grid-template-columns: 1fr;
    gap: 20px;
    background: white;
    color: #333;
    text-align: left;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    label {
    
    }
    
    input, select, textarea {
        background-color: white;
    }
    
    .full-width button {
        align-items: center;
        align-self: flex-end;
        width: 10rem;
        height: 4rem;
        margin: 1rem 0px 0 0rem;
        color: #3db8ff;
        border: solid #3db8ff;
    }
    
    .faq h3 {
        margin-left: 1rem;
    }
    
    
    
    /* Gallery Section */
    .gllrytext h2 {
        width: 22rem;
    }
    
    .gllrytext p {
        width: 22rem;
        padding: 0 0 0.5rem 0rem;
    }
    
}








@media (max-width: 375px) {
  #text {
    font-size: 3rem;
  }

  .hero-cnt p {
    font-size: 1rem;
    padding: 0 25px 0 25px;
  }

  .experiences {
    height: 100vh;
    text-align: center;
  }

  .experience-preview {
    height: 1350px;
  }

  .experience-preview h2 {
    font-size: 2rem;
  }

  .experience-preview p {
    font-size: 1rem;
  }

  .experience-overlay {
    padding: 1rem;
  }

  .experience-text {
    margin-top: -700px;
  }

  .section-underline {
    margin: 0 auto 20px auto;
    padding-top: 3px;
  }

  .experience-grid {
    margin-top: -870px;
    gap: 10px;
    width: 350px;
  }

  .experience {
    margin: 0px 1px auto 4px;
  }

  .experience-icon {
    font-size: 1rem;
    margin: 0px 0px 0px -10px;
  }

  .experience h3 {
    font-size: 0.98rem;
    margin: auto;
    width: 90px;
  }

  .proof {
    height: 110vh;
  }

  .proof h2{
    font-size: 2rem;
    width: auto;
    padding-top: 0px;
    margin-bottom: 20px;
    text-align: center;
  }

  .proof-grid {
    display: flex;
    flex-direction: row;
    margin-left: -10px;
  }

  .badges p {
    font-size: 1rem;
  }

  .testimonials {
    border-radius: 150px;
    height: 100vh;
  }

  .testimonials h2 {
    font-size: 2rem;
    padding: 10px 50px;
    margin-bottom: 30px;
  }

  .testimonial p {
    font-size: 1rem;
  }

  .testimonial h4 {
    font-size: 0.9rem;
    font-weight: bold;
  }

  .carousel-container {
    width: 300px;
  }

  .review-stars {
    font-size: 1rem;
  }

  .testimonial {
    width: 100%;
    padding: 50px 1px;
    margin-top: 130px;
  }

  .testimonial-image img {
      height: 180px;
      width: 140px;
      padding-bottom: 40px;
      margin-left: 80px;
      border-radius: 60px 60px 0px 0px;
      }

  .why-choose-us h2 {
    padding-bottom: 25rem;
    width: 0px;
    font-size: 2rem;
  }

  .features-scroll-container {
    padding-top: 10rem;
  }

  .intro-video {
    height: 40%;
    margin: 0 0 0 0;
  }
  
  .intro-video h2 {
    font-family: 'Poppins';
    font-weight: bold;
    text-align: center;
    padding: 1rem 0 1rem 0;
  }

  .video-wrapper {
    height: 64%;
  }
  
  .video-wrapper video {
      object-fit: cover;
      height: 14rem;
  }

  .location-section {
    height: 90vh;

  }

  .section-description {
    margin-bottom: 20px;
  }

  .map-container {
    margin-top: 5px;
  }

  .block {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
    }
    
    
    /* Gallery text aligned to the right */
.gllrytext {
  width: 100%;
  text-align: center;
  margin: 0 0 0 0;
}

.gllrytext h2 {
    width: 100%;
    font-family: 'Playfair Display';
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding: 0 0 0 0;
}

.gllrytext p {
    width: 100%;
    font-family: 'Poppins';
    font-size: 1rem;
    text-align: center;
    padding: 0 0.3rem 1rem 0.3rem;
}

.gllrytext button {
    margin: 2rem 0 0 0;
}

/* Carousel remains on the left */
.carouselgllrycnt {
        width: 345px;
        height: 45vh;
        border-radius: 200rem 200rem 3rem 3rem;
        overflow: hidden;
        margin: 0;
}

.carouselgllryslide {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carouselgllryslide img {
  width: 87.4%;
  height: auto;
}

/* Gallery buttons */
#gllrynextBtn, #gllryprevBtn {
  width: 2rem;
  background-color: #12aacc17;
  border: none;
  margin: 0 0 0 14rem;
}

/* Optional: fine-tune button spacing */
#gllryprevBtn {
  margin: 0rem 0 0 2.5rem;
}


/* Contact Page */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200vh !important;
} 

.contact-section img {
    height: 200vh;
}
    
    
.contact-container {
    color: white;
    width: 21rem !important;
    height: fit-content !important;
    top: 1rem;
    margin: 0 10rem 0 10rem;
    padding: 140px 20px;
    position: relative;
    z-index: 2;
    padding: 0 0 0 0;
    }
    
    
.contact-details {
    text-align: left;
    width: 21rem;
    height: 25rem;
    color: white;
    z-index: 2;
    margin: 0 0 0 0;
}

.contact-details .call {
    margin: 5rem 0 2rem 0rem;
}

.contact-details .email {
    margin: 0 0 2rem 0;
}

.our-location {
    margin: 0 0 0 0;
    padding: 0 0 2rem 0;
}

.contact-details .social {
    margin: 0 0 0 0;
}

.social-icons {
        display: flex;
        gap: 1rem;
        margin-top: 0.5rem;
        margin-left: 0rem;
    }
    
    
    form {
    display: flex;
    flex-direction: column;
    height: fit-content;
    grid-template-columns: 1fr;
    gap: 20px;
    background: white;
    color: #333;
    text-align: left;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    label {
    
    }
    
    input, select, textarea {
        background-color: white;
    }
    
    .full-width button {
        align-items: center;
        align-self: flex-end;
        width: 10rem;
        height: 4rem;
        margin: 1rem 0px 0 0rem;
        color: #3db8ff;
        border: solid #3db8ff;
    }

}

@media (max-width: 320px) {
    /* Gallery text aligned to the right */
.gllrytext {
  width: 100%;
  text-align: center;
  margin: 0 0 0 0;
}

.gllrytext h2 {
    width: 18rem;
    font-family: 'Playfair Display';
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    padding: 0 0 0 0;
}

.gllrytext p {
    width: 18rem;
    font-family: 'Poppins';
    font-size: 0.85rem;
    text-align: center;
    padding: 3px 0 3px 0rem;
}

.gllrytext button {
    margin: 2rem 0 0 0;
}

/* Carousel remains on the left */
.carouselgllrycnt {
        width: 290px;
        height: 38vh;
        border-radius: 200rem 200rem 3rem 3rem;
        overflow: hidden;
        margin: 0;
}

.carouselgllryslide {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carouselgllryslide img {
  width: 100%;
  height: 20rem;
}

/* Gallery buttons */
#gllrynextBtn, #gllryprevBtn {
  position: relative;
  top: -21.5rem;
  bottom: 27rem;
  width: 3rem;
  background-color: #12aacc17;
  border: none;
  margin: 0 0 0 15rem;
}

/* Optional: fine-tune button spacing */
#gllryprevBtn {
  position: relative;
  top: -18rem;
  bottom: 27rem;
  margin: 0rem 0 0 2.5rem;
}





/* Contact Page */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200vh !important;
} 

.contact-section img {
    height: 200vh;
}
    
    
.contact-container {
    color: white;
    width: 18rem !important;
    height: fit-content !important;
    top: 1rem;
    margin: 0 10rem 0 10rem;
    padding: 140px 20px;
    position: relative;
    z-index: 2;
    padding: 0 0 0 0;
    }
    
    
.contact-details {
    text-align: left;
    width: 18rem;
    height: 25rem;
    color: white;
    z-index: 2;
    margin: 0 0 0 0;
}

.contact-details .call {
    margin: 5rem 0 2rem 0rem;
}

.contact-details .email {
    margin: 0 0 2rem 0;
}

.our-location {
    margin: 0 0 0 0;
    padding: 0 0 2rem 0;
}

.contact-details .social {
    margin: 0 0 0 0;
}

.social-icons {
        display: flex;
        gap: 1rem;
        margin-top: 0.5rem;
        margin-left: 0rem;
    }
    
    
    form {
    display: flex;
    flex-direction: column;
    height: fit-content;
    grid-template-columns: 1fr;
    gap: 20px;
    background: white;
    color: #333;
    text-align: left;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    label {
    
    }
    
    input, select, textarea {
        background-color: white;
    }
    
    .full-width button {
        align-items: center;
        align-self: flex-end;
        width: 10rem;
        height: 4rem;
        margin: 1rem 0px 0 0rem;
        color: #3db8ff;
        border: solid #3db8ff;
    }

}









