body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}
  
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider .slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Add a full-section overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness here */
    z-index: 2;
}

/* Ensure the text is above the overlay */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 2;
}

  
  .hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero-text p {
    font-size: 1.2rem;
  }
  
/* Packages Section */
.packages {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
}

.packages-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.packages-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.packages-scroll::-webkit-scrollbar {
    display: none;
}

.package-card {
    position: relative;
    background-size: cover;
    background-position: center;
    width: 300px;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
}

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

}

.package-card .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.package-card p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Explore Text Styling */
.book-text {
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 5px; 
    margin-top: 10%;
    cursor: pointer;
  }
  
  /* Underline Effect */
  .book-text::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: background 0.3s ease;
  }
  
  /* Hover Effect */
  .book-text:hover::after {
    background: #b48f20;
  }

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 12px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.scroll-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.scroll-btn-left {
    left: 50px;
}

.scroll-btn-right {
    right: -50px;
}

/* FontAwesome Icons */
.scroll-btn i {
    font-size: 1.5rem;
}
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hero-text h1 {
      font-size: 2rem;
    }
  
    .hero-text p {
      font-size: 1rem;
    }
  
    .package-card {
      padding: 15px;
    }
  }

/* Booking Guidance Section */
.booking-guidance {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.guidance-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

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

.guidance-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.guidance-card p {
    font-size: 1rem;
}
.locations-title {
    position: relative;
    display: inline-block; 
    padding-bottom: 10px; 
}

.locations-title:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px; 
    width: 50px; 
    height: 3px; 
    background: #1A374D;
    transform: translateX(-50%); 
}

/* Top Destinations Section */
.top-destinations {
    padding: 50px;
    background: #f8f9fa;
}

/* Scrollable Locations Grid */
.locations-grid-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
  }

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto; 
    gap: 10px;
    overflow-x: auto; 
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

/* Hide scrollbar */
.locations-grid::-webkit-scrollbar {
    display: none;
}

.location-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.location-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.location-card h3 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
}

/* Scroll Buttons */
/* .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #1A374D;
    background: transparent; 
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    z-index: 10;
    transition: transform 0.3s ease;
    box-shadow: none;
} */

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    color: #1A374D;
  }

.scroll-btn:hover {
    transform: translateY(-50%) scale(1.2);
    background: transparent;
    color: #b48f20;
}


.scroll-btn.left {
    left: -30px;
  }
  
  .scroll-btn.right {
    right: -15px;
  }

/* Right Side: Dynamic Location Details */
.location-details {
    text-align: center;
    background: #fff;
    padding: 0px 0px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.location-details img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.location-details h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.location-details p {
    font-size: 16px;
    color: #555;
}

.grid-page {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

#bookNowBtn.custom-book-button{
    background-color: #b48f20;
    color: #fff;
    border-radius: 20px;
    padding: 10px;
}

#bookNowBtn.custom-book-button:hover{
    background-color: #1A374D;
    color: #fff;

}
  