@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

body {
    font-family: 'Lato', sans-serif;
}


/* h3 tour packages linkable */
h3 a {
    text-decoration: none;
    color: inherit;
    /* heading ke color jaisa hi ho */
}

h3 a:hover {
    color: #ffffff;
    /* hover effect ke liye (apne brand color use kar sakta hai) */
}

/* scroll button hover */
#scrollBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #e65c00;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
    /* hidden by default */
    transition: all 0.3s ease;
    z-index: 999;
}

#scrollBtn:hover {
    background: #260f5e;
    transform: scale(1.1);
}

/* ========== TOP BAR ========== */
.top-bar {
    background: #2a0c6e;
    color: #fff;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    /* White color jaise top bar hai */
    text-decoration: none;
    /* Underline hatane ke liye */
}

.top-bar a:hover {
    text-decoration: underline;
    /* Hover effect ke liye */
}


.top-bar .left span,
.top-bar .right span {
    margin-right: 15px;
}

.top-bar i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .top-bar {
        flex-wrap: nowrap;
        /* ek hi line me rakhega */
        overflow-x: auto;
        /* agar jagah kam ho to scroll hoga */
        white-space: nowrap;
    }

    .top-bar .left,
    .top-bar .right {
        display: flex;
        align-items: center;
    }

    .top-bar span {
        margin-right: 12px;
    }
}

/* ========== NAVBAR ========== */
nav {
    background: transparent;
    color: #000000;
    display: flex;
    justify-content: space-between;
    /* logo - links - button */
    align-items: center;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease;
}

nav.scrolled {
    background: #ffffff;
    height: 65px;
}

nav .logo {
    flex: 1;
    /* left side */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    /* spacing between menu items */
    flex: 2;
    /* take center space */
    justify-content: center;
    margin: 0;
    /* remove old margin */
    padding: 0;
    margin-right: 105px;
}

nav ul li {
    position: relative;
    font-size: 15px;
    white-space: nowrap;
    /* prevent words breaking in 2 lines */
}

nav ul li a {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

nav ul li a:hover {
    color: rgb(223, 149, 11);
}

nav ul li ul li {
    margin: 0;
    /* default margin hatao */
    padding: 0;
    /* default padding hatao */
}

nav ul li ul li a {
    padding: 5px 12px;
    /* chhoti padding */
    line-height: 1.2;
    /* line spacing tight */
    display: block;
}

/* Dropdown */
nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    display: none;
    flex-direction: column;
    min-width: 180px;
    z-index: 999;
}

nav ul li:hover ul {
    display: flex;
}


/* Plan My Trip button */
.plan-btn {
    background: #e65c00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    white-space: nowrap;
}

.plan-btn:hover {
    background: #110b4b;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile */
@media(max-width: 768px) {
    nav {
        flex-wrap: wrap;
        /* allow wrapping */
    }

    nav ul {
        position: absolute;
        top: 65px;
        left: -100%;
        flex-direction: column;
        width: 100%;
        background: #006666;
        transition: 0.3s ease;
        justify-content: flex-start;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    /* dropdown inline */
    nav ul li .dropdown-toggle {
        margin-left: 5px;
        font-size: 14px;
        cursor: pointer;
    }

    nav ul li ul {
        position: static;
        display: none;
    }

    nav ul li.open ul {
        display: flex;
    }

    /* Mobile button */
    .plan-trip-desktop {
        display: none;
    }

    .plan-trip-mobile {
        display: block;
        text-align: center;
        padding: 15px 0;
    }
}



/* ========== HERO SLIDER ========== */
.slider {
    position: relative;
    width: 100%;
    height: 93vh;
    /* Full screen hero section */
    overflow: hidden;
    margin-top: -91px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
    transition: 0.6s ease;
}

@media(max-width: 768px) {
    .slider {
        margin-top: -89px;
    }
}

.slide.active {
    left: 0;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 20px;
}

/* Dots */
.dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dots span {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dots span.active {
    background: #fff;
}

@media(max-width: 768px) {
    .slide-content h2 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 16px;
    }
}


/* 2nd about section */
.about-section {
    padding: 60px 20px;
    background: #fff;
}



.about-container {
    display: flex;
    align-items: stretch;
    /* Height equal */
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.about-content {
    flex: 1;
    padding: 20px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #090c38;
}

.about-content p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* .about-info {
    margin-top: 20px;
    font-size: 18px;
    color: #009688;
}

.about-info i {
    margin-right: 8px;
    color: #009688;
}

.about-info a {
    color: #009688;
    text-decoration: none;
} */

.about-image {
    flex: 1;
    display: flex;
}

.about-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    height: 500px;
}

/* Responsive Design */
@media(max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        /* Image upar ya neeche karna ho to order change kar sakte */
    }
}


/* delhi to agra tour pacakges  */
.tour-packages {
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    padding: 25px 20px;
    background: #f9f9f9;
}

.tour-packages h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #150e4b;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.package-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.package-card img {
    width: 100%;
    height: 308px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.package-card:hover img {
    transform: scale(1.1);
}

/* Dark overlay on hover */
.package-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    /* by default transparent */
    transition: background 0.4s ease;
    z-index: 1;
}

.package-card:hover::after {
    background: rgba(0, 0, 0, 0.5);
    /* hover pe dark theme */
}

/* Title always visible */
.package-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 10px;
    text-align: left;
    font-size: 18px;
    z-index: 2;
    /* overlay ke upar */
}

.package-title a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 21px;
}

.package-title i {
    margin-right: 6px;
    color: #db7616;
}

/* Overlay (only hover for details) */
.overlay {
    position: absolute;
    bottom: 40px;
    /* title ke upar */
    left: 0;
    right: 0;
    color: #fff;
    padding: 10px 15px;
    text-align: left;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;

    display: flex;
    /* row ban gaya */
    align-items: center;
    /* vertical center */
    gap: 20px;
    /* dono ke beech spacing */
}

.package-card:hover .overlay {
    opacity: 1;
}

.overlay p {
    margin: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    /* icon aur text ke beech space */
}

.overlay i {
    color: #db7616;
}


/* Mobile responsive */
@media(max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }

    .package-card img {
        height: 220px;
    }

    .tour-packages {
        margin-top: -44px;
    }

    .overlay {
        margin-bottom: 35px;
    }
}




/* 3rd section taj mahal tours */
/* Section Container */
body {
    /* font-family: 'Courier New', Courier, monospace; */
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

.tajmahal-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    padding: 60px 8%;
    background: #fff;
}

/* Left content */
.tajmahal-left {
    flex: 1 1 45%;
}

.tajmahal-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #150e4b;
}

.tajmahal-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: black;
}

.tajmahal-left button {
    padding: 12px 28px;
    background: #e65c00;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.tajmahal-left button:hover {
    background: #0a084d;
}

/* Right images wrapper */
.tajmahal-right {
    flex: 1 1 50%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Each image card */
.taj-card {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.4s ease;
    min-height: 320px;
}

.taj-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.taj-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Overlay content */
.taj-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
}

.taj-card:hover .taj-overlay {
    opacity: 1;
}

.taj-overlay h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.taj-overlay p {
    font-size: 14px;
    margin: 5px 0;
}

.taj-overlay p i {
    margin-right: 6px;
    color: #d48113;
}

.taj-overlay button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: #d48113;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.taj-overlay button:hover {
    background: #090f5f;
}

/* Responsive */
@media (max-width: 768px) {
    .tajmahal-section {
        flex-direction: column;
    }

    .tajmahal-left,
    .tajmahal-right {
        flex: 1 1 100%;
    }

    .tajmahal-right {
        flex-direction: column;
    }

    .taj-card {
        margin-top: -96px;
    }
}

@media (max-width: 768px) {
    .tajmahal-section {
        flex-direction: column;
        padding: 40px 5%;
        /* Mobile ke liye padding thoda kam */
        gap: 30px;
        /* Sections ke beech consistent gap */
    }

    .tajmahal-left,
    .tajmahal-right {
        flex: 1 1 100%;
    }

    /* Right side images wrapper */
    .tajmahal-right {
        flex-direction: column;
        gap: 20px;
        /* Cards ke beech thoda space */
    }

    .taj-card {
        margin-top: 0;
        /* Negative margin hata diya */
        min-height: 220px;
        /* Mobile-friendly card height */
    }

    /* Text adjustments for mobile */
    .tajmahal-left h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .tajmahal-left p {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .tajmahal-left button,
    .taj-overlay button {
        padding: 10px 20px;
        font-size: 15px;
    }

    .taj-overlay h3 {
        font-size: 18px;
    }

    .taj-overlay p {
        font-size: 13px;
    }
}

/* cta section */
.cta-section {
    background: url("images/CTAbackground.jpg") center/cover no-repeat;
    /* Apni image ka path lagao */
    padding: 60px 20px;
    position: relative;
    color: #fff;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* dark overlay for text visibility */
    z-index: 1;
}

.cta-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.cta-box {
    flex: 1 1 200px;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-box i {
    font-size: 40px;
    color: #cc641f;
    margin-bottom: 12px;
}

.cta-box h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
}

.cta-box p {
    font-size: 16px;
    font-weight: 500;
}

/* Hover Effect */
.cta-box:hover {
    transform: translateY(-8px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-overlay {
        flex-direction: column;
    }
}


/* destination */

.destinations {
    padding: 60px 8%;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #150e4b;
    font-weight: 600;
}

/* Grid Layout */
.destinations-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Each Card */
.destination-card {
    position: relative;
    flex: 1 1 calc(33.33% - 20px);
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

/* Destination Name */
.destination-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    color: #fff;
    text-align: left;
    z-index: 2;
}

.destination-content h3 {
    font-size: 22px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Hover Content */
.destination-hover {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.destination-hover p {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.destination-hover button {
    padding: 8px 18px;
    border: none;
    background: #e65c00;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.destination-hover button:hover {
    background: #060f63;
}

.destination-card:hover .destination-hover {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .destinations {
        padding: 10px 20px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .destination-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .destination-card {
        flex: 1 1 100%;
    }
}


/* reviews */
.reviews-section {
    padding: 40px 5%;
    /* uper-neeche kam kiya, left-right balanced */
    background: #f9f9f9;
    text-align: center;
}

.reviews-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #060f63;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
}

.review-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 16px;
    margin: 5px 0 0;
    color: #222;
}

.stars {
    font-size: 14px;
    color: #ffb400;
}



/* client gallery */
.client-gallery {
    padding: 50px 8%;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* footer */
/* Footer Base */
/* Footer Base */
.site-footer {
    background: #0a1a2f;
    /* Dark Blue */
    color: #fff;
    padding: 60px 20px 20px;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: auto;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer-col h4::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #ff9800;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin: 10px 0;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff9800;
    padding-left: 5px;
}

.footer-col p {
    margin: 10px 0;
    font-size: 14px;
}

.footer-col i {
    margin-right: 8px;
    color: #ff9800;
}

/* Social Icons */
.footer-social {
    margin: 15px 0;
}

.footer-social a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    margin-right: 12px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ff9800;
}

/* Payment Button */
.payment-btn {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    margin-top: 24px;
    margin-left: 26px;
}

.payment-btn:hover {
    background: #0f0e5e;
}

/* Payment Icons */
.payment-icons img {
    width: 42px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    background: #fff;
    padding: 5px;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 6px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.footer-bottom a {
    color: #ff9800;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .footer-container {
        text-align: left;
        /* Left align on mobile */
    }

    .footer-col h4::after {
        left: 0;
        transform: none;
    }

    .footer-social {
        margin-top: 15px;
    }

    .payment-icons img {
        width: 45px;
    }
}


/* car rental */
.car-rental {
    background: #f9f9f9;
    padding: 30px 20px;
    text-align: center;
}

.car-rental h2 {
    color: #0f0e5e;
    font-size: 28px;
    margin-bottom: 10px;
}

.car-rental p {
    color: #000000;
    font-size: 16px;
    margin-bottom: 40px;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.car-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    height: 294px;
}

@media (max-width: 768px) {
    .car-card {
        height: 355px;
    }
}

.car-card:hover {
    transform: translateY(-5px);
}

.car-card img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

.car-card h3 {
    color: #111;
    font-size: 18px;
    margin-bottom: 5px;
}

.car-card p {
    color: #000000;
    font-size: 14px;
}

.book-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e9650d;
    color: #fff;
    border: none;
    padding: 8px 15px;
    font-size: 13px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.book-btn:hover {
    background: #0f0e5e;
}


/* our partners */
.partners {
    background: #fff;
    padding: 10px 20px;
    text-align: center;
}

.partners h2 {
    font-size: 28px;
    color: #0d0b6b;
    margin-bottom: 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    /* gap: 30px; */
    align-items: center;
    justify-items: center;
    /* width: 1201px; */
}

.partner-logo img {
    max-width: 150px;
    width: 100%;
    height: auto;
    /* filter: grayscale(100%);
    transition: filter 0.3s ease; */
}


/* itenary page css */
/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    width: 100%;
    background: url('images/tigernew2.avif') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
}

.hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.3rem;
}


/* Responsive */
@media(max-width: 768px) {
    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* tour info heading */
/* Tour Info Section */
.tour-info {
    background: #ffffff;
    padding: 30px 20px;
    border-bottom: 1px solid #eee;
}

.tour-info .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Left Title */
.tour-title h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: rgb(6, 6, 66);
}

/* Right Details */
.tour-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    /* margin-right: 220px; */
}

.detail-box {
    text-align: left;
}

.detail-box i {
    color: #cc7817;
    margin-right: 8px;
}

.detail-box h4 {
    color: rgb(6, 6, 66);
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.detail-box p {
    margin: 0;
    font-size: 0.95rem;
    color: black;
}

/* Responsive */
@media(max-width: 768px) {
    .tour-info .container {
        flex-direction: column;
        text-align: center;
    }

    .tour-details {
        justify-content: center;
        gap: 30px;
    }

    .detail-box {
        text-align: center;
    }
}


/* tour overview + booking form */
/* Tour Overview */
.tour-overview {
    padding: 60px 20px;
    background: #ffffff;
}

.tour-overview .container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Left Side */
.overview-text h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: rgb(6, 6, 66);

}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #000000;
}

.overview-text ul {
    list-style: none;
    padding: 0;
}

.overview-text ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: black;
}

/* Right Side Form */
.booking-form {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-form h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
    color: rgb(6, 6, 66);
}

.booking-form form input,
.booking-form form select,
.booking-form form textarea,
.booking-form form button {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid black;
    border-radius: 8px;
    font-size: 1rem;
}

/* ✅ Fix for iPhone blue placeholder */
.booking-form form select:required:invalid {
    color: #000000;
}

.booking-form form select option[value=""] {
    color: #000000;
}

/* ✅ Custom dropdown arrow styling */
.booking-form form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center;
    background-color: #fff;
    background-size: 16px;
    padding-right: 40px;
    /* arrow ke liye jagah */
    color: #000;
}

.booking-form form textarea {
    resize: none;
    height: 100px;
}

.booking-form form button {
    background: #e67409;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.booking-form form button:hover {
    background: #130646;
}




.support-card {
    text-align: center;
}

.support-card .icon img {
    width: 60px;
    margin-bottom: 10px;
}

.support-card h4 {
    margin-bottom: 10px;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #25d366;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp-btn:hover {
    background-color: darkgreen;
}

.whatsapp-btn i {
    margin-right: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-overview .container {
        flex-direction: column;
        align-items: center;
    }

    .right-section {
        max-width: 100%;
        width: 100%;
    }
}

/* Responsive */
@media(max-width: 768px) {
    .tour-overview .container {
        grid-template-columns: 1fr;
    }

    .booking-form {
        position: relative;
        top: unset;
    }
}



/* itenary */
.tour-itinerary {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.tour-itinerary h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: rgb(6, 6, 66);
    font-weight: 600;
    /* text-align: center; */
    /* margin-right: 580px; */
}

/* Accordion container */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Accordion items (as separate boxes) */
.accordion-item {
    border: 1px solid #000000;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

/* Accordion header (button) */
.accordion-header {
    width: 100%;
    padding: 19px 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    border: none;
    outline: none;
    cursor: pointer;
    background: #ffffff;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f5f5f5;
}

/* Plus/Minus Icon */
.accordion-header::after {
    content: '+';
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
    content: '−';
}

/* Accordion content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    /* enough space for content */
    padding: 15px 20px;
    border-top: 1px solid #ddd;
}

.accordion-content p {
    margin: 0;
    color: #000000;
    line-height: 1.6;
}


/* included excluded */
.includes-excludes {
    margin-top: 40px;
}

.includes-excludes h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.inc-exc-wrapper {
    display: flex;
    gap: 30px;
}

.includes,
.excludes {
    flex: 1;
}

.includes ul li::before {
    content: "✔️ ";
    color: green;
}

.excludes ul li::before {
    content: "❌ ";
    color: red;
}


/* rajasthan tours categaroy */
.rajasthan-tours {
    padding: 22px 20px;
    background: #fdfdfd;
    text-align: center;
}

.rajasthan-tours .section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

.rajasthan-tours .section-content {
    max-width: 1260px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .rajasthan-tours .section-heading {
        font-size: 1.8rem;
    }

    .rajasthan-tours .section-content {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 10px;
    }
}

/* cards */
.tour-cards {
    padding: 19px 20px;
    background: #fafafa;
    text-align: center;
}

.tour-cards .section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0b0747;
    text-transform: uppercase;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #222;
}

.card-body p {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.6;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .tour-cards .section-heading {
        font-size: 1.8rem;
    }

    .card img {
        height: 180px;
    }
}

a {
    text-decoration: none;
    /* underline hatayega */
    color: inherit;
    /* parent ka color lega (blue nahi hoga) */
}

a h3 {
    transition: color 0.3s ease;
}

a:hover h3 {
    color: #c47f1a;
    /* hover pe thoda royal golden/orange color */
}


/* whatsapp icon */
/* whatsappicon */
/* Floating WhatsApp button - bottom-left */
#waFloatingBtn {
    position: fixed;
    left: 20px;
    /* left side */
    bottom: 20px;
    /* bottom side */
    z-index: 9999;
    background: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#waFloatingBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

#waFloatingBtn img {
    width: 32px;
    height: 32px;
}

/* end */


/* contact us */