h1,h2,h3,h4,h5,h6 {
	font-family: 'Lato', sans-serif;
}

body {
            font-family: 'Open Sans', sans-serif;
            background-color:#FFBE65;
        }
       .social-icons-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px; /* space between icons */
  align-items: center;
  padding: 10px;
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.icon-wrapper:hover {
  transform: scale(1.1); /* Optional hover effect */
}

        .placeholder-text {
            color: #6b7280;
            font-weight: 400;
        }
        /* Custom styles for new layout elements */
        .card-shadow {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }
        /* Floating Call Button */
        .floating-call-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background-color: #3B82F6; /* Tailwind blue-500 */
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 9999px; /* Fully rounded */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            font-weight: 600;
            cursor: pointer;
            z-index: 1000; /* Ensure it stays on top */
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .floating-call-btn:hover {
            background-color: #2563EB; /* Tailwind blue-600 */
            transform: translateY(-2px);
        }
        .floating-call-btn .icon {
            /* Placeholder for a phone icon */
            width: 1.5rem;
            height: 1.5rem;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


.slideshow-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slide {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slide.active {
  display: block;
  opacity: 1;
}

.arrow {
  user-select: none;
}

.slide-indicators .indicator {
  width: 10px;
  height: 10px;
  background-color: white;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
}

.slide-indicators .indicator.active {
  opacity: 1;
  background-color: white;
}




        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }

        .slide-content {
            background: rgba(0, 0, 0, 0.6);
            padding: 30px;
            border-radius: 8px;
            max-width: 800px;
        }

        .slide h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

       

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 24px;
            color: white;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .arrow:hover {
            background: rgba(255, 255, 255, 0.6);
        }

        .prev {
            left: 20px;
        }

        .next {
            right: 20px;
         z-index: 999;
        }

        .slide-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .indicator.active {
            background: white;
        }

        @media (max-width: 768px) {
            .slideshow-container {
                height: 400px;
            }

            .slide h2 {
                font-size: 1.8rem;
            }

            .slide p {
                font-size: 1rem;
            }

            .slide-content {
                padding: 20px;
            }

            .arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .slideshow-container {
                height: 300px;
            }

            .slide h2 {
                font-size: 1.5rem;
            }

            .slide p {
                font-size: 0.9rem;
            }

            .arrow {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }
        }

   /* Basic container styling */
        .review-section-container {
            display: flex;
            flex-direction: column;
            align-items: center; /* Center the content */
            padding: 20px;
            background-color: #ffffff; /* White background for the section */
            border-radius: 12px; /* More rounded corners */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Stronger shadow */
            max-width: 1400px; /* Increased max-width to accommodate three cards */
            width: 100%; /* Make it responsive */
            margin: 40px auto; /* Center the entire section on the page */
            box-sizing: border-box; /* Include padding in width */
        }

        /* Review Card Styling */
        .review-card {
            background-color: #e0f7fa; /* Light blue background */
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin: 10px;
            width: calc(33.333% - 20px); /* Responsive width for 3 cards */
            box-sizing: border-box;
        }

        .review-card h3 {
            margin: 0 0 10px;
            font-size: 1.2em;
            color: #00796b; /* Darker teal */
        }

        .review-card .star-rating {
            color: #ff9800; /* Orange for stars */
        }

        .below-review-content {
            width: 100%; /* Ensure content takes full width within the container */
            text-align: center;
        }

        /* Google Reviews Link */
        .google-reviews-link {
            display: inline-block;
            background-color: #4285F4; /* Google blue */
            color: white;
            padding: 12px 25px; /* Larger padding */
            border-radius: 8px; /* More rounded */
            text-decoration: none;
            font-weight: 600; /* Semi-bold */
            margin-bottom: 25px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .google-reviews-link:hover {
            background-color: #357ae8; /* Slightly darker blue on hover */
            transform: translateY(-2px);
        }

        /* Social Media CTA */
        .social-cta {
            margin-bottom: 25px;
            padding: 20px;
            background-color: #e8f0fe; /* Lighter blue background */
            border-radius: 10px;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .social-cta p {
            font-size: 1.15em;
            margin-bottom: 15px;
            color: #333;
            font-weight: 500;
        }

        .social-link {
            display: inline-flex; /* Use flex for icon and text alignment */
            align-items: center;
            padding: 10px 20px;
            margin: 8px; /* More margin */
            border-radius: 25px; /* Pill shape */
            text-decoration: none;
            font-weight: 600;
            color: white;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        /* Action Buttons (Book Now, Explore) */
        .action-buttons {
            margin-bottom: 30px;
            display: flex;
            flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
            justify-content: center;
            gap: 20px; /* More space between buttons */
        }

        .cta-button {
            padding: 15px 30px; /* Larger padding */
            border-radius: 30px; /* More rounded, pill-like */
            text-decoration: none;
            font-size: 1.2em; /* Larger font */
            font-weight: 700; /* Bold */
            transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            text-transform: uppercase; /* Uppercase text */
            letter-spacing: 0.5px;
        }

        .cta-button.primary {
            background-color: #007bff; /* Blue */
            color: white;
            border: 2px solid #007bff;
        }

        .cta-button.primary:hover {
            background-color: #0056b3;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        .cta-button.secondary {
            background-color: #6c757d; /* Grey */
            color: white;
            border: 2px solid #6c757d;
        }

        .cta-button.secondary:hover {
            background-color: #5a6268;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        /* Responsive adjustments for review cards */
        @media (max-width: 992px) {
            .review-card {
                width: calc(50% - 20px); /* 2 columns on medium screens */
            }
        }

        @media (max-width: 600px) {
            .review-card {
                width: 100%; /* 1 column on small screens */
            }
        }

        /* Instagram Review Images */
        .instagram-reviews-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px; /* Space between images */
            margin-top: 30px; 
             margin-bottom: 40px;/* Space above Instagram reviews */
        }

        .instagram-review {
            width: 250px; /* Fixed width for Instagram review images */
            border-radius: 8px; /* Rounded corners */
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow for images */
            transition: opacity 0.3s ease;
        }

        .instagram-review:hover {
            opacity: 0.9; /* Slightly transparent on hover */
        }
        .explore-tours {
            padding: 60px 0;
            background-color: white;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 2.5rem;
            font-weight: 600;
            position: relative;
        }

       

        .tours-container {
            display: flex;
            overflow-x: auto;
            gap: 25px;
            padding: 20px 10px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .tour-card {
            flex: 0 0 300px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            scroll-snap-align: start;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .tour-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .tour-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .tour-info {
            padding: 20px;
        }

        .tour-name {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .tour-location {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .tour-price {
            color: #27ae60;
            font-weight: bold;
            text-align: right;
        }

        /* Hide scrollbar but keep functionality */
        .tours-container::-webkit-scrollbar {
            display: none;
        }

        .tours-container {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Responsive adjustments for smaller screens */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .tour-card {
                flex: 0 0 280px;
            }
        }

        @media (max-width: 480px) {
            .tour-card {
                flex: 0 0 240px;
            }
        }
        .tours-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.tours-scroller {
  display: flex;
  animation: scroll-left 40s linear infinite;
  width: fit-content;
}

.tours-container {
  display: flex;
  gap: 20px;
}

.tour-card {
  flex: 0 0 auto;
  width: 220px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.tour-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.tour-info {
  padding: 10px 15px;
  text-align: center;
}

.tour-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.tour-info p {
  color: #666;
  font-size: 0.9rem;
}

/* Infinite scroll animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.review-scroller-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.review-screenshots-container {
  display: flex;
  animation: scrollLeft 60s linear infinite;
  width: max-content;
}

.review-track {
  display: flex;
  gap: 30px;
}

.review-card {
  flex: 0 0 auto;
  width: 350px;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  text-decoration: none;
  color: black;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.review-card:hover {
  transform: scale(1.03);
}

.review-card h3 {
  margin-bottom: 10px;
  color: teal;
  font-size: 18px;
}

.star-rating {
  color: gold;
  font-size: 18px;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.5;
}

/* Infinite scroll animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Floating Social Media Icons */
.social-links {
  position: fixed;
  top: 35%;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  pointer-events: none; /* Allow underlying content to be clickable */
  z-index: 9999; /* Make sure it's above other content */
}

.social-links a {
  width: 70px;
  height: 70px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-size: 26px;
  pointer-events: auto; /* Make only the icon links clickable */
  transition: background 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(0.88);
}

        

  


.social-links a i {
  background-color: white;
  color: #333;
  border-radius: 50%;
  padding: 10px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icon {
  width: 50px;     /* smaller icon */
  height: 50px;
  border-radius: 50%;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(0.88);
}



.floating-chat-btn {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  background-color: #3B82F6;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -2px rgba(0, 0, 0, 0.05);
  font-weight: 600;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.floating-chat-btn:hover {
  background-color: #2563EB;
  transform: translateY(-2px);
}
.floating-chat-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Popup Content */
.popup-content {
  background: #fff;
  max-width: 90%;
  width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1rem;
  border-radius: 1rem;
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* Hide utility */
.hidden {
  display: none;
}
/* Base Navbar Styles */
nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px 0;
  background-color: white;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
}


/* Responsive Fix */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.social-links {
  pointer-events: none; /* Let clicks pass through the container */
}

.social-links a {
  pointer-events: auto; /* Only allow clicks on the actual icons */
}
/* Card styling */
.card-shadow {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Slide image (first only, others for future slideshow) */
.slide-card {
  transition: opacity 0.5s ease-in-out;
}

/* Custom Button styling */
.card-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #F25D27;
  color: black;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: 2px solid #E9F5DB;
  z-index: 999;
}

.card-btn:hover {
  background-color: #D95323;
}

/* Optional: If you're using Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

/* Responsive 4-column layout on large screens */
@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
section {
  margin-top: 6rem; /* Or adjust as needed */
}