* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
}

/* Optional: Add this to your custom CSS */
.navbar-nav .nav-link {
    font-weight: 500;
    padding-right: 1rem;
    padding-left: 1rem;
}

.navbar-nav .dropdown-menu {
    z-index: 9999;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}


/* banner section  */
.hero-slider {
    position: relative;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex !important;
    align-items: flex-end;
    /* Align content to bottom */
    justify-content: center;
    padding: 3rem 1rem;
    /* Padding around content */
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 1.5rem;
    /* background: rgba(0, 0, 0, 0.4); */
    /* Optional: dark background for readability */
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
}

/* Arrows Customization */
.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(255, 255, 255, 1);
}

.slick-prev i,
.slick-next i {
    color: #333;
    font-size: 1.5rem;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-dots li button:before {
    color: white;
    opacity: 0.8;
    font-size: 14px;
}

.slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slide {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }

    .slick-prev i,
    .slick-next i {
        font-size: 1.2rem;
    }
}

/* about section */
@media (max-width: 576px) {
    #about-us h2 {
        font-size: 1.5rem;
    }

    #about-us h3 {
        font-size: 1.2rem;
    }

    #about-us p {
        font-size: 0.95rem;
    }

    #about-us img {
        margin-bottom: 1.5rem;
    }
}

/* All Tours Section */
.experiences {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 40px;
    max-width: 1500px;
    margin: 0 auto;
}

.experience-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    height: 300px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.experience-card:hover,
.experience-card:focus-within {
    transform: scale(1.03);
    outline: none;
}

.experience-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 15px;
    z-index: 1;
}

.experience-card:hover img,
.experience-card:focus-within img {
    transform: scale(1.1);
}

.text-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: center;
    padding: 20px 10px;
    box-sizing: border-box;
    border-radius: 0 0 15px 15px;
}

.text-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.text-overlay p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.text-overlay a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 18px;
    border: 2px solid white;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.text-overlay a:hover,
.text-overlay a:focus {
    background: white;
    color: #8b5a2b;
    outline: none;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .experiences {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
    }
}

@media (max-width: 600px) {
    .experiences {
        grid-template-columns: 1fr;
        padding: 30px 15px;
    }

    .text-overlay h3 {
        font-size: 1.25rem;
    }

    .text-overlay p {
        font-size: 0.9rem;
    }
}


/* Explore section  */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.why-choose-us {
    background: #fff;
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #be0216;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5E503F;
    text-align: center;
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background-color: #fff;
    border-radius: 14px;
    padding: 35px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon-wrap {
    font-size: 50px;
    color: #e4af00;
    margin-bottom: 20px;
}

.feature-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #53350A;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 1rem;
    color: #4b4b4b;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-4,
.col-md-6 {
    padding: 15px;
    flex: 1 0 100%;
}

@media(min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media(min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}


/* Guest Reviews  */

.guest-reviews-section {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-description {
    text-align: center;
    margin-bottom: 2rem;
    color: #6c757d;
}

.review-slider {
    position: relative;
    overflow: hidden;
}

.review-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    flex: 0 0 100%;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    scroll-snap-align: center;
}



blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
}

footer {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.platform {
    font-style: italic;
    color: #999;
    margin-left: 0.3rem;
}

.nav-button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    transition: background 0.3s;
}

.nav-button:hover {
    background: #be0216;
    /* background: #007bff; */
    color: #fff;
}

.nav-button.prev {
    left: 10px;
}

.nav-button.next {
    right: 10px;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 33.33%;
    }
}


/* Patners section  */

.trusted-by-section {
    padding: 60px 20px;
    background-color: #3c1010;
    text-align: center;
}

.trusted-by-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.partner-logo {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    margin: 0 auto;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
    color: #ccc;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    padding: 6px;
    transition: color 0.3s, background 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #000;
    background: rgba(255, 255, 255, 1);
}

.swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ff9900;
}


/* footer section  */

footer ul {
    padding-left: 0;
}

footer ul li {
    list-style: none;
    margin-bottom: 8px;
}

footer ul li a {
    transition: color 0.3s ease-in-out;
}

footer ul li a:hover,
footer .social-links a:hover {
    color: #f4a261 !important;
}

@media (max-width: 768px) {
    footer .col-md-6 {
        text-align: center;
        margin-bottom: 15px;
    }

    footer .d-flex {
        justify-content: center !important;
    }
}



/* temple tour  */
    .tour-section {
      padding: 60px 20px;
    }

    .tour-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
    }

    .tour-text,
    .tour-image {
      flex: 1 1 500px;
    }

    .tour-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

  .tour-section  h2 {
      font-size: 2.5rem;
      color: #00695c;
      margin-bottom: 10px;
    }

   .tour-section h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: #444;
    }

   .tour-section p {
      color: #555;
      margin-bottom: 15px;
    }

    @media (max-width: 768px) {
      .tour-container {
        flex-direction: column;
      }

      .tour-text, .tour-image {
        flex: 1 1 100%;
      }
    }