/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body defaults */
body {
     font-family: "Readex Pro", Sans-serif;
  background: #f9fafb;
  color: #374151;
  line-height: 1.6;
}

/* Headings with font-family and size */
h1 {
  font-family: "Fredoka One", sans-serif;
  color: #111827;
  margin-bottom: 0.5em;
  font-size: 48px; /* h1 size */
}

h2 {
  font-family: "Fredoka One", sans-serif;
  color: #111827;
  margin-bottom: 0.5em;
  font-size: 40px; /* h2 size */
}

h3 {
  font-family: "Fredoka One", sans-serif;
  color: #111827;
  margin-bottom: 0.5em;
  font-size: 30px; /* h3 size */
}

h4 {
  font-family: "Fredoka One", sans-serif;
  color: #111827;
  margin-bottom: 0.5em;
  font-size: 24px; /* h4 size */
}

h5 {
  font-family: "Fredoka One", sans-serif;
  color: #111827;
  margin-bottom: 0.5em;
  font-size: 20px; /* h5 size */
}

h6 {
  font-family: "Fredoka One", sans-serif;
  color: #111827;
  margin-bottom: 0.5em;
  font-size: 16px; /* h6 size */
}

/* Paragraphs */
p {
 font-family: "Readex Pro", Sans-serif;
  font-size: 14px;
  margin-bottom: 1em;
  color: #374151;
}

a {
  font-family: "Readex Pro", Sans-serif;
  text-decoration: none;
  color: inherit;
}
ul {
  font-family: "Readex Pro", Sans-serif;

  list-style: none;
}

/* ======================= NAVBAR ======================= */
.navbar {
  background: #fff;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar__logo img {
  width: 185px;
  height: auto;
  padding-top: 40px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  white-space: nowrap; /* Prevent wrapping */
}

.navbar__menu > li {
  margin: 0 1rem; /* Equal spacing */
}

.navbar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  color: #4b5563;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s;
}

.navbar__link i {
  /* font-size: 1.1em; */
  color: #000000;
  transition: color 0.2s;
}

.navbar__link:hover,
.navbar__link:hover i {
  color: #6366f1;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown__toggle {
  position: relative;
}

.dropdown-arrow {
  margin-left: 6px;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 125%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  display: none;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown__menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 1rem;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.dropdown__item i {
  width: 18px;
  text-align: center;
  color: #9ca3af;
  font-size: 0.9em;
}

.dropdown__item:hover,
.dropdown__item:hover i {
  background: #f3f4f6;
  color: #6366f1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #6b7280;
  border-radius: 2px;
  transition: 0.3s;
}

/* ======================= MOBILE SIDEBAR ======================= */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: left 0.3s ease;
  z-index: 2000;
}

.sidebar.active {
  left: 0;
}

.sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.sidebar__close {
  font-size: 1.8rem;
  cursor: pointer;
  color: #9ca3af;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.2s;
}

.sidebar__close:hover {
  background: #f3f4f6;
  color: #6366f1;
}

.sidebar__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 0;
  color: #4b5563;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
}

.sidebar__link i {
  width: 20px;
  text-align: center;
  color: #9ca3af;
}

.sidebar__link:hover,
.sidebar__link:hover i {
  color: #6366f1;
}

.sidebar__dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
  border-bottom: 1px solid #e5e7eb;
}

.sidebar__dropdown-toggle i {
  color: #9ca3af;
  transition: transform 0.3s ease;
}

.sidebar__dropdown {
  padding-left: 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sidebar__dropdown.open {
  max-height: 300px;
  margin-bottom: 0.5rem;
}

.sidebar__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 0;
  color: #6b7280;
  font-size: 0.95rem;
  text-decoration: none;
}

.sidebar__dropdown a i {
  font-size: 0.85em;
  width: 18px;
  text-align: center;
}

.sidebar__dropdown a:hover,
.sidebar__dropdown a:hover i {
  color: #6366f1;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1500;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ======================= RESPONSIVE ======================= */
@media (max-width: 992px) {
  .navbar__menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar__container {
    padding: 0 1rem;
  }
}

@media (max-width: 576px) {
  .navbar__container {
    height: 70px;
  }

  .navbar__logo img {
    width: 120px;
  }
}

/* ======================= BANNER (Only Image in HTML) ======================= */
.banner {
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6; /* fallback color */
}

.banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;
  display: block;
}

/* ======================= SHOW/HIDE LOGIC ======================= */
.banner--desktop {
  display: block;
}

.banner--mobile {
  display: none;
}

/* ======================= MOBILE RESPONSIVE ======================= */
@media (max-width: 640px) {
  .banner {
    height: 60vh;
    min-height: 400px;
  }

  .banner--desktop {
    display: none; /* ❌ Hide desktop banner on mobile */
  }

  .banner--mobile {
    display: block; /* ✅ Show mobile banner */
  }
}

/* ======================= RESPONSIBLE SECTION ======================= */
.responsible {
  width: 100%;
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.responsible__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.responsible__image {
  flex: 1 1 45%;
}

.responsible__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.responsible__content {
  flex: 1 1 50%;
  text-align: center;
}

.responsible__title {
  color: #333;
  margin-bottom: 20px;
  font-size: 60px;
}

.responsible__text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ======================= RESPONSIVE ======================= */
@media (max-width: 992px) {
  .navbar__menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 991px) {
  .responsible__container {
    flex-direction: column;
  }
  .responsible__image,
  .responsible__content {
    flex: 1 1 100%;
  }
  .responsible__title {
    text-align: center;
    font-size: 1.8em;
  }
  .responsible__text {
    text-align: justify;
  }
}

@media (max-width: 640px) {
  .navbar__logo {
    font-size: 1.4rem;
  }
  .responsible {
    padding: 60px 15px;
  }
}
/* =======================
   FUN AND CARE SECTION
=======================*/
.funandcare {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
}

.funandcare__container {
  width: 100%;
  display: flex;
  align-items: center; /* ✅ vertically center */
  /* justify-content: center; */
  flex-wrap: wrap;
  position: relative;
}
  
.funandcare__image {
  flex: 0 0 42%;
  position: relative;
}

.funandcare__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px 0 0 10px; /* ✅ left rounded, right straight */
}

/* ✅ Content box */
.funandcare__content {
  flex: 0 0 55%;
  position: relative;
  padding: 35px 45px;
  background-color: #f56337;
  border-radius: 0 10px 10px 0; /* ✅ left edges straight */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: fit-content;
  margin-left: 0; /* ✅ No gap between image and content */
  z-index: 2;
}

/* Headings aur text styling */
.funandcare__title {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 35px;
}

.funandcare__text {
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 15px;
  font-style: 14px;
}

/* =======================
   RESPONSIVE DESIGN
=======================*/
@media (max-width: 991px) {
  .funandcare__container {
    flex-direction: column;
  }

  .funandcare__image,
  .funandcare__content {
    flex: 1 1 100%;
    width: 100%;
    border-radius: 10px;
  }

  .funandcare__content {
    padding: 40px 25px;
    box-shadow: none;
  }

  .funandcare__title {
    text-align: center;
    font-size: 1.8em;
  }

  .funandcare__text {
    text-align: justify;
  }
}

/* =======================
     INTRODUCTION SECTION
  ========================*/
.introduction {
  width: 100%;
  background-color: #fff;
  padding: 80px 20px;
}

.introduction__container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: start;
}

.introduction__item {
  text-align: center;
}

.introduction__image {
  width: 100%;
  /* border: 3px solid #ddd;
    border-radius: 8px; */
  transition: all 0.3s ease;
}

.introduction__image:hover {
  border-color: #0073e6;
  transform: scale(1.03);
}

.introduction__title {
  font-size: 1.1em;
  color: #333;
  margin-top: 10px;
}

/* =======================
     RESPONSIVE DESIGN
  ========================*/
@media (max-width: 1200px) {
  .introduction__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .introduction__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .introduction__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Heritage Section Container */
.heritage-container {
  display: flex;
  max-width: 1200px;
  margin: 50px auto;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 400px;
}

/* Left Text Panel */
.heritage-text-panel {
  flex: 1;
  background-color: #26d7c2;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px 0 0 20px;
  position: relative;
}

.heritage-text-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 80px;
  height: 100%;
  background-color: #26d7c2;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.heritage-title {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.heritage-description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* Right Image Panel */
.heritage-image-panel {
  flex: 1;
  background: linear-gradient(to bottom, #ff6b35 30%, #f9c74f 70%);
  position: relative;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.heritage-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

/* Elephant Image */
.heritage-elephant {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  z-index: 3;
}

.heritage-elephant img {
  width: 100%;
  height: auto;
}

/* Background City Silhouette */
.heritage-city-bg {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 180px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 200"><path fill="%23d97706" d="M0,180 L50,160 L70,140 L90,150 L110,130 L140,140 L160,120 L180,135 L200,115 L230,130 L250,110 L280,125 L300,105 L330,120 L350,100 L380,115 L400,95 L430,110 L450,90 L480,105 L500,85 L530,100 L550,80 L580,95 L600,75 L600,200 L0,200 Z"/></svg>')
    no-repeat center top;
  background-size: cover;
  z-index: 1;
}

/* Decorative Patterns */
.heritage-pattern-top {
  position: absolute;
  top: 170px;
  left: 0;
  width: 100%;
  height: 30px;
  background: repeating-linear-gradient(
      90deg,
      #d97706 0,
      #d97706 10px,
      transparent 10px,
      transparent 20px
    ),
    repeating-linear-gradient(
      0deg,
      #d97706 0,
      #d97706 5px,
      transparent 5px,
      transparent 10px
    );
  background-size: 20px 10px;
  opacity: 0.8;
  z-index: 2;
}

.heritage-pattern-bottom {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><circle cx="10" cy="10" r="5" fill="%23d97706"/><circle cx="30" cy="10" r="5" fill="%23d97706"/><circle cx="50" cy="10" r="5" fill="%23d97706"/><circle cx="70" cy="10" r="5" fill="%23d97706"/><circle cx="90" cy="10" r="5" fill="%23d97706"/></svg>')
    repeat-x;
  background-size: 50px;
  z-index: 2;
}

/* Small Decorative Camel */
.heritage-camel {
  position: absolute;
  bottom: 20px;
  right: 30px;
  width: 80px;
  z-index: 3;
}

.heritage-camel img {
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .heritage-container {
    flex-direction: column;
    height: auto;
  }
  .heritage-text-panel {
    padding: 40px;
    border-radius: 20px 20px 0 0;
  }
  .heritage-text-panel::after {
    display: none;
  }
  .heritage-image-panel {
    height: 400px;
    border-radius: 0 0 20px 20px;
  }
}
/* =======================
   INTRODUCTION READ MORE BUTTON
=======================*/
.introduction__button {
  display: inline-block;
  background-color: #000000;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  margin: 40px auto 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
}

.introduction__button:hover {
  background-color: #000000;
  transform: translateY(-2px);
}

/* Button container center alignment */
.introduction__button-wrapper {
  text-align: center;
  margin-top: 30px;
}

.heritage-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 50px 40px;
  width: 100%;
}

.heritage-content {
  background-color: #00d19d;
  color: #000;
  width: 55%;
  padding: 50px;
  border-radius: 25px 0 0 25px;
  height: 300px; /* Reduced height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.heritage-content h2 {
  font-weight: 800;
  margin-bottom: 20px;
}

.heritage-content p {
  /* font-size: 1; */
  line-height: 1.7;
  color: #222;
}

.heritage-image {
  width: 45%;
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.heritage-image img {
  width: 100%;
  /* max-width: 700px; */
  height: auto;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 900px) {
  .heritage-section {
    flex-direction: column;
  }

  .heritage-content {
    width: 90%;
    height: auto;
    border-radius: 20px;
  }

  .heritage-image {
    width: 90%;
    margin-top: 20px;
  }
}

/* =======================
     RAJASTHAN TOUR SECTION
  ========================*/
.rajasthantour {
  width: 100%;
  overflow: hidden;
}

.rajasthantour__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .rajasthantour__image img {
    height: auto;
  }
}

/* gallery section */
.gallery-section {
  width: 100%;
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
  position: relative;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Lightbox (popup) */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px #fff;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox-controls {
  margin-top: 20px;
}

.lightbox-controls button {
  background: #fff;
  border: none;
  font-size: 24px;
  margin: 0 20px;
  padding: 10px 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-controls button:hover {
  background: #ffcc00;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}
.ClientExperiences-section {
  width: 100%;
  background: #fafafa;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ClientExperiences-heading {
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
}

.ClientExperiences-slider {
  width: 90%;
  /* max-width: 1400px; */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}

.ClientExperiences-track {
  display: flex;
  transition: transform 0.6s ease;
  touch-action: pan-x;
}

.ClientExperiences-card {
  min-width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.ClientExperiences-card img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ClientExperiences-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Controls */
.ClientExperiences-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.ClientExperiences-controls button {
  /* background: rgba(0,0,0,0.5); */
  /* color: #fff; */
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  transition: 0.3s;
  backdrop-filter: blur(5px);
}

.ClientExperiences-controls button:hover {
  /* background: #ffcc00; */
  color: #111;
}

/* Dots */
.ClientExperiences-dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.ClientExperiences-dots span {
  width: 12px;
  height: 12px;
  background: #aaa;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.ClientExperiences-dots span.active {
  background: #111;
  transform: scale(1.3);
}

/* Responsive Slides */
@media (min-width: 768px) {
  .ClientExperiences-card {
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .ClientExperiences-card {
    min-width: 20%;
  }
}
.Slot-section {
  background-color: #fafafa;
  padding: 80px 10%;
  text-align: center;
}

.Slot-heading {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
}

.Slot-form {
  max-width: 1000px;
  margin: 0 auto;
}

.Slot-row, .Slot-row p {
  display: flex;
 /* flex-wrap: wrap; */
  gap: 20px;
  /* margin-bottom: 20px; */ 
}

.Slot-input,
.Slot-select,
.Slot-textarea {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid #000;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: 0.3s; width:100%;
}

.Slot-input:focus,
.Slot-select:focus,
.Slot-textarea:focus {
  border-color: #000000;
}

.Slot-select {
  background: #fff;
  cursor: pointer;
}

.Slot-textarea {
  width: 100%;
  background: #eaf1ff;
  resize: none;
}

/* Fake captcha style (for layout only) */
.Slot-captcha {
  display: flex;
  justify-content: flex-start;
  margin: 20px 0;
}

.Slot-captcha-box {
  background: #fff;
  border: 1px solid #ccc;
  width: 300px;
  height: 70px;
  border-radius: 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #555;
}

/* Submit button */
.Slot-submit {
  background: #000;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 35px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.Slot-submit:hover {
  background: #00bfa6;
  color: #000;
}

/* Responsive Design */
@media (max-width: 900px) {
  .Slot-row, .Slot-row p {
    flex-direction: column;
  }
}
/* ==== FOOTER CONTAINER ==== */
.footer-container {
  background: #b77351;
  padding: 40px 5% 20px;
  position: relative;
  color: #fff;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
  /* overflow: hidden; */
}
.footer-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" preserveAspectRatio="none"><path d="M0,10 Q25,0 50,10 T100,10 L100,20 L0,20 Z" fill="rgba(255,255,255,0.05)"/></svg>')
    repeat-x top;
  background-size: 100px 20px;
  pointer-events: none;
  animation: wave 15s linear infinite;
}

@keyframes wave {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 100px;
  }
}

/* ==== MAIN WRAPPER ==== */
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
}

/* ==== TOP IMAGE (Half Outside) ==== */
.footer-top-image {
  position: absolute;
  top: 0;
  right: 8%;
  width: 110px;
  height: 90px;
  transform: translateY(-50%);
  z-index: 9;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* ==== ROW 1: Logo + Social ==== */
.footer-row-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  height: 80px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.footer-social a:hover {
  background: #fff;
  color: #b37257;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* ==== ROW 2: Address + Nav ==== */
.footer-row-2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-address {
  font-size: 13.5px;
  color: #f0d5c5;
  line-height: 1.6;
  max-width: 400px;
  font-weight: bold; /* हल्का बोल्ड */
}

.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffeb3b;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-nav a:hover {
  color: #ffeb3b;
}
.footer-nav a:hover::after {
  width: 100%;
}

/* ==== ROW 3: Highlight ==== */
.footer-highlight {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 16px 0;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  letter-spacing: 1.2px;
}

/* ==== ROW 4: Contact ==== */
.footer-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-email {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-email:hover {
  color: #ffeb3b;
}

.footer-book-btn {
  background: #fff;
  color: #b37257;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-book-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.6s;
}

.footer-book-btn:hover::before {
  left: 100%;
}
.footer-book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  background: #ffeb3b;
  color: #b37257;
}

.footer-phone {
  color: #fff;
  white-space: nowrap;
  font-weight: bold;
}

/* ==== BOTTOM SECTION ==== */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  font-size: 12.8px;
  color: #ffffff;
  line-height: 1.6;
}

.footer-copyright {
  margin-bottom: 8px;
  font-weight: bold;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==== SCROLL TO TOP ==== */
.footer-scroll-top {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  background: #fff;
  color: #b37257;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

.footer-scroll-top:hover {
  background: #ffeb3b;
  transform: translateX(-50%) translateY(-6px);
}

@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ==== WHATSAPP FLOATING BUTTON ==== */
.footer-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  animation: pulse 2s infinite;
  transition: transform 0.3s;
  text-decoration: none;
}

.footer-whatsapp:hover {
  transform: scale(1.12);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==== MOBILE RESPONSIVE ==== */
@media (max-width: 992px) {
  .footer-row-1,
  .footer-row-2,
  .footer-contact-row {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .footer-nav {
    justify-content: center;
    gap: 14px;
  }
  .footer-address {
    max-width: 100%;
    text-align: center;
  }
  .footer-top-image {
    right: 50%;
    transform: translateX(50%) translateY(-50%);
    width: 90px;
    height: 74px;
  }
  .footer-logo {
    height: 70px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    padding: 40px 15px 25px;
  }
  .footer-highlight {
    font-size: 24px;
    margin: 12px 0;
  }
  .footer-book-btn {
    padding: 10px 22px;
    font-size: 14.5px;
  }
  .footer-scroll-top {
    width: 48px;
    height: 48px;
    font-size: 19px;
    top: -24px;
  }
  .footer-top-image {
    width: 70px;
    height: 58px;
  }
  .footer-whatsapp {
    width: 55px;
    height: 55px;
    font-size: 27px;
    bottom: 15px;
    right: 15px;
  }
  .footer-address {
    font-size: 13px;
  }
  .footer-contact-row {
    gap: 16px;
    font-size: 14.5px;
  }
  .footer-copyright,
  .footer-links a {
    font-size: 12px;
  }
}
/* Top Heading */
.elephant-heading {
  text-align: center;
  padding: 40px 20px;
  font-size: 24px;
  line-height: 1.4;
  color: #000;
  background: #fff;
}

.elephant-heading span {
  color: #26d7c2;
  font-weight: 600;
}

/* Main Section */
.elephant-section {
  background: #f8d9c8;
  padding: 0px 40px;
  position: relative;
  overflow: hidden;
}

.elephant-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Image Side */
.elephant-image-wrapper {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
}

.elephant-bg-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  /* background: #ff6b35; */
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.elephant-main-image {
  position: relative;
  z-index: 2;
  width: 100%;
  /* max-width: 500px; */
  /* border-radius: 20px; */
}

.elephant-leaf-top {
  position: absolute;
  top: -40px;
  left: -30px;
  width: 120px;
  z-index: 3;
  transform: rotate(-20deg);
}

.elephant-leaf-bottom {
  position: absolute;
  bottom: -50px;
  right: -40px;
  width: 140px;
  z-index: 3;
  transform: rotate(30deg);
}

.elephant-palace-illustration {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  z-index: 0;
  opacity: 0.9;
}

/* Content Side */
.elephant-content {
  flex: 1;
  min-width: 300px;
  color: #333;
  z-index: 2;
}

.elephant-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.elephant-duration {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.elephant-description {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.elephant-description strong {
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .elephant-container {
    flex-direction: column;
    text-align: center;
  }
  .elephant-image-wrapper {
    order: -1;
  }
  .elephant-bg-circle {
    width: 350px;
    height: 350px;
  }
  .elephant-main-image {
    max-width: 380px;
  }
  .elephant-leaf-top,
  .elephant-leaf-bottom {
    width: 100px;
  }
  .elephant-palace-illustration {
    width: 150px;
  }
}

@media (max-width: 576px) {
  .elephant-heading {
    font-size: 20px;
    padding: 30px 15px;
  }
  .elephant-title {
    font-size: 24px;
  }
  .elephant-section {
    padding: 40px 5%;
  }
}

/* activity section  */
/* ==== ACTIVITY SECTION ==== */
.activity-section {
  padding: 80px 3%;
  background: #fafafa;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.activity-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

.activity-heading::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: #ffcc00;
  border-radius: 3px;
}

/* ==== GRID LAYOUT ==== */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 40px; */
}

/* ==== CARD ==== */
.activity-card {
  border-radius: 25px;
  /* overflow: hidden; */
  position: relative;
}
.activity-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  margin: 15px;
  margin-bottom: 0;
}

.activity-img {
  object-fit: cover;
}

.activity-content {
  padding: 22px 20px 28px;
}

.activity-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.3;
}

.activity-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  text-align: left;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .activity-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .activity-heading {
    font-size: 2.4rem;
    margin-bottom: 50px;
  }
  .activity-img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .activity-section {
    padding: 60px 5%;
  }
  .activity-heading {
    font-size: 2rem;
  }
  .activity-img {
    height: 240px;
  }
  .activity-title {
    font-size: 1.25rem;
  }
  .activity-desc {
    font-size: 0.92rem;
  }
  .activity-img-wrapper {
    margin: 10px;
  }
}



   .about {
        width: 100%;
        padding: 80px 20px;
        background-color: #fafafa;
      }

      .about__container {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
      }

      .about__image {
        flex: 0 0 45%;
        max-width: 500px;
        margin: 0 auto;
      }

      .about__image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        object-fit: cover;
      }

      .about__content {
        flex: 1 1 50%;
      }

      .about__title {
        color: #333;
        margin-bottom: 20px;text-align: center;
      }

      .about__text {
        color: #555;
        line-height: 1.7;
        margin-bottom: 15px;
      }

      @media (max-width: 991px) {
        .about__container {
          flex-direction: column;
          text-align: center;
        }

        .about__image,
        .about__content {
          flex: 1 1 100%;
          width: 100%;
        }

        .about__content {
          margin-top: 30px;
        }

        .about__text {
          text-align: justify;
        }
      }
	  
	  
	  
	  
	  /* Contact Section */
  .contact-section {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center; /* ✅ vertically center */
    justify-content: center; /* ✅ horizontally center */
    gap: 60px;
    font-family: "Readex Pro", sans-serif;
  }

  .contact-heading {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    grid-column: 1 / -1;
  }

  /* Left Content */
  .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
    font-size: 15px;
    line-height: 1.8;
    color: #555;margin-bottom: 20px;
  }

  .contact-info p {
    margin: 0;
  }

  .contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14.5px;
  }
  .contact-details a {
    color: #000000;
    text-decoration: none;
  }
  .contact-details a:hover {
    text-decoration: underline;
  }
  /* Form Styling */
  .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px; /* increased gap */
  }

  .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px; /* spacing between inputs */
  }

  .contact-input,
  .contact-select,
  .contact-textarea {
    padding: 14px 16px;
    border: 1.5px solid #000000;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
  }

  .contact-input:focus,
  .contact-select:focus,
  .contact-textarea:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
  }

  .contact-textarea {
    resize: vertical;
    min-height: 100px;
  }

  .contact-submit {
    background: #000;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }

  .contact-submit:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  /* Google Maps */
  .contact-map {
    grid-column: 1 / -1;
    margin-top: 40px;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .contact-section {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
    .contact-info {
      text-align: center;
    }
    .contact-details-grid {
      grid-template-columns: 1fr;
      justify-items: center;
    }
    .contact-heading {
      font-size: 32px;
    }
    .contact-form-row {
      grid-template-columns: 1fr;
    }
    .contact-map {
      height: 350px;
    }
  }

  @media (max-width: 576px) {
    .contact-section {
      padding: 60px 5%;
    }
    .contact-heading {
      font-size: 28px;
    }
    .contact-submit {
      width: 100%;
    }
  }