 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.location-name {
  white-space: nowrap;
}

a {
  text-decoration: none; /* removes underline */
  color: inherit;         /* inherits color from parent, or you can specify a color */
}

body {
  font-family:
    Poppins,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
    font-weight: 400;

    min-height: 100vh;

    width: 100%;

    overflow-x: hidden;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}


/* Hero container */
.hero-container {
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  position: relative;
  min-height: 10vh;
  /* width: 100%;
  max-width: 100%; */
  padding: 0px 30px 152px;
  overflow: hidden;
  /* margin: 0 auto; */
}


/* ==================================Navigation====================================================================== */

/* Background image */
.hero-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: initial;
  object-position: center;
  z-index: -1;
}

/* Top navigation */
.top-navigation {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  font-size: 21px;
  font-weight: 700;
}

/* Logo container */
.logo-container {
  display: flex;
  flex: 0 0 auto;
  width: 20%;
  min-width: 180px;
  max-width: 307px;
  height: auto;
}

.logo-wrapper {
  width: 100%;
}

.logo-svg {
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* Navigation menu */
.navigation-menu {
  border-radius: 80px;
  background-color: rgba(253, 192, 22, 1);
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 1);
  display: flex;
  flex: 1 1 auto;
  margin: 0 20px;
  padding: 16px 30px;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.nav-item {
  text-shadow: 2px 2px 4px rgba(0, 37, 75, 0.25);
  margin: 0 15px;
  text-decoration: none;
  color: white;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.nav-item:hover {
  transform: scale(1.05);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* CTA container */
.cta-container {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  width: 20%;
  min-width: 180px;
}

.book-now-button {
  text-shadow: 2px 2px 4px rgba(0, 37, 75, 0.25);
  border-radius: 1332px;
  background-color: rgba(253, 192, 22, 1);
  box-shadow: 4px 4px 9px rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 1);
  padding: 16px 30px;
  font-family:
    "Poppins",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 21px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  color:#ffff;
  transition: transform 0.2s ease;
}

.book-now-button:hover {
  transform: scale(1.05);
}

/* Hero content */
.hero-content {
  position: relative;
  display: flex;
  margin-top: 40px;
  width: 50%;
  height: auto;
  max-width: 800px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.hero-title {
  font-size: 132px;
  font-family:
    "Qwigley",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  line-height: 1;
  letter-spacing: 1.52px;
  align-self: flex-start;
  font-weight: 400;
  color: #fff;
}

.hero-description {
  font-size: 20px;
  font-family:
    "Poppins",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  line-height: 37px;
  /* margin-top: 114px; */
  font-weight: 400;
  color: #fff;
}

/* Media queries */
@media (min-width: 1800px) {
  .hero-container {
    max-width: 1800px;
    /* padding: 60px 100px 200px; */
  }

  .navigation-menu {
    gap: 30px;
  }

  .hero-content {
    width: 800px;
  }

  .hero-title {
    font-size: 110px;
  }

  .hero-description {
    font-size: 20px;
    line-height: 42px;
  }
}

@media (min-width: 1200px) and (max-width: 1799px) {

  .navigation-menu {
    padding: 16px 20px;
  }

  .nav-item {
    margin: 0 10px;
  }

  .book-now-button {
    padding: 16px 25px;
  }

  .hero-title {
    font-size: 80px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-container {
    padding: 40px 40px 50px;
  }

  .top-navigation {
    font-size: 18px;
  }

  .logo-container {
    min-width: 150px;
  }

  .navigation-menu {
    padding: 12px 15px;
    margin: 0 15px;
  }

  .nav-item {
    margin: 0 8px;
  }

  .book-now-button {
    padding: 12px 20px;
    font-size: 18px;
  }

  .hero-content {
    margin-top: 30px;
  }

  .hero-title {
    font-size: 90px;
  }

  .hero-description {
    font-size: 18px;
    line-height: 32px;
    margin-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-container {
    /* padding: 30px 30px 120px; */
    border-radius: 20px;

  }

  .top-navigation {
    font-size: 16px;
  }

  .logo-container {
    min-width: 120px;
    width: 15%;
  }

  .navigation-menu {
    padding: 10px;
    margin: 0 10px;
  }

  .nav-item {
    margin: 0 5px;
    font-size: 14px;
  }

  .cta-container {
    min-width: 120px;
    width: 15%;
  }

  .book-now-button {
    padding: 10px 15px;
    font-size: 14px;
  }

  .hero-content {
    margin-top: 20px;
    width: 50%;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    /* margin-top: 60px; */
  }
}

@media (max-width: 767px) {
  .hero-container {
    padding: 20px 20px 20px;
    border-radius: 16px;
  }

  .top-navigation {
    flex-wrap: wrap;
  }

  .logo-container {
    width: 50%;
    min-width: 120px;
    order: 1;
  }

  .mobile-menu-toggle {
    display: block;
    order: 3;
    width: 15%;
  }

  .navigation-menu {
    order: 4;
    width: 100%;
    margin: 20px 0 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    flex-direction: column;
  }

  .navigation-menu.active {
    max-height: 300px;
    padding: 10px;
  }

  .nav-item {
    margin: 10px 0;
    font-size: 16px;
  }

  .cta-container {
    width: 35%;
    min-width: auto;
    order: 2;
  }

  .book-now-button {
    padding: 8px 15px;
    font-size: 14px;
  }

  .hero-content {
    margin-top: 20px;
    width: 50%;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: 45px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 24px;
    /* margin-top: 40px; */
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0px 10px 15px;
    object-fit: initial;
    height: 908px;
    width: auto;
    background-image: url('/IMAGES/HomeBgMobileView.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
  }

  .hero-content {
    margin-top: 20%;
    padding-right: 5%;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: 64px;
    padding-left: 5%;
  }

  .hero-description {
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
    text-align: justify;
    padding-left: 3%;
  }

  .logo-container {
    width: 40%;
  }

  .cta-container {
    width: 25%;
  }

  .book-now-button {
    padding: 6px 12px;
    font-size: 12px;
  }

/*
  .hero-description {
    font-size: 12px;
    line-height: 22px;
    margin-top: 10px;
  } */
}

/* ================================Location container Section==================================================== */
:root {
  --yellow: rgba(253, 192, 22, 1);
  --blue: rgba(0, 89, 158, 1);
  --black: rgba(0, 0, 0, 1);
  --white: rgba(255, 255, 255, 1);
  --card-width: 35rem;
  --card-gap: 3rem;
}

.locations-container {
  display: flex;
  margin-top: 2rem;
  width: 100%;
  max-width: 120rem;
  align-items: center;
  gap: 2rem;
  flex-direction: column;
  padding: 0 1.25rem;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.locations-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: normal;
  width: 100%;
}

.rooms-section {
  display: flex;
  width: 100%;
  padding: 0 5rem;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.rooms-content {
  display: flex;
  width: 100%;
  max-width: 100rem;
  flex-direction: column;
  align-items: center;
}

.locations-heading {
  color: var(--black);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-family: 'Bricolage Grotesque', -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 600;
  text-align: center;
  /* margin-bottom: 3rem; */
}

/* Gallery Styles */
.gallery-with-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  position: relative;
}

.left-arrow, .right-arrow {
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  z-index: 2;
}

.left-arrow:hover, .right-arrow:hover {
  transform: scale(1.1);
}

.left-arrow svg, .right-arrow svg {
  width: 3.75rem;
  height: 7.75rem;
}

.locations-grid {
  display: flex;
  gap: var(--card-gap);
  width: 100%;
  max-width: calc(2 * var(--card-width) + var(--card-gap));
  margin: 0 auto;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.locations-grid::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.location-card, .other-location-card {
  /* flex: 0 0 var(--card-width); */
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  min-width: 0;
}

.location-card:hover {
  transform: translateY(-0.5rem);
}

.location-image {
  aspect-ratio: 1.19;
  object-fit: initial;
  object-position: center;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

.location-details {
  margin-top: 1.75rem;
  width: 100%;
}

.location-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
}

.location-info {
  flex: 1;
  min-width: 0;
}

.location-name {
  font-size: clamp(1.2rem, 1vw, 2rem);
  font-family: 'Bricolage Grotesque', -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 500;
  margin: 0;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.location-amenities {
  font-size: clamp(1rem, 1.125vw, 1.125rem);
  font-family: 'Poppins', -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.5rem;
  color: var(--black);
}

.location-cta {
  flex-shrink: 0;
  width: auto;
  margin-left: 1.25rem;
}

.location-book-btn {
  border-radius: 2rem;
  background-color: var(--yellow);
  /* margin-top: 1.5rem; */
  padding: 0.45rem 1rem;
  font-family: 'Poppins', -apple-system, Roboto, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.125vw, 1.125rem);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.0269rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  max-width: 10rem;
}

.location-book-btn:hover {
  background-color: #e6b015;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Other Location Card Styles */
.other-location-card {
  position: relative;
}

.other-location-image-container {
  position: relative;
  aspect-ratio: 1.19;
  width: 100%;
}

.other-location-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0.5rem;
}

.other-location-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.5rem;
}

.overlay-image {
  max-width: 100%;
  /* max-height: 80%; */
  object-fit: initial;
}

.other-location-name {
  font-size: clamp(1.2rem, 1vw, 2rem);
  font-family: 'Bricolage Grotesque', -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 500;
  margin-top: 1.75rem;
  color: var(--black);
}

.other-location-amenities {
  font-size: clamp(1rem, 1.125vw, 1.125rem);
  font-family: 'Poppins', -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.5rem;
  color: var(--black);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  :root {
    --card-width: 30rem;
    --card-gap: 2rem;
  }

  .locations-container {
    margin-top: 2rem;
  }

  .rooms-section {
    padding: 0 2rem;
  }

  .locations-heading {
    font-size: 2.5rem;
  }

  .location-name, .other-location-name {
    font-size: 1.5rem;
  }

  .location-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .location-cta {
    width: 100%;
    margin-left: 0;
    margin-top: 1.5rem;
  }

  .location-book-btn {
    margin-top: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --card-width: 90%;
    --card-gap: 1.5rem;
  }

  .rooms-section {
    padding: 0 1rem;
  }

  .locations-heading {
    font-size: 2rem;
    /* margin-bottom: 2rem; */
  }

  .location-name, .other-location-name {
    font-size: 1rem;
  }

  .location-amenities, .other-location-amenities {
    font-size: 1rem;
  }

  .location-book-btn {
    font-size: 0.9rem;
    padding: 0.4rem 1.3rem;
  }

  .left-arrow, .right-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .left-arrow {
    left: 0.5rem;
  }

  .right-arrow {
    right: 0.5rem;
  }

  .left-arrow svg, .right-arrow svg {
    width: 2.5rem;
    height: 5rem;
  }
}

/* Large screen adjustments */
@media (min-width: 1600px) {
  :root {
    --card-width: 40rem;
    --card-gap: 4rem;
  }
}

/* Hide arrows when not needed */
@media (max-width: 600px) {
  .left-arrow, .right-arrow {
    display: none;
  }

  .locations-grid {
    scroll-snap-type: none;
  }
}

/*===================================================================================*/
/* Base styles */
.features-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1334px;
  margin: 20px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.features-heading {
  color: #000;
  font-size: clamp(30px, 3vw, 55px); /* Responsive font size */
  font-family: 'Bricolage Grotesque', -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.features-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-row,
.features-row-2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* gap: 20px; */
  width: 80%;
  /* max-width: 1278px; */
}

.feature-column-1,
.feature-column-2,
.feature-column-3,
.feature-item-2 {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item,
.feature-item-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Poppins', -apple-system, Roboto, Helvetica, sans-serif;
  color: #000;
  font-weight: 400;
  text-align: center;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
}

.feature-icon {
  width: clamp(60px, 6vw, 80px); /* Responsive icon size */
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.feature-title {
  font-size: clamp(18px, 1vw, 32px); /* Responsive title size */
  line-height: 1.2;
  margin-top: 20px;
  white-space: normal;
  font-weight: 600;
  text-transform: uppercase;
  color: #222;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .features-section {
    margin-top: 20px;
  }

  .features-row,
  .features-row-2 {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .features-section {
    margin-top: 20px;
  }

  .feature-column-1,
  .feature-column-2,
  .feature-column-3,
  .feature-item-2 {
    min-width: 200px;
  }
}

@media (max-width: 576px) {
  .features-section {
    margin-top: 20px;
    padding: 0 15px;
  }

  .features-row,
  .features-row-2 {
    gap: 0px;
  }

  .feature-title {
    margin-top: 15px;
  }
}


.colors-section {
  align-self: stretch;
  display: flex;
  margin-top: 30px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
}

.carousel-card {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  opacity: 0.5;
  transform: scale(0.8);
  transition: transform 0.6s ease, opacity 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-card.active {
  transform: scale(1);
  opacity: 1;
  z-index: 1;
}

.carousel-card img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.prev-btn, .next-btn {
  border-radius: 1332px;
  border: 1px solid rgba(0, 26, 51, 1);
  padding: 16px;
  background: transparent;
  cursor: pointer;
}

.pagination {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.pagination-indicators {
  display: flex;
  gap: 10px;
}

.indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #d9d9d9;
}

.indicator-active {
  background-color: #001a33;
  width: 71px;
}
.carousel-track.slide-left {
animation: slideLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track.slide-right {
animation: slideRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideLeft {
from {
transform: translateX(-15%);
}
to {
transform: translateX(0%);
}
}

@keyframes slideRight {
from {
transform: translateX(15%);
}
to {
transform: translateX(0%);
}
}

@media (max-width: 991px) {
  .colors-section {
    max-width: 100%;
    margin-top: 20px;
  }
}

.colors-heading {
  color: rgba(0, 0, 0, 1);
  font-size: 38px;
  font-family:
    Bricolage Grotesque,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.colors-heading-light {
  font-weight: 300;
}

.colors-heading-bold {
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
}

@media (max-width: 991px) {
  .colors-heading {
    max-width: 100%;
    font-size: 35px;
  }
}

.colors-container {
  display: flex;
  margin-top: 36px;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
}

@media (max-width: 991px) {
  .colors-container {
    max-width: 100%;
    margin-top: 25px;
  }
}

.color-cards {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  display: flex;
  min-height: 646px;
  align-items: end;
  gap: 25px;
  justify-content: start;
}

.color-card-1 {
  min-width: 240px;
  width: 762px;
}

@media (max-width: 991px) {
  .color-card-1 {
    max-width: 100%;
  }
}

.color-card-image {
  aspect-ratio: 0.9;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .color-card-image {
    max-width: 100%;
  }
}

.color-card-2 {
  min-width: 240px;
  width: 943px;
}

@media (max-width: 991px) {
  .color-card-2 {
    max-width: 100%;
  }
}

.yellow-card {
  border-radius: 25px;
  background-blend-mode: normal;
  background-color: rgba(255, 188, 0, 1);
  width: 100%;
  padding-left: 42px;
  padding-bottom: 48px;
}

@media (max-width: 991px) {
  .yellow-card {
    max-width: 100%;
    padding-left: 20px;
  }
}

.yellow-card-row {
  gap: 20px;
  display: flex;
}

@media (max-width: 991px) {
  .yellow-card-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.yellow-card-col-1 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 33%;
  margin-left: 0;
}

@media (max-width: 991px) {
  .yellow-card-col-1 {
    width: 100%;
  }
}

.yellow-card-content {
  display: flex;
  margin-top: 490px;
  align-items: stretch;
  gap: 26px;
}

@media (max-width: 991px) {
  .yellow-card-content {
    margin-top: 40px;
  }
}

.yellow-luxury-text {
  color: rgba(255, 255, 255, 1);
  font-size: 44px;
  font-family:
    Poppins,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 500;
  line-height: 57px;
  width: 631px;
}

.yellow-luxury-light {
  font-weight: 300;
}

.yellow-luxury-bold {
  font-size: 61px;
}

.yellow-card-btn {
  border-radius: 1090px;
  background-color: rgba(255, 255, 255, 1);
  align-self: end;
  display: flex;
  margin-top: 56px;
  padding: 13px;
  align-items: center;
  gap: 4px;
  width: 52px;
  justify-content: start;
  height: 52px;
  border: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  .yellow-card-btn {
    margin-top: 40px;
  }
}

.yellow-card-btn-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 26px;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.yellow-card-col-2 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 67%;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .yellow-card-col-2 {
    width: 100%;
  }
}

.yellow-card-image {
  aspect-ratio: 0.96;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

@media (max-width: 991px) {
  .yellow-card-image {
    max-width: 100%;
    margin-top: 40px;
  }
}

.color-card-3 {
  min-width: 240px;
  overflow: hidden;
  font-family:
    Poppins,
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 35px;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  line-height: 51px;
  width: 762px;
}

@media (max-width: 991px) {
  .color-card-3 {
    max-width: 100%;
  }
}

.blue-card {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 20px;
  min-height: 522px;
  width: 100%;
  padding: 390px 34px 34px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .blue-card {
    max-width: 100%;
    padding: 100px 20px 34px;
  }
}

.blue-card-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.blue-card-content {
  position: relative;
}

.blue-card-light {
  font-weight: 300;
}

.blue-card-bold {
  font-size: 49px;
}

.pagination {
  align-self: center;
  display: flex;
  /* margin-top: 93px; */
  align-items: center;
  gap: 40px 43px;
  justify-content: start;
}

@media (max-width: 991px) {
  .pagination {
    margin-top: 40px;
  }
}

.prev-btn {
  transform: rotate(3.141592653589793rad);
  border-radius: 1332px;
  border: 1px solid rgba(0, 26, 51, 1);
  align-self: stretch;
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  padding: 16px;
  align-items: start;
  gap: 5px;
  justify-content: start;
  width: 64px;
  background: transparent;
  cursor: pointer;
}

.prev-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 32px;
}

.pagination-indicators {
  align-self: stretch;
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  align-items: start;
  justify-content: start;
}

.indicator-active {
  border-radius: 1332px;
  background-color: rgba(0, 26, 51, 1);
  display: flex;
  width: 71px;
  flex-shrink: 0;
  height: 16px;
}

.indicator {
  border-radius: 1332px;
  background-color: rgba(217, 217, 217, 1);
  display: flex;
  width: 16px;
  flex-shrink: 0;
  height: 16px;
}

.next-btn {
  border-radius: 1332px;
  border: 1px solid rgba(0, 26, 51, 1);
  align-self: stretch;
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  padding: 16px;
  align-items: start;
  gap: 5px;
  justify-content: start;
  width: 64px;
  background: transparent;
  cursor: pointer;
}

.next-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 32px;
}

/*==============================================================================*/
/* Welcome Section Styles */
.welcome-section {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.welcome-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  /* min-height: clamp(500px, 55vw, 762px);  */
  padding: clamp(100px, 15vw, 406px) 5% clamp(60px, 8vw, 82px); /* Responsive padding */
  color: #ffffff;
  text-align: center;
}

.welcome-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.welcome-content {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.welcome-text-light,
.welcome-text-highlight {
  display: block;
  font-family: 'Poppins', -apple-system, Roboto, Helvetica, sans-serif;
  font-size: clamp(28px, 3vw, 80px); /* Fluid typography */
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 10px;
}

.welcome-text-highlight {
  font-family: 'Bricolage Grotesque', -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 700;
  color: #fdc016;
  margin-bottom: 0;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
  .welcome-content {
    width: 95%;
  }

}

@media (max-width: 480px) {
  /* .welcome-container {
    min-height: 400px;
    padding-top: 80px;
  } */

  .welcome-text-light,
  .welcome-text-highlight {
    font-size: 20px;
  }

}
/* Print Styles */
@media print {
  .welcome-section {
    min-height: auto !important;
    padding: 50px 20px !important;
  }
  .welcome-bg {
    display: none;
  }
  .welcome-content {
    color: #000 !important;
  }

  .welcome-text-highlight {
    color: #000 !important;
  }
}


/* Footer section */
:root {
  --yellow-orange: #fdc016;
  --white: #ffffff;
  --max-width: 1050px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
}

.site-footer {
  background-color: var(--yellow-orange);
  color: var(--white);
  padding: 0px 20px 20px; /* reduced top and bottom padding */
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Top Section */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo {
  height: 50px;
  max-width: 200px;
}

.footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icon {
  transition: transform 0.2s ease;
}

.social-icon:hover,
.social-icon:focus {
  transform: scale(1.2);
}

/* Middle Section */
.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
  margin-top: 10px;
}

.footer-email {
  color: var(--white);
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.footer-phone .label {
  font-family: 'Poppins', sans-serif;
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

/* Divider */
.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 8px 0;
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top,
  .footer-middle,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-email,
  .footer-phone {
    text-align: center;
  }
}

/* Print Styling */
@media print {
  .site-footer {
    background: white !important;
    color: black !important;
  }

  .footer-socials {
    display: none !important;
  }

  .footer-divider {
    background-color: black !important;
  }

  .footer-email,
  .footer-phone,
  .footer-copy,
  .footer-links {
    color: black !important;
  }
}


/*===========================================================================*/

/* Responsive styles */
@media (max-width: 991px) {
.reservation-section {
max-width: 100%;
padding: 0 20px 20px;
margin-top: 40px;
}

.reservation-container {
max-width: 100%;
padding-left: 20px;
padding-bottom: 100px;
}

.reservation-content {
flex-direction: column;
align-items: stretch;
gap: 0;
}

.form-column,
.image-column {
width: 100%;
}

.image-column {
margin-left: 0;
}

.reservation-form-card {
max-width: 100%;
margin-top: 40px;
margin-right: 0;
margin-left: 0;
padding: 20px;
}

.check-in-label {
margin-top: 40px;
}

.form-title-container {
max-width: 100%;
}

.reservation-title {
max-width: 100%;
font-size: 40px;
}

.check-out-label {
margin-top: 40px;
}

.date-selectors {
margin-right: 7px;
}

.date-selector {
max-width: 100%;
padding: 21px 20px;
}

.guests-selector {
padding: 21px 20px;
}

.check-availability-button {
padding: 22px 20px;
margin-top: 40px;
}

.reservation-image {
max-width: 100%;
}

.location-section {
margin-top: 40px;
}

.location-title {
max-width: 100%;
font-size: 40px;
}

.map-container {
max-width: 100%;
padding: 100px 20px;
margin-top: 40px;
}

.location-pin {
margin-bottom: 10px;
}

.hotel-address {
max-width: 100%;
margin-top: 40px;
font-size: 40px;
}

.contact-info-section {
max-width: 100%;
margin-top: 40px;
}

}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

.decorative-element {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
}

.curved-lines-container {
  width: 100%;
  max-width: 1724px;
  margin: 0 auto;
}

/* Curved lines SVG styling */
.curved-lines {
  width: 100%;
  max-width: 1724px;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .curved-lines-container {
    max-width: 100%;
  }
}

.gallery-with-arrows {
display: flex;
align-items: center;
justify-content: center;
gap: 60px; /* spacing between arrows and grid */
margin-top: 40px;
flex-wrap: nowrap; /* ✅ prevent wrapping to new line */
}

.locations-grid {
display: flex;
gap: 40px;
flex-direction: row; /* ✅ ensure side-by-side layout */
flex-wrap: nowrap;
}


.left-arrow, .right-arrow {
width: 60px;
height: 124px;
flex-shrink: 0;
}

.left-arrow svg, .right-arrow svg {
width: 100%;
height: auto;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {

  .mobile-menu-toggle {
    display: block;
    order: 3;
    width: 15%;
  }

  .nav-item {
    margin: 10px 0;
    font-size: 16px;
  }

  .cta-container {
    width: 35%;
    min-width: auto;
    order: 2;
  }

  .book-now-button {
    padding: 8px 15px;
    font-size: 14px;
  }

 }


/* Base nav styles */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 32px 40px; */
  padding: 15px 5px;
  position: relative;
  z-index: 2;
}

/* Centered Nav Menu */
.nav-menu {
  /* margin-top: -25px; */
  list-style: none;
  display: flex;
  gap: 20px;
  background: #fdc016;
  border-radius: 30px;
  padding: 15px 25px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid white;
}

.nav-menu li a {
  text-decoration: none;
  color: white;
}

.book-now-btn {
  background: #fdc016;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid white;
}

.desktop-book {
  display: inline-block;
  /* margin-top: -25px; */
}

.mobile-book {
  display: none;
}

/* Hamburger Toggle - Always visible but hidden when not needed */
.menu-toggle {
  display: none; /* Hidden by default */
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 32px;
  right: 3%;
  z-index: 10;
}

/* Mobile menu styles */
@media (max-width: 1200px) { /* Changed from 768px to 1200px to trigger earlier */
  .menu-toggle {
    display: block;
  }

  .nav-menu,
  .desktop-book {
    display: none;
  }

  .main-nav.menu-open .mobile-menu {
    display: flex;
    flex-direction: column;
    /* background: #001a33; */
    position: absolute;
    top: 50%;
    right: 10px;
    padding: 16px;
    border-radius: 12px;
    gap: 12px;
    z-index: 999;
  }

  .main-nav.menu-open .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .main-nav.menu-open .nav-menu li a {
    color: white;
    font-size: 15px;
  }

  .main-nav.menu-open .book-now-btn.mobile-book {
    display: inline-block;
    background: #fdc016;
    color: #f7f9fb;
    text-align: center;
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
  }
}

/* Mobile menu styles */
@media (max-width: 480px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu,
  .desktop-book {
    display: none;
  }

  .main-nav.menu-open .mobile-menu {
    display: flex;
    flex-direction: column;
    /* background: #001a33; */
    position: absolute;
    top: 75%;
    right: 28px;
    padding: 16px;
    border-radius: 12px;
    gap: 12px;
    z-index: 999;
  }

  .main-nav.menu-open .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .main-nav.menu-open .nav-menu li a {
    color: white;
    font-size: 15px;
  }

  .main-nav.menu-open .book-now-btn.mobile-book {
    display: inline-block;
    background: #fdc016;
    color: #f7f9fb;
    text-align: center;
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
  }
}

/* ================================= Header Logo CSS======================================================================= */

.logo {
  position: relative;
  display: flex;
  align-items: center;
}

.logo-img {
  width: 150px;
  height: 60px;
  margin-top: 25px;
}

.logo-tagline {
  position: absolute;
  margin-top: 52px;
  margin-left: -95px;
  padding: 5px;
  font-size: 8px;
  color: #fff;
}


@media (max-width: 767px) {
  .logo-img {
    width: 150px;
    height: 60px;
    margin-top: 15px;
  }

  .logo-tagline {
    margin-top: 44px;
    margin-left: -94px;
    font-size: 8px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    width: 150px;
    height: 60px;
    margin-top: 15px;
  }

  .logo-tagline {
    margin-top: 44px;
    margin-left: -94px;
    font-size: 8px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 100px;
    height: 38px;
    /* margin-top: 10px;*/
  }

  .logo-tagline {
    margin-top: 30px;
    margin-left: -64px;
    font-size: 6.8px;
  }
}

/* ==========================================Footer Logo===================== */

.footer-logo-container {
  position: relative;
  display: inline-block;
}

.footer-logo-img {
  width: 150px;
  height: 60px;
  margin-top: 25px;
}

.footer-logo-tagline {
  position: absolute;
  margin-top: 52px;
  margin-left: -95px;
  padding: 5px;
  font-size: 8px;
  color: #fff;
}

@media (max-width: 767px) {
  .footer-logo-img {
    width: 150px;
    height: 60px;
    margin-top: 15px;
  }

  .footer-logo-tagline {
    margin-top: 45px;
    margin-left: -100px;
    font-size: 6.2px;
  }
}

@media (max-width: 768px) {
  .footer-logo-img {
    width: 150px;
    height: 60px;
    margin-top: 15px;
  }

  .footer-logo-tagline {
    margin-top: 42px;
    margin-left: -93px;
    font-size: 8px;
  }
}

@media (max-width: 480px) {
  .footer-logo-img {
    width: 100px;
    height: 38px;
    margin-top: 10px;
  }

  .footer-logo-tagline {
    margin-top: 25px;
    margin-left: -64px;
    font-size: 6.8px;
  }
}


/* ==============Button beside the Hamburger icon in the mobile view============================= */
/* Mobile navigation styles */
@media (max-width: 767px) {
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
    width: 100%;
    flex-wrap: wrap;
  }

  .logo {
    order: 1;
    width: 50%;
  }

  .mobile-book {
    display: inline-block !important;
    order: 2;
    text-align: right;
    margin-right: 50px;
    padding: 8px 15px;
    font-size: 14px;
    margin-top: 16px;
  }

  .mobile-menu-toggle {
    order: 3;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

   .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .desktop-book {
    display: none !important;
  }

  .navigation-menu {
    order: 4;
    width: 100%;
    margin: 20px 0 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .navigation-menu.active {
    max-height: 300px;
    padding: 10px;
  }
   .nav-item {
    margin: 10px 0;
    font-size: 16px;
    color: white;
    text-align: center;
  }
}

/* Book Now button styles */
.book-now-btn {
  background: #fdc016;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.book-now-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* ================for ipad at 768px =========================== */
@media (min-width: 768px) and (max-width: 768px) {
   .main-nav {
    display: flex;
    align-items: center;
    justify-content: normal;
    padding: 15px 0px;
    width: 100%;
    flex-wrap: wrap;
  }

  .logo {
    order: 1;
    width: 70%;
  }

  .mobile-book {
    display: inline-block !important;
    order: 2;
    text-align: right;
    margin-right: 63px;
    padding: 8px 15px;
    font-size: 14px;
     /* margin-top: -5px; */
     margin-left: 30px
  }

   .main-nav.menu-open .mobile-menu {
    display: flex;
    flex-direction: column;
    /* background: #001a33; */
    position: absolute;
    top: 62%;
    right: 52px;
    padding: 16px;
    border-radius: 12px;
    gap: 12px;
    z-index: 999;
  }


  .mobile-menu-toggle {
    order: 3;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

   .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .desktop-book {
    display: none !important;
  }

  .navigation-menu {
    order: 4;
    width: 100%;
    margin: 20px 0 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .navigation-menu.active {
    max-height: 300px;
    padding: 10px;
  }
   .nav-item {
    margin: 10px 0;
    font-size: 16px;
    color: white;
    text-align: center;
  }
}

/* Book Now button styles */
.book-now-btn {
  background: #fdc016;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.book-now-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* ======================== Video Section Styles ========================= */
/* Video Section Styling */
.video-section {
  width: 100%;
  padding: 2px 0;
  background: #fff;
}

/* Container for responsiveness */
.video-container {
  max-width: 1200px;
  width: 90%; /* Prevents edge-to-edge on mobile */
  margin: 0 auto;
  padding: 0;
  position: relative; /* Needed for aspect ratio */
}

/* Aspect Ratio Trick (3:2) */
.video-container::before {
  content: "";
  display: block;
  padding-bottom: 66.66%; /* 2/3 = 66.666% (3:2 Aspect Ratio) */
}

/* Video Styling (Fills container) */
.hover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  object-fit: cover; /* Ensures video fills container without distortion */
  border-radius: 8px;
  display: block;
  transition: all 0.3s ease;
}

/* Hover Effect (Desktop only) */
@media (hover: hover) {
  .hover-video:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
}