* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
}


/* Header Styles */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-width: 150px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #8b5a2b;
    font-size: 18px;
    padding: 10px;
    display: inline-block;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #f4a261;
}


/* Dropdown Menu */

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: #333;
}

.dropdown-menu li a:hover {
    background: #f4a261;
    color: #fff;
}


/* Contact Button */

.Contact-button {
    background: #f4a261;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.Contact-button:hover {
    background: #7b1c02;
}


/* Menu Toggle - Mobile */

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #8b5a2b;
}


/* Mobile Responsive Nav */

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 100px;
        left: 0;
        background: white;
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 20px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        width: 100%;
        text-align: left;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
    }
}


/* Banner Slider */

.banner-slider {
    margin-top: 90px;
    height: 100vh;
    position: relative;
}

.banner-slide {
    position: relative;
    width: 100%;
    height: 100vh;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    bottom: 15%;
    width: 100%;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8);
}

.text-content {
    color: white;
    width: 100%;
    animation: fadeInUp 1s ease-in-out;
    text-shadow: 2px 2px 14px rgba(0, 0, 0, 0.8);
}

.text-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Shippori Mincho', serif;
}

.text-content p {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
}

.swiper {
    width: 100%;
    height: 100vh;
    /* or your desired height */
    position: relative;
}

.swiper-slide {
    position: relative;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Swiper Navigation */

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: #000;
}

.swiper-pagination-bullet-active {
    background-color: #f4a261;
}


/* Responsive Banner Text */

@media (max-width: 768px) {
    .text-content h1 {
        font-size: 28px;
    }
    .text-content p {
        font-size: 16px;
    }
}


/* All Tours  */

.experiences {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 40px;
}

.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;
}

.experience-card:hover {
    transform: scale(1.03);
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover img {
    transform: scale(1.1);
}

.text-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: center;
    padding: 20px 10px;
    box-sizing: border-box;
}

.text-overlay h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.text-overlay p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 12px;
}

.text-overlay a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 6px 14px;
    border: 2px solid white;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.text-overlay a:hover {
    background: white;
    color: #8b5a2b;
}


/* Responsive grid */

@media (max-width: 1024px) {
    .experiences {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .experiences {
        grid-template-columns: 1fr;
    }
    .text-overlay h2 {
        font-size: 20px;
    }
    .text-overlay p {
        font-size: 14px;
    }
}


/* About Us  */

.about-us {
    padding: 60px 20px;
    background: linear-gradient(135deg, #FAE3B5, #FDF5E6, #FAE3B5);
    text-align: center;
}

.about-us img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-us h1 {
    color: #be0216;
    font-weight: 700;
}

.about-us h6 {
    font-size: 18px;
    font-weight: 600;
    color: #8B5A2B;
    margin-bottom: 15px;
}

.about-us p {
    font-size: 16px;
    color: #5E503F;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
    font-family: 'Inter', sans-serif;
}


/* Button Styling */

.about-us .btn-warning {
    background: #7b1c02;
    border: none;
    font-weight: bold;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s ease;
    color: #fff;
    margin-bottom: 10px;
}

.about-us .btn-warning:hover {
    background-color: #c01f06;
}


/* Responsive Design */

@media (max-width: 992px) {
    .about-us .row {
        flex-direction: column;
    }
    .about-us h2 {
        font-size: 28px;
    }
    .about-us p {
        font-size: 15px;
    }
}


/* Button Styling */

.btn-warning {
    background-color: #FFD700;
    border: none;
    font-weight: bold;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s ease;
}

.btn-warning:hover {
    background-color: #E5B80B;
}


/* Modal background */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}


/* Modal content box */

.modal-content {
    /* background-color: #fff9e6; */
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #ccc;
    width: 90%;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
    color: #5E503F;
    position: relative;
    animation: fadeIn 0.4s ease-in-out;
    font-size: 15px;
}


/* Close button */

.close {
    color: #8b5a2b;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #be0216;
}


/* Fade-in animation */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Additional styling for the background banner content */

.back-banner .banner-text {
    align-items: flex-start;
    justify-content: flex-start;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.back-banner-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 16px;
    color: #fff;
    max-width: 600px;
    animation: fadeInUp 1s ease-in-out;
}

.back-banner-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #f4a261;
}

.back-banner-content span {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffe8cc;
}

.back-banner-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f0f0f0;
}


/* Responsive Styles */

@media (max-width: 768px) {
    .back-banner-content {
        padding: 20px;
        max-width: 90%;
    }
    .back-banner-content h2 {
        font-size: 2rem;
    }
    .back-banner-content span,
    .back-banner-content p {
        font-size: 1rem;
    }
    .back-banner .banner-text {
        left: 20px;
        transform: translateY(-50%);
    }
}

.tourism-banner.snow-theme {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('../images/midle-div/banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes snowFall {
    from {
        background-position: 0 -100%;
    }
    to {
        background-position: 0 100%;
    }
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 25px 40px;
    border-radius: 15px;
    max-width: 90%;
    z-index: 2;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    margin-top: 250px;
}

.banner-title {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 15px;
}

.banner-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
}


/* Responsive Tweaks */

@media (max-width: 768px) {
    .tourism-banner.snow-theme {
        height: 220px;
    }
    .banner-title {
        font-size: 22px;
    }
    .banner-description {
        font-size: 14px;
    }
}


/* Why Choose Us Section */

.why-choose-us {
    background: #fff;
    padding: 60px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #be0216;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5E503F;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
}


/* Feature Cards */

.feature-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card .icon-wrap {
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 20px;
}

.feature-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8B5A2B;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: #5e5e5e;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}


/* Responsive */

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .feature-card h5 {
        font-size: 1.2rem;
    }
    .feature-card p {
        font-size: 0.95rem;
    }
    .feature-card .icon-wrap {
        font-size: 40px;
    }
}


/* Partner Logos Grid Layout */

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    padding: 0 1rem;
}


/* Partner Logo Styling */

.partner-logo {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}


/* Responsive Heights */

@media (max-width: 768px) {
    .partner-logo {
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        max-height: 50px;
    }
}

footer ul {
    padding: 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;
    }
    .social-links {
        justify-content: center !important;
    }
}

.justify-text p {
    text-align: justify;
}


/* Why Choose Us Section */

.guest-experience {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.guest-experience .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #be0216;
    margin-bottom: 20px;
}

.guest-experience .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.slider-container {
    max-width: 90%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 30px;
    background: #f1f1f1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.slide p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.slide h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #be0216;
}

.slide span {
    /* font-size: 1rem; */
    font-weight: 600;
    color: #000;
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #333;
}

@media (max-width: 768px) {
    .slide {
        padding: 20px;
    }
}

.faq-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.faq-section h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #be0216;
    margin-bottom: 20px;
    text-align: center;
}

.faq {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    background: #ecf0f1;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #dcdde1;
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
}

.faq.active .faq-answer {
    display: block;
}

@media (max-width: 600px) {
    .faq-section {
        padding: 10px;
    }
    .faq-question {
        font-size: 1rem;
    }
    .faq-answer {
        font-size: 0.95rem;
    }
}


/* --------------------
       CTA Banner
    -------------------- */

.cta-banner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(99, 102, 241, 0.12)), var(--card);
    box-shadow: var(--shadow);
    padding: clamp(1.25rem, 3vw + 0.5rem, 2.5rem);
}


/* Decorative glow */

.cta-banner::before,
.cta-banner::after {
    content: "";
    position: absolute;
    pointer-events: none;
    inset: auto;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.55;
    z-index: -1;
}

.cta-banner::before {
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -120px;
    background: radial-gradient(closest-side, rgba(245, 158, 11, 0.25), transparent 70%);
}

.cta-banner::after {
    width: 360px;
    height: 360px;
    right: -150px;
    top: -150px;
    background: radial-gradient(closest-side, rgba(99, 102, 241, 0.22), transparent 70%);
}

.cta-content {
    display: grid;
    gap: 1rem;
    align-items: start;
}

.cta-banner h2 {
    margin: 0;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-size: clamp(1.35rem, 2.6vw + 0.6rem, 2.2rem);
}

.cta-banner p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(0.95rem, 0.6vw + 0.85rem, 1.05rem);
}


/* Button */

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.btn {
    appearance: none;
    border: 0;
    border-radius: calc(var(--radius) - 0.25rem);
    padding: 0.85rem 1.15rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #111827;
    background: linear-gradient(180deg, var(--accent), var(--accent-600));
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--ring);
}

.btn .fa,
.btn .fas,
.btn .fa-solid {
    font-size: 1rem;
    line-height: 1;
}


/* Layout refinements on wider screens */

@media (min-width: 720px) {
    .cta-content {
        grid-template-columns: 1fr auto;
        gap: 1.5rem 2rem;
    }
    .cta-text {
        padding-right: 0.5rem;
    }
    .cta-actions {
        align-self: center;
    }
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
    .cta-banner::before,
    .cta-banner::after {
        filter: blur(0);
        opacity: 0.2;
    }
}

.faq-rajasthan h3 {
    font-size: 2.3rem;
    font-weight: bold;
    color: #be0216;
    margin-bottom: 20px;
    text-align: center;
}