/* Base Styles and Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  overflow-x: hidden;
  color: #333;
  background-color: #f9f9f9;
}
/* Utility Classes */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}

/* Primary Button - Green for main actions */
.btn-primary {
  background-color: #2e7d32;
  color: white;
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.btn-primary:hover {
  background-color: #1b5e20;
}

/* Secondary Button - Outlined style for secondary actions */
.btn-secondary {
  background-color: rgba(255, 255, 255, 0.95);
  color: #2e7d32;
  border: 2px solid #2e7d32;
  box-shadow: 0 2px 5px rgba(46, 125, 50, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 1);
  color: #1b5e20;
  border-color: #1b5e20;
  box-shadow: 0 4px 8px rgba(27, 94, 32, 0.2);
}

/* View All Button - Centered button typically used after lists/cards */
.btn-view-all {
  background-color: #2e7d32;
  color: white;
  display: block;
  width: fit-content;
  margin: 24px auto;
  padding: 14px 36px;
  font-size: 1rem;
  text-transform: uppercase;
  position: relative;
}

.btn-view-all:hover {
  background-color: #1b5e20;
}

.btn-view-all::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.btn-view-all:hover::after {
  transform: scaleX(1);
}

/* Form Buttons */
.btn-submit {
  background-color: #2e7d32;
  color: white;
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.btn-submit:hover {
  background-color: #1b5e20;
}

.btn-close {
  background-color: #757575;
  color: white;
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
}

.btn-close:hover {
  background-color: #616161;
}

/* Footer Enquiry Button */
.btn-footer-enquiry {
  background-color: #2e7d32;
  color: white;
  padding: 10px 20px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-footer-enquiry:hover {
  background-color: #1b5e20;
}

/* Pushkar Section Buttons */
.btn-places, .btn-book {
  padding: 12px 28px;
  margin: 0 10px;
  font-weight: 600;
}

.btn-places {
  background-color: rgba(255, 255, 255, 0.95);
  color: #2e7d32;
  border: 2px solid #2e7d32;
  box-shadow: 0 2px 5px rgba(46, 125, 50, 0.15);
}

.btn-places:hover {
  background-color: rgba(255, 255, 255, 1);
  color: #1b5e20;
  border-color: #1b5e20;
  box-shadow: 0 4px 8px rgba(27, 94, 32, 0.2);
}

.btn-book {
  background-color: #2e7d32;
  color: white;
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.btn-book:hover {
  background-color: #1b5e20;
}

/* Mobile Fixed Buttons */
.mobile-fixed-buttons {
  display: none;
}

@media (max-width: 768px) {
  .mobile-fixed-buttons {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 8px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    justify-content: space-between;
  }
    
  .mobile-fixed-buttons .btn {
    flex: 1;
    margin: 0 4px;
    padding: 10px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
  }
    
  .btn-enquiry {
    background-color: #2e7d32;
    color: white;
  }
    
  .btn-whatsapp {
    background-color: #25D366;
    color: white;
  }
    
  .btn-call {
    background-color: #0088cc;
    color: white;
  }
    
  .btn-book-now {
    background-color: #d32f2f;
    color: white;
  }
}

/* Animation for CTA buttons */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero-buttons .btn-primary {
  animation: none;
}

.hero-buttons .btn-primary:hover {
  animation: none;
}
/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  height: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 10px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #2e7d32;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease-out;
  transform-origin: left;
}

.nav-links a:hover {
  color: #2e7d32;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

/* Mobile Menu */
.hamburger {
  display: none;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 1px;
}

/* Ad Popup */
.ad-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(3px);
}

.ad-popup.active {
  opacity: 1;
  visibility: visible;
}

.ad-content {
  background-color: white;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.ad-popup.active .ad-content {
  transform: scale(1);
}

.ad-content img {
  width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 4px;
  display: block;
}

.ad-content h2 {
  color: #2e7d32;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Add close button for ad popup */
.ad-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-close::before,
.ad-close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #333;
  border-radius: 1px;
}

.ad-close::before {
  transform: rotate(45deg);
}

.ad-close::after {
  transform: rotate(-45deg);
}

/* Add media query for responsive design */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  /* Mobile navigation when active */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active li {
    margin: 10px 5%;
  }
}
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 80px; /* Height of the fixed navbar */
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides {
  display: flex;
  width: 300%; /* 3 slides */
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 33.33%; /* Each slide takes 1/3 of total width */
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  width: 80%;
  max-width: 800px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.tagline {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 5px;
}

.sub-tagline {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
/* Improved Enquiry Form Styles */

/* Form Container & Modal */
.enquiry-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.enquiry-form.active {
  opacity: 1;
  visibility: visible;
}

.form-container {
  background-color: white;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  padding: 35px;
  overflow-y: auto;
  max-height: 90vh;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.enquiry-form.active .form-container {
  transform: translateY(0);
}

/* Form Header */
.form-container h2 {
  color: #2e7d32;
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 12px;
}

.form-container h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #2e7d32;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Form Groups */
.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
  color: #2e7d32;
}

/* Form Inputs */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2e7d32;
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
  background-color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
/* Validation Styling */
.form-group input:invalid:focus,
.form-group select:invalid:focus,
.form-group textarea:invalid:focus {
  border-color: #ff5252;
  box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.1);
}

.form-group .error-message {
  color: #ff5252;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

.form-group input:invalid:focus ~ .error-message,
.form-group select:invalid:focus ~ .error-message,
.form-group textarea:invalid:focus ~ .error-message {
  display: block;
}

/* Form Input Placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
  opacity: 1;
}

/* Form Select Styling */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23888" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18px" height="18px"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-group select:focus {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%232e7d32" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18px" height="18px"><path d="M7 10l5 5 5-5z"/></svg>');
}

/* Welcome Section */
.welcome {
  padding: 60px 5%;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.welcome h2 {
  color: #2e7d32;
  margin-bottom: 20px;
}

.welcome p {
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.accommodation-types {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.accommodation-card {
  width: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.accommodation-card:hover {
  transform: translateY(-10px);
}

.accommodation-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.accommodation-card h3 {
  padding: 15px;
  background-color: #2e7d32;
  color: white;
}
/* Improved Facilities Section */
.facilities {
  padding: 70px 5% 80px;
  background-color: #f5f5f5;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Section heading with decorative elements */
.facilities h2 {
  color: #2e7d32;
  margin-bottom: 50px;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
}

.facilities h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #4caf50;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

/* Container for facility items */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual facility card */
.facility {
  padding: 30px 20px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Hover effect for cards */
.facility:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(46, 125, 50, 0.15);
}

/* Background accent on hover */
.facility::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(46, 125, 50, 0.05);
  z-index: -1;
  transition: height 0.4s ease;
}

.facility:hover::before {
  height: 100%;
}

/* Facility icons */
.facility img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.facility:hover img {
  transform: scale(1.1);
}

/* Facility headings */
.facility h3 {
  font-size: 1.25rem;
  color: #333;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.facility:hover h3 {
  color: #2e7d32;
}

/* Optional facility description */
.facility p {
  margin-top: 12px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Check Times Section */
.check-times {
  display: flex;
  justify-content: center;
  padding: 40px 5%;
  background-color: #2e7d32;
  color: white;
}

.check-time {
  text-align: center;
  padding: 0 40px;
}

.check-time h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.check-time p {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Gallery Section */
.gallery {
  padding: 60px 5%;
  text-align: center;
  background-color: #f9f9f9;
}

.gallery h2 {
  color: #2e7d32;
  margin-bottom: 40px;
}

.gallery-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-images {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
}

.gallery-images::-webkit-scrollbar {
  display: none;
}

.gallery-images img {
  min-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-images img:hover {
  transform: scale(1.05);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.gallery-arrow.left-arrow {
  left: 10px;
}

.gallery-arrow.right-arrow {
  right: 10px;
}

/* Pushkar Section - Modified to scroll with content */
.pushkar {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Changed from fixed to scroll */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pushkar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.pushkar-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 20px;
}

.pushkar-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.pushkar-content p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 30px;
}

.pushkar-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-places,
.btn-book {
  background-color: #2e7d32;
  color: white;
}

/* Footer Styles - Improved */

/* Footer Container */
footer {
  background-color: #1b5e20;
  color: white;
  padding: 60px 5% 20px;
  font-family: 'Arial', sans-serif;
}

/* Footer Content Layout */
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Column Styling */
.footer-links,
.footer-social,
.footer-contact {
  flex: 1;
  min-width: 200px;
}

/* Footer Headings */
.footer-links h3,
.footer-social h3,
.footer-contact h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 1px;
}

/* Underline effect for headings */
.footer-links h3::after,
.footer-social h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #4caf50;
}

/* Footer Lists */
.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: 12px;
  transition: transform 0.2s ease;
}

.footer-links li:hover,
.footer-social li:hover {
  transform: translateX(5px);
}

/* Footer Links */
.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.footer-links a:hover,
.footer-social a:hover {
  color: white;
}

/* Social Icons */
.social-icons li a {
  display: flex;
  align-items: center;
}

.social-icons i {
  margin-right: 10px;
  font-size: 1.2rem;
  width: 20px;
}

/* Contact Information */
.footer-contact address {
  font-style: normal;
  line-height: 1.6;
}

.address-line,
.contact-line {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.address-line i,
.contact-line i {
  margin-right: 10px;
  margin-top: 3px;
  width: 16px;
}

.contact-line a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-line a:hover {
  color: white;
}

/* Footer Enquiry Button */
.btn-footer-enquiry {
  background-color: #4caf50;
  color: white;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
}

.btn-footer-enquiry i {
  margin-right: 8px;
}

.btn-footer-enquiry:hover {
  background-color: #45a049;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Copyright Section */
.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.copyright p {
  margin-bottom: 10px;
}

.small-print {
  font-size: 0.8rem;
}

.small-print a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 5px;
}

.small-print a:hover {
  color: white;
  text-decoration: underline;
}

/* Mobile Fixed Buttons */
.mobile-fixed-buttons {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  justify-content: space-around;
}

.mobile-fixed-buttons .btn {
  padding: 8px 12px;
  font-size: 0.9rem;
  min-width: 22%;
  text-align: center;
}

.btn-enquiry {
  background-color: #2e7d32;
  color: white;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-call {
  background-color: #0078FF;
  color: white;
}

.btn-book-now {
  background-color: #FF5722;
  color: white;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn {
    width: 100%;
  }
  
  .check-time {
    padding: 0 20px;
  }
  .footer-content {
    gap: 30px;
  }
  .footer-links,
  .footer-social,
  .footer-contact {
    flex: 0 0 calc(50% - 15px);
  }
  .facilities {
    padding: 60px 5% 70px;
  }
  
  .facilities h2 {
    font-size: 2rem;
  }
  
  .facilities-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  nav {
    padding: 0 20px;
    height: 70px;
  }
  
  .logo img {
    height: 50px;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    height: calc(100vh - 70px);
    width: 70%;
    flex-direction: column;
    background-color: white;
    padding: 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .hamburger {
    display: block;
  }
  
  /* Hero Section */
  .hero {
    height: 70vh;
    margin-top: 70px;
  }
  
  .hero-content {
    width: 90%;
    padding: 30px 20px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
  
  .sub-tagline {
    font-size: 1rem;
  }
  footer {
    padding: 40px 5% 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links,
  .footer-social,
  .footer-contact {
    flex: 0 0 100%;
    text-align: center;
  }
  
  .footer-links h3::after,
  .footer-social h3::after,
  .footer-contact h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .address-line,
  .contact-line {
    justify-content: center;
  }
  
  .footer-links li:hover,
  .footer-social li:hover {
    transform: translateX(0) scale(1.05);
  }
  .footer-social {
    flex: 0 0 100%;
    text-align: center;
  }
  
  .social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .social-icons li {
    width: 100%;
    max-width: 200px; /* Limit width for better appearance */
  }
  
  .social-icons li a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    width: 100%;
  }
  
  .social-icons li a i {
    width: 24px; /* Fixed width for icons */
    text-align: center;
  }

  
  /* Accommodation */
  .accommodation-types {
    gap: 20px;
  }
  
  .accommodation-card {
    width: 100%;
    max-width: 300px;
  }
  
  /* Check Times */
  .check-times {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Gallery */
  .gallery-images img {
    min-width: 250px;
    height: 180px;
  }
  
  /* Pushkar */
  .pushkar {
    height: 400px;
    background-attachment: scroll;
  }
  
  .pushkar-content h2 {
    font-size: 2rem;
  }
  
  .pushkar-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .pushkar-buttons .btn {
    width: 100%;
  }
  
  
  
  /* Mobile Fixed Buttons */
  .mobile-fixed-buttons {
    display: flex;
  }
  
  /* Add bottom padding to account for fixed buttons */
  body {
    padding-bottom: 65px;
  }
  .facilities {
    padding: 50px 5% 60px;
  }
  
  .facilities h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .facilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .facility {
    padding: 25px 15px;
  }
  
  .facility img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  .form-container {
    padding: 25px 20px;
    width: 95%;
  }
  
  .form-container h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .form-group {
    margin-bottom: 16px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .btn-submit, .btn-close {
    padding: 12px;
  }
}

@media (max-width: 576px) {
  /* Hero Content */
  .hero-content {
    padding: 20px 15px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  /* Arrow buttons */
  .arrow, .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .form-container {
    padding: 20px 15px;
  }
  
  .form-container h2 {
    font-size: 1.4rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  
  .form-container h2::after {
    width: 50px;
    height: 2px;
  }
  
  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 0.9rem;
  }
  
  .btn-submit, .btn-close {
    padding: 10px;
    font-size: 0.9rem;
  }
  
  /* Welcome Section */
  .welcome {
    padding: 40px 20px;
  }
  
  /* Gallery */
  .gallery-images img {
    min-width: 200px;
    height: 150px;
  }
  
  /* Mobile buttons */
  .mobile-fixed-buttons .btn {
    font-size: 0.75rem;
    padding: 8px;
  }
  footer {
    padding: 30px 5% 15px;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .footer-links h3,
  .footer-social h3,
  .footer-contact h3 {
    font-size: 1.1rem;
  }
  
  .btn-footer-enquiry {
    width: 100%;
    justify-content: center;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
  
  .small-print {
    font-size: 0.75rem;
  }
  .facilities {
    padding: 40px 5% 50px;
  }
  
  .facilities h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .facilities h2::after {
    width: 50px;
    height: 2px;
    bottom: -10px;
  }
  
  .facilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .facility {
    padding: 20px 12px;
  }
  
  .facility img {
    width: 50px;
    height: 50px;
  }
  
  .facility h3 {
    font-size: 1.1rem;
  }
  
  .facility:hover {
    transform: translateY(-8px);
  }
  /* Footer Social Icons - Smaller screen adjustments */
  .social-icons li {
    max-width: 180px;
  }
  
  .social-icons li a {
    font-size: 0.9rem;
    padding: 6px 0;
  }
}

/* Animation for Hamburger Menu */
.hamburger.active div:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Add JS for hamburger menu toggle */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }
}

/* Accommodation Hero Section - specific to this page */
.accommodation-hero {
  height: 70vh;
  position: relative;
}

.accommodation-hero .hero-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.accommodation-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Accommodation Description Section */
.accommodation-description {
  padding: 60px 5%;
  background-color: #fff;
}

.accommodation-description .container {
  max-width: 1200px;
  margin: 0 auto;
}

.accommodation-description h2 {
  color: #2e7d32;
  margin-bottom: 30px;
  text-align: center;
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.accommodation-description h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #2e7d32;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.description-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.description-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #444;
}

/* Accommodation Types Section */
.accommodation-types-section {
  padding: 60px 5%;
  background-color: #f9f9f9;
}

.accommodation-types-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.accommodation-types-section h2 {
  color: #2e7d32;
  margin-bottom: 40px;
  text-align: center;
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.accommodation-types-section h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #2e7d32;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
/* Room Grid Layout */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; /* Slightly reduced for better spacing */
  margin-top: 3rem; /* Adjusted for consistency */
  padding: 0 1rem; /* Added padding for edge cases */
}

/* Room Categories */
.room-category {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px; /* Slightly larger for a softer look */
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Softer shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.room-category:hover {
  transform: translateY(-10px); /* Slightly more lift for emphasis */
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12); /* Enhanced shadow on hover */
}

/* Room Carousel */
.room-carousel {
  position: relative;
  width: 100%;
  height: 240px; /* Slightly taller for better image visibility */
  overflow: hidden;
}

.room-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.room-slide {
  min-width: 100%;
  height: 100%;
}

.room-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease; /* Added for subtle zoom effect */
}

.room-slide img:hover {
  transform: scale(1.05); /* Subtle zoom on hover */
}

/* Room Arrows */
.room-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6); /* Slightly darker for contrast */
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 38px; /* Slightly larger for better clickability */
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease, opacity 0.3s ease, transform 0.2s ease;
  opacity: 0.8;
}

.room-arrow:hover {
  background-color: rgba(46, 125, 50, 0.9); /* Brighter green for brand consistency */
  opacity: 1;
  transform: translateY(-50%) scale(1.1); /* Subtle scale for feedback */
}

.room-arrow:focus {
  outline: 2px solid #2e7d32; /* Accessibility improvement */
  outline-offset: 2px;
}

.left-arrow {
  left: 12px; /* Slightly more padding from edge */
}

.right-arrow {
  right: 12px;
}
/* Room Info */
.room-info {
  padding: 1.5rem; /* Consistent spacing */
  background-color: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-info h3 {
  color: #2e7d32;
  margin: 0 0 1rem 0;
  font-size: 1.4rem; /* Slightly larger for hierarchy */
  font-weight: 700; /* Slightly bolder than 600 */
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e8ecef; /* Lighter border */
  letter-spacing: 0.02em; /* Subtle spacing for elegance */
}

.room-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  font-size: 0.95rem; /* Slightly smaller for balance */
}

.room-info ul li {
  margin-bottom: 0.6rem; /* Tighter spacing */
  padding-left: 1.8rem; /* Adjusted for checkmark alignment */
  position: relative;
  color: #4a4a4a; /* Softer color for text */
  line-height: 1.5; /* Improved readability */
  font-weight: 600; /* Slightly bolder than default */
}

.room-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: bold;
  font-size: 1.1rem; /* Slightly larger for visibility */
}

.room-info ul li strong {
  color: #2e2e2e; /* Darker for emphasis */
  font-weight: 700; /* Slightly bolder than 600 */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .room-grid {
    grid-template-columns: 1fr;
  }

  .room-carousel {
    height: 200px; /* Adjusted for smaller screens */
  }
}

/* Common Facilities Section */
.common-facilities {
  padding: 60px 5%;
  background-color: #ffffff;
}

.common-facilities .container {
  max-width: 1200px;
  margin: 0 auto;
}

.common-facilities h2 {
  color: #2e7d32;
  margin-bottom: 40px;
  text-align: center;
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.common-facilities h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #2e7d32;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.facility-item {
  text-align: center;
  padding: 25px 15px;
  background-color: #f9f9f9;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.facility-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.facility-item i {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 15px;
}

.facility-item p {
  color: #444;
  line-height: 1.5;
}

/* Treehouse Gallery Section */
.treehouse-gallery {
  padding: 60px 5%;
  background-color: #f5f5f5;
}

.treehouse-gallery .container {
  max-width: 1200px;
  margin: 0 auto;
}

.treehouse-gallery h2 {
  color: #2e7d32;
  margin-bottom: 40px;
  text-align: center;
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.treehouse-gallery h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #2e7d32;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.gallery-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-images {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.gallery-images::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}

.gallery-images img {
  min-width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-images img:hover {
  transform: scale(1.05);
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .room-carousel {
    height: 200px;
  }
}

@media (max-width: 992px) {
  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .room-carousel {
    height: 220px;
  }

  .room-info h3 {
    font-size: 1.2rem;
  }

  .common-facilities h2, 
  .treehouse-gallery h2,
  .accommodation-types-section h2,
  .accommodation-description h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .accommodation-hero {
    height: 50vh;
  }

  .room-arrow {
    width: 30px;
    height: 30px;
  }

  .room-info {
    padding: 15px;
  }

  .facilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .facility-item i {
    font-size: 2rem;
  }

  .gallery-images img {
    min-width: 240px;
    height: 180px;
  }

  .common-facilities h2, 
  .treehouse-gallery h2,
  .accommodation-types-section h2,
  .accommodation-description h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .room-grid {
    grid-template-columns: 1fr;
  }
  
  .accommodation-hero {
    height: 40vh;
  }

  .accommodation-description,
  .accommodation-types-section,
  .common-facilities,
  .treehouse-gallery {
    padding: 40px 5%;
  }

  .room-carousel {
    height: 200px;
  }

  .room-info {
    padding: 15px;
  }

  .room-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .room-info ul li {
    font-size: 0.9rem;
    padding-left: 20px;
  }

  .facilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
  }

  .facility-item {
    padding: 15px 10px;
  }

  .facility-item i {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .facility-item p {
    font-size: 0.9rem;
  }

  .gallery-images img {
    min-width: 200px;
    height: 150px;
  }

  .common-facilities h2, 
  .treehouse-gallery h2,
  .accommodation-types-section h2,
  .accommodation-description h2 {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
}
/* facilities-styles.css */

/* Main Facilities Section Styling */
.main-facilities {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.main-facilities .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-facilities h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
}

.main-facilities h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #4CAF50;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.facility-item {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.facility-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.facility-icon {
  font-size: 48px;
  color: #4CAF50;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.facility-item:hover .facility-icon {
  transform: scale(1.1);
  color: #388E3C;
}

.facility-item h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0;
}

/* Other Facilities Section Styling */
.other-facilities {
  padding: 60px 0;
  background-color: #fff;
}

.other-facilities .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.other-facilities h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
}

.other-facilities h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #4CAF50;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.other-facilities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.facility {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.facility:hover {
  background-color: #f0f7f0;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.facility .facility-icon {
  font-size: 30px;
  color: #4CAF50;
  margin-right: 15px;
  min-width: 50px;
  display: flex;
  justify-content: center;
}

.facility p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.facility.note {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
}

.facility.note .facility-icon {
  color: #ff9800;
}

.facility.note p {
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .facilities-grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 20px;
  }
  
  .facility-item {
      padding: 20px;
  }
  
  .facility-icon {
      font-size: 36px;
  }
  
  .facility-item h3 {
      font-size: 1.1rem;
  }
  
  .other-facilities-list {
      grid-template-columns: 1fr;
  }
  
  .facility {
      padding: 12px;
  }
  
  .facility .facility-icon {
      font-size: 24px;
      min-width: 40px;
  }
  
  .facility p {
      font-size: 0.9rem;
  }
}

/* Animation for icons on hover */
@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

.facility:hover .facility-icon {
  animation: pulse 1s infinite;
}
/* About Pushkar Section Styles - Enhanced Version */
.about-pushkar {
  padding: 80px 0; /* Increased padding for better spacing */
  background-color: #f9f9f9;
  position: relative; /* For potential decorative elements */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Slightly increased padding */
  width: 100%;
  box-sizing: border-box; /* Ensures padding doesn't break layout */
}

/* Improved heading hierarchy and styling */
.about-pushkar h2 {
  color: #2e8b57;
  text-align: center;
  font-size: 2.5rem; /* Using relative units for better accessibility */
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px; /* Space for decorative underline */
}

/* Decorative underline for main heading */
.about-pushkar h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #2e8b57;
  border-radius: 2px;
}

.about-pushkar h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

.about-pushkar p {
  font-size: 1rem;
  line-height: 1.8; /* Improved line height for readability */
  margin-bottom: 15px;
  color: #444; /* Slightly darker for better contrast */
}

/* Enhanced feature box structure */
.pushkar-feature {
  display: flex;
  margin-bottom: 70px; /* More space between features */
  align-items: stretch; /* Better alignment for different content lengths */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); /* More subtle, modern shadow */
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pushkar-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Improved content layout */
.feature-content {
  flex: 1;
  padding: 40px;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
}

.feature-image {
  flex: 1;
  min-height: 400px; /* Ensures minimum height */
  overflow: hidden;
  order: 2;
  position: relative; /* For potential overlay effects */
}

/* Alternating layout improvements */
.pushkar-feature.reverse .feature-content {
  order: 2;
}

.pushkar-feature.reverse .feature-image {
  order: 1;
}

/* Enhanced image handling */
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block; /* Removes potential inline spacing issues */
}

.feature-image:hover img {
  transform: scale(1.05);
}

/* Add subtle overlay on image hover */
.feature-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 139, 87, 0.1); /* Green tint matching heading */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-image:hover::after {
  opacity: 1;
}

/* Add accent color for links or highlights */
.feature-content a, .feature-content .highlight {
  color: #2e8b57;
  font-weight: 500;
  transition: color 0.3s ease;
}

.feature-content a:hover {
  color: #1a6b3a;
  text-decoration: underline;
}

/* Improved responsive design */
@media (max-width: 992px) {
  .about-pushkar h2 {
      font-size: 2.2rem;
  }
  
  .feature-content {
      padding: 30px;
  }
}

@media (max-width: 768px) {
  .about-pushkar {
      padding: 60px 0;
  }
  
  .about-pushkar h2 {
      font-size: 2rem;
      margin-bottom: 40px;
  }
  
  .pushkar-feature {
      flex-direction: column;
      margin-bottom: 50px;
  }
  
  .feature-content,
  .pushkar-feature.reverse .feature-content {
      order: 2;
      padding: 30px 25px;
  }
  
  .feature-image,
  .pushkar-feature.reverse .feature-image {
      order: 1;
      height: 300px;
      min-height: auto; /* Reset min-height for mobile */
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .about-pushkar h2 {
      font-size: 1.8rem;
  }
  
  .about-pushkar h3 {
      font-size: 1.3rem;
  }
  
  .feature-image,
  .pushkar-feature.reverse .feature-image {
      height: 250px;
  }
}

/* Add print styles for better printing */
@media print {
  .about-pushkar {
      background-color: white;
      padding: 20px 0;
  }
  
  .pushkar-feature {
      box-shadow: none;
      break-inside: avoid;
      page-break-inside: avoid;
      border: 1px solid #ddd;
  }
}
/* Gallery Styles CSS */

/* Gallery Grid Section */
.gallery-grid-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.gallery-grid-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.gallery-grid-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-size: 32px;
}

.gallery-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #666;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  padding: 20px;
}

/* Removed styles for h3 and p inside overlay-content */

/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid-section {
      padding: 40px 0;
  }
  
  .gallery-grid-section h2 {
      font-size: 28px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
      grid-template-columns: 1fr;
  }
  
  /* Removed styles for h3 inside overlay-content */
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-caption {
  color: white;
  text-align: center;
  padding: 15px 0;
}

.lightbox-caption h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 600;
}

.lightbox-caption p {
  margin: 0;
  font-size: 16px;
  color: #ccc;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1002;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ddd;
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
  z-index: 1002;
}

.prev-btn:hover, .next-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slide-counter {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 15px;
  border-radius: 15px;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
  .prev-btn, .next-btn {
      padding: 10px 15px;
      font-size: 18px;
  }
  
  .prev-btn {
      left: 10px;
  }
  
  .next-btn {
      right: 10px;
  }
  
  .lightbox-caption h3 {
      font-size: 18px;
  }
  
  .lightbox-caption p {
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .prev-btn, .next-btn {
      padding: 8px 12px;
      font-size: 16px;
  }
}
  /* Contact and Location Sections Styling */

/* Section Titles */
.contact-section h2,
.map-section h2 {
  color: #0c8f4f; /* Green color for titles */
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

/* Section Wrappers */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Contact Section */
.contact-section {
  background-color: #f8f8f8;
  padding: 2rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Info Block */
.info-block {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-block h3 {
  color: #0c8f4f; /* Green color for subtitles */
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

address {
  font-style: normal;
}

address p {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
}

address p i {
  margin-right: 0.75rem;
  min-width: 20px;
  color: #0c8f4f; /* Green color for icons */
}

address a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

address a:hover {
  color: #0c8f4f; /* Green hover color */
}

/* Form Block */
.form-block {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-block h3 {
  color: #0c8f4f; /* Green color for subtitles */
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.input-group {
  margin-bottom: 1.25rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #444;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #0c8f4f; /* Green focus border */
  box-shadow: 0 0 0 2px rgba(12, 143, 79, 0.2);
}

.button-primary {
  background-color: #0c8f4f; /* Green button */
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button-primary:hover {
  background-color: #0a7a43; /* Darker green on hover */
}

/* Map Section */
.map-section {
  padding: 2rem 0;
}

.map-frame {
  margin-bottom: 3rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.travel-info h3 {
  color: #0c8f4f; /* Green color for subtitles */
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.transport-card {
  text-align: center;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.transport-card i {
  font-size: 2rem;
  color: #0c8f4f; /* Green icons */
  margin-bottom: 1rem;
}

.transport-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.transport-card p {
  color: #555;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
  .transport-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .transport-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-section h2,
  .map-section h2 {
    font-size: 1.75rem;
  }
  
  .info-block h3,
  .form-block h3,
  .travel-info h3 {
    font-size: 1.35rem;
  }
}