html, body {
    overflow-x: hidden; /* Prevent horizontal overflow */
    width: 100%; /* Ensure width is 100% */
    box-sizing: border-box; /* Ensure consistent box-sizing */
  }

  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
body{
    font-family: "Playfair Display", serif;
}
.navbar {
    transition: background-color 0.3s, color 0.3s;
    background-color: transparent;
    
  }
  .navbar .nav-link {
    color: #ffffff; /* Default color before scrolling */
    transition: color 0.3s, border-bottom 0.3s;
    padding: 0.5rem 1rem; /* Add padding to the nav links */
    position: relative; /* Ensure the pseudo-element is positioned correctly */
  }
  .navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease-in-out;
  }
  .navbar a.nav-link:hover::after {
    width: 100%;
    
  }
  a .nav-link:hover{
      color: #ffffff;
  }
  .navbar.scrolled {
    background-color: #123d35 !important;
    color: #ffffff !important;
  }
  .navbar.scrolled .nav-link {
    color: #ffffff !important; /* Color after scrolling */
  }
  .navbar .nav-link:hover {
  color: #ffffff !important; /* Ensure hover color is white */
}

  .navbar-toggler:focus {
    outline: none; /* Remove focus outline */
  }
  /* .navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
  } */

  .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  /* Additional padding adjustments for the navbar items */
  .navbar-nav .nav-item {
    padding: 0.8rem; /* Add padding to the nav items */
  }
  .item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
  }
  .overlay h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-family: "Libre Caslon Display", serif;
  }
  .overlay p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  .overlay a {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
  }
  .overlay a:hover {
    background-color: white;
    color: #000;
  }
  /* Responsive text sizes */
  @media (max-width: 1200px) {
    .overlay h1 {
      font-size: 2.5em;
    }
    .overlay p {
      font-size: 1.1em;
    }
  }
  @media (max-width: 992px) {
    .overlay h1 {
      font-size: 2em;
    }
    .overlay p {
      font-size: 1em;
    }
    .navbar .nav-link {
     
      font-size: 0.9rem;
    }
  }
  @media (max-width: 768px) {
    .overlay h1 {
      font-size: 1.5em;
    }
    .overlay p {
      font-size: 0.9em;
    }
    .navbar .nav-link {
      padding: 0.3rem 0.6rem;
      font-size: 0.8rem;
    }
  }
  @media (max-width: 576px) {
    .overlay h1 {
      font-size: 12px;
      margin-top: 15px;
    }
    .overlay p {
      font-size: 10px;
    }
    .navbar .nav-link {
      padding: 0.2rem 0.4rem;
      font-size: 0.7rem;
    }
    .call-btn {
      font-size: 9px;
    }
    .navbar {
      background-color: #123d35 !important;
      color: #ffffff !important;
    }
    .navbar .nav-link {
      color: #ffffff !important;
    }
  }
  .navbar-nav {
    margin-left: auto;
    margin-right: auto;
  }
  .btn-primary {
    background-color: #123d35;
    border-color: #f0fe25;
  }
  /* Higher specificity to override Bootstrap's .navbar-light */
  .navbar.navbar-light .nav-link {
    color: #ffffff; /* Default color before scrolling */
  }
  .navbar.navbar-light.scrolled .nav-link {
    color: #ffffff !important; /* Color after scrolling */
  }
  /* Custom styles for Owl Carousel dots */
  .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    object-fit: cover; /* Add your custom styles here */
  }
  /* Desktop carousel styles */
  .desktop-carousel {
    display: block !important;
  }
  .mobile-carousel {
    display: none !important;
  }
  /* Mobile carousel styles */
  @media (max-width: 768px) {
    .desktop-carousel {
      display: none !important;
    }
    .mobile-carousel {
      margin-top: 110px;
      display: block !important;
      height: 400px; /* Set the desired height for the mobile carousel */
    }
    .mobile-carousel .item img {
      height: 400px; /* Match the height of the mobile carousel */
    }
    .custom-dots{
      display: none !important;
    }
    .mobile-dots {
      display: flex;
      flex-direction: column;
      position: absolute;
      right: 30px;
      top: 30%;
      transform: translateY(-50%);
      gap: 10px;
    z-index: 10;
    }
    .mobile-dots .dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
    }
    .mobile-dots .dot.active{
      background-color: #D2691E; /* Change to your active color */ 
    }
  }
  /* Additional styles for custom dots */
  .custom-dots {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
  }
  .custom-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .custom-dots .dot.active {
    background-color: #D2691E; /* Change to your active color */
  }
  .custom-section {
          background-color: #f5f5f5;
          padding: 50px 0;
      }
      .custom-section .content {
          display: flex;
          align-items: center;
      }
      .custom-section .image {
          max-width: 100%;
          border-radius: 8px;
      }
      .custom-section .text {
          padding: 20px;
      }
      .custom-section h2{
        font-family: "Libre Caslon Display", serif;
      }
      @media (max-width: 767.98px) {
          .custom-section .content {
              flex-direction: column;
          }
          .custom-section .image {
              margin-bottom: 20px;
          }
      }
      .room-section {
          padding: 50px 0;
          background-color: #f8f9fa;
      }
      .room-section .heading {
          text-align: center;
          margin-bottom: 30px;
      }
      .heading h2{
        font-family: "Libre Caslon Display", serif;

      }
      .room-section .image-card {
          margin-bottom: 30px;
          text-align: center;
      }
      .room-section .image-card img {
          width: 100%;
          height: auto;
          border-radius: 8px;
      }
      .room-section .image-card .image-heading {
          margin-top: 15px;
          font-size: 1.25rem;
          font-weight: bold;
      }
      .room-section .image-card .price {
          font-size: 1rem;
          color: #6c757d;
      }
      .curved-section {
          position: relative;
          
          padding: 100px 0;
          text-align: center;
          color: white;
          overflow: hidden;
      }
      .curved-section::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
          z-index: 0;
      }
      .curved-section .top-curve,
      .curved-section .bottom-curve {
          position: absolute;
          left: 0;
          width: 100%;
          overflow: hidden;
          line-height: 0;
      }
      .curved-section .top-curve {
          top: -50px;
      }
      .curved-section .top-curve svg {
          position: relative;
          display: block;
          width: calc(100% + 1.3px);
          height: 30px;
      }
      .curved-section .bottom-curve {
          bottom: -50px;
      }
      .curved-section .bottom-curve svg {
          position: relative;
          display: block;
          width: calc(100% + 1.3px);
          height: 50px;
      }
      .curved-section .arrow {
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
          width: 40px;
          height: 40px;
          background: white;
          color: black;
          border-radius: 50%;
          line-height: 40px;
          text-align: center;
          font-size: 24px;
          z-index: 1;
      }
      .curved-section .arrow-top {
          top: 0; /* Adjusted to ensure full visibility */
          transform: translate(-50%, -50%);
      }
      .curved-section .arrow-bottom {
          bottom: 0; /* Adjusted to ensure full visibility */
          transform: translate(-50%, 50%);
      }
      .curved-section .content {
          position: relative; /* Ensure content is above the overlay */
          z-index: 1;
          padding: 0 15px;
      }
      .curved-section .icon {
          font-size: 40px;
          margin-bottom: 15px;
      }
      .curved-section h2 {
          margin-bottom: 30px;
          font-family: "Libre Caslon Display", serif;
      }
      .curved-section p {
          margin-bottom: 0;
      }
      @media (max-width: 767.98px) {
          .curved-section {
              padding: 50px 0;
          }
          .curved-section .arrow {
              width: 30px;
              height: 30px;
              line-height: 30px;
              font-size: 18px;
          }
      }
      .gradient-section {
          background: linear-gradient(to bottom, #46b872, #a3da58); /* Adjust colors as needed */
          padding: 50px 0;
          text-align: center;
      }
      .gradient-section h2 {
          margin-bottom: 40px;
          color: white;
          font-family: "Libre Caslon Display", serif;
      }
      .offer {
          margin-bottom: 30px;
      }
      .offer img {
          width: 100%;
          max-width: 200px;
          height: 200px;
          object-fit: cover;
          border-radius: 50%;
          margin-bottom: 20px;
      }
      .offer h4 {
          margin-bottom: 15px;
          color: white;
          font-family: "Libre Caslon Display", serif;
      }
      .offer p {
          color: white;
      }
      @media (max-width: 767.98px) {
          .offer img {
              max-width: 150px;
              height: 150px;
          }
      }
      .gallery {
          display: flex;
          flex-wrap: wrap;
      }
      .gallery img {
          width: 100%;
          height: auto;
          cursor: pointer;
          transition: transform 0.3s ease;
      }
      .gallery img:hover {
          transform: scale(1.05);
      }
      .gallery-item {
          flex: 1 0 21%; /* Adjust this percentage to fit your layout */
          margin: 1.5%;
          overflow: hidden;
          border-radius: 8px;
      }
      @media (max-width: 768px) {
          .gallery-item {
              flex: 1 0 48%;
          }
      }
      @media (max-width: 576px) {
          .gallery-item {
              flex: 1 0 98%;
          }
      }
      .heading-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-family: "Libre Caslon Display", serif;

}

.line {
  flex-grow: 1;
  /* Lines will fill up the space */
  border: none;
  height: 1px;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.75), rgba(255, 255, 255, 0));
  /* Gradient line */
  margin: 0 10px;
  /* Spacing around the text */
}

.line2 {
  flex-grow: 1;
  /* Lines will fill up the space */
  border: none;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(255, 255, 255, 0));
  /* Gradient line */
  margin: 0 10px;
  /* Spacing around the text */
}

.heading-text {
  white-space: nowrap;
  padding: 0 10px;
  /* Spacing around the text */
  text-transform: initial;
  color: #737373;
  /* Text color */
  font-size: 34px;
  /* Adjust the font size as needed */
 
  /* Adjust font weight as needed */
}
.contact-section {
          padding: 50px 0;
      }
      .contact-section .form-control {
          background-color: #f8f9fa;
          border: 1px solid #dee2e6;
      }
      .contact-section .btn-submit {
          background-color: #123d35;
          color: white;
          font-weight: bold;
          padding: 10px 20px;
          border: none;
          border-radius: 5px;
          margin-top: 20px;
      }
      .contact-info {
          background-color: #123d35;
          color: white;
          padding: 20px;
          border-radius: 5px;
      }
      .contact-info .info-box {
          background-color: #ffffff;
          color: #123d35;
          padding: 15px;
          border-radius: 5px;
          margin-bottom: 15px;
          display: flex;
          align-items: center;
          font-family: "Libre Caslon Display", serif;

      }
      .contact-info .info-box i {
          font-size: 24px;
          margin-right: 15px;
      }
      @media (max-width: 767.98px) {
          .contact-info {
              margin-top: 30px;
          }
      }
      .service-section {
          padding: 50px 0;
          text-align: center;
      }
      .service-box {
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          margin-bottom: 30px;
      }
      .circle {
          width: 100px;
          height: 100px;
          border-radius: 50%;
          overflow: hidden;
          margin-bottom: 20px;
      }
      .circle img {
          width: 100%;
          height: 100%;
          object-fit: cover;
      }
      .service-box h4 {
          color: #2baf77;
          margin-bottom: 15px;
          font-family: "Libre Caslon Display", serif;

      }
      .service-box p {
          color: #6c757d;
      }
      @media (max-width: 767.98px) {
          .service-box {
              margin-bottom: 30px;
          }
      }
      .package-section {
          padding: 50px 0;
          text-align: center;
      }
      .package-card {
          border: 1px solid #ddd;
          border-radius: 10px;
          overflow: hidden;
          transition: transform 0.3s ease;
      }
      .package-card:hover {
          transform: translateY(-10px);
      }
      .package-card img {
          width: 100%;
          height: auto;
      }
      .package-card .card-body {
          padding: 20px;
      }
      .package-card .card-body h5 {
          margin-bottom: 15px;
          color: #2baf77;
      }
      .package-card .card-body p {
          color: #6c757d;
      }
      .package-card .btn-book {
          background-color: #123d35;
          color: white;
          border: none;
          border-radius: 5px;
          padding: 10px 20px;
          margin-top: 15px;
          cursor: pointer;
      }
      @media (max-width: 767.98px) {
          .package-card {
              margin-bottom: 30px;
          }
      }
      footer {
  background-color: #123d35;
  color: #ffffff;
}

footer a {
  color: #ffffff;
  text-decoration: none;
}

footer a:hover {
  color: #f0fe25;
  text-decoration: underline;
}

/* Add spacing between the navigation links */
footer ul li {
  margin-bottom: 10px;
}

footer .social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  font-size: 1.5rem;
  transition: background-color 0.3s, color 0.3s;
}

footer .social-icons a:hover {
  background-color: #2baf77;
  color: #123d35;
}

footer p {
  margin: 0;
  padding: 10px 0;
}