/* 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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #012c60;
  padding: 15px 50px;
  color: white;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Logo */
.header-logo {
  width: 260px;
  transition: all 0.3s ease;
}

.header-logo img {
  width: 90%;
  height: auto;
  display: block;
  margin-top: 10px;
}

/* Navigation Links */
.header-links {
  display: flex;
  gap: 20px;
}

.header-links h1 {
  margin: 0;
  font-size: 1.1rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Apply transition correctly to the entire link */
.header-links h1 a {
  text-decoration: none;
  color: white;
  display: inline-block; /* Ensures transform works properly */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.header-links h1 a:hover {
  color: #e2ae3f;
  transform: scale(1.1); /* Smooth zoom-in effect */
}

/* Hide Menu Toggle Checkbox */
.menu-toggle {
  display: none;
}

/* Menu Icon */
.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .header-logo {
    position: absolute;
    left: 20px;
  }

  header {
    height: 80px;
    padding: 15px 50px;
  }

  /* Show Menu Icon */
  .menu-icon {
    display: block;
  }

  /* Hide Navigation Links Initially */
  .header-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    right: 0;
    background: #012c60;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .header-links h1 {
    margin: 10px 0;
  }

  /* Show Dropdown When Checkbox is Checked */
  .menu-toggle:checked + .menu-icon + .header-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: -20px;
  }
} /*trending text*/
/* Ensure the link container is relative and inline-block */
.trending-link a {
  position: relative;
  display: inline-block;
  padding-right: 0; /* no extra padding needed */
  white-space: nowrap; /* prevents text wrap which could break badge */
}

/* Trending badge styling */
.trending-label {
  position: absolute;
  bottom: -18px;
  right: 0px;
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  color: #012c60;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 12px rgba(255, 204, 51, 0.6);
  pointer-events: none;
  user-select: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  transform: rotate(0deg);
  overflow: hidden;

  /* pulse animation */
  animation: pulse 1.5s infinite;
}

/* hover pop effect */
.trending-label:hover {
  transform: rotate(0deg) scale(1.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), 0 0 16px rgba(255, 204, 51, 0.8);
}

/* ribbon pseudo-elements for 3D ribbon effect */
.trending-label::before,
.trending-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 100%;
  background: #ffb347;
  transform: skewX(-20deg);
  z-index: -1;
}

.trending-label::before {
  left: -6px;
}

.trending-label::after {
  right: -6px;
}

/* pulse animation keyframes */
@keyframes pulse {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 12px rgba(255, 204, 51, 0.6);
  }
  50% {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 204, 51, 0.9);
  }
}

/* responsive tweaks */
@media screen and (max-width: 480px) {
  .trending-label {
    font-size: 0.6rem;
    bottom: -15px;
    right: 0px;
    padding: 2px 6px;
  }
}

.header-under-image {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.header-under-image img {
  width: 100%;
  height: auto;
  max-height: 700px; /* Limit the height on large screens */
  display: block;
  object-fit: cover;
  margin-top: 80px;
}

/* Responsive tweaks */

@media (max-width: 1024px) {
  .header-under-image img {
    max-height: 520px;
  }
}

@media (max-width: 768px) {
  .header-under-image img {
    max-height: 400px;
  }
}

@media (max-width: 480px) {
  .header-under-image img {
    max-height: 250px;
    margin-top: 50px;
  }
}

@media (max-width: 2560px) {
  .header-under-image img {
    max-height: 700px;
    margin-top: 50px;
  }
}
.centered-title {
  position: absolute;
  top: 50%; /* vertical center */
  left: 10%; /* shifted to left side */
  transform: translateY(-50%);
  color: #ffffff; /* golden color for attractiveness */
  text-align: left; /* left aligned text */
  text-shadow: 2px 2px 10px #012c60;
  font-family: 'Georgia', serif;
  user-select: none;
  max-width: 900px;
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.55); /* translucent dark background */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  z-index: 5;
  animation: fadeInLeft 1.5s ease forwards;
}

.centered-title h1 {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 3px;
}

.centered-title h1 span {
  display: block;
  font-size: 4rem;
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
  .centered-title {
    left: 8%;
    max-width: 850px;
    padding: 16px 20px;
    margin-top: 60px;
  }
  .centered-title h1 {
    font-size: 4rem;
  }
  .centered-title h1 span {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .centered-title {
    left: 6%;
    max-width: 580px;
    padding: 12px 16px;
    margin-top: 60px;
  }
  .centered-title h1 {
    font-size: 3rem;
  }
  .centered-title h1 span {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .centered-title {
    left: 4%;
    max-width: 350px;
    padding: 10px 12px;
    margin-top: 50px;
  }
  .centered-title h1 {
    font-size: 1.8rem;
  }
  .centered-title h1 span {
    font-size: 1.4rem;
  }
}

/* Animation sliding in from left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-30%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.whatsapp-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #012c60;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  font-size: 20px;
  transition: background 0.3s ease;
  cursor: pointer;

  /* Responsive tweaks */
  max-width: 90%;
  text-align: center;
  box-sizing: border-box;
}

/* Hover effect */
.whatsapp-button:hover {
  background-color: #ffae00;
  color: #000000;
}

/* Tablet view */
@media (max-width: 768px) {
  .whatsapp-button {
    font-size: 18px;
    padding: 10px 20px;
  }
}

/* Mobile view */
@media (max-width: 480px) {
  .whatsapp-button {
    font-size: 16px;
    padding: 10px 16px;
  }
}

/*page links*/
.excursions-section {
  padding: 10px 20px;
  background: #ffae0021;
  text-align: center;
}

.excursions-section h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #012c60;
}

.excursions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.excursion-card {
  position: relative;
  width: 160px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: white;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-end;
  background-color: #000;
}

.excursion-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s ease;
}

.excursion-card:hover img {
  transform: scale(1.08);
}

.excursion-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 1.3rem;
  border-radius: 0 0 12px 12px;
  width: 100%;
  box-sizing: border-box;
  transition: color 0.3s ease;
}

.excursion-card h3:hover {
  color: #e2ae3f;
}

/* Responsive tweaks */

/* Medium screens (tablets) */
@media (max-width: 900px) {
  .excursion-card {
    width: 140px;
    height: 120px;
  }
  .excursion-card h3 {
    font-size: 1.1rem;
    padding: 12px 15px;
  }
  .excursions-section h2 {
    font-size: 2rem;
  }
}

/* Small screens (mobile) */
@media (max-width: 600px) {
  .excursions-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .excursion-card {
    width: 70%;
    max-width: 320px;
    height: 80px;
  }
  .excursion-card h3 {
    font-size: 1.2rem;
    padding: 14px 18px;
  }
  .excursions-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

/* Main Popup Container---------------------------------------------------------------- */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

.popup-content {
  background: linear-gradient(135deg, #c9ffd4, #dacdff);
  padding: 15px;
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  overflow: hidden;
  flex-wrap: wrap;
}

/* Inner Layout */
.popup-inner {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
}

.popup-image img {
  width: 220px;
  height: 350px;
  border-radius: 8px;
  object-fit: cover;
  margin-top: 0px;
}

/* Text Content */
.popup-text {
  flex: 1;
  text-align: center;
  font-size: 15px;
}

.popup-text h2 {
  color: #012c60;
  font-size: 28px;
  margin-bottom: 10px;
}

.popup-text h2 strong {
  color: #007f5f;
  font-weight: 700;
}

.time-number {
  font-size: 2.2rem;
  color: #012c60;
  font-weight: bold;
  padding: 10px 12px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  min-width: 60px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.time-label {
  font-size: 0.9rem;
  margin-top: 5px;
  color: #555;
}

/* Button */
.whatsapp-btn {
  background-color: #e2ae3f;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: glowButton 1.5s infinite alternate;
}

.whatsapp-btn:hover {
  background-color: #012c60;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    align-items: center;
    width: 400px;
  }

  .popup-inner {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .popup-image img {
    width: 300px;
    height: auto;
    max-height: 300px;
  }

  .popup-text {
    font-size: 14px;
  }

  .popup-text h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    width: 360px;
  }
  .popup-image img {
    width: 300px;
    height: 200px;
    max-height: 300px;
  }
  .whatsapp-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .popup-text h2 {
    font-size: 28px;
  }

  .popup-text {
    font-size: 16px;
  }
}

.saffron {
  color: #ff9933; /* Saffron */
  font-weight: 800;
}

.white-highlight {
  color: #ffffff; /* White */
  font-weight: 800;
  text-shadow: 0 0 1.5px #000; /* optional black outline to make white visible */
}

.green {
  color: #138808; /* Green */
  font-weight: 800;
}

/* end pop up -------------------------------------------------------------------------------*/

.trail-info {
  position: absolute;
  top: 100px; /* distance from top */
  right: 20px; /* distance from right */
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black bg */
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  width: 302px; /* or adjust as needed */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.trail-info h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  cursor: pointer; /* pointer cursor */
  text-decoration: underline; /* underline */
  user-select: none; /* prevent text selection on click */
  color: #ffd700; /* optional highlight color */
  transition: color 0.3s ease;
}

.trail-info h2:hover {
  color: #ffcc25;
}

.dropdown-container {
  border-radius: 5px;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  user-select: none;
  color: #9ad8ee;
  font-weight: 700;
}

.dropdown-option {
  padding: 5px 15px;
  cursor: pointer;
  transition: background-color 0.25s, text-decoration 0.25s;
}

.dropdown-option:hover {
  border-radius: 2px slide #000000;
  text-decoration: underline;
  color: #ffffff;
}
/* Keep your base styles as is */

/* Responsive tweaks */
@media (max-width: 1024px) {
  .trail-info {
    top: 100px; /* reduce top distance */
    right: 15px; /* reduce right margin */
    width: 260px; /* slightly narrower */
    padding: 12px 16px;
    font-size: 16px;
  }

  .trail-info h2 {
    font-size: 17px;
  }

  .dropdown-container {
    max-width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .trail-info {
    top: 90px;
    right: 12px;
    width: 220px;
    padding: 10px 14px;
  }

  .trail-info h2 {
    font-size: 14px;
  }

  .dropdown-container {
    max-width: 100%;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .trail-info {
    top: 83px;
    right: 10px;
    width: 180px;
    padding: 2px 9px;
  }

  .trail-info h2 {
    font-size: 11px;
  }

  .dropdown-container {
    max-width: 100%;
    font-size: 12px;
  }
  .dropdown-option {
    padding: 3px 10px;
  }
}

/* Full-width background container */
.ramayana-full-bg {
  width: 100%;
  background: linear-gradient(to right, #dbcd7f, #c5c5c5);
  padding: 40px 15px;
}

/* Inner section with max width and center alignment */
.ramayana-description-section {
  position: relative;
  background: linear-gradient(to right, #d8f4fd, #0d2b5100);
  padding: 50px 30px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  animation: fadeIn 1.5s ease-in-out;
}

/* Optional watermark image */
.ramayana-description-section::before {
  content: '';
  background: url('https://dxk1acp76n912.cloudfront.net/images/tours/ramayana.png')
    no-repeat center;
  background-size: cover;
  opacity: 0.2;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.ramayana-description-section h2 {
  font-size: 2.5rem;
  color: #012c60;
  margin-bottom: 25px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 2px #fff4dc;
}

.ramayana-description-section p {
  font-size: 1.3rem;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive: Tablet */
@media (max-width: 768px) {
  .ramayana-description-section {
    padding: 40px 20px;
  }

  .ramayana-description-section h2 {
    font-size: 1.8rem;
  }

  .ramayana-description-section p {
    font-size: 1rem;
  }
}

/* Responsive: Mobile */
@media (max-width: 480px) {
  .ramayana-description-section h2 {
    font-size: 1.5rem;
  }

  .ramayana-description-section p {
    font-size: 0.95rem;
  }
}

/*inquiry form--------------------------------------------------------------------------------------------------*/
/*Inquiry form-section-------------------------------------------------------------------------*/
.inquiry-section {
  background: #f9f9f9;
  padding: 20px 20px;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 25px;
}

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

.inquiry-form .form-group {
  margin-bottom: 20px;
}

.inquiry-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #444;
}

.inquiry-form input {
  width: 350px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Minimize width and align promo code with text */
.promo-group-inline .promo-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-inline input {
  width: 350px; /* smaller box */
  color: #007f5f; /* text color inside box */
  font-weight: 800; /* bold text */
  font-size: 15px;
}

/* "Get 30% off!" styling */
.promo-note-inline {
  font-size: 18px;
  font-weight: 700;
  color: #ff6600;
}

/* Start Date Field Styling */
.start-date-group .start-date-inline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.start-date-note {
  font-size: 14px;
  color: #777;
  font-style: italic;
}

.start-date-inline input[type='date'] {
  width: 350px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Number of Days dropdown container */
.dropdown-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #444;
}
.custom-dropdown {
  width: 350px;
  position: relative;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  user-select: none;
  overflow: visible;
}
.selected {
  padding: 12px 40px 12px 16px;
  position: relative;
  overflow: visible;
}

.selected::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid black;
  transform: translateY(-50%);
  pointer-events: none;
}

.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 black;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 0;
  font-size: 0;
  content: '';
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.custom-dropdown.open .arrow {
  transform: translateY(-50%) rotate(180deg);
}
.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: white;
  display: none;
  z-index: 10;
  box-sizing: border-box;
}
.options li {
  padding: 10px 16px;
}
.options li:hover {
  background: #eee;
}
.custom-dropdown.open .options {
  display: block;
}

.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;
  border-top: 6px solid #000000; /* Arrow color */
}
.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;
}

#whatsapp-number {
  width: 350px;
}
.iti__selected-flag {
  height: 42px !important; /* or any height you want, e.g., 36px or 32px */
  padding: 0 6px 0 8px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

#check-availability-btn {
  display: block;
  margin: 30px auto 0;
  background-color: #012c60;
  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-btn:hover {
  background-color: #e2ae3f;
}

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

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

/* Responsive Inquiry Form */
@media (max-width: 768px) {
  .inquiry-section {
    padding: 15px 15px;
    max-width: 90%;
  }

  .inquiry-form input,
  .promo-inline input,
  .start-date-inline input[type='date'],
  .custom-dropdown,
  .vehicle-select,
  #whatsapp-number {
    width: 350px; /* Full width on smaller screens */
    max-width: 100%;
    box-sizing: border-box;
  }
  .vehicle-select {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .inquiry-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

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

  #whatsapp-number {
    width: 350px;
  }
}

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

/*location section*/
.ramayana-trail-section {
  background: url('https://dxk1acp76n912.cloudfront.net/images/ravana-trail/ramayana-loca.png')
    no-repeat center center/cover;
  padding: 35px 20px;
  position: relative;
  color: white;
  text-align: center;
  margin-top: 20px;
}
.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
}
.section-title {
  font-size: 36px;
  margin-bottom: 30px;
  font-family: 'Georgia', serif;
}
.location-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.location-links li {
  cursor: pointer;
  padding: 10px 15px;
  background-color: #6f5621;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: bold;
}
.location-links li:hover {
  background-color: #e2ae3f;
  color: #000;
}

/* Carousel */
.location-cards {
  position: relative;
  padding: 30px 20px;
  background: #fff;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.card-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.location-card {
  flex: 0 0 100%;
  display: flex;
  background: linear-gradient(to right, #ffffff, #f2f2f2);
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
  min-height: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
}

.location-card img {
  width: 50%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.location-card:hover img {
  transform: scale(1.03);
}

.card-info {
  padding: 25px 30px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffd80021;
}

.card-info h3 {
  margin-top: 0;
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 600;
  font-family: 'Georgia', serif;
  margin-bottom: 12px;
}

.card-info p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}
@media (max-width: 1024px) {
  .card-info {
    padding: 20px;
  }

  .card-info h3 {
    font-size: 20px;
  }

  .card-info p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .location-card {
    flex-direction: column;
    min-height: auto;
    height: auto; /* Add this line to override the fixed height */
  }

  .location-card img,
  .card-info {
    width: 100%;
  }

  .location-card img {
    height: 220px;
    object-fit: cover;
  }

  .card-info {
    padding: 20px 15px;
    text-align: left;
  }

  .location-links ul {
    flex-direction: column;
    align-items: center;
  }

  .location-links li {
    width: 90%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .location-card {
    height: auto !important; /* Ensure height is not fixed */
  }

  .section-title {
    font-size: 26px;
  }

  .location-links li {
    font-size: 14px;
    padding: 8px 12px;
  }

  .card-info h3 {
    font-size: 18px;
  }

  .card-info p {
    font-size: 14px;
  }
}

/*arrrow section*/
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.4);
  color: rgb(255, 255, 255);
  border: none;
  font-size: 2rem;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5%;
  transition: background 0.3s ease;
}

.arrow:hover {
  background-color: #fcd217b3;
}

.left-arrow {
  left: 1px;
}

.right-arrow {
  right: 1px;
}

.card-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.ramayana-customization-simple {
  background: #e7e7e7;
  padding: 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #2c3e50;
  text-align: center;
}

.ramayana-customization-simple h2 {
  font-size: 35px;
  margin-bottom: 20px;
}

.ramayana-customization-simple h2 span {
  color: #d35400;
}

.ramayana-customization-simple .intro {
  max-width: 1100px;
  margin: 0 auto 30px;
  font-size: 18px;
  color: #555;
}

.custom-options-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.custom-options-list li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  width: 110%;
}

.custom-options-list i {
  font-size: 23px;
  color: #e67e22;
  margin-right: 12px;
  margin-top: 4px;
  min-width: 24px;
}

.custom-options-list strong {
  display: inline-block;
  margin-right: 5px;
  color: #2c3e50;
  font-size: 18px;
}

.cta-button {
  margin-top: 35px;
}

.cta-button a {
  display: inline-block;
  background: #012c60;
  color: #fff;
  padding: 12px 28px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-weight: 700;
  text-transform: uppercase;
}

.cta-button a:hover {
  background: #e2ae3f;
}
/* Your existing CSS here */

/* Minimal Responsive Fix */
@media (max-width: 1024px) {
  .custom-options-list li {
    width: 100%; /* prevent horizontal scroll */
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .ramayana-customization-simple {
    padding: 20px; /* keep same padding */
    text-align: center; /* keep same alignment */
  }

  .custom-options-list {
    padding: 0;
  }

  .custom-options-list li {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .custom-options-list li {
    flex-direction: row; /* keep same view as desktop */
    align-items: flex-start;
  }

  .custom-options-list i {
    margin-bottom: 0;
  }

  .cta-button a {
    width: auto;
    text-align: center;
  }
}

/*why book tour section*/
.why-book-tour {
  background: #f5f5f5;
  padding: 50px 20px;
  text-align: center;
}

.why-book-tour h2 {
  font-size: 2.4em;
  margin-bottom: 30px;
  color: #7d5500;
  margin-top: -20px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 25px 20px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5em;
  color: #d97706; /* warm amber tone */
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #222;
}

.feature-card p {
  font-size: 0.95em;
  color: #555;
}

/* 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: 0px;
}

/* 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 */
}

.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;
  }
}
