@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body {
    font-family: "Quicksand", sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 22px;
    color: #1d3557;
}

.navbar-nav .nav-link {
    display: inline-block;
    font-weight: 600;
    color: #333;
    border-radius: 50px;
    transition: all 0.3s ease;
    padding: 8px 15px !important;
}

.navbar-nav .nav-item {
    margin-left: 20px;
}

.navbar-nav .nav-link:hover {
    background-color: #5bc7ee36;
}

.offcanvas {
    width: 260px;
}

.offcanvas .nav-link {
    padding: 12px 0;
    font-size: 16px;
}

.navbar-toggler {
    border: none;
    font-size: 22px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero */
.hero {
    position: relative;
    height: auto;
    margin-bottom: 180px;
}

.hero .swiper {
    padding: 0;
}

.heroSwiper,
.swiper-slide {
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Search box overlay */
.search-box {
    text-align: center;
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 50px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.search-box p {
    font-size: 1.5rem;
    font-weight: 600;
}

.section-title {
    text-align: center;
    margin: 60px 0 30px;
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {

    .hero {
        margin-bottom: 40px;
        /* reduce huge gap */
    }

    .search-box {
        position: static;
        /* ❗ remove absolute */
        transform: none;
        margin-top: 20px;
        width: 90%;
        padding: 20px;
    }

    .search-box p {
        font-size: 1.1rem;
    }
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
    width: 100%;
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 15px;
}

.heading {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 20px 0;
}

.card-body h6 {
    font-size: 1.3rem;
    font-weight: 700;
}

.card-body p {
    font-size: 1rem;
    font-weight: 600;
    color: rgb(65, 65, 65);
}

/* Swiper */
.swiper {
    padding: 10px 5px;
}

.swiper-slide {
    width: 260px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0d6efd;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

/* travel */
.travel {
    background-color: #f1f5f9;
    padding: 50px;
    margin-top: 50px;
}

.inner {
    background-color: white;
    padding: 10px;
}

.section-title {
    color: #0e7490;
    font-weight: bold;
    font-size: 2rem;
    margin-top: 10px;
}

p.desc {
    font-size: 0.9rem;
}


/* Why Section */
.why {
    background: #ddd6fe;
    /* padding: 30px 100px; */
    padding: 30px;
    text-align: center;
}

.why-card img {
    width: 100px;
    height: auto;
}

.why-card p {
    font-size: 1.1rem;
    font-weight: 600;
}


/* Breadcrumb */
.breadcrumb {
    background: none;
    font-size: 14px;
    margin-top: 15px;
}




/* ========Card Box (Holiday Grid)======== */


/* Tabs */
.tabs {
    background: #1e2a5a;
    border-radius: 10px;
    padding: 5px;
    display: flex;
    justify-content: center;
}

.tabs button {
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.tabs button.active,
.tabs button:hover {
    background: #fff;
    color: #000;
}

.package-card {
    background-color: transparent !important;
    box-shadow: none !important;
    height: 300px !important;
}

.card-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;

    transition: 0.3s;
    height: 300px;
}

.card-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* Dark overlay layer */
.card-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
    transition: 0.3s;
}

/* Hover effects */
.card-box:hover {
    transform: translateY(-5px);
}

.card-box:hover img {
    transform: scale(1.08);
}

.card-box:hover::after {
    background: rgba(0, 0, 0, 0.35);
}

/* Explore button hidden by default */
.explore-btn {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #0d6efd;
    color: #fff;
    width: 200px;
    height: 40px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    z-index: 2;
    transition: all .3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;

}

/* Smooth appear */
.card-box:hover .explore-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.card-overlay {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;

    /* 🔥 improved spacing */
    /* padding: 10px 25px; */

    width: 200px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;

    /* 🔥 better shape */
    border-radius: 30px;

    /* 🔥 typography improvement */
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;

    /* 🔥 better look */
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.explore-btn:hover {
    background: #084298;
}

/* ===========Card Box (Holiday Grid) ============*/




/* ============= Flight Banner ================*/
.flight-banner {
    height: 460px;
    border-radius: 5px;
    /*position:relative;*/
}

/* Floating Form */
.flight-form-box {
    background: #fff;
    max-width: 850px;
    margin-top: -80px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Inputs */
.flight-form-box label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.flight-form-box .form-control {
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
}


/* ============= Flight Banner ================*/


/* ============= Train Banner ================*/
.train-banner {
    height: 460px;
    border-radius: 5px;
}

/* ============= Train Banner ================*/


/*=========== About Us =============*/

/* About Banner */
.about-banner {
    height: 460px;
    border-radius: 8px;
    position: relative;
    /*margin:0 15px;*/
}

.about-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.about-banner h1 {
    position: relative;
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    z-index: 2;
}

.about-details p {
    font-size: 17px;
    text-align: justify;
}

/*=========== About Us =============*/




/*============== Contact ===============*/

/* Contact Cards */
.contact-card {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
    background-color: #e0ebeb;
}

.contact-card h6 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.contact-card p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

/* Form Box */
.contact-form-box {
    background: #e0ebeb;
    padding: 50px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

/* Inputs polish */
.contact-form-box .form-control {
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
}

.contact-form-box label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-form-box ::placeholder {
    font-size: 16px;
    font-weight: 500;
    color: rgb(168, 168, 168);
}

/*============== Contact ===============*/



/* Footer */
.footer {
    background: #172554;
    color: #fff;
    padding: 50px 0 20px;
}

.footer h2 {
    font-weight: 700;
}

.footer p {
    font-size: 14px;
    margin: 5px 0;
}

.address-row {
    margin-bottom: 20px;
}

.social {
    margin-top: 30px;
    font-size: 1.8rem;
    display: flex;
    gap: 15px;
}

.footer-bottom {
    border-top: 1px solid white;
    margin-top: 20px;
    padding-top: 10px;
    text-align: center;
    color: #ccc;
}





.hotel-banner-img {
    width: 100%;
    max-height: 600px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hotel-img img {
    width: 200px;
    height: auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}