* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family:
      "Poppins",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    color: #343935;
    line-height: 1.5;
    overflow-x: hidden;
    background-color: #fff;
  }

  .page-container {
    display: flex;
    /* padding: 28px 0; */
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
  }

  /* Typography */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    font-weight: 500;
  }
html, body {
  width: 100%;
  overflow-x: hidden;
}


/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  /* height: 500px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: initial;
  z-index: -1;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0px;
  position: relative;
  z-index: 2;
}

 /* .logo img {
  height: 60px;
} */

/* Centered Nav Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  background: #fdc016;
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid white; /* ✅ Added white border */
}

.nav-menu li a {
  text-decoration: none;
  color: white; /* ✅ Changed to white text */
}

.book-now-btn {
  background: #fdc016;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid white;
}

.desktop-book {
  display: inline-block;
}

.mobile-book {
  display: none;
}

/* HERO TEXT */
.hero-content {
  text-align: center;
  color: white;
  margin-top: 150px;
  transform: translateY(-100px);
}

.hero-subtitle {
  font-size: 24px;
  margin: 0;
}

.hero-title {
  font-size: 50px;
  font-weight: bold;
  margin: 10px 0 0;
}

/* Hamburger Toggle */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 32px;
    right: 6%;
    z-index: 10;
  }

  .nav-menu,
  .desktop-book {
    display: none;
  }

  .main-nav.menu-open .mobile-menu {
    display: flex;
    flex-direction: column;
    /* background: #001a33; */
    position: absolute;
    top: 73%;
    right: 43px;
    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: 12px;
  }

  .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: 12px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
}

  /* About Us Section */
  .about-us-section {
    display: flex;
    /* margin-top: 56px; */
    width: 1536px;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 30px 40px 40px;
  }

  /* @media (max-width: 991px) {
    .about-us-section {
      margin-top: 40px;
    }
  } */

  .about-container {
    width: 100%;
  }

  @media (max-width: 991px) {
    .about-container {
      max-width: 100%;
    }
  }

  .about-columns {
    gap: 20px;
    display: flex;
  }

  @media (max-width: 991px) {
    .about-columns {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }
  }

  .image-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 35%;
    margin-left: 0;
  }

  @media (max-width: 991px) {
    .image-column {
      width: 100%;
    }
  }

  .about-image {
    aspect-ratio: 0.76;
    object-fit: contain;
    object-position: center;
    width: 100%;
  }

  @media (max-width: 991px) {
    .about-image {
      max-width: 100%;
      margin-top: 40px;
    }
  }

  .content-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 65%;
    /* margin-left: 20px; */
  }

  @media (max-width: 991px) {
    .content-column {
      width: 100%;
    }
  }

  .learn-more-container {
    align-self: end;
    width: 111px;
    max-width: 100%;
    font-family:
      Poppins,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 20px;
    color: #c5a56f;
    font-weight: 500;
    text-align: center;
    line-height: 1;
  }

  @media (max-width: 991px) {
    .learn-more-container {
      margin-right: 10px;
    }
  }

  .learn-more-text {
    margin-bottom: 5px;
  }

  .learn-more-line {
    background-color: #c5a56f;
    display: flex;
    flex-shrink: 0;
    height: 1px;
  }

  .decorative-image {
    aspect-ratio: 4;
    object-fit: contain;
    object-position: center;
    width: 857px;
    align-self: end;
    margin-top: 30px;
    max-width: 100%;
  }

  @media (max-width: 991px) {
    .decorative-image {
      margin-right: 10px;
      margin-top: 40px;
    }
  }

  .about-heading {
    color: #343935;
    font-family:
      "Playfair Display",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 34px;
    /* margin-top: 31px; */
    font-weight: 600;
    line-height: 60px;
  }

  .light-dot {
    color: #edeae5;
  }

  @media (max-width: 991px) {
    .about-heading {
      max-width: 100%;
      font-size: 38px;
    }
  }

  .forever-text {
    color: #fdc016;
    font-size: 60px;
    font-family:
      "Qwigley",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    letter-spacing: 11.76px;
    align-self: start;
    z-index: 10;
    margin-top: -70px;
  }

  @media (max-width: 991px) {
    .forever-text {
      font-size: 25px;
    }
  }

  .about-description {
    color: #343935;
    text-align: center;
    font-family:
      Poppins,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    opacity: 0.75;
    align-self: center;
    /* margin-top: 20px; */
  }

  @media (max-width: 991px) {
    .about-description {
      max-width: 100%;
    }
  }

  /* Testimonial Section */
  .testimonial-section {
    display: flex;
    /* margin-top: 56px; */
    width: 100%;
    padding: 0 1px;
    flex-direction: column;
    align-items: stretch;
    color: #343935;
  }

  @media (max-width: 991px) {
    .testimonial-section {
      max-width: 100%;
      margin-top: 40px;
    }
  }

  .testimonial-container {
    display: flex;
    flex-direction: column;
    position: relative;
    /* min-height: 969px; */
    padding: 123px 80px;
    align-items: end;
    justify-content: center;
  }

  @media (max-width: 991px) {
    .testimonial-container {
      max-width: 100%;
      padding: 100px 20px;
    }
  }

  .testimonial-background {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .testimonial-content {
    position: relative;
    display: flex;
    margin-bottom: -25px;
    width: 836px;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  @media (max-width: 991px) {
    .testimonial-content {
      margin-bottom: 10px;
    }
  }

  @media (max-width: 768px) {
    .testimonial-content {
      margin-bottom: 10px;
      display: none;
    }
  }

  .quote-container {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 58px 100px;
    width: 836px;
    /* height: 606px; */
    background-color: #fff;
  }

  @media (max-width: 991px) {
    .quote-container {
      max-width: 991px;
      padding: 40px 80px;
      width: 100%;
      height: auto;
    }
  }

  @media (max-width: 640px) {
    .quote-container {
      max-width: 640px;
      padding: 20px;
      width: 100%;
      height: auto;
    }
  }

  .quote-wrapper {
    position: relative;
    width: 599px;
    height: 390px;
  }

  @media (max-width: 991px) {
    .quote-wrapper {
      width: 100%;
      height: auto;
    }
  }

  .stars-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 599px;
    height: 232px;
  }

  .profile-container {
    display: flex;
    align-items: center;
    position: absolute;
    top: 300px;
    left: 0;
  }

  @media (max-width: 991px) {
    .profile-container {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (max-width: 640px) {
    .profile-container {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  .profile-info {
    margin-left: 24px;
  }

  @media (max-width: 991px) {
    .profile-info {
      margin-top: 16px;
    }
  }

  @media (max-width: 640px) {
    .profile-info {
      margin-top: 12px;
    }
  }

  .profile-name {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #343935;
  }

  @media (max-width: 991px) {
    .profile-name {
      font-size: 18px;
    }
  }

  @media (max-width: 640px) {
    .profile-name {
      font-size: 16px;
    }
  }

  .profile-title {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #343935;
  }

  @media (max-width: 991px) {
    .profile-title {
      font-size: 14px;
    }
  }

  @media (max-width: 640px) {
    .profile-title {
      font-size: 12px;
    }
  }

  .pagination {
    align-self: end;
    display: none;
    margin-top: 54px;
    width: 533px;
    max-width: 100%;
    align-items: end;
    gap: 20px;
    font-family:
      Poppins,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 24px;
    font-weight: 300;
    white-space: nowrap;
    line-height: 1;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  @media (max-width: 991px) {
    .pagination {
      margin-top: 40px;
      white-space: initial;
    }
  }

  .pagination-arrow {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 24px;
    margin-top: 28px;
    flex-shrink: 0;
  }

  .page-number {
    letter-spacing: 6px;
    margin-top: 28px;
  }

  .page-number.active {
    font-family:
      "Playfair Display",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 48px;
    font-weight: 400;
    align-self: stretch;
    letter-spacing: normal;
    margin-top: 0;
  }

  @media (max-width: 991px) {
    .page-number.active {
      font-size: 40px;
    }
  }

  .page-dots {
    letter-spacing: 6px;
    margin-top: 28px;
  }

  .testimonial-decoration {
    aspect-ratio: 1.73;
    object-fit: contain;
    object-position: center;
    width: 1209px;
    align-self: center;
    max-width: 100%;
  }

  /* CTA Section */

  /* CTA Button */
  .cta-wrapper {
    display: flex;
    min-width: 240px;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.43px;
    justify-content: end;
    width: 256px;
  }

  .cta-button-container {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    width: 196px;
  }

  .book-now-button {
    text-shadow: 2px 2px 4px rgba(0, 37, 75, 0.25);
    display: inline-block;
    border-radius: 1332px;
    background-color: #fdc016;
    box-shadow: 4px 4px 9px rgba(255, 255, 255, 0.4);
    border: 3px solid #fff;
    padding: 16px 42px 16px 39px;
    text-align: center;
    font-weight: 700;
    color: #fff;
  }

  @media (max-width: 991px) {
    .book-now-button {
      padding: 16px 20px;
    }
  }
  .cta-section {
    margin-top: 96px;
    width: 1520px;
    max-width: 100%;
  }

  @media (max-width: 991px) {
    .cta-section {
      margin-top: 40px;
    }
  }

  .cta-container {
    display: flex;
    flex-direction: column;
    position: relative;
    /* min-height: 678px; */
    width: 100%;
    padding: 114px 80px 29px;
  }

  @media (max-width: 991px) {
    .cta-container {
      max-width: 100%;
      padding: 100px 20px 29px;
    }
  }

  .cta-background {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: initial;
    object-position: center;
  }

  .cta-heading {
    position: relative;
    color: #fff;
    font-family:
      "Bricolage Grotesque",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 100px;
    font-weight: 400;
    line-height: 1;
    margin-left: 24px;
  }

  @media (max-width: 991px) {
    .cta-heading {
      max-width: 100%;
      font-size: 40px;
    }
  }

  .cta-content {
    position: relative;
    z-index: 10;
    margin-top: -61px;
    width: 1146px;
    max-width: 100%;
  }

  .cta-columns {
    gap: 20px;
    display: flex;
  }

  @media (max-width: 991px) {
    .cta-columns {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }
  }

  .today-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 50%;
    margin-left: 0;
  }

  @media (max-width: 991px) {
    .today-column {
      width: 100%;
    }
  }

  .today-text {
    color: #fdc016;
    font-size: 280px;
    font-family:
      "Qwigley",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-weight: 400;
    position: relative;
  }

  @media (max-width: 991px) {
    .today-text {
      max-width: 100%;
      margin-top: 50px;
      font-size: 40px;
      margin-left: 20px;
    }
  }

  .info-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 50%;
    margin-left: 20px;
  }

  @media (max-width: 991px) {
    .info-column {
      width: 100%;
    }
  }

  .info-content {
    position: relative;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    width: 100%;
    flex-direction: column;
    align-self: stretch;
    align-items: stretch;
    font-family:
      Poppins,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
  }

  @media (max-width: 991px) {
    .info-content {
      max-width: 100%;
      margin-top: 40px;
    }
  }

  .info-text {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
  }

  @media (max-width: 991px) {
    .info-text {
      max-width: 100%;
    }
  }

  .cta-button-wrapper {
    align-self: start;
    display: flex;
    margin-top: 25px;
    align-items: center;
    gap: 7px;
    font-size: 21px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.43px;
    justify-content: end;
  }

  /* Footer Section */
  .footer-section {
    margin-top: 96px;
    width: 100%;
  }

  @media (max-width: 991px) {
    .footer-section {
      max-width: 100%;
      margin-top: 40px;
    }
  }

  /* Accessibility enhancements */
  .book-now-button:focus,
  .menu-item:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
  }

  @media (prefers-reduced-motion: reduce) {
    * {
      transition: none !important;
      animation: none !important;
    }
  }

  :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: 20px 20px 20px;
  }

  .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: 60px;
    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;
    }
  }

  a{
    color: #f7f9fb;
    text-decoration: none;
  }

  /* ======================Mobile view responsiveness===================================== */


@media (max-width: 768px) {
  /* CTA Section Mobile Fixes */
  .cta-section {
    margin-top: 40px;
    width: 100%;
    overflow: hidden; /* Prevent any overflow issues */
  }

  .cta-container {
    padding: 40px 15px; /* Reduced padding for mobile */
    min-height: auto; /* Remove fixed height */
  }

  .cta-background {
    object-fit: cover; /* Ensures the image covers the container */
    height: 100%; /* Take full height of container */
    width: 100%; /* Take full width */
    position: absolute;
    inset: 0;
  }

  .cta-heading {
    font-size: 36px; /* Adjusted for mobile */
    margin-left: 0; /* Remove left margin */
    text-align: center; /* Center-align text */
    line-height: 1.2; /* Better readability */
    margin-bottom: 20px; /* Add some spacing */
  }

  .today-text {
    font-size: 60px; /* Adjusted for mobile */
    text-align: center; /* Center-align */
    /* margin-top: 10px;  */
    /* line-height: 1;  */
  }

  .info-text {
    font-size: 16px; /* Better readability */
    line-height: 1.5; /* Improved spacing */
    text-align: center; /* Center-align */
    padding: 0 10px; /* Prevent edge crowding */
  }

  .cta-button-wrapper {
    justify-content: center; /* Center the button */
    margin-top: 20px; /* Add spacing */
  }

  .book-now-button {
    padding: 12px 24px; /* Slightly smaller for mobile */
    font-size: 18px; /* Adjusted for mobile */
  }
}

/* =======================Logo Header======================= */

.logo {
  position: relative;
  display: flex;
  align-items: center;
}

.logo-img {
  width: 150px;
  height: 60px;
  margin-top: 25px;
}

.logo-tagline {
  position: absolute;
  margin-top: -33px;
  margin-left: 55px;
  padding: 5px;
  font-size: 8px;
  color: #fff;
}

/* Mobile styles */
@media (max-width: 768px) {
.logo-img {
    width: 150px; /* Reduced from 200px */
    height: 60px; /* Reduced from 80px */
    margin-top: 15px;
    margin-left: 20px;
  }


  .logo-tagline {
    margin-top: -32px;
    margin-left: 75px;
    font-size: 8px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 100px;
    height: 38px;
    /* margin-top: 10px; */
  }

  .logo-tagline {
    margin-top: -22px;
    margin-left: 55px;
    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: -33px;
  margin-left: 55px;
  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: -28px;
    margin-left: -30px;
    font-size: 8px;
  }
}

@media (max-width: 768px) {
  .footer-logo-img {
    width: 150px;
    height: 60px;
    margin-top: 15px;

  }
  .footer-logo-tagline {
    font-size: 8px;
    margin-left: -19px;
    margin-top: -34px;
  }
}

@media (max-width: 480px) {
  .footer-logo-img {
    width: 100px;
    height: 38px;
    /* margin-top: 10px; */
  }

  .footer-logo-tagline {
    margin-top: -22px;
    margin-left: -14px;
    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 5px;
    width: 100%;
    /* flex-wrap: wrap; */
  }

  .logo {
    order: 1;
    width: 50%;
  }

  .mobile-book {
    display: inline-block !important;
    order: 2;
    text-align: right;
    margin-right: 65px;
    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: 8px 15px;
  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: 75px;
    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);
}