/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Body Styling */
body {
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #012c60;
  z-index: 9999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* MAIN CONTAINER */
.header-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 45px;
}

/* DESKTOP NAV */
.desktop-nav {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex: 1;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.desktop-nav a:hover {
  color: #cce5ff;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: white;
  transition: 0.3s;
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* TRENDING BADGE */
.badge-trending {
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 20px;
  margin-left: 6px;
}

/* RIGHT BUTTONS */
.right-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON BUTTON */
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon {
  width: 20px;
  height: 20px;
}

/* PROFILE BUTTON */
.profile-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: #012c60;
  padding: 8px 14px;
  border-radius: 25px;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

#myAccountLink {
  text-decoration: none;
}

.profile-btn:hover {
  background: #f0f0f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* SEARCH BOX */
.search-box {
  position: absolute;
  top: 75px;
  right: 20px;
  background: white;
  padding: 8px 14px;
  border-radius: 30px;
  display: flex;
  gap: 10px;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.search-box input {
  flex: 1;
  outline: none;
  border: none;
  color: #012c60;
}

.search-box button {
  background: #014f8c;
  border: none;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
}

/* MOBILE MENU */
.mobile-menu {
  background: #012c60;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  color: white;
  padding: 8px 0;
  text-decoration: none;
}

/* ===================== SECOND ROW ===================== */
.second-row {
  background: #012c60;
  text-align: center;
  overflow-x: auto; /* horizontal scroll */
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.second-row::-webkit-scrollbar {
  display: none;
}

.scroll-x {
  display: flex;
  gap: 20px;
  padding: 6px;
}

.scroll-x a {
  color: white;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.scroll-x a:hover {
  color: #ffdf85;
  text-decoration: underline;
}

/* ===================== LOCATION ROW ===================== */
.location-row {
  background: linear-gradient(to right, #e2ae3f, #f4c36f);
  padding: 5px 10px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
}

.location-row::-webkit-scrollbar {
  display: none;
}

.location-row .loc-btn {
  display: inline-block;
  background: #fff7dc;
  color: #012c70;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  flex-shrink: 0;
}

.location-row .loc-btn:hover {
  background: #ffe3a3;
  color: #014f8c;
}

/* ===================== FLIPPING BANNER ===================== */
.flip-banner {
  background: linear-gradient(to right, #e2ae3f, #f4c36f);
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#flipText {
  font-size: 13px;
  font-weight: bold;
  color: #012c60;
  white-space: nowrap;
  text-align: center;
  padding: 0 10px;
}

/* ===================== RESPONSIVE ===================== */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-only {
    display: flex;
  }
  .lbl {
    display: none;
  }

  /* Second row scroll */
  .scroll-x {
    justify-content: flex-start;
  }

  .scroll-x a {
    font-size: 13px;
    padding: 0 6px;
  }

  /* Location row scroll */
  .location-row {
    justify-content: flex-start;
    padding: 4px 8px;
  }

  .location-row .loc-btn {
    font-size: 11px;
    padding: 2px 6px;
  }
}

@media (min-width: 769px) {
  .scroll-x {
    justify-content: center;
  }

  .location-row {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* HIDDEN ELEMENTS */
.hidden {
  display: none !important;
}

/* Home Image Section */
.home-image {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}

.home-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(54, 48, 48, 0.4);
  z-index: 1;
}

.home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-top: 60px;
}

/* Text and Button on Home Image */
.home-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 44px;
  gap: 2px;
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 1;
  filter: drop-shadow(0px 0px 10px rgba(54, 48, 48, 0.8));
}

.home-btn-container {
  position: absolute;
  text-align: center;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.home-book-now-btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 20px;
  font-weight: bold;
  background-color: #e2ae3f;
  color: #012c60;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
  filter: drop-shadow(0px 0px 10px rgba(54, 48, 48, 0.8));
}

.home-book-now-btn:hover {
  background-color: #012c60;
  color: #ffffff;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .home-text {
    font-size: 36px;
  }

  .home-book-now-btn {
    padding: 12px 25px;
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .home-text {
    font-size: 32px;
  }

  .home-book-now-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  /* Adjust Home Image */
  .home-image {
    height: 400px;
  }

  .home-text {
    font-size: 28px;
    width: 90%;
  }

  .home-btn-container {
    top: 70%;
  }

  .home-book-now-btn {
    padding: 12px 24px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .home-text {
    font-size: 24px;
  }

  .home-book-now-btn {
    padding: 6px 15px;
    font-size: 12px;
  }
}

.animation {
  background: #888888
    url('https://dxk1acp76n912.cloudfront.net/images/homepage/watermarkwhite.png')
    no-repeat center center; /* Ensure image is always centered */
  background-size: cover; /* Ensure the background image covers the entire section */
  padding: 20px; /* Optional: Adds spacing inside the section */
  position: relative;
  min-height: 500px; /* Ensures the section height remains consistent */
  height: auto;
  background-position: center; /* Ensures the image stays centered when resizing */
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.animation .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
}

/* Main Section for Liquid Animation */
.main {
  position: relative;
  width: 40%;
  height: auto;
  /* margin-top: -360px; */
}

.main svg {
  width: 100%;
  height: auto;
}

.maskImg {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

/* Enhance the first image */
.first-image {
  z-index: 1; /* Keeps the image above other elements */
  opacity: 10; /* Slightly reduce opacity to enhance text visibility */
  filter: brightness(1.9) contrast(1) saturate(0.8); /* Darken & boost contrast */
  height: auto;
}

/* Text Overlay - Centered and Responsive */
.text-overlay {
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  color: #000000;
  text-align: center;
  width: 90%; /* Ensure it adjusts for all screens */
}

.text-overlay h2 {
  font-size: clamp(1.1rem, 2.8vw, 1.8rem); /* Responsive font size */
  font-weight: bold;
  margin-bottom: 10px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  max-width: 90%;
  /* Gradient Text Effect */
  background: linear-gradient(to right, #0b0b3d, #000000); /* Two colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.836); /* Optional shadow */
}

.yala-description {
  background-image: url('https://example.com/yala-safari-background.jpg'); /* Add your background image URL */
  background-size: cover;
  background-position: center; /* Center the image */
  padding: 30px;
  color: #ffffff;
  background-color: #012c60;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: justify;
  text-justify: inter-word;
  /* max-width: 800px; */
  /* margin: 0 auto; */
  opacity: 0.9;
  width: 60%;
  margin-top: 40px;
}

.yala-description h2 {
  font-size: 1.4em;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-align: center;
}

.yala-description p {
  font-size: 1em;
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
  max-width: 750px;
  margin: 0 auto;
}

.yala-description p::before {
  content: '🛶'; /* Dolphin emoji */
  font-size: 1.5em;
  margin-right: 8px;
}

.yala-description h2,
.yala-description p {
  transition: transform 0.3s ease-in-out;
}

.yala-description:hover h2 {
  transform: scale(1.04);
}

.yala-description:hover p {
  transform: scale(1.04);
}

/* Media Query for Screens Below 768px (Mobile-first) */
@media (max-width: 768px) {
  .main {
    width: 90%; /* Increase the width for mobile devices */
    /* margin-left: -60px; */
    margin-right: 0;
    margin-top: 5vh; /* Adjust margin-top for mobile screens */
  }

  .yala-description {
    padding: 20px;
    width: 100%; /* Make it take full width on smaller screens */
    margin-right: 0; /* Remove right margin */
  }

  .yala-description h2 {
    font-size: 1.6em; /* Larger font size for better readability */
  }

  .yala-description p {
    font-size: 1.1em; /* Slightly larger text for readability */
  }

  .yala-description p::before {
    font-size: 1.2em; /* Adjust icon size for mobile */
  }
}

/* For Screens Between 768px and 1200px */
@media (min-width: 769px) and (max-width: 1200px) {
  .main {
    width: 60%; /* Adjust width for medium screens */
    margin-right: 0;
    margin-top: 50px;
  }

  .yala-description {
    max-width: 700px;
    width: 80%;
    margin: 0 auto;
  }

  .animation .wrapper {
    flex-direction: column-reverse;
  }
}

/* For Screens Larger Than 1200px (Adjustments to Image Responsiveness) */
@media (min-width: 1201px) {
  .main {
    width: 40%;
    margin-left: 0;
    margin-right: 0;
    /* margin-top: -360px; */
  }

  /* .yala-description {
      max-width: 800px;
      width: 580px;
      margin-right: 40px;
    } */

  /* Make images within description responsive */
  .yala-description img {
    width: 100%; /* Ensure images take the full width of their container */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Prevent overflow */
  }
}

/*-------------------------------------------------------------------------------------------------*/
/*inquiry-form*/
.inquiry-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 30px 30px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 25px;
}

.inquiry-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: #012c60;
}

.tabs {
  display: flex;
  margin-bottom: 15px;
  gap: 5px !important; /* Increased from 10px to 20px */
}

.tab-button {
  flex: 1;
  padding: 10px;
  cursor: pointer;
  background: #eee;
  border: 1px solid #dfdfdf;
  outline: none;
  transition: background-color 0.3s ease;
  font-weight: bold;
  font-size: 15px;
  border-radius: 8px;
  text-transform: uppercase;
}

.tab-button:hover {
  background-color: #ddd;
}

.tab-button.active {
  background-color: #012c60;
  color: white;
  border-bottom: 3px solid #e2ae3f;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/*airport-transfer*/
.sub-tabs {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.sub-tab-button {
  padding: 10px 120px;
  margin: 0 5px;
  background: #e7e7e7;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.sub-tab-button:hover {
  background: #ccc;
}

.sub-tab-button.active {
  background-color: #e2ae3f;
  color: #012c60;
}
.sub-tab-content {
  display: none;
  margin-top: 10px;
}

.sub-tab-content.active {
  display: block;
}

/*check boxes*/
.form-with-checkboxes {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
  margin-left: 480px;
}

.checkbox-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.checkbox-column label {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 8px;
  white-space: nowrap;
}

.form-column {
  flex: 1;
  min-width: 300px;
  margin-top: 80px;
}

/*promo code*/
input[readonly] {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 4px;
}
.sub-tab-content label {
  font-weight: bold;
  font-size: 16px;
  color: #444444;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 8px;
  text-align: left;
  margin-left: 0 !important; /* Aligns it left */
  display: block;
}

.sub-tab-content input[readonly] {
  padding: 9px 16px;
  font-size: 18px;
  color: #007f5f;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  cursor: default;
  width: 400px;
  justify-content: left;
  margin-left: 0 !important; /* Aligns it left */
  display: block;
}

.sub-tab-content input[readonly]:hover {
  transform: scale(1.03);
}

.sub-tab-content input[readonly]:focus {
  border-color: #ffa000;
  outline: none;
}

.dropdown-group {
  margin-top: 15px;
}

.dropdown-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.dropdown-group select {
  padding: 10px;
  width: 400px;
  max-width: 800px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  background-color: #fefefe;
  margin-top: 8px;
  justify-content: left !important;
  margin-left: 0 !important; /* Aligns it left */
  display: block;

  /* Custom arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23000' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px 20px;
  padding-right: 40px; /* space for arrow */
}

.dropdown-group select:focus {
  border-color: #ffa000;
  outline: none;
}

.dropdown-group input[type='date'] {
  width: 400px;
  max-width: 800px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fefefe;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease;
  cursor: pointer;
  align-items: left;
  margin-left: 0 !important; /* Aligns it left */
  display: block;
}

.dropdown-group input[type='date']:focus {
  border-color: #ffa000;
  outline: none;
}

.vehicle-dropdown-wrapper {
  position: relative;
  width: 350px;
}

.vehicle-select {
  width: 350px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 2px;

  /* Remove default arrow in most browsers */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: white;
  background-image: none;
}

/* Custom arrow styling */
.vehicle-dropdown-wrapper .arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  pointer-events: none;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.vehicle-description {
  margin-top: 12px;
  background-color: #eef5ff;
  padding: 12px 16px;
  border-left: 6px solid #007f5f;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  white-space: pre-line;
  line-height: 1.5;
  text-align: left;
  width: 700px;
}

/* Ensure the whole group aligns left */
.dropdown-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* aligns content (like label + input) to the left */
}

#whatsapp-number,
#whatsapp-number-pickup {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: block;
  box-sizing: border-box;
}
/* Target the intl-tel-input wrapper */
.iti {
  width: 100%; /* allow full width */
  max-width: 400px; /* match input width */
  margin-left: 0 !important;
}

/* Input styles */
#whatsapp-number,
#whatsapp-number-drop {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: block;
  box-sizing: border-box;
}

.error-msg {
  color: red;
  font-size: 0.9rem;
  margin-top: 5px;
  text-align: left;
}

#check-availability-btn {
  display: block;
  margin: 30px auto 0;
  background-color: #e2ae3f;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  width: 100%; /* ✅ Makes button fill available space */
  max-width: 300px; /* ✅ Limits size on larger screens */
  box-sizing: border-box;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: glowButton 1.5s infinite alternate;
}

#check-availability-btn:hover {
  background-color: #012c60;
}

#check-availability-drop-btn {
  display: block;
  margin: 30px auto 0;
  background-color: #e2ae3f;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  max-width: 300px;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: glowButton 1.5s infinite alternate;
}

#check-availability-drop-btn:hover {
  background-color: #012c60;
}

.swal-confirm-btn {
  font-weight: bold;
}

.swal-cancel-btn {
  font-weight: bold;
}

/* Responsive Inquiry Form */
/* Responsive adjustments */
@media (max-width: 1024px) {
  .container {
    padding: 20px;
    max-width: 90%;
  }
  .form-with-checkboxes {
    margin-left: 0 !important;
    gap: 15px;
    justify-content: center;
  }
  .checkbox-column {
    min-width: 150px;
  }
  .form-column {
    min-width: 100%;
    margin-top: 30px;
  }
  .dropdown-group select,
  .dropdown-group input[type='date'],
  input[readonly],
  #whatsapp-number,
  #whatsapp-number-drop,
  .vehicle-select {
    width: 400px;
    max-width: 100%;
  }
  .vehicle-description {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .tabs {
    flex-direction: column;
  }
  .tab-button {
    font-size: 14px;
    padding: 8px;
  }
  .sub-tabs {
    flex-direction: column;
  }
  .sub-tab-button {
    padding: 10px 20px;
    margin: 5px 0;
    width: 100%;
    box-sizing: border-box;
  }
  .form-with-checkboxes {
    flex-direction: column;
    margin-left: 0 !important;
    gap: 10px;
  }
  .checkbox-column {
    min-width: 100%;
  }
  .vehicle-dropdown-wrapper {
    width: 100%;
  }
  #check-availability-btn {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  h2 {
    font-size: 22px;
  }
  .tab-button {
    font-size: 13px;
    padding: 6px;
  }
  .sub-tab-button {
    font-size: 16px;
    padding: 8px 15px;
  }
}

/*-----------------------------------------------------------------------------------------------------------------------------------*/
/* One Way Transfer */

/* Promo code readonly input styling */
#oneWay input[readonly] {
  padding: 10px 16px;
  font-size: 18px;
  color: #007f5f;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  cursor: default;
  width: 400px;
  margin-top: 10px;
  margin-left: 0;
  display: block;
}

#oneWay label[for='promo-oneway'] {
  font-weight: bold;
  color: #444;
  font-size: 16px;
  text-align: left;
  display: block;
  margin-top: 30px;
}

#oneWay input[readonly]:hover {
  transform: scale(1.03);
}

#oneWay input[readonly]:focus {
  border-color: #ffa000;
  outline: none;
}

/* Dropdown groups */
#oneWay .dropdown-group {
  margin-top: 15px;
}

#oneWay .dropdown-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
  color: #444444;
}

#oneWay .dropdown-group input[type='date'],
#oneWay .dropdown-group input[list] {
  width: 400px;
  max-width: 800px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fefefe;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease;
  cursor: pointer;
}

#oneWay .dropdown-group input[type='date']:focus,
#oneWay .dropdown-group input[list]:focus {
  border-color: #ffa000;
  outline: none;
}

/* Vehicle Dropdown Wrapper */
.oneway-vehicle-dropdown-wrapper {
  position: relative;
  width: 350px;
}

/* Vehicle Select */
.oneway-vehicle-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  background-image: none;
}

/* Vehicle description */
.oneway-vehicle-description {
  margin-top: 12px;
  background-color: #eef5ff;
  padding: 12px 16px;
  border-left: 6px solid #007f5f;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  white-space: pre-line;
  line-height: 1.5;
  text-align: left;
  width: 700px;
}

/* WhatsApp number input */
#whatsapp-number-oneway {
  padding: 10px 10px 10px 52px;
  font-size: 16px;
  width: 400px;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  margin-left: 0 !important; /* Aligns it left */
  display: block;
}

/* intl-tel-input flag styling */
.iti__selected-flag {
  height: 42px !important;
  padding: 0 6px 0 8px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Error message styling */
.error-msg {
  color: red;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Submit Button Styling */
#check-availability-oneway-btn {
  display: block;
  margin: 30px auto 0;
  background-color: #e2ae3f;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  max-width: 300px;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: glowButton 1.5s infinite alternate;
}

/* Button hover effect */
#check-availability-oneway-btn:hover {
  background-color: #012c60;
}

/* Responsive Styling */

@media screen and (max-width: 1024px) {
  #oneWay input[readonly],
  #oneWay .dropdown-group input[type='date'],
  #oneWay .dropdown-group input[list],
  #whatsapp-number-oneway,
  .oneway-vehicle-description {
    width: 100%;
    max-width: 100%;
  }

  .oneway-vehicle-dropdown-wrapper {
    width: 100%;
  }

  #check-availability-btn {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .oneway-vehicle-description {
    font-size: 14px;
    padding: 10px 14px;
  }

  #oneWay label[for='promo-oneway'],
  #oneWay .dropdown-group label {
    font-size: 15px;
  }

  .oneway-vehicle-select {
    font-size: 15px;
  }

  #check-availability-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  .oneway-vehicle-description {
    font-size: 13px;
    padding: 8px 12px;
  }

  #oneWay input[readonly],
  #oneWay .dropdown-group input[type='date'],
  #oneWay .dropdown-group input[list],
  #whatsapp-number-oneway {
    font-size: 15px;
    padding: 10px;
  }

  .oneway-vehicle-select {
    font-size: 14px;
    padding: 10px;
  }

  #check-availability-btn {
    font-size: 0.95rem;
    padding: 10px 18px;
  }

  .iti__selected-flag {
    height: 38px !important;
  }
}

/*---------------------------------------------------------------------------------------------------------------------------------*/
/*multi-day tou*/
#multiDay .promo-group-inline {
  margin-top: 15px;
}

#multiDay .promo-group-inline label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
  color: #444444;
  margin-top: 30px;
  text-align: left;
}

#multiDay .promo-group-inline .promo-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

#multiDay .promo-inline input {
  width: 400px;
  max-width: 800px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fefefe;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease;
  cursor: default;
  color: #007f5f;
  font-weight: 600;
  margin-bottom: 15px;
}

#multiDay .promo-inline input:focus {
  border-color: #ffa000;
  outline: none;
}

#multiDay .promo-note-inline {
  font-size: 14px;
  color: #ff6600;
  font-weight: bold;
  margin-top: -20px;
}

@media (max-width: 425px) {
  #multiDay .promo-note-inline {
    font-size: 14px; /* smaller font on small screens */
    margin-top: -20px;
    margin-bottom: 20px;
  }
}

#multiDay .start-date-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
  color: #444444;
  text-align: left;
}
.start-date-group .start-date-inline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.start-date-note {
  font-size: 14px;
  color: #777;
  font-style: italic;
  text-align: left;
}
#multiDay .start-date-group input[type='date'] {
  width: 400px;
  max-width: 800px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fefefe;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease;
  cursor: pointer;
}

#multiDay .start-date-group input[type='date']:focus {
  border-color: #ffa000;
  outline: none;
}

#multiDay .dropdown-label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
  color: #444444;
  margin-top: 20px;
  text-align: left;
}
/* Label Styling */
.dropdown-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #444444;
  font-size: 16px;
}

/* Custom Dropdown Styling */
.custom-dropdown {
  width: 400px;
  position: relative;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #ffffff;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s ease;
}

.custom-dropdown:hover {
  border-color: #ffa000;
}

.selected {
  padding: 12px 40px 12px 16px;
  position: relative;
  color: #000000;
  width: 400px !important;
  text-align: left;
}

/* Dropdown Arrow */
.arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.custom-dropdown.open .arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Dropdown Options List */
.options {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 150px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-top: none;
  position: absolute;
  width: 100%;
  background-color: white;
  display: none;
  z-index: 100;
  box-sizing: border-box;
  border-radius: 0 0 8px 8px;
}

.custom-dropdown.open .options {
  display: block;
}

.options li {
  padding: 10px 16px;
  transition: background-color 0.2s;
}

.options li:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

/* Distance Input Styling */
#distance-multiday {
  width: 400px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fefefe;
  box-sizing: border-box;
  color: #000000;
  cursor: default;
  user-select: none;
  margin-top: 8px;
  text-align: left;
  margin-left: 0; /* Aligns it left */
  display: block;
}

#distance-multiday:focus {
  outline: none;
  border-color: #ffa000;
}
/* === Multi-Day Tour Vehicle Dropdown === */
#multiDay .dropdown-group {
  margin-top: 15px;
}

#multiDay label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
  color: #444444;
  text-align: left;
}

#multiDay .multiday-vehicle-select {
  width: 400px;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-left: 0; /* Aligns it left */
  display: block;
}

#multiDay .multiday-vehicle-select:focus {
  outline: none;
  border-color: #ffa000;
}

#multiDay .multiday-vehicle-description {
  margin-top: 12px;
  background-color: #eef5ff;
  padding: 12px 16px;
  border-left: 6px solid #007f5f;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  white-space: pre-line;
  line-height: 1.5;
  text-align: left;
  width: 700px;
}

/* === Multi-Day WhatsApp Input === */
#multiDay input[type='tel'] {
  width: 400px;
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-top: 1px !important;
  margin-left: 0px !important; /* Aligns it left */
  display: block;
}

/* === Multi-Day Submit Button === */
#multiDay #check-availability-multiday-btn {
  display: block;
  margin: 30px auto 0;
  background-color: #e2ae3f;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  max-width: 300px;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: glowButton 1.5s infinite alternate;
}

#multiDay #check-availability-multiday-btn:hover {
  background-color: #012c60;
}

/* Responsive for tablets and below */
@media (max-width: 768px) {
  #multiDay .promo-inline input,
  #multiDay .start-date-group input[type='date'],
  #multiDay .multiday-vehicle-select,
  #multiDay input[type='tel'],
  #distance-multiday,
  .custom-dropdown,
  .selected {
    width: 337px !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  #multiDay .multiday-vehicle-description {
    width: 100% !important;
  }
}

/* Responsive for phones */
@media (max-width: 425px) {
  #multiDay .promo-inline {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  #multiDay .promo-inline input {
    width: 100% !important;
    margin-bottom: 12px !important;
  }

  #multiDay label,
  #multiDay .dropdown-label,
  #multiDay .start-date-group label {
    font-size: 14px !important;
  }

  #multiDay .multiday-vehicle-description {
    width: 100% !important;
    font-size: 14px !important;
  }

  #multiDay #check-availability-multiday-btn {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 1rem !important;
    padding: 10px 15px !important;
  }

  #multiDay .multiday-vehicle-select,
  #multiDay input[type='tel'],
  #distance-multiday,
  .custom-dropdown,
  .selected {
    width: 307px !important;
    max-width: 100% !important;
  }
}

/*-------------------------------------------------------------------------------------------------------------------*/
/*activities tab*/
/* Promo Code readonly input styling for Activities Tab */
#activities input[readonly] {
  padding: 10px 16px;
  font-size: 18px;
  color: #007f5f;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  width: 400px;
}

#activities input[readonly]:focus {
  border-color: #ffa000;
  outline: none;
}

/* Dropdown group styling */
#activities .dropdown-group {
  margin-top: 15px;
}

#activities .dropdown-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444444;
  margin-top: 10px;
}
#activities input[type='date'] {
  width: 400px;
  max-width: 800px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fefefe;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease;
  cursor: pointer;
}

#activities input[type='date']:focus {
  border-color: #ffa000;
  outline: none;
}

#activities .dropdown-group select {
  padding: 10px 16px;
  font-size: 16px;
  color: #000000;
  border-radius: 8px;
  width: 400px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}

#activities .dropdown-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  margin-top: 10px;
}

#activities #check-availability-activity-btn {
  display: block;
  margin: 30px auto 0;
  background-color: #e2ae3f;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  max-width: 300px;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: glowButton 1.5s infinite alternate;
}

#activities #check-availability-activity-btn:hover {
  background-color: #012c60;
}

/* Style for the WhatsApp number input inside the dropdown-group */
#whatsapp-number-activity {
  width: 400px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Adjust styling for intl-tel-input wrapper */
.iti {
  width: 100%;
}

/* Optional: Add spacing for dropdown-group */
.dropdown-group {
  margin-bottom: 16px;
}

/* Optional: Error message styling (already included in script) */
.error-msg {
  color: red;
  font-size: 0.9rem;
  margin-top: 4px;
}

@media (max-width: 768px) {
  #activities input[readonly],
  #activities input[type='date'],
  #activities .dropdown-group select,
  #whatsapp-number-activity {
    width: 100%;
  }

  #activities #check-availability-activity-btn {
    width: 100%;
    max-width: 100%;
  }
}

/*----------------------------------------------------------------------------------------------------------------*/

.yala-package {
  padding: 50px 0;
  background-color: #f8f8f8;
  text-align: center;
  margin-top: 20px !important;
  width: 100%;
}

.section-title {
  width: 100%; /* Ensure it takes full width */
  text-align: center; /* Center the text */
  font-size: 2.3rem;
  color: #012c60;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: -20px;
  text-transform: none;
  letter-spacing: 2px;
  display: flex;
  justify-content: center; /* Ensure centering */
  align-items: center;
}

/* Media Query for Screens 821px - 1200px */
@media (min-width: 821px) and (max-width: 1200px) {
  .section-title {
    font-size: 2.5rem; /* Adjust font size for better readability */
    margin: 0 auto; /* Center the title */
    max-width: 80%; /* Prevent text from spreading too wide */
  }
}

/* Media Query for Smaller Screens */
@media (max-width: 820px) {
  .section-title {
    font-size: 2rem; /* Adjust font size for smaller screens */
    margin: 0 auto;
    max-width: 90%;
  }
}

.yala-package-header h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: #012c60 !important;
  margin-top: -20px;
}

.yala-package-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px; /* Adjust gap between cards */
  margin-top: 60px;
  padding-left: 60px;
  padding-right: 60px; /* Padding for proper spacing */
}

.package-card {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: calc(33.333% - 20px); /* Ensure 3 cards per row with spacing */
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin-top: 0; /* Remove top margin to align cards */
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.package-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-info h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

.package-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  flex-grow: 1;
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.normal-price {
  font-size: 1.5rem;
  color: #e60000;
  text-decoration: line-through;
  margin-bottom: 5px;
}

.after-credits {
  font-size: 1.8rem;
  color: #086920;
  font-weight: bold;
}

.credits-tag {
  font-size: 1rem;
  color: #4e02ff;
  font-weight: bold;
  margin-left: 5px;
}

/* Responsive adjustments for text elements */
@media (max-width: 1200px) {
  .normal-price {
    font-size: 1.3rem; /* Slightly smaller for medium screens */
  }

  .after-credits {
    font-size: 1.5rem; /* Adjust font size for medium screens */
  }

  .credits-tag {
    font-size: 0.9rem; /* Adjust for better readability */
  }
}

@media (max-width: 768px) {
  .normal-price {
    font-size: 1.2rem; /* Reduce font size on smaller screens */
  }

  .after-credits {
    font-size: 1.4rem; /* Adjust for readability */
  }

  .credits-tag {
    font-size: 0.85rem; /* Make the font size smaller on mobile */
  }
  .animation .wrapper {
    flex-direction: column-reverse;
  }
}

@media (max-width: 480px) {
  .normal-price {
    font-size: 1rem; /* Even smaller for small screens */
  }

  .after-credits {
    font-size: 1.2rem; /* Further adjust for small screens */
  }

  .credits-tag {
    font-size: 0.8rem; /* Adjust for very small screens */
  }
}

.credits-savings {
  background-color: #00fff2;
  color: #000000;
  font-size: 1rem;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 5px;
  position: absolute;
  top: 10px;
  right: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  animation: pulse 1.5s infinite;
}

/* Pulse effect to grab attention */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.package-btn {
  padding: 12px 25px;
  background-color: #012c60;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto;
  text-align: center;
  width: 250px;
  margin-left: 35px;
  margin: 0 auto;
}

.package-btn:hover {
  background-color: #e2ae3f;
}

/* Responsive Design for smaller screens */
@media (max-width: 1200px) {
  .section-title {
    font-size: 1.8rem;
    margin-left: auto;
    margin-top: -15px;
    text-align: center;
  }
  .yala-package-cards {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .package-card {
    width: calc(50% - 20px); /* Adjust width to fit more cards in a row */
  }

  .package-btn {
    width: auto; /* Make button size more flexible */
    margin-left: 0;
    padding: 10px 90px; /* Adjust button padding */
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .package-card {
    width: 80%; /* Stack the cards vertically on smaller screens */
  }

  .yala-package-header h2 {
    font-size: 1.8rem; /* Make the header smaller for mobile */
  }

  .package-info h3 {
    font-size: 1.3rem; /* Adjust font size for better mobile experience */
  }

  .package-info p {
    font-size: 0.9rem; /* Adjust paragraph font size */
  }

  .price {
    font-size: 1.2rem; /* Adjust price font size for readability */
  }

  .package-btn {
    padding: 10px 20px; /* Adjust button padding for mobile */
    width: 70%; /* Full width button for smaller screens */
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    margin-left: auto;
    margin-top: -15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
    margin-left: auto;
    margin-top: -10px;
    text-align: center;
  }

  .package-card {
    width: 100%; /* Stack the cards in full width on extra small screens */
  }

  .package-info h3 {
    font-size: 1.2rem; /* Adjust heading font size */
  }

  .package-info p {
    font-size: 0.8rem; /* Adjust paragraph font size */
  }

  .package-btn {
    width: 100%; /* Full-width button on extra small screens */
    margin: 0 auto;
  }
}

.yala-benefits {
  text-align: center;
  padding: 50px 20px;
  background-color: #00af87;
  height: auto;
  margin-top: 50px;
}

.benefits-title {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #ffffff;
  margin-top: -20px;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 65px;
}

/* Default card styles */
.benefit-card {
  width: 300px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #012c60; /* Add border width and style */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.benefit-card i {
  font-size: 40px;
  color: #012c60;
  margin-bottom: 10px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.benefit-card p {
  font-size: 18px;
  color: #555;
  font-family: Cambria;
}

.up {
  transform: translateY(-20px);
  /*background: #cff3cf
      url("https://dxk1acp76n912.cloudfront.net/images/homepage/watermarkwhite.png")
      no-repeat center center;*/
  background-size: cover;
}

.down {
  transform: translateY(20px);
}

.benefit-card:hover {
  transform: scale(1.05);
}

/* Responsive layout adjustments */
@media (max-width: 768px) {
  .benefits-container {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card {
    width: 100%; /* Make cards responsive */
    max-width: 350px;
    transform: translateY(0); /* Reset transformations */
  }
}

/* footer */
footer {
  background: url('https://dxk1acp76n912.cloudfront.net/images/homepage/waterma.png')
    no-repeat center center;
  background-size: cover;
  color: #ffffff;
  padding: 30px 20px; /* Adjust padding as needed */
  text-align: center;
  margin-top: -10px;
}

/* Footer Logo */
.footer-logo {
  position: relative; /* Changed from absolute to relative */
  padding: 10px;
  width: 140px; /* Adjusted the width as per your requirement */
  height: auto; /* Keeps the aspect ratio of the logo */
  margin: 0 auto;
  font-weight: bold;
  margin-top: 40px;
}

.footer-logo img {
  width: 240%; /* Ensure the image fills the container */
  height: auto;
  margin-top: -300px !important;
  margin-left: -80px;
}

.footer-social {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;
  gap: 20px;
  font-size: 1.4rem;
  text-align: center;
  margin-top: -5px !important;
}

.footer-social a {
  color: white;
}

/* Footer Content Section */
.footer-content {
  max-width: 1200px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 10px;
  gap: 5;
  text-align: center; /* Ensure text is centered */
}

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
  .yala-benefits {
    padding: 40px 10px; /* Adjust padding for smaller screens */
  }

  .benefits-container {
    justify-content: space-around; /* More evenly distributed cards on mobile */
  }

  .benefit-card {
    width: 90%; /* Allow the cards to take more width on mobile */
    margin-bottom: 20px; /* Add space between cards on mobile */
    padding: 15px; /* Adjust padding for better appearance */
  }
  .benefits-title {
    font-size: 1.8rem; /* Slightly smaller font size for mobile */
  }

  .footer {
    padding: 20px 10px; /* Adjust padding for smaller screens */
    height: auto; /* Remove fixed height for flexibility */
    font-size: 14px; /* Slightly smaller font size for mobile */
    flex-direction: column; /* Stack elements vertically */
  }

  .footer-logo {
    position: relative; /* Changed from absolute to relative */
    padding: 10px;
    width: 140px; /* Adjusted the width as per your requirement */
    height: auto; /* Keeps the aspect ratio of the logo */
    margin: 0 auto;
    margin-top: 40px;
  }

  .footer-logo img {
    width: 240%; /* Ensure the image fills the container */
    height: auto;
    margin-top: -300px !important;
    margin-left: -80px;
  }

  .footer-social {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    text-align: center;
  }

  .footer-social a {
    color: white;
  }

  /* Footer Content Adjustments */
  .footer-content {
    font-size: 14px; /* Adjust text size for mobile */
    margin-top: 20px; /* Reduce margin-top */
    line-height: 1.5;
  }
}

.footer p a {
  color: #ffffff;
  text-decoration: none;
}

.footer p a:hover {
  text-decoration: none;
}

.footer p a:active {
  color: #f0a500; /* Optional color change on click */
}
.payment-box {
  background-color: white;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 1px 0; /* Add some vertical padding */
  text-align: center;
  box-sizing: border-box;
  height: 60px;
}

.inline-payment-icons {
  display: inline-flex;
  flex-wrap: wrap; /* Wrap on small screens */
  justify-content: center;
  gap: 15px;
  align-items: center;
  opacity: 1;
}

/* Base icon size for large screens */
.inline-payment-icons img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.inline-payment-icons img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

/* Responsive adjustments */

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991px) {
  .inline-payment-icons img {
    height: 45px; /* Slightly smaller icons */
  }
}

/* Small devices (mobiles, less than 768px) */
@media (max-width: 768px) {
  .inline-payment-icons img {
    height: 45px; /* Smaller icons for small screens */
  }

  .payment-box {
    padding: 8px 5px; /* Less padding on very small screens */
    height: 60px;
  }
}

/* Very small devices (extra small phones, less than 480px) */
@media (max-width: 479px) {
  .inline-payment-icons {
    gap: 10px; /* Less gap on very small screens */
  }

  .inline-payment-icons img {
    height: 32px; /* Smallest icons */
  }
  .payment-box {
    height: 50px;
  }
}
/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 20px 10px; /* Adjust padding for smaller screens */
    height: auto; /* Remove fixed height for flexibility */
    font-size: 14px; /* Slightly smaller font size for mobile */
    flex-direction: column; /* Stack elements vertically */
  }

  .footer-logo {
    position: relative; /* Changed from absolute to relative */
    padding: 10px;
    width: 140px; /* Adjusted the width as per your requirement */
    height: auto; /* Keeps the aspect ratio of the logo */
    margin: 0 auto;
    margin-top: 40px;
  }

  .footer-logo img {
    width: 240%; /* Ensure the image fills the container */
    height: auto;
    margin-top: -300px !important;
    margin-left: -80px;
  }

  .footer-social {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    text-align: center;
  }

  .footer-social a {
    color: white;
  }

  /* Footer Content Adjustments */
  .footer-content {
    font-size: 14px; /* Adjust text size for mobile */
    margin-top: 20px; /* Reduce margin-top */
    line-height: 1.5;
  }
}
