body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
}

/* HEADER */
/* 🔷 Top Bar */
.top-bar {
    background-color: #ABE4F2;
    font-size: 14px;
}

.top-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.top-link:hover {
    color: #F53E48;
}

/* 🔷 Navbar */
/* 🔷 Navbar */
.navbar-nav .nav-link {
    margin: 0 15px;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}

/* Hover Effect */
.navbar-nav .nav-link:hover {
    color: #F53E48;
}

/* Active Link */
.navbar-nav .nav-link.active {
    color: #FF8900;
}

/* 🔷 Live Chat Button */
.live-chat-btn {
    background: linear-gradient(45deg, #FF6A00, #F53E48);
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    transition: 0.3s;
    font-weight: 500;
}

.live-chat-btn:hover {
    opacity: 0.9;
    color: #fff;
}






/* FOOTER */
/* Text */
.footer-text {
    color: #6c757d;
    font-size: 15px;
}

/* Titles */
.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 30px;
    height: 3px;
    background-color: #1EC28B;
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* Links */
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: #6c757d;
    transition: 0.3s;
    font-size: 15px;
}

/* Hover Color */
.footer-links a:hover,
.footer-contact a:hover {
    color: #1EC28B;
}

/* Triangle Icon */
.footer-links i {
    margin-right: 6px;
    font-size: 12px;
    color: #1EC28B;
}

/* Contact Icons */
.footer-contact i {
    margin-right: 8px;
    color: #1EC28B;
}

/* Social Buttons */
.footer-section .btn-secondary {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.footer-section .btn-secondary i {
    font-size: 16px;
}

/* Your Hover Style */
/* .btn-secondary:hover {
    background-color: #198754 !important;
    color: #fff;
} */

/* Bottom Bar */
.footer-bottom {
    background-color: #cfe8e6;
    font-size: 14px;
}



/* INDEX PAGE */
/* ghar se ghar tak */
.overlap-wrapper {
    position: relative;
}

/* Card Style */
.img-card {
    background: #fff;
    padding: 12px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Image */
.img-card img {
    width: 100%;
    border-radius: 18px;
}

/* Top Card */
.img-top {
    width: 85%;
    position: relative;
    z-index: 1;
}

/* Bottom Card (Desktop Default) */
.img-bottom {
    position: absolute;
    left: 45%;
    bottom: -120px;
    /* 🔥 reduced from -190 */
    width: 45%;
    z-index: 2;
}

/* ========================= */
/* 📱 Tablet (<= 992px) */
/* ========================= */
@media (max-width: 992px) {
    .img-bottom {
        left: 40%;
        bottom: -80px;
        width: 50%;
    }

    .img-top {
        width: 90%;
    }
}

/* ========================= */
/* 📱 Mobile (<= 768px) */
/* ========================= */
@media (max-width: 768px) {

    .overlap-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .img-top,
    .img-bottom {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .img-bottom {
        margin-top: 15px;
    }
}

.call-btn {
    padding: 10px 25px;
    border-radius: 10px;
    border: none;
    color: #fff !important;
    font-weight: 500;

    /* 🔥 Normal gradient (left → right) */
    background: linear-gradient(to right, #F4394C, #FD7C0B);

    transition: all 0.4s ease;
}

/* Hover Effect */
.call-btn:hover {
    /* 🔥 Hover gradient (top → bottom) */
    background: linear-gradient(to bottom, #FD7C0B, #F4394C);

    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}




.tour-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #ff4d4d;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* REMOVE shadow on hover */
.tour-card:hover {
    box-shadow: none;
}

/* Image section */
.tour-img {
    position: relative;
}

.tour-img img {
    width: 100%;
    border-radius: 15px;
}

/* Badge */
.badge-days {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #ff8c00;

    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    border: 2px solid #fff;
    /* 🔥 added */
    transition: all 0.3s ease;
}

/* 🔥 Badge lift on hover */
.badge-days:hover {
    background: #1EC28B;
    color: #fff;
    transform: translateY(-4px);
}

/* 🔥 FIX: remove block behavior */
.tour-card i {
    color: #00ACD8;
    transition: 0.3s;
}

/* ICON CIRCLE */
.icon-circle {
    width: 28px;
    height: 28px;
    background: #B2F3DE;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

/* ICON stays same */
.icon-circle i {
    color: #00ACD8;
    font-size: 14px;
}

/* 🔥 Hover → ONLY background changes */
.icon-circle:hover {
    background: #fff;
}


.icon-circle2 {
    width: 28px;
    height: 28px;
    background: #FFE2C9;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

/* ICON stays same */
.icon-circle2 i {
    color: #FF4C57;
    font-size: 14px;
}

/* 🔥 Hover → ONLY background changes */
.icon-circle2:hover {
    background: #fff;
}



.between-decor {
    position: relative;
}

/*LEFT*/
.between-decor img {
    position: absolute;

    left: -240px;
    /* 🔥 no gap from left */
    top: -20px;
    /* 🔥 overlap from top */

    width: 40vw;
    /* 🔽 reduced from 45vw */
    max-width: 650px;
    /* 🔽 slightly smaller */
    min-width: 320px;
    /* 🔽 slightly smaller */

    height: auto;

    /* opacity: 50%; */


    z-index: 5;
}

/*RIGHT */
/* ✅ RIGHT (proper override) */
.between-decor img.right-decor {
    left: unset;
    /* 🔥 VERY IMPORTANT */
    right: 100px;

    top: -120px;

    width: 20vw;
    /* 🔥 much smaller */
    max-width: 200px;
    /* 🔥 reduced */
    min-width: 50px;

    height: auto;
}

@media (max-width: 768px) {
    .between-decor {
        display: none;
    }
}

@media (max-width: 768px) {
    .between-decor {
        display: none;
    }
}










.testimonial-section {
    min-height: 100vh;

    background: url('index/index-testomonial-bg.webp') no-repeat center center;
    background-size: cover;

    background-attachment: fixed;
    /* 🔥 MAIN EFFECT */

    position: relative;
    z-index: 1;
}

/* Optional dark overlay */
.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.6); dark overlay */
    z-index: -1;
}

.testimonial-card {
    /* border-radius: 15px; */
    background: linear-gradient(to bottom, #07AED8, #97E8DD);
    /* 🔥 gradient */
    color: #1e2a3a;
}

.testimonial-card2 {
    /* border-radius: 15px; */
    background-color: #2B2945;
    /* 🔥 gradient */
    color: white;
}






/* ABOUT */
/* Section base */
/* =========================
   HERO SECTION
========================= */
.hero-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fb;
    /* soft light background */
    overflow: hidden;
}

/* =========================
   LEFT DECORATIVE IMAGE
========================= */
.left-img {
    position: absolute;
    left: 220px;
    top: -90px;
    /* transform: translateY(-50%); */
    width: 250px;
    z-index: 1;
    /* opacity: 0.8; */
}

/* =========================
   RIGHT DECORATIVE IMAGE
========================= */
.right-img {
    position: absolute;
    top: 40%;
    right: 70px;
    width: 120px;
    transform: scale(1.2);
    z-index: 1;
    opacity: 0.8;
}

/* =========================
   CONTENT WRAPPER
========================= */
.content-wrapper {
    padding-top: 60px;
    position: relative;
    z-index: 2;
    /* padding-left: 180px; */
    /* space for left image */
}

/* =========================
   HEADING STYLE
========================= */
.content-wrapper h1 {
    font-size: 64px;
    font-weight: 700;
    color: #2d2a4a;
    /* margin-bottom: 20px; */
}

/* =========================
   BREADCRUMB STYLE
========================= */
.content-wrapper p {
    font-size: 18px;
    color: #6c757d;
}

.content-wrapper a {
    color: #414444;
    text-decoration: underline;
    font-weight: 500;
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */
@media (max-width: 991px) {

    .content-wrapper {
        padding-left: 0;
        text-align: center;
    }

    .content-wrapper h1 {
        font-size: 40px;
    }

}


.about-img-box {
    box-shadow: 0 10px 30px rgba(0, 172, 216, 0.3);
    /* border-radius: 20px; */
    transition: transform 0.5s ease;
}

.about-img-box:hover {
    transform: translateY(-5px);
}

/* CONTACT */
.contact-link {
    color: #333;
    transition: 0.3s;
}

.contact-link:hover {
    color: #198754;
    /* Bootstrap success green */
}

.contact-link:hover i {
    color: #198754;
}

.btn-secondary:hover {
    background-color: #198754 !important;
    color: #fff;
}

.contact-form-section {
    background-color: #E1FAFF;
}

/* Input Styling */
.contact-form-section .form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #ddd;
    box-shadow: none;
}

/* Focus Effect */
.contact-form-section .form-control:focus {
    border-color: #0dcaf0;
    box-shadow: 0 0 0 0.2rem rgba(13, 202, 240, 0.25);
}

/* Button Styling */
.contact-form-section .btn-primary {
    background-color: #3b6ef5;
    border: none;
    border-radius: 8px;
}

.contact-form-section .btn-primary:hover {
    background-color: #2f5bd3;
}


/* destination */
.destination-section{
    padding-top:100px;
}
.between-decor {
    position: relative;
}
/*LEFT*/
.between-decor2 img {
    position: absolute;

    left: -280px;
    /* 🔥 no gap from left */
    top: 20px;
    /* 🔥 overlap from top */

    width: 40vw;
    /* 🔽 reduced from 45vw */
    max-width: 650px;
    /* 🔽 slightly smaller */
    min-width: 320px;
    /* 🔽 slightly smaller */

    height: auto;

    /* opacity: 50%; */
    

    z-index: 1;
}

/*RIGHT */
/* ✅ RIGHT (proper override) */
.between-decor2 img.right-decor2 {

    position: absolute;

    padding-top:30px;

    left: unset;
    /* 🔥 VERY IMPORTANT */
    right: 60px;

    top: -20px;

    width: 20vw;
    /* 🔥 much smaller */
    max-width: 200px;
    /* 🔥 reduced */
    min-width: 50px;

    height: auto;
}

@media (max-width: 768px) {
    .between-decor2 {
        display: none;
    }
}

