:root{
  --bg:#fff;
  --accent:#00d26a;
  --muted:#999;
  --gold:#c79b2a;
  --navy:#0b3550;
  --light-gold:#f7a907;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Poppins:wght@400;500;600;700&display=swap');

*{box-sizing:border-box}
body{font-family: 'Poppins', 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; margin:0; background:var(--bg); color:#333; line-height:1.6; font-size:16px;}
.page{max-width:1200px; margin:40px auto; padding:0 20px}
.hero{text-align:center; margin-bottom:28px}
.title{font-size:32px; margin:0 0 6px; color:var(--navy); font-weight:700; font-family:'Montserrat', sans-serif;}
.subtitle{letter-spacing:2px; color:var(--muted); margin:0; font-size:13px; text-transform:uppercase;}

.carousel-wrap{position:relative}
.carousel{display:flex; gap:28px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:18px; padding-left:8px; padding-right:8px}
.carousel::-webkit-scrollbar{display:none}
.card{flex:0 0 calc(25% - 21px); min-width:220px; height:430px; position:relative; border-radius:18px; overflow:hidden; background:#eee; scroll-snap-align:start; box-shadow:0 8px 30px rgba(12,12,12,0.12)}
.card img{width:100%; height:100%; object-fit:cover; display:block;}
.card .badge{position:absolute; top:18px; left:22px; background:var(--gold); color:#fff; padding:8px 12px; border-radius:8px; font-weight:700; font-size:14px; box-shadow:0 6px 10px rgba(0,0,0,0.12)}
.card-overlay{position:absolute; left:22px; bottom:24px; right:22px; color:white; text-shadow:0 6px 18px rgba(0,0,0,0.55)}
.kicker{color:var(--accent); font-weight:700; margin:0 0 8px;}
.place{font-size:28px; margin:0; font-weight:800}

/* hover lift and pointer */
.card{transition:transform 300ms ease, box-shadow 300ms ease; cursor:pointer}
.card:hover{transform:translateY(-12px) scale(1.02); box-shadow:0 18px 40px rgba(12,12,12,0.18); z-index:5}

/* services section minimal styling */
.services{padding:26px 0 36px; text-align:center}
.services-title{font-size:20px; margin:0 0 6px}
.services-desc{color:var(--muted); margin:0; font-size:14px}

.dots{display:flex; justify-content:center; gap:10px; margin-top:12px}
.dots button{width:12px; height:12px; border-radius:50%; border:none; background:rgba(0,0,0,0.12); cursor:pointer}
.dots button.active{background:var(--gold)}

/* Responsive sizes similar to design: show 1 large card on small, 2 on medium, 3-4 on desktop */
@media (max-width: 640px){
  .card{flex:0 0 80%; height:480px}
  .title{font-size:22px}
}
@media (min-width:641px) and (max-width:980px){
  .card{flex:0 0 calc(50% - 21px); height:520px}
}
@media (min-width:981px) and (max-width:1200px){
  .card{flex:0 0 calc(33.333% - 21px); height:520px}
}
@media (min-width:1201px){
  .card{flex:0 0 calc(25% - 21px); height:540px}
}

/* Make overlay text larger on desktop like the attachment */
@media (min-width:900px){
  .place{font-size:36px}
}

/* Accessibility focus */
.dots button:focus{outline:2px solid rgba(0,0,0,0.12)}
/* Basic Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    color: #fff; /* डिफ़ॉल्ट टेक्स्ट रंग */
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Top Bar Styling --- */
.top-bar {
    background-color: var(--navy);
    color: #fff;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.contact-info span {
    margin-right: 20px;
    color: #fff;
}

.social-links a {
    margin-left: 15px;
    color: #fff;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

/* --- Navigation Bar Styling --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid var(--navy);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.logo:hover img {
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 6px 12px rgba(247, 169, 7, 0.4));
}

.logo h1 {
    font-size: 18px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-transform: uppercase;
    word-spacing: 9999px;
}

.logo h1 br {
    display: inline;
    word-spacing: normal;
}

.logo:hover h1 {
    color: #f7a907;
    text-shadow: 0 0 10px rgba(247, 169, 7, 0.5);
}

.nav-links a {
    color: var(--navy);
    padding: 15px 10px;
    margin: 0 5px;
    display: inline-block;
    transition: color 0.3s, border-bottom 0.3s;
    font-size: 14px;
    text-align: center;
    border-bottom: 3px solid transparent;
    font-weight: 600;
}

.nav-links i {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.nav-links a:hover {
    color: var(--gold);
    border-bottom: 3px solid var(--gold);
}

.btn-signup {
    background-color: var(--gold);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    border: none;
}

.btn-signup:hover {
    background-color: #b8841f;
    transform: scale(1.05);
}

.hamburger {
    display: none; /* Desktop पर छिपा हुआ */
    font-size: 28px;
    cursor: pointer;
    color: var(--navy);
    padding: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hamburger:hover {
    color: var(--gold);
    transform: scale(1.1);
}



/* --- Hero Section Styling --- */
.hero-section {
    position: relative;
    height: 70vh; /* Viewport Height का 70% */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Hide overflowing slides */
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* hero slide backgrounds moved to CSS to avoid inline styles */
.slide1 { background-image: url('https://uswisdomwave.com/wp-content/uploads/2024/06/Dal-Lake-Srinagar-Kashmir.jpg'); }
.slide2 { background-image: url('https://via.placeholder.com/1920x1080/33FF57/FFFFFF?text=Slide+2'); }
.slide3 { background-image: url('https://via.placeholder.com/1920x1080/3357FF/FFFFFF?text=Slide+3'); }

.slide.active {
    opacity: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
}

.slider-nav button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
}

.hero-content {
    position: relative; 
    z-index: 1;
    text-align: center;
}

.main-title {
    font-size: 5vw; 
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.highlight {
    color: #28a745; 
}

.cta-button {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #fff;
    color: #333;
}

/* --- Responsive Design (Media Queries) --- */
@media (max-width: 1024px) {
    .top-bar {
        font-size: 12px;
    }

    .nav-links a {
        padding: 10px 5px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 5px;
    }

    .contact-info span {
        display: block;
        margin-bottom: 5px;
    }

    .social-links {
        margin-top: 5px;
    }


    
    .nav-links {
        /* Mobile menu  */
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px; /* Navbar */
        left: 0;
        width: 100%;
        background-color: #b7b7b7;
        text-align: center;
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links a {
        padding: 12px 10px;
        width: 100%;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        color: var(--navy);
        font-weight: 500;
        transition: background-color 0.2s ease;
    }

    .nav-links a:hover {
        background-color: rgba(0, 0, 0, 0.1);
        color: var(--gold);
    }
    
    .nav-links i {
        display: inline-block; /* आइकॉन और टेक्स्ट को एक लाइन में रखने के लिए */
        margin-right: 10px;
    }

    .nav-actions {
        display: none; /* Mobile में साइनअप बटन को छिपा सकते हैं */
    }

    .hamburger {
        display: block; /* Mobile में Hamburger आइकॉन दिखाएँ */
    }

    .main-title {
        font-size: 8vw; /* Mobile पर फॉन्ट साइज़ और बड़ा */
    }
}


/* --- Top Offers Section Styling --- */
.top-offers-section {
    text-align: center;
    padding: 50px 5%;
    background-color: #f9f9f9; /* लाइट ग्रे बैकग्राउंड */
    color: #333;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Carousel Container Styling --- */
.offer-cards-carousel {
    position: relative;
    max-width: 1200px; /* कैरोजल की अधिकतम चौड़ाई */
    margin: 0 auto;
    overflow: hidden; /* स्लाइड के बाहर के कंटेंट को छिपाने के लिए */
    border-radius: 10px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out; /* स्लाइडिंग इफेक्ट */
}

.offer-card {
    min-width: 100%; /* हर कार्ड पूरी चौड़ाई लेगा */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

/* --- Offer Card 1 (Friends Trip) Styling --- */
.card-content-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px;
    background-color: #f0f0f0; /* कार्ड के बाईं ओर का बैकग्राउंड */
    position: relative;
    width: 60%; /* इमेज में बाईं ओर की जगह */
    text-align: left;
    min-height: 400px; /* कार्ड की न्यूनतम ऊँचाई */
}

.card-content-left .offer-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    position: relative;
    z-index: 2;
}

.card-content-left .offer-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: #bfff00; /* नियोन हरा हाइलाइट */
    z-index: 1;
}

.friends-image-container {
    background-image: url('friends-trip.png'); /* अपनी इमेज का URL यहां बदलें */
    background-size: contain; /* पूरी इमेज दिखाने के लिए */
    background-repeat: no-repeat;
    background-position: center bottom; /* इमेज को नीचे केंद्र में रखें */
    width: 100%; /* पूरी चौड़ाई */
    height: 100%; /* पूरी ऊँचाई */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; /* टेक्स्ट के पीछे */
}


.promo-box {
    background-color: #fff; /* सफेद बॉक्स */
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
}

.promo-box .enquire {
    background-color: #333; /* काला बैकग्राउंड */
    color: #fff;
    padding: 8px 15px;
    margin-top: 10px;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    position: absolute;
    right: -100px; /* इमेज के ऊपर रखने के लिए */
    bottom: 0;
}


/* --- Offer Card 2 (Honeymoon) Styling --- */
.card-content-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%; /* पूरी चौड़ाई लेगा */
    position: relative;
    min-height: 400px; /* कार्ड की न्यूनतम ऊँचाई */
    /* color: #fff; */
}

.honeymoon-image-container {
    background-image: url('honeymoon-beach.jpg'); /* अपनी इमेज का URL यहां बदलें */
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.honeymoon-image-container.new-destination {
    background-image: url('new-destination.jpg'); /* तीसरी स्लाइड के लिए इमेज */
}

.honeymoon-image-container.family-trip {
    background-image: url('https://via.placeholder.com/800x400/FFC300/FFFFFF?text=Family+Trip');
}

.honeymoon-image-container.solo-adventure {
    background-image: url('https://via.placeholder.com/800x400/C70039/FFFFFF?text=Solo+Adventure');
}

.card-content-right .offer-title-honeymoon {
    font-size: 2.5vw; /* स्क्रीन साइज़ के अनुसार फॉन्ट साइज़ */
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    padding: 15px;
    border-radius: 10px
}


/* --- Carousel Navigation Buttons --- */
.carousel-btn {
    display: none; /* Hide the carousel buttons */
}

/* --- Responsive Design for Offers Section --- */
@media (min-width: 993px) {
    .offer-card {
        min-width: 50%; /* Show two cards on larger screens */
    }
}

@media (max-width: 992px) {
    .offer-card {
        flex-direction: column; /* छोटे स्क्रीन पर कार्ड वर्टिकली स्टैक होंगे */
    }

    .card-content-left,
    .card-content-right {
        width: 100%; /* पूरी चौड़ाई */
        min-height: 300px; /* छोटे स्क्रीन पर न्यूनतम ऊँचाई */
    }

    .card-content-left {
        padding-bottom: 100px; /* promo-box के लिए जगह */
    }

    .promo-box {
        left: 50%; /* केंद्र में */
        transform: translateX(-50%);
        bottom: 20px;
        text-align: center;
        width: 80%; /* चौड़ाई कम करें */
    }

    .promo-box .enquire {
        position: static; /* नॉर्मल फ्लो में वापस लाएं */
        margin-top: 10px;
        right: auto;
        bottom: auto;
    }

    .card-content-left .offer-title {
        font-size: 28px;
    }

    .card-content-right .offer-title-honeymoon {
        font-size: 4vw; /* छोटे स्क्रीन पर फॉन्ट साइज़ एडजस्ट करें */
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .card-content-left .offer-title {
        font-size: 24px;
    }

    .card-content-right .offer-title-honeymoon {
        font-size: 6vw; /* बहुत छोटे स्क्रीन पर फॉन्ट साइज़ और एडजस्ट करें */
    }

    .promo-box {
        font-size: 13px;
        padding: 10px 15px;
    }

    .carousel-btn {
        padding: 10px;
        font-size: 20px;
    }
}

/* --- Services Section Styling --- */
.services-section {
    text-align: center;
    padding: 45px 10%;
    background-color: #f9f9f9; /* Thoda light grey background modern look ke liye */
    font-family: 'Poppins', sans-serif; /* Modern font agar available ho */
    overflow: hidden; /* Horizontal scrollbar chupane ke liye */
}

.services-section .section-title {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.services-section .section-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Carousel Wrapper --- */
.services-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Track width dynamic rakhenge taaki cut na ho */
.services-track {
    display: flex;
    width: max-content; /* Jitne cards honge utni width apne aap lega */
    animation: slide-loop 30s linear infinite; /* Speed adjust karne ke liye 30s change karein */
}

.services-track:hover {
    animation-play-state: paused; /* Mouse lejane par ruk jayega */
}

/* --- Modern Card Design --- */
.service-card-container {
    width: 280px; /* Thoda chouda card */
    height: 400px;
    position: relative;
    border-radius: 20px;
    margin: 0 15px; /* Cards ke beech gap */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}

/* Image Styling */
.card-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover par Image Zoom Effect */
.service-card-container:hover .card-main-image {
    transform: scale(1.1);
}

/* Overlay Gradient (Text readable banane ke liye) */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%; /* Neeche se upar tak fade */
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 1;
}

/* Text Content */
.service-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    text-align: left;
}

.service-label {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Optional: Ek choti line text ke neeche decorative look ke liye */
.service-label::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #FF9800; /* Accent color */
    margin-top: 10px;
    transition: width 0.3s ease;
}

.service-card-container:hover .service-label::after {
    width: 100px; /* Hover par line badi hogi */
}

/* --- Infinite Scroll Animation Logic --- */
/* Logic: Hum track ko -50% move karenge. 
   HTML mein hum cards ka set double (2x) rakhenge. 
   Jab aadha set khatam hoga, turant wapas start par aa jayega seamlessly. */

@keyframes slide-loop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Sirf -50% move karna hai */
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .service-card-container {
        width: 220px;
        height: 320px;
    }
    .service-label {
        font-size: 1rem;
    }
    .services-section {
    text-align: center;
    padding: 45px 2%;

}
}


        :root {
            /* Variables for easy adjustment */
            --card-width: 220px;      /* Width of a single destination card */
            --gap: 20px;              /* Gap between cards */
            --total-unique-cards: 10; /* Original number of cards */
            --scroll-speed: 40s;      /* Speed of the scroll animation */
            --visible-cards: 5.5;     /* Number of cards visible in the viewport */
        }

.travel-destinations-section {
            padding: 40px 0;
            text-align: center;
            overflow: hidden;
            background-color: #eef1f6; /* Light background for the section */
        }

        .section-header {
            margin-bottom: 30px;
            text-align: center;
        }

        .section-title {
            font-size: 2.2em;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .section-subtitle {
            font-size: 1em;
            color: #555;
            letter-spacing: 1px;
        }

        .destinations-slider-container {
            /* Viewport for the carousel */
            width: calc(var(--visible-cards) * var(--card-width) + (var(--visible-cards) - 1) * var(--gap));
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }

        .destinations-slider-track {
            /* Container for all cards (Original + Duplicates) */
            display: flex;
            width: calc(var(--total-unique-cards) * 2 * var(--card-width) + var(--total-unique-cards) * 2 * var(--gap));
            animation: scroll-destinations var(--scroll-speed) linear infinite;
        }

        .destinations-slider-track:hover {
            animation-play-state: paused;
        }

        .destination-card {
            flex-shrink: 0;
            width: var(--card-width);
            margin-right: var(--gap);
            height: 400px; /* Fixed height for consistent look */
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .destination-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
            color: white;
            text-align: left;
        }

        .package-count {
            display: inline-block;
            background-color: #ff5722; /* Accent color */
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.85em;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .travel-to {
            font-size: 0.9em;
            margin-bottom: 3px;
            opacity: 0.8;
        }

        .destination-name {
            font-size: 1.3em;
            margin: 0;
            line-height: 1.3;
        }

        /* Keyframes for the infinite scroll animation */
        @keyframes scroll-destinations {
            0% {
                /* Start at the original position */
                transform: translateX(0);
            }
            100% {
                /* Move by the total width of the 10 unique cards + their gaps */
                transform: translateX(calc(-1 * var(--total-unique-cards) * (var(--card-width) + var(--gap))));
            }
        }

        /* Media Query for responsiveness */
        @media (max-width: 1200px) {
            :root {
                --visible-cards: 3;
            }
        }

        @media (max-width: 768px) {
            :root {
                --visible-cards: 2;
                --card-width: 250px;
            }
        }
        
        @media (max-width: 500px) {
            :root {
                --visible-cards: 1.1;
                --card-width: 90vw; /* Use viewport width for full width cards on small screens */
            }
            .destinations-slider-container {
                width: 95vw; /* Make container almost full width */
            }
        }
/* Base Styles */
.travel-destinations-section {
    padding: 40px 20px;
    background-color: #f7f7f7; /* Light background */
    text-align: center;
    overflow: hidden; /* Important for section integrity */
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 14px;
    color: #555;
    letter-spacing: 1px;
}

/* --- Slider/Card Container --- */
.destinations-slider-container {
    display: flex;
    /* Make it horizontally scrollable */
    overflow-x: scroll; 
    /* Hide the scrollbar (optional, but requested implicitly by 'no left/right icons') */
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For IE and Edge */
    /* Add smooth scrolling for better user experience */
    scroll-behavior: smooth; 
    padding-bottom: 20px; /* Space for scroll area */
    gap: 20px; /* Space between cards */
    padding-left: 20px; /* Padding for the first card on the left */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.destinations-slider-container::-webkit-scrollbar {
    display: none;
}

/* --- Individual Card Styling --- */
.destination-card {
    min-width: 280px; /* Fixed width for card in the slider */
    height: 400px;
    position: relative;
    border-radius: 15px; /* Rounded corners like the image */
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: grab; /* Indicates it's draggable/scrollable */
    flex-shrink: 0; /* Ensures cards don't shrink */
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.destination-card:hover .card-image {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* --- Card Overlay Content --- */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    /* Gradient for text visibility (dark from bottom up) */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    text-align: left;
}

.package-count {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.travel-to {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 5px;
}

.destination-name {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

/* Special background colors (if actual images aren't loaded) */
.sakleshpur { background-color: #8bc34a; }
.chikkamagalur { background-color: #4CAF50; }
.sringeri { background-color: #795548; }
.koppa { background-color: #B0BEC5; }


/* --- Responsive Design for Larger Screens --- */
@media (min-width: 1200px) {
    /* On large screens, show all cards without scrolling */
    .destinations-slider-container {
        overflow-x: visible; /* Disable scroll */
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
    
    .destination-card {
        width: 25%; /* Make cards take up 1/4th of the container */
        min-width: 0; /* Allow width to be relative */
    }
}

/* --- Packages Slider Styles (matching attached design) --- */
.{ padding: 50px 5%; background: #f6fbff; }
.packages-section .section-title { text-align:center; color:#0b3550; margin-bottom:6px }
.packages-section .section-subtitle { text-align:center; color:#6b7b86; margin-bottom:28px }

.packages-slider { position:relative; overflow-x:auto; max-width:1200px; margin:0 auto; }
.packages-track { display:flex; gap:26px; padding:12px 0px; transition:transform 0.5s ease; scroll-behavior:smooth; scroll-snap-type:x mandatory }
.package-card { scroll-snap-align:start }
.packages-slider::-webkit-scrollbar { display:none }
.package-card { flex:0 0 calc(33.333% - 18px); background:#fff; border-radius:14px; overflow:hidden; box-shadow:0 10px 28px rgba(16,88,146,0.08); border:5px solid rgba(7,160,237,0.06); position:relative; }
.package-card .card-image { height:200px; background-size:cover; background-position:center; }
.package-card .card-body { padding:22px; color:#222; }
.discount-ribbon { position:absolute; left:18px; top:12px; background:#0b3550; color:#fff; padding:10px 16px; border-radius:6px; font-weight:700; box-shadow:0 7px 32px rgb(0 63 97); }
.icons-row { display:flex; gap:14px; color:#111; margin-bottom:14px; font-size:18px }
.package-title { font-size:18px; margin:0 0 8px; font-weight:700; color:#222 }
.package-sub { color:#666; margin:0 0 10px }
.package-location { color:#444; margin-bottom:18px }
.package-footer { display:flex; justify-content:space-between; align-items:center }
.price-status { color:#c79b2a; font-weight:700 }
.package-ctas { display:flex; gap:10px }
.btn { border:none; padding:10px 18px; border-radius:8px; cursor:pointer; font-weight:700 }
.btn-gold { background:#0b3550; color:#fff }
.btn-green { background:#18c984; color:#fff; min-width:46px; display:inline-flex; align-items:center; justify-content:center }
.btn-green i { font-size:18px }

/* image placeholders classes */
.package-img-1 { background-image:url('https://cdni.autocarindia.com/ExtraImages/20220105033033_innova_crysta.jpg'); }
.package-img-2 { background-image:url('https://images.news18.com/ibnlive/uploads/2022/11/force-urbania-van-5.jpg?impolicy=website&width=0&height=0'); }
.package-img-3 { background-image:url('https://mobot-space.ams3.cdn.digitaloceanspaces.com/blog_images/Minibus_Hire_20240107_145747_4.jpeg'); }

.packages-dots { display:flex; justify-content:center; gap:8px; padding-top:14px }
.packages-dots button { width:12px; height:12px; border-radius:50%; border:none; background:rgba(0,0,0,0.12); cursor:pointer }
.packages-dots button.active { background:#0b6fb3 }

/* Responsive rules */
@media (max-width: 980px) {
    .package-card { flex:0 0 calc(50% - 18px) }
    .package-card .card-image { height:220px }
}
@media (max-width: 640px) {
    .package-card { flex:0 0 88%; margin:0 auto }
    .packages-track { padding-left:10px }
}

/* --- Themes slider (Explore Destinations By Theme) --- */
.themes-section { padding: 46px 5%; background: linear-gradient(180deg,#fbfdff 0%, #f6fbff 100%); }
.themes-section .section-header { text-align:center; margin-bottom:22px }
.themes-section .section-title { font-size:34px; color:#0b3550; margin-bottom:6px }
.themes-section .section-subtitle { color:#6b7b86; margin-bottom:18px }

.themes-slider { max-width:1200px; margin:0 auto; }
.themes-track { display:flex; gap:26px; padding:10px 14px; }
.themes-slider::-webkit-scrollbar { display:none }

.theme-card { position:relative; flex:0 0 calc(25% - 19.5px); border-radius:16px; overflow:hidden; min-height:320px; box-shadow:0 8px 28px rgba(18,45,78,0.06); cursor:pointer; background-size:cover; background-position:center; display:flex; align-items:flex-end; }
.theme-card::after { content:''; display:block; padding-bottom:56%; }

.theme-overlay { position:absolute; left:20px; bottom:18px; z-index:2; color:#fff; width:calc(100% - 40px); text-align:left }
.theme-overlay h3 { margin:0 0 12px; font-size:22px; font-weight:800; text-shadow:0 6px 18px rgba(0,0,0,0.45) }
.btn-explore { background:#c79b2a; color:#fff; border:none; padding:10px 18px; border-radius:28px; font-weight:700; cursor:pointer }

/* subtle gradient to improve readability */
.theme-card::before { content:''; position:absolute; left:0; right:0; bottom:0; top:0; background:linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.48) 100%); z-index:1 }

/* placeholder image classes */
.theme-img-1 { background-image: url('https://cdn.getyourguide.com/image/format=auto,fit=contain,gravity=auto,quality=60,width=1440,height=650,dpr=2/tour_img/50f4be3241ee5c23fa66e4ff4d145117f96172ec9e2fac95c86e2fec3cba990c.jpg'); }
.theme-img-2 { background-image: url('https://cdn.getyourguide.com/image/format=auto,fit=contain,gravity=auto,quality=60,width=1440,height=650,dpr=2/tour_img/35d54fce9bbc1b983cc4fb9b64568ea571a44d33e0d3bb513600e124fe6c24f5.jpg'); }
.theme-img-3 { background-image: url('https://cdn.getyourguide.com/image/format=auto,fit=contain,gravity=auto,quality=60,width=1440,height=650,dpr=2/tour_img/cf26d3838367977c53823dd7800c2f8ce56885af79fd79903b149e8f526d222d.jpg'); }
.theme-img-4 { background-image: url('https://cdn.getyourguide.com/image/format=auto,fit=contain,gravity=auto,quality=60,width=1440,height=650,dpr=2/tour_img/baa257e839f213ed1ae38a0cefd1bddd6d7209d9c70cf18c441e008cdee3c72f.jpg'); }

/* Responsive: tablet -> 2 columns, mobile -> horizontal scroll with snap */
@media (max-width: 980px) {
    .theme-card { flex:0 0 calc(50% - 13px); min-height:360px }
}
@media (max-width: 640px) {
    .themes-track { overflow-x:auto; scroll-snap-type:x mandatory; padding-left:12px }
    .theme-card { flex:0 0 88%; scroll-snap-align:start; min-height:380px }
    .theme-card::after { display:none }
    .theme-overlay { left:16px; bottom:20px }
}

/* --- Blog / Latest News slider (matches attached design) --- */
.blog-section { padding: 50px 5%; background: linear-gradient(180deg,#ffffff 0%, #fbfcfd 100%); text-align: center }
.blog-section .section-title { color: #123; margin-bottom: 6px }
.blog-section .section-subtitle { color: #666; margin-bottom: 28px }

.blog-slider { max-width:1200px; margin: 0 auto; overflow: hidden; }
.blog-track { display:flex; gap:28px; padding:12px 18px; scroll-snap-type:x mandatory; overflow-x:auto; -ms-overflow-style:none; scrollbar-width:none; }
.blog-track::-webkit-scrollbar{ display:none }

.blog-card { flex:0 0 calc(33.333% - 18px); background:#fff; border-radius:26px; overflow:hidden; box-shadow:0 20px 40px rgba(12,12,12,0.12); scroll-snap-align:center; display:flex; flex-direction:column; }
.blog-image { width:100%; height:220px; background-size:cover; background-position:center; display:block }
.blog-body { background:#fff; padding:22px; color:#222; border-bottom-left-radius:22px; border-bottom-right-radius:22px }
.blog-title { color:#c79b2a; font-size:20px; font-weight:700; margin:0 0 10px }
.blog-date { color:#222; margin:0; font-size:15px }

.blog-dots { display:flex; justify-content:center; gap:10px; padding-top:14px }
.blog-dots button { width:12px; height:12px; border-radius:50%; border:none; background:rgba(0,0,0,0.12); cursor:pointer }
.blog-dots button.active { background:#0b6fb3 }

/* image placeholders */
.blog-img-1 { background-image: url('https://cdn.getyourguide.com/image/format=auto,fit=contain,gravity=auto,quality=60,width=1440,height=650,dpr=2/tour_img/6fc838794b535ff2b75c609b29f6565b34273e882540162acfc02de8a1363863.jpg'); }
.blog-img-2 { background-image: url('https://cdn.getyourguide.com/image/format=auto,fit=contain,gravity=auto,quality=60,width=1440,height=650,dpr=2/tour_img/d885de038d2574ed56db64ca5f9d2d1d6addc88117d64777600ba12d4b07a3c6.jpg'); }
.blog-img-3 { background-image: url('https://cdn.getyourguide.com/image/format=auto,fit=contain,gravity=auto,quality=60,width=1440,height=650,dpr=2/tour_img/b59ee7e11d2f6a034791b282f4e7252fd399a67e2d8e7b316e7da18dc5131502.jpg'); }
.blog-img-1, .blog-img-2, .blog-img-3 { background-color:#dfeef1 }

/* Responsive: 2 cards on tablet, 1 on mobile */
@media (max-width: 980px) {
    .blog-card { flex:0 0 calc(50% - 18px) }
}
@media (max-width: 640px) {
    .blog-card { flex:0 0 88%; margin:0 auto }
    .blog-image { height:300px }
}

/* --- Testimonials slider styles --- */
.testimonials-section { padding: 56px 5%; background: linear-gradient(180deg,#ffffff 0%, #fbfcfd 100%); }
.testimonials-slider { max-width:1200px; margin: 0 auto; }
.testimonials-track { display:flex; gap:28px; padding:18px 6px; scroll-snap-type:x mandatory; overflow-x:auto; -ms-overflow-style:none; scrollbar-width:none }
.testimonials-track::-webkit-scrollbar{ display:none }
.testimonial-card { flex:0 0 calc(33.333% - 18px); background:#fff; border-radius:18px; padding:28px; box-shadow:0 18px 40px rgba(12,12,12,0.08); position:relative; scroll-snap-align:center; min-height:260px; display:flex; gap:18px; align-items:flex-start; flex-wrap:wrap }
.avatar-wrap { width:74px; height:74px; border-radius:50%; overflow:hidden; flex:0 0 74px; border:4px solid #f2c75a; box-shadow:0 6px 18px rgba(0,0,0,0.06) }
.avatar-wrap img { width:100%; height:100%; object-fit:cover; display:block }
.testimonial-body { flex:1; position:relative; width:100% }
.testimonial-name { margin:0 0 8px; font-size:18px; color:#123; font-weight:800 }
.quote-icon { position:absolute; right:0; top:0; color:#05b1db; font-size:44px; font-weight:800; line-height:1; }
.testimonial-text { color:#6a6f74; line-height:1.8; margin:10px 0 16px; font-size:15px }
.read-more { color:#c79b2a; font-weight:800; text-decoration:none }

/* card hover lift similar to other cards */
.testimonial-card { transition:transform 260ms ease, box-shadow 260ms ease }
.testimonial-card:hover { transform:translateY(-10px); box-shadow:0 28px 60px rgba(12,12,12,0.12) }

/* responsive: 1 card mobile, 2 tablet, 3 desktop */
@media (max-width: 980px) {
    .testimonial-card { flex:0 0 calc(60% - 18px) }
}
@media (max-width: 640px) {
    .testimonial-card { flex:0 0 70%; margin:0 auto; flex-direction:row; align-items:flex-start }
    .avatar-wrap { flex:0 0 auto; margin-right:12px }
    .testimonial-body { flex:1; width:auto; margin-top:0 }
    .testimonial-name { font-size:16px }
    .testimonial-text { font-size:14px; margin:8px 0 12px }
    .quote-icon { font-size:36px; top:-5px }
}

/* dots */
.testimonials-dots { display:flex; justify-content:center; gap:10px; padding-top:12px }
.testimonials-dots button { width:12px; height:12px; border-radius:50%; border:none; background:rgba(0,0,0,0.12); cursor:pointer }
.testimonials-dots button.active { background:#05b1db }

/* --- Footer styles --- */
.site-footer { background: linear-gradient(180deg, var(--navy) 0%, #142a3a 100%); color:#e8e8e8; padding:48px 5% 28px; position:relative }
.footer-top { display:flex; gap:26px; align-items:flex-start; justify-content:space-between; max-width:1200px; margin:0 auto 24px }
.footer-counter { display:flex; gap:8px; background:var(--gold); padding:10px; border-radius:6px; box-shadow:0 6px 12px rgba(0,0,0,0.2) }
.counter-box { background:#fff; border-radius:6px; padding:8px 12px; display:flex; align-items:center; justify-content:center; font-weight:800; color:var(--navy); min-width:36px }
.footer-contacts { display:flex; gap:55px; flex:1; margin-left:5px }
.contact-item h4 { color:#fff; margin:0 0 6px; font-weight:700 }
.contact-item .large { font-size:16px; color:#d8d8d8; margin:0 }
.contact-item .muted { color:#999; font-size:13px }

.footer-middle { max-width:1200px; margin:12px auto 18px; display:grid; grid-template-columns: repeat(4, 1fr); gap:28px }
.footer-col h5 { color:#fff; font-size:16px; margin-bottom:12px; font-weight:700 }
.footer-col ul { list-style:none; padding:0; margin:0 }
.footer-col ul li { margin:10px 0 }
.footer-col ul li a { color:#d0d0d0; transition: color 0.3s ease; }
.footer-col ul li a:hover { color:var(--gold); }
.partners { list-style:none; padding:0; margin:0; color:#d0d0d0 }
.payments { display:flex; gap:12px; margin-top:8px; color:#fff; font-size:24px }
.payments i { background:rgba(255,255,255,0.06); padding:8px; border-radius:8px; transition: background 0.3s ease; }
.payments i:hover { background:rgba(212, 162, 74, 0.3); color:var(--gold); }
.whatsapp-cta { display:inline-flex; gap:12px; align-items:center; margin-top:12px; padding:12px 18px; border-radius:8px; background:#18c984; color:#fff; border:none; cursor:pointer; font-weight:700; transition: transform 0.3s, box-shadow 0.3s; }
.whatsapp-cta:hover { transform:scale(1.05); box-shadow:0 6px 15px rgba(24, 201, 132, 0.4); }
.social-icons { display:flex; gap:10px; margin-top:14px }
.social { display:inline-flex; width:44px; height:44px; align-items:center; justify-content:center; border-radius:50%; background:rgba(255,255,255,0.1); color:#fff; transition: background 0.3s ease, transform 0.3s ease; }
.social:hover { background:var(--gold); color:#fff; transform:scale(1.1); }

.footer-bottom { border-top:1px solid rgba(255,255,255,0.06); padding-top:18px; margin-top:18px; display:flex; align-items:center; justify-content:space-between; max-width:1200px; margin-left:auto; margin-right:auto }
.copyright { color:#b8b8b8 }
.back-to-top { background:var(--gold); border:none; padding:10px 12px; border-radius:8px; cursor:pointer; box-shadow:0 8px 18px rgba(0,0,0,0.2); display:inline-flex; align-items:center; justify-content:center; color:white; transition: transform 0.3s, box-shadow 0.3s; }
.back-to-top:hover { transform:scale(1.1); box-shadow:0 10px 22px rgba(212, 162, 74, 0.3); }

/* Responsive footer */
@media (max-width: 980px) {
    .footer-middle { grid-template-columns: repeat(2, 1fr) }
    .footer-contacts { flex-direction:column; gap:12px }
}
@media (max-width: 640px) {
    .footer-middle { grid-template-columns: 1fr; gap:18px }
    .footer-top { flex-direction:column; gap:16px }
    .footer-counter { justify-content:flex-start }
    .footer-contacts { margin-left:0 }
    .back-to-top { position:fixed; right:18px; bottom:18px }
}

.about-us-section {
    padding: 50px 0;
    color: #333;
}

.about-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-us-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-us-section .col-md-6 {
    width: 50%;
    padding: 0 15px;
}

.about-us-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-us-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-us-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {

    .about-us-section .col-md-6 {

        width: 100%;

    }

}



/* Popular Destinations Section */

.popular-destinations-section {

    padding: 50px 20px;

    background-color: #f9f9f9;

    text-align: center;

}



.destination-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;

    max-width: 1200px;

    margin: 0 auto;

}



.destination-item {

    background-color: #fff;

    padding: 20px;

    border-radius: 10px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.destination-item:hover {

    transform: translateY(-10px);

    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

}



.destination-item h3 {

    font-size: 18px;

    margin: 0;

    color: #333;

}

/* Offer Cards Carousel */
.offer-cards-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.offer-card {
    min-width: 100%;
    box-sizing: border-box;
}

.offer-card img {
    width: 100%;
    display: block;
    padding: 15px;
    border-radius: 40px;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (min-width: 768px) {
    .offer-card {
        min-width: 50%;
    }
}

/* --- Enquiry Popup Form --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    position: relative;
    color: #333;
}

.popup-form-container h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #c79b2a;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    background: none;
    border: none;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.popup-form-container .btn-gold {
    width: 100%;
    padding: 12px;
    font-size: 18px;
}
.hamburger.active {
    color: var(--gold);
}

.hamburger.active i::before {
    content: "\f00d"; /* FontAwesome times/close icon */
}




        /* Top Bar Styles */
        .top-bar {
            background: linear-gradient(135deg, #1a2a57, #2c3e6e);
            color: white;
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .contact-info {
            display: flex;
            flex-wrap: nowrap;
            gap: 20px;
            align-items: center;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 5px;
        }

        .contact-info::-webkit-scrollbar {
            display: none;
        }

        .contact-info span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .contact-info i {
            color: #fbfbfb;
            width: 16px;
            text-align: center;
        }

        .social-links {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .social-links a {
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            background-color: #ffffff;
            transform: translateY(-2px);
        }


        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .top-bar {
                flex-direction: row;
                gap: 15px;
                padding: 12px 15px;
                overflow: hidden;
            }
            
            .contact-info {
                flex: 1;
                min-width: 0;
                overflow-x: auto;
                gap: 15px;
                padding-right: 15px;
            }
            
            .contact-info span {
                font-size: 13px;
            }
            
            .social-links {
                flex-shrink: 0;
                width: 100%;
                        margin-top: -13px;
            }
            

        }

        @media (max-width: 480px) {
            .top-bar {
                padding: 10px 12px;
            }
            
            .contact-info {
                gap: 12px;
            }
            
            .contact-info span {
                font-size: 12px;
            }
            
            .social-links a {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }
        }


        /* Car rental destination slider styles------------------------- */



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Top Bar Styles */
        .top-bar {
            background: #1a2a57;
            color: white;
            padding: 10px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
        }

        .contact-info span {
            margin-right: 20px;
            font-size: 0.9rem;
        }

        .contact-info i {
            margin-right: 5px;
            color: #ffc107;
        }

        .social-links a {
            color: white;
            margin-left: 15px;
            font-size: 1rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #ffc107;
        }

        /* Navbar Styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 25px;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .logo img {
            height: 50px;
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            text-decoration: none;
            /* color: #333; */
            font-weight: 500;
            transition: color 0.3s;
        }



        .nav-links a i {
            margin-right: 5px;
        }

        .btn-signup {
            background: #1a2a57;
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s;
        }

        .btn-signup:hover {
            background: #2c3e6e;
        }

        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Car Rental Services Section */
        .car-rental-services-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a2a57 0%, #2c3e6e 100%);
            color: white;
        }

        .car-rental-container {
            max-width: 85%;
            margin: 0 auto;
            padding: 0 20px;
        }

        .car-rental-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .car-rental-header h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 700;
            color: #ffc107;
        }

        .car-rental-header p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }

        .car-rental-slider {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .car-rental-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .car-rental-slide {
            min-width: 25%; /* Each slide takes 25% width to show 4 cards */
            display: flex;
            justify-content: center;
            padding: 20px 10px;
        }

        .car-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
            max-width: 280px;
            cursor: pointer;
        }

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

        .car-image-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .car-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .car-card:hover .car-image {
            transform: scale(1.1);
        }

        .car-content {
            padding: 20px;
            color: #333;
        }

        .car-category {
            color: #1a2a57;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .car-title {
            font-size: 1.4rem;
            color: #1a2a57;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .car-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .car-feature {
            background: #f0f4ff;
            color: #1a2a57;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .car-feature i {
            color: #ffc107;
            font-size: 0.7rem;
        }

        .car-actions {
            display: flex;
            gap: 10px;
        }

        .btn-whatsapp-car {
            background: #25D366;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
            font-size: 0.9rem;
            flex: 1;
            justify-content: center;
        }

        .btn-whatsapp-car:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }

        .btn-enquiry-car {
            background: #ffc107;
            color: #1a2a57;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
            flex: 1;
        }

        .btn-enquiry-car:hover {
            background: #ffb300;
            transform: translateY(-2px);
        }

        .car-rental-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }

        .car-rental-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .car-rental-dot.active {
            background: #ffc107;
            transform: scale(1.2);
        }

        .car-rental-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 10;
        }

        .car-arrow {
            background: rgba(255, 255, 255, 0.9);
            color: #1a2a57;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .car-arrow:hover {
            background: white;
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .car-rental-slide {
                min-width: 33.33%; /* Show 3 cards on medium screens */
            }
        }

        @media (max-width: 968px) {
            .car-rental-slide {
                min-width: 50%; /* Show 2 cards on tablets */
            }
            
            .car-rental-header h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .car-rental-slide {
                min-width: 100%; /* Show 1 card on mobile */
            }
            
            .car-rental-header h2 {
                font-size: 2rem;
            }
            
            .car-rental-arrows {
                display: none;
            }
            
            .nav-links {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .car-rental-header h2 {
                font-size: 1.8rem;
            }
            
            .car-features {
                gap: 8px;
            }
            
            .car-feature {
                padding: 4px 8px;
                font-size: 0.7rem;
            }
            
            .car-actions {
                flex-direction: column;
            }
            
            .top-bar {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .contact-info {
                display: flex;
                flex-direction: column;
                gap: 5px;
            }
            
            .contact-info span {
                margin-right: 0;
            }
            .nav-links {
    display: flex;
    gap:0

        }
    }

    /* ============================================== */
/* INTERNATIONAL TOURS SECTION - UPDATED */
/* ============================================== */
.international-tours-section {
    text-align: center;
    padding: 60px 5%;
    background: linear-gradient(135deg, #f0f2f5 0%, #e6e9ef 100%);
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #b58d30, #e6c158);
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.international-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: white;
    padding: 20px;
}

.international-slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55); 
}

.international-card {
    min-width: calc(100% / 5);
    flex-shrink: 0;
    position: relative;
    height: 450px;
    width: 400px;
    overflow: hidden;
    border-radius: 15px;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.international-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.international-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease-out;
}

.international-card:hover .international-card-img {
    transform: scale(1.1);
}

.international-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.international-card.active .international-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.country-name {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.international-card.active .country-name {
    transform: translateY(0);
    opacity: 1;
}

/* नाम में एनिमेशन एफेक्ट */
.country-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #b58d30, #e6c158);
    transition: width 0.8s ease 0.6s;
}

.international-card.active .country-name::after {
    width: 100%;
}









/* स्लाइडर प्रोग्रेस बार (ऑटो स्लाइड के लिए) */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(204, 204, 204, 0.3);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    z-index: 11;
}

.slider-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #b58d30, #e6c158);
    transition: width 5s linear;
}

/* ============================================== */
/* RESPONSIVENESS */
/* ============================================== */

@media (max-width: 1200px) {
    .international-card {
        min-width: 50%;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .international-card {
        height: 400px;
    }
    
    .country-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .international-tours-section {
        padding: 40px 20px;
    }
    
    .international-card {
        min-width: 100%;
        margin: 0 5px;
    }     
    
    .international-slider-next {
        right: 10px;
    }
    
    .country-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .international-card {
        height: 350px;
    }
    

}


    :root{
      --accent:#12b886;
      --muted:#6b7280;
      --card-bg: rgba(255,255,255,0.85);
      --shadow: 0 12px 30px rgba(16,24,40,0.08);
      font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    }
    body{margin:0;background:#fafafa;color:#0f172a}
    .container5{max-width:1200px;margin:0 auto;padding:56px 24px}

    /* Header */
    .services-header5{text-align:center;margin-bottom:40px}
    .small-tag{display:inline-block;padding:6px 12px;border-radius:999px;background:#eef4f7;color:#1f2937;font-size:12px;margin-bottom:12px}
    h2{font-size:28px;margin:6px 0 8px}
    p.lead{color:var(--muted);max-width:760px;margin:0 auto}

    /* icon row */
    .icon-row{display:flex;gap:16px;justify-content:center;margin:30px 0 60px;flex-wrap:wrap}
    .icon-card{background:var(--card-bg);backdrop-filter:saturate(140%) blur(6px);padding:18px;border-radius:8px;min-width:120px;text-align:center;box-shadow:var(--shadow);cursor:default}
    .icon-card img{width:44px;height:44px;opacity:.8;object-fit:cover}
    .icon-card p{margin:8px 0 0;font-weight:600;font-size:13px}

    /* Section title */
    .section-title{text-align:center;margin:30px 0}
    .section-title h3{color:var(--accent);font-size:22px;margin:6px 0}
    .section-title p{color:var(--muted);margin:6px 0 0}

    /* Cards layout using flex for smooth animation */
    .cards-wrap5{display:flex;gap:18px;align-items:stretch;margin-top:30px;transition:all .45s cubic-bezier(.2,.9,.2,1)}

    .card{position:relative;border-radius:18px;overflow:hidden;box-shadow:var(--shadow);min-height:320px;flex:1 1 0;background:#ddd;cursor:pointer;transition:flex .6s cubic-bezier(.2,.9,.2,1),transform .4s ease,box-shadow .3s ease,opacity .3s ease}
    .card .bg{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform .6s ease}
    .card .overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,21,40,0.25) 10%, rgba(8,21,40,0.55) 85%);transition:background .4s ease}

    /* content common */
    .card-inner{position:absolute;left:24px;bottom:22px;color:white;z-index:3;opacity:0;transform:translateY(10px);transition:opacity .35s ease,transform .35s ease}
    .card h4{font-size:20px;margin:0 0 8px}
    .card ul{margin:8px 0 16px;padding-left:18px;color:rgba(255,255,255,0.95)}

    /* watermark letter */
    .watermark{position:absolute;left:18px;top:12px;font-size:120px;color:rgba(255,255,255,0.12);font-weight:800;z-index:2;pointer-events:none;transition:font-size .4s ease,left .4s ease,top .4s ease}

    /* narrow cards specifics (default small content hidden) */
    .card .small-indicator{position:absolute;left:16px;bottom:16px;color:white;font-weight:700;z-index:4;opacity:1}

    /* states when a card is expanded */
    .card.expanded{flex:2.8 1 0;min-height:480px;border-radius:22px;transform:translateY(-6px);box-shadow:0 22px 60px rgba(16,24,40,0.18)}
    .card.expanded .card-inner{opacity:1;transform:translateY(0)}
    .card.expanded .watermark{font-size:150px;left:24px;top:18px}
    .card.expanded .bg{transform:scale(1.06)}

    .card.shrink{flex:.6 1 0;opacity:.92;transform:translateY(8px)}
    .card.shrink .card-inner{opacity:0}

    /* show minimal details on non-expanded narrow cards */
    .card:not(.expanded) .card-inner{opacity:0}

    /* hover micro animation */
    .card:hover{transform:translateY(-4px);box-shadow:0 16px 48px rgba(16,24,40,0.12)}

    /* responsive */
    @media (max-width:1000px){
      .cards-wrap5{flex-direction:column}
      .card, .card.expanded, .card.shrink{flex:unset;width:100%}
      .card{min-height:220px}
      .card.expanded{min-height:360px}
      .watermark{font-size:80px;left:14px;top:8px}
    }

    @media (max-width:640px){
      h2{font-size:22px}
      .icon-card{min-width:100px;padding:14px}
      .watermark{font-size:60px}
    }
