html,
body {
  box-sizing: border-box;
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: #6d758f;
  scroll-behavior: smooth;
  box-sizing: border-box; /* Ensure padding and border are included in the total width and height */
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
}

*,
*::before,
*::after {
  box-sizing: inherit; /* Inherit box-sizing from the body */
}

/* Optional: You can also apply box-sizing to all elements to ensure consistency */
* {
  box-sizing: border-box;
}

/* [1] The container */
.img-hover-zoom {
  height: auto; /* [1.1] Set it as per your need */
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform 0.5s ease;
  min-width: 100%;
 
}

#gallery img{
  height:300px ;
}

.cta.img-hover-zoom img {
  transition: transform 0.5s ease;
  min-width: 80%;
}

.stats.img-hover-zoom img {
  transition: transform 0.5s ease;
  min-width: 80%;
}



/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.2);
  cursor: pointer;
}

p {
  color: #6d758f;
  font-size: 14px;
}

.header {
  padding: 0.5rem 1rem;
}

.header-primary {
  background-color: #ffc700;
  color: #000000;
  padding: 5px 113px 5px 113px;
  display: flex;
  font-size: 14px;
}

.header-primary button {
  font-size: 14px;
}

.header-secondary {
  background-color: #fff;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding: 0px 100px 0px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
}

.header-secondary .nav-link {
  color: #6d758f;
  font-size: 14px;
}

.header ul,
.header-primary ul {
  list-style: none;
}

.navbar-brand {
  font-weight: bold;
  font-size: 24px;
}

.nav-link {
  color: #333;
}
.nav-link:hover {
  color: #000000;
}

.hero {
  background: url("../images/banner.webp") no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  height: 200vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
}

.line {
  background-position: left bottom;
  background-image: url("images/line1.png");
  background-size: auto;
  background-repeat: repeat-x;
}

.hero-content {
  max-width: 50%;
  z-index: 2;
}

.hero-form {
  max-width: 400px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  z-index: 2;
  backdrop-filter: blur(30px);

}

.hero-form input,
.hero-form button {
  margin-bottom: 1rem;
  font-size: 14px;
}

.service_btn {
  background-color: #f1f3f7;
}

.menu-item {
  cursor: pointer;
}

.rating-color {
  color: #fbc634 !important;
}

.custom-spacing {
  margin-top: 50px;
  margin-bottom: 50px;
}

.social li {
  padding: 3px;
  margin-left: 3px;
  margin-right: 3px;
  border-radius: 4px;
  min-width: 30px;
  text-align: center;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  display: none; /* Initially hidden */
}
.popup-content {
  background: #fff;
  width: 90%;
  max-width: 800px;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.popup-left {
  flex: 1;
  background: url("../images/popup2.webp") no-repeat center center/cover;
  min-height: 300px;
}
.popup-right {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup-right h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.popup-right p {
  margin-bottom: 20px;
}
.popup-right .btn {
  width: 100%;
}
.popup-right .btn:hover {
  opacity: 0.4;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.countdown-timer {
  font-size: 24px;
  font-weight: bold;
  color: #dc3545; /* Red color for urgency */
}

footer ul li a,
footer ul {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: #6d758f;
}

/* Floating button styling */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffcc00; /* Yellow */
  color: #212529; /* Dark text */
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: #e0a800; /* Slightly darker yellow */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  mix-blend-mode: overlay;
  z-index: 1;
}

.ratings {
  width: 110px;
}

.btn-white {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  animation: all 1s;
}

.btn-white:hover {
  background: #ffffff;
  color: #000000;
}

.btn-warning {
  background-color: #ffc700;
}

#discounts {
  position: relative;

  background: #ffc700;
}

#discounts::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

#discounts .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  position: relative;
  z-index: 2; /* Ensure content is above the overlay */
}

#discounts .container h2 {
  color: #1e1e1e;
}

#discounts .row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 100%;
}

#discounts .discount-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.6s ease, box-shadow 0.3s ease;
  flex: 1 1 30%; /* This allows the cards to grow and shrink */
  min-height: 350px; /* Minimum height for cards */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  cursor: pointer;
}

#discounts .discount-card .icon {
  font-size: 3rem;
  color: #ffc700;
  margin-bottom: 15px;
}

#discounts .discount-card h4 {
  font-size: 1.25rem;
  color: #072f57;
  margin-bottom: 10px;
}

#discounts .discount-card p {
  font-size: 14px;
  color: #6d758f;
  text-align: left;
}

#discounts .discount-card:hover {
  transform: translateY(-10px) rotateY(10deg) rotateX(5deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Keep existing selected state */
#discounts .discount-card.selected {
  background-color: #ffebcc;
  border: 2px solid #000000;
}

#discounts .discount-card.selected h4 {
  color: #000000;
}

#discounts .discount-card.selected button {
  background-color: #000000;
  color: #ffffff;
}

#discounts .discount-card.selected::after {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #ffbf00;
}

.discount-card ul.features {
  list-style-type: none;
  padding: 0;
  margin-top: 15px;
  text-align: left;
}

.discount-card ul.features li {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.discount-card ul.features li::before {
  content: "✔️"; /* Checkmark icon */
  font-size: 0.8rem;
  color: #ffc107;
  position: absolute;
  left: 0;
  top: 2px;
}

.popup-discount-cards {
  display: flex;
  gap: 10px;
}

.popup-card {
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.popup-card-body {
  text-align: center;
  position: relative;
}

.popup-card input[type="radio"] {
  display: none;
}

.popup-card.selected {
  background-color: #ffebcc;
  border: 2px solid #ffbf00;
}

.popup-card input[type="radio"]:checked + .popup-card-body .popup-card-title {
  color: #ffbf00;
}

.popup-card input[type="radio"]:checked + .popup-card-body::after {
  content: "✓"; /* Checkmark symbol */
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #ffbf00; /* Match the selected color */
}

.popup-card-title {
  font-weight: bold;
}

.popup-card-text {
  font-size: 14px;
  color: #6d758f;
}

.popup-mb-3 {
  margin-bottom: 1rem;
}

.popup-form-label {
  font-weight: bold;
}

.popup-form-control {
  width: 100%;
  padding: 0.5rem;
}

.popup-btn {
  background-color: #ffbf00;
  color: white;
  font-weight: bold;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
}

.popup-btn:hover {
  background-color: #ff9f00;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}

.popup-close:hover {
  color: #ff0000;
}

@media (max-width: 980px) {
  .header-primary,
  .header-secondary {
    margin: 0;
    padding: 0;
  }

  .header-primary,
  .header-primary ul {
    flex-direction: column;
    padding: 5px;
  }

  .header-primary ul.social {
    flex-direction: row;
    align-self: flex-start;
    padding-left: 0px;
  }

  .hero {
    flex-direction: column;
  }

  .popup-content {
    display: flex;
    flex-direction: column;
  }

  .img-hover-zoom img {
    min-width: 100%;
  }

  .hero-content {
    min-width: 95%;
    text-align: center;
  }

  #discounts {
    padding: 30px 10px;
  }

  #discounts h2 {
    font-size: 1.5rem;
  }

  .discount-card {
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .discount-card h4 {
    font-size: 1rem;
  }

  .discount-card p {
    font-size: 0.9rem;
  }

  .discount-card .icon {
    font-size: 2.5rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 75px 20px 20px;
    gap: 20px; /* Adds spacing between content and form */
    max-height: 1065px;
  }

  .hero-content {
    text-align: center;
    width: 100%;
  }

  .hero-form {
    width: 90%; /* Prevents form from overflowing */
    max-width: 600px; /* Optional: Restrict max width */
    padding: 20px;
  }

  .hero-form form input,
  .hero-form form textarea {
    width: 100%; /* Ensures inputs fit within the container */
  }

  .hero-form button {
    width: 100%;
  }

  .d-flex {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }

  .btn {
    padding: 10px; /* Reduces padding on buttons */
    font-size: 14px;
  }
}


#booking-engin {
    position: fixed;
    left: 0px;
    z-index: 9999999;
    cursor: pointer;
    bottom: 10px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: none;
    box-shadow: none;
    margin: 0px;
    padding: 0px;
}
.button-2 {
        font-size: 16px;
    border: 1px solid #000;
    display: flex;
    padding: 8px 10px;
    align-items: center;
    justify-content: center;
    background: #ffc700;
    color: #000000;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0 20px 20px 0;
}
