body {

    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    -webkit-text-size-adjust: 100%;


}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #0d6efd;
}






/* ===============model================= */
/* Modal width reduced */
.trip-modal .modal-dialog {
    max-width: 670px;
}

/* Modal box */
.trip-modal .modal-content {
    border-radius: 18px;
    padding: 14px 16px 18px;
}

/* Close button */

.trip-modal .modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    /* ✅ RIGHT SIDE */
    left: auto;
    /* ❌ LEFT DISABLE */
    z-index: 10;
}


/* Heading */
.trip-modal h5 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Description */
.trip-modal p {
    font-size: 13.5px;
    color: #666;
    margin-bottom: 14px;
}

/* Inputs */
.trip-modal .form-control {
    height: 42px;
    font-size: 13.5px;
    border-radius: 22px;
}

/* Button */
.trip-modal .btn-success {
    background: #0b8a45;
    border: none;
    padding: 9px;
    font-size: 14.5px;
    border-radius: 28px;
}

.trip-modal .btn-success:hover {
    background: #08753a;
}

/* Mobile safe */
@media (max-width: 576px) {
    .trip-modal .modal-dialog {
        max-width: 90%;
    }
}

/* ================ close model ==================== */


/*===============upper header headline ====glow-blink===============*/

.glow-blink {
    animation: glow 1s infinite alternate;
    display: inline-block;

}

@keyframes glow {
    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1.0);
    }
}




/* ==============shining button============= */

.btn {
    color: white;



    background: #32CD32;
    border-radius: 10px;

    transition: 0.3s !important;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12) !important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;

    &:hover {

        box-shadow: 0px 6px 5px -2px rgba(0, 0, 0, 0.2), 0px 4px 4px 0px rgba(0, 0, 0, 0.14), 0px 3px 10px 0px rgba(0, 0, 0, 0.12) !important;
    }
}

.btn:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100px;
    background-image: linear-gradient(120deg, rgba(239, 239, 239, 0) 30%, rgba(239, 239, 239, .5), rgba(239, 239, 239, 0) 70%);
    animation: shine 5s infinite linear;
}

@keyframes shine {
    0% {
        left: -100px
    }

    20% {
        left: 100%
    }

    100% {
        left: 100%
    }
}








/* ================== NAVIGATION ================== */




/* ========================== news_marque ====================== */

/* .news_marque {

    width: 100%;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
    background: linear-gradient(90deg, #ff7e00 0%, #ff512f 50%, #dd2476 100%);


}


.news_marque marquee {
    display: inline-block;
    min-width: 100%;
} */

/* .news_marque marquee a {
    color: #fff
}

.news_marque marquee a span {
    font-weight: 600;
    margin-left: 5px;
}

.news_marque marquee a img {
    width: 22px;
} */




.ticker {
    width: 100%;
    background: linear-gradient(90deg, #ff7e00 0%, #ff512f 50%, #dd2476 100%);
    overflow: hidden;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    padding: 10px 0;
}

.ticker .ticker-text {
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.ticker .ticker-text a {
    color: #fff;
    font-weight: 500;
    margin: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ticker .ticker-text:hover {
    animation-play-state: paused;
}

.offer-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

@keyframes scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ========.blink-amount=========== */
.blink-amount {
    color: #ffd166;
    font-weight: 700;
    animation: blinkGlow 1.2s infinite;
}

@keyframes blinkGlow {
    0% {
        opacity: 1;
        text-shadow: 0 0 5px #ffd166;
    }

    50% {
        opacity: .4;
        text-shadow: 0 0 20px #ffd166;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 5px #ffd166;
    }
}









/* ===== LOGO ===== */
.logo {}

.logo img {
    height: 70px;
    width: auto;
}


/* ===== SEARCH ===== */
.search-box {
    max-width: 420px;
    width: 100%;
    position: relative;
}

.search-box input {
    height: 44px;
    padding-left: 40px;
    border-radius: 30px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* ===== RIGHT SIDE ===== */
.phone {
    font-weight: 600;
}

.login-btn {
    background: #f06036;
    color: #fff;
    border-radius: 30px;
    padding: 8px 22px;
}

.login-btn:hover {
    background: #000;
    color: #fff;
}

/* ===== DESKTOP MENU BAR ===== */
.menu-bar {
    border-top: 1px solid #eee;
}

.nav-link {
    color: #000 !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== MEGA DROPDOWN ===== */
.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    border-radius: 0;
    border-top: 1px solid #eee;
    padding: 25px 40px;
}

.mega-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.mega-menu a {
    display: block;
    padding: 6px 0;
    color: #444;
    font-size: 14px;
    text-decoration: none;
}

.mega-menu a:hover {
    color: #0b8a45;
    font-weight: 500;
}

/* Hover mega menu only on desktop */
@media (min-width: 992px) {
    .mega-dropdown:hover .mega-menu {
        display: block;
    }
}

/* ================== MOBILE ================== */

@media (max-width: 991px) {

    /* Hide desktop menu */
    .menu-bar {
        display: none;
    }

    /* Search spacing */
    .search-box {
        margin: 15px 0;
    }

    .navbar .offcanvas .offcanvas-header .img_box {
        width: 80px;
        height: 70px;
    }

    .navbar .offcanvas .offcanvas-header .img_box img {
        width: 100%;
    }
}

/* ===== OFFCANVAS MOBILE MENU ===== */

.mobile-menu {
    width: 85%;
    max-width: 360px;
}

/* Z-index fix */
.offcanvas {
    z-index: 1055 !important;
}

.offcanvas-backdrop {
    z-index: 1050 !important;
}


/* Mobile nav list */
.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #eee;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

.mobile-nav a i {
    width: 20px;
}

/* Sub menu */
.sub-link {
    padding: 10px 45px;
    font-size: 14px;
    color: #555;
    display: block;
}

/* Mobile footer */
.mobile-footer {
    padding: 15px;
    border-top: 1px solid #eee;
}

/* ===== FORCE HIDE MOBILE MENU ON DESKTOP ===== */
@media (min-width: 992px) {
    .mobile-menu {
        visibility: hidden !important;
        transform: translateX(100%) !important;
        pointer-events: none;
    }
}



/* ==================hero section================== */



.hero_section {
    position: relative;
    height: 600px;
    overflow: hidden;

}

.hero_section .heroSwiper,
.heroSwiper .swiper-slide {
    height: 100vh;
}


.hero_section .bg-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark overlay */
.hero_section .bg-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Hero text */
.hero_section .hero_part {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    flex-direction: column;
}

.hero_section .heading {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    margin-bottom: 40px;
}






















.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Common button style */
.hero-btn {
    padding: 14px 36px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* LEFT BUTTON – Primary */
.primary-btn {
    background: linear-gradient(135deg, #0b8a45, #10c776);
    color: #fff;
    box-shadow: 0 12px 28px rgba(16, 199, 118, 0.45);
}

/* RIGHT BUTTON – Secondary */
.secondary-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    border: 2px solid #fff;
    backdrop-filter: blur(6px);
}

/* Hover effects */
.hero-btn:hover {
    transform: translateY(-3px) scale(1.03);
}

/* Shine animation */
.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.45),
            transparent);
    transition: 0.6s;
}

.hero-btn:hover::before {
    left: 120%;
}

/* Pulse only for primary */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 199, 118, 0.7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(16, 199, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 199, 118, 0);
    }
}

.primary-btn {
    animation: pulse 2.8s infinite;
}

/* Mobile adjustment */
@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }
}








/* ===================theme section ======================== */





.explore-theme-section {

    background: #fff;
}

.explore-theme-section .section-title {
    font-weight: bold;
    color: #333;
    font-size: 32px;

}

.explore-theme-section .call-text {
    font-size: 14px;
    color: #555;
}

.explore-theme-section .call-text span {
    color: #1aa59a;
    font-weight: 600;
}

/* Slider wrapper */
.explore-theme-section .theme-slider-wrapper {
    position: relative;
}

/* Theme Card */
.explore-theme-section .theme-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.explore-theme-section .theme-card h6 {
    margin-top: 10px;
    font-weight: 600;
}

.explore-theme-section .theme-card p {
    font-size: 13px;
    color: #777;
}

/* Arrows (same to same) */
.explore-theme-section .theme-prev,
.theme-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: #6b6b6b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.explore-theme-section .theme-prev {
    left: -25px;
}

.explore-theme-section .theme-next {
    right: -25px;
}

.explore-theme-section .theme-prev i,
.theme-next i {
    font-size: 16px;
}

/* Hover */
.explore-theme-section .theme-prev:hover,
.theme-next:hover {
    background: #444;
}

/* Mobile */
@media(max-width:768px) {

    .explore-theme-section .theme-prev,
    .theme-next {
        display: none;
    }
}



/* {{-- =====================why-section======================== --}} --}} */


.why-section {
    background: linear-gradient(#eef4fb, #f6f9fd);
    padding: 60px 0px;
    text-align: center;
}

.why-section h2 {
    font-size: 36px;
    color: #1b2a4e;
    margin-bottom: 70px;
    font-weight: bold;
    letter-spacing: 2.6px;
}

.why-section .cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.why-section .card {
    background: white;
    padding: 26px 30px;
    border-radius: 30px;
    width: 280px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.35s ease;
    cursor: pointer;
}

.why-section .card:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 5px;
    background: #d4a63f;
    border-radius: 20px;
}

.why-section .icon-circle {
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.why-section .blue {
    background: linear-gradient(#e8f2ff, #ffffff);
}

.why-section .gold {
    background: linear-gradient(#fff3dd, #ffffff);
}

.why-section .icon-circle img {
    width: 90%;
    object-fit: contain;
}

.why-section .card h3 {
    font-size: 36px;
    color: #1b2a4e;
    margin: 0;
}

.why-section .card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    background: #fff;
}

.why-section .card h3 span {
    color: #d4a63f;
}

.why-section .card h4 {
    font-size: 18px;
    margin: 10px 0;
    color: #1b2a4e;
}

.why-section .card p {
    color: #6f7c92;

}

/* ================getaway-section================ */


.getaway-section {
    padding: 60px 0;

    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.getaway-section .getaway-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.getaway-section .getaway-header h2 {
    font-size: 30px;
    font-weight: 700;
}

.getaway-section .getaway-header p {
    color: #777;
    margin: 0;
}

.getaway-section .view-all {
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
}

.getaway-section .getaway-card {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.getaway-section .getaway-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.getaway-section .getaway-content {
    padding: 15px;
}

.getaway-section .getaway-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.getaway-section .getaway-content a {
    color: #000;

    text-decoration: none;
}

/* Arrows */
.getaway-section .getaway-prev,
.getaway-next {
    position: absolute;
    top: 40%;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.getaway-section .getaway-prev {
    left: -10px;
}

.getaway-section .getaway-next {
    right: -10px;
}

/* Mobile */
@media (max-width: 768px) {
    .getaway-section .getaway-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}






/* {{-- =============testimonial================= --}} */




.testimonial {
    background: linear-gradient(#eef4fb, #f8fbff);
    padding: 50px 8% 70px 8%;
    text-align: center;
}

.testimonial h2 {
    font-size: 40px;
    color: #1b2a4e;
    margin-bottom: 60px;
}

.testimonial .stars {
    color: #f4b400;
    font-size: 22px;
    margin-bottom: 20px;
}

.testimonial .testimonial-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.testimonial .testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    width: 320px;
    text-align: left;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.testimonial .stars {
    text-align: left;
}

.testimonial .testimonial-card p {
    color: #5d6c85;
    line-height: 1.7;
    font-size: 16px;
}

.testimonial .user {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.testimonial .user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial .user h4 {
    margin: 0;
    color: #1b2a4e;
    font-size: 20px;
}


.testimonial .user span {
    color: #3b82f6;
    font-size: 14px;
}

/* ====================domestic_plan_Swiper================= */


.section_domastic {
    margin: 60px 0px;
}

.section_domastic .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.section_domastic .head h2 {
    margin: 0;
    font-size: 42px
}

.section_domastic .head p {
    margin: 6px 0 0;
    color: #6b7280
}

.section_domastic .view-all {
    text-decoration: none;
    color: #2563eb;
    font-weight: 700
}

.section_domastic .swiper {
    padding: 10px 8px 50px
}

.section_domastic .card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 460px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    transition: all .4s ease
}

.section_domastic .card:hover {
    transform: translateY(-10px)
}

.section_domastic .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.section_domastic .card:hover img {
    transform: scale(1.08)
}


.section_domastic .overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 22px;
    animation: fadeUp .8s ease
}

.section_domastic .titleRow {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.section_domastic .title {
    font-size: 18px;
    font-weight: 700;
}

.section_domastic .dates_details {

    font-size: 14px
}

.section_domastic .meta {
    display: flex;
    justify-content: space-between;

    color: #4b5563;
    font-weight: 600;
    align-items: center;
}

.section_domastic .price {
    color: #16a34a;
    font-size: 18px;
    font-weight: 800
}

.section_domastic .btn {
    display: block;
    text-align: center;
    background: #0b69b7;
    color: #fff;
    padding: 12px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
    margin-top: 10px;
}


.section_domastic .swiper-button-lock {
    display: flex !important;
}



.section_domastic .btn:hover {
    background: #095a9d
}

.section_domastic .swiper-button-next,
.section_domastic .swiper-button-prev {
    width: 54px;
    height: 54px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    color: #111
}

.section_domastic .swiper-pagination-progressbar {
    height: 4px !important;
    border-radius: 999px;
    overflow: hidden
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}



/* ===================international_plan_Swiper================= */
.section_interantional {
    max-width: 1200px;
    margin: auto
}

.section_interantional .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    align-items: center;
}

.section_interantional .head h2 {
    font-size: 42px;
    margin: 0 0 8px;

}

.section_interantional .head p {
    margin: 0;
    color: #6b7280;

}

.section_interantional .view-all {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;

}

.section_interantional .swiper {
    padding: 8px 2px 42px
}

.section_interantional .swiper-button-prev:after {
    font-size: 26px;
}

.section_interantional .swiper-button-next:after {
    font-size: 26px;
}

.section_interantional .swiper-slide {
    height: auto
}

.section_interantional .card {
    height: 620px;
    border-radius: 24px;
    overflow: hidden;
    position: relative
}

.section_interantional .card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.section_interantional .fav {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    display: grid;
    place-items: center;
    font-size: 20px
}

.section_interantional .overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, .9);
    border-radius: 20px;
    padding: 18px
}

.section_interantional .titleRow,
.section_interantional .meta {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.section_interantional .title {
    font-size: 24px;
    font-weight: 800
}

.section_interantional .rating {
    font-size: 16px
}

.section_interantional .meta {
    margin: 14px 0 18px;
    color: #4b5563;
    font-weight: 700
}

.section_interantional .price {
    color: #16a34a;
    font-size: 18px;
    font-weight: 800
}

.section_interantional .btn {
    display: block;
    background: #0b69b7;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700
}

.section_interantional .swiper-button-next,
.section_interantional .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
    color: #111
}

.section_interantional .swiper-pagination-progressbar {
    height: 4px !important;
    background: #e5e7eb !important;
    position: relative !important;
    margin-top: 22px;
    width: 100% !important;
    border-radius: 999px;
    overflow: hidden
}

.section_interantional .swiper-pagination-progressbar-fill {
    background: #f59e0b !important;
    height: 100% !important;
    border-radius: 999px
}

.section_interantional .swiper-button-prev {
    left: -6px
}

.section_interantional .swiper-button-next {
    right: -6px
}

@media(max-width:768px) {


    .section_interantional .head h2 {
        font-size: 34px
    }

    .section_interantional .head p {
        font-size: 16px
    }

    .section_interantional .view-all {
        font-size: 18px
    }

    .section_interantional .card {
        height: 460px
    }
}



/* ================support-section================ */


.support-section {
    padding: 40px 0;
}

.support-section .support-container {
    max-width: 1100px;
    margin: auto;
    background: #3b3f52;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left */
.support-section .support-left img {
    width: 180px;
}

/* Right */
.support-section .support-right {
    color: #fff;
}

.support-section .support-right h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.support-section .support-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    margin-bottom: 12px;
}

.support-section .support-item i {
    font-size: 22px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width:768px) {
    .support-section .support-container {
        flex-direction: column;
        text-align: center;
    }

    .support-section .support-left img {
        width: 140px;
    }

    .support-section .support-item {
        justify-content: center;
        font-size: 18px;
    }
}



/* =================== Contact Page CSS =================================== */



/* Banner */
.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.contact-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    margin: 30px;
    z-index: -99;
}

.contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-banner .banner-text {
    position: absolute;
    top: 20%;
    left: 40px;
    color: #fff;
    z-index: 2;
}

.contact-banner .banner-text h1 {
    font-size: 52px;

    font-weight: bold;
    letter-spacing: 1.9px;
}

.contact-banner .banner-text p {
    opacity: 0.9;
    width: 50%;
}

/* Container */
.contact-container {
    max-width: 1100px;
    margin: -80px auto 50px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    padding: 0 20px;
}

/* Form */
.contact-form {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

.contact-form span {
    color: #999;
    font-size: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.contact-form textarea {
    resize: none;
    height: 90px;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #4b8fd6, #2c6fb8);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

/* Info */
.contact-info {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-info p {
    margin-bottom: 12px;
    color: #444;
}

.contact-info i {
    color: #2c6fb8;
    margin-right: 8px;
}


.contact-info .social span {
    font-weight: 600;
}

.contact-info .social div i {
    margin: 10px 8px 0;
    font-size: 18px;
    cursor: pointer;
}

/* FAQ */
.faq-section {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.faq-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.faq-section .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.faq-section .faq-card {
    background: #fff;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.faq-section .faq-card h4 {
    margin-bottom: 6px;
    font-size: 15px;
}












/* trip_card_view */


.trip_card_view {
    height: 70vh;
    background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.trip_card_view h1 {
    font-size: 48px;
    font-weight: 700;
}

.trip_card_view .price-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.trip_card_view .btn-book {
    width: 100%;
    font-size: 18px;
    padding: 12px;
}

.trip_card_view .card {
    border: none;
    border-radius: 12px;
}






/* Hero */
.hero-img {
    border-radius: 8px;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Right Price Box */
.price-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.btn-orange {
    background: #ff6a00;
    color: #fff;
    font-weight: 600;
}

.btn-orange:hover {
    background: #e65c00;
    color: #fff;
}

/* Tabs */
.nav-tabs .nav-link.active {
    background: #0d6efd;
    color: #fff;
}

/* Section Card */
.card-custom {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

/* Itinerary Timeline */
.day-badge {
    background: #0d6efd;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}






/* ============trip_card_view_gallery============= */

.trip_card_view_gallery {

    border: 1px solid #dce8f7;
    border-radius: 8px;
    padding: 15px 15px 0px 15px;
    margin-bottom: 20px;
}


.trip_card_view_gallery .sub_head h5 {
    background: #cfe4f7;
    padding: 8px;
    border-radius: 5px 5px 5px 5px;
}

/* =========itinerary-wrapper============ */

.itinerary-wrapper {
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.itinerary-wrapper .main-heading {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.itinerary-wrapper .day-card {
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.itinerary-wrapper .day-title {
    background: #cfe4f7;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid #b6d4ea;
}

.itinerary-wrapper .day-content {
    padding: 10px 15px;
    background: #f9f9f9;
}

.itinerary-wrapper .day-content ul {
    padding-left: 20px;
    margin: 0;
}

itinerary-wrapper .day-content li {
    font-size: 13px;
    margin-bottom: 6px;
}


/* =================terms-wrapper============ */

.terms-wrapper {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #d6d6d6;
}

.terms-heading {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    border-left: 4px solid #0d6efd;
    padding-left: 10px;
}

.terms-card {
    background: #ffffff;
    border: 1px solid #d0d7de;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.terms-title {
    background: #cfe4f7;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 14px;
}

.terms-content {
    padding: 12px 18px;
}

.terms-content ul {
    margin: 0;
    padding-left: 20px;
}

.terms-content li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* =========holidays=========== */

.holidays {
    height: 300px;
    background: url('https://media.easemytrip.com/media/ppc/destination/Common/CommonBRuEXq.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}




.holidays::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.holidays .hero-content {
    position: relative;
    z-index: 2;
}

.holidays .search-box {
    display: flex;
    max-width: 600px;
    margin: auto;
    background: #fff;
    border-radius: 50px;
    padding: 10px;
}

.holidays .search-box input {
    flex: 1;
    border: none;
    padding: 10px 15px;
}

.holidays .search-box button {
    background: #f26522;
    border: none;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
}






/* Breadcrumb */
.holiday_filter .breadcrumb-custom {
    font-size: 14px;
    color: #6c757d;
}

.holiday_filter .breadcrumb-custom a {
    text-decoration: none;
    color: #007bff;
}

.holiday_filter .breadcrumb-custom span {
    margin: 0 6px;
}

.holiday_filter .breadcrumb-custom .active {
    color: #000;
    font-weight: 500;
}

/* Filter Bar */
.holiday_filter .filter-bar {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 40px;
}

.holiday_filter .filter-pill {
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.holiday_filter .filter-pill:hover {
    background: #f8f8f8;
}

.holiday_filter .reset-link {
    color: red;
    text-decoration: none;
    font-weight: 500;
}

/* Hero Banner */
.holiday_filter .hero-banner {
    background: url('https://images.unsplash.com/photo-1518684079-3c830dcef090?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 50px;
    color: #fff;
}

/* Gradient overlay */
.holiday_filter .hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 120, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.holiday_filter .hero-content {
    position: relative;
    z-index: 2;
}

.holiday_filter .hero-content h2 {
    font-size: 36px;
    font-weight: 700;
}

.holiday_filter .hero-content p {
    font-size: 22px;
    margin-bottom: 15px;
}

.holiday_filter .btn-orange {
    background: #ff6a00;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
}

.holiday_filter .btn-orange:hover {
    background: #e65c00;
}

.holiday_filter .tc-apply {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 12px;
    z-index: 2;
}




/* =============holidays_hero_section================= */
.holidays_hero_section {
    height: 500px;
    background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.holidays_hero_section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.holidays_hero_section .hero-content {
    position: relative;
    z-index: 2;
}

.holidays_hero_section .search-box {
    display: flex;
    max-width: 600px;
    margin: auto;
    background: #fff;
    border-radius: 50px;
    padding: 10px;
}

.holidays_hero_section .search-box input {
    flex: 1;
    border: none;
    padding: 10px 15px;
}

.holidays_hero_section .search-box button {
    background: #f26522;
    border: none;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
}







.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.compare {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #3b00ff;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
}

.duration-badge {
    position: absolute;
    bottom: -12px;
    left: 15px;
    background: #2b78e4;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.card-body {
    padding: 25px;
}

.package-title {
    font-weight: 700;
}

.route {
    font-size: 14px;
    color: #666;
}

.icon-row i {
    margin-right: 15px;
    font-size: 18px;
    color: #333;
}

.features {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.features li {
    font-size: 14px;
    margin-bottom: 6px;
}

.price-section {
    border-top: 1px solid #eee;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.new-price {
    font-size: 22px;
    font-weight: 700;
}

.view-btn {
    border: 2px solid #ff7a00;
    color: #ff7a00;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
}

.view-btn:hover {
    background: #ff7a00;
    color: #fff;
}



/* ==========category-bar========= */

.category-bar {
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    margin-top: -40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 70%;
}

.category-bar .cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.category-bar .cat-item p {
    margin-bottom: 0px;
}

.category-bar .img_box {
    height: 50px;
    overflow: hidden;
}

.category-bar .img_box img {
    width: 70px;
    border-radius: 10px;
    height: 100%;
}

/* ====trending_destinations========== */

.destination-card img,
.package-card img,
.deal-card img,
.season-card img {
    width: 100%;
    border-radius: 10px;
}

.trending_destinations .section-title {
    font-weight: 600;
}

/* ==============deals_you========== */

.deals_you .title {
    font-size: 38px;
    font-weight: 700;
}

.deals_you .subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* EXACT GRID */
.deals_you .grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    grid-template-rows: 300px 250px;
    gap: 28px;
}

/* GRID POSITION */
.deals_you .andaman {
    grid-column: 1;
    grid-row: 1;
}

.deals_you .thailand {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.deals_you .srilanka {
    grid-column: 3;
    grid-row: 1;
}

.deals_you .manali {
    grid-column: 1;
    grid-row: 2;
}

.deals_you .gujarat {
    grid-column: 1;
    grid-row: 2;
    display: none;
}

/* Gujarat removed from center */
.deals_you .dubai {
    grid-column: 3;
    grid-row: 2;
}

/* CARD STYLE */
.deals_you .card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.deals_you .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.deals_you .card:hover img {
    transform: scale(1.07);
}

/* EXACT GRADIENT FADE */
.deals_you .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: white;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 35%,
            rgba(0, 0, 0, 0.0) 100%);
}

.deals_you .content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.deals_you .content span {
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .deals_you .grid-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .deals_you .card {
        height: 260px;
    }

    .deals_you .andaman,
    .deals_you .thailand,
    .deals_you .srilanka,
    .deals_you .manali,
    .deals_you .dubai {
        grid-column: auto;
        grid-row: auto;
    }
}



/* ================.download-btn=================   */


.details_page .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #f26522;
    background: #f4f1ec;
    border: 2px solid #f26522;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.details_page .download-btn:hover {
    background: #f26522;
    color: #fff;
}

.details_page .download-btn .icon {
    display: flex;
    align-items: center;
}


.details_page .download_brochers {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
}

@media screen and (max-width:768px) {
    .details_page {
        overflow: hidden;
    }

    .details_page .download_brochers .mobile_right {
        width: 100%;
        text-align: right;
    }

    .details_page .download_brochers {
        flex-direction: column;
    }

    .details_page .nav {
        width: max-content;
        overflow: auto;
    }

    .details_page .mobile_right {
        overflow-x: auto;
    }



}






/* ============blogs_section=================   */



.blog_card_page {
    height: 380px;
    background: url('/images//banner_images/blogs_banner.webp') center/cover no-repeat;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}

.blog_card_page .hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px;
    color: #fff;
}

.blog_card_page .hero-content h2 {
    font-weight: 700;
}

.blog_card_middle .blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.blog_card_middle .blog-card:hover {
    transform: translateY(-5px);
}

.blog_card_middle .blog-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* =================.cta-section=============== */


.blog_card_middle .custom-tabs {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.blog_card_middle .custom-tabs .tab {
    padding: 10px 25px;
    border-radius: 12px;
    border: 1px solid #ddd;
    cursor: pointer;
    background: #fff;
    transition: 0.3s;
}

.blog_card_middle .tab.active {
    background: #1f6fff;
    color: #fff;
    border-color: #1f6fff;
}

















/* <!--blog CTA SECTION --> */

.blog-cta {
    padding: 60px 0;
}

/* Card Base */
.blog-cta .travel-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.blog-cta .travel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.blog-cta .travel-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

/* Dark Gradient */
.blog-cta .gradient-dark {
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.1));
}

/* Text */
.blog-cta .travel-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-cta .travel-text {
    font-size: 15px;
    opacity: 0.85;
}

.blog-cta .travel-overlay button {
    border-radius: 10px;
    padding: 5px 0px;
    color: black;

}

/* Button */
.blog-cta .booking-btn {
    margin-top: 20px;
    background: #fff;
    color: #000;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 500;
    border: none;
}

/* Small Card */
.blog-cta .small-card {
    height: 200px;
}

.blog-cta .small-card .travel-overlay {
    justify-content: flex-end;
}

/* Big Card */
.blog-cta .big-card {
    height: 422px;
}

.blog-cta .big-card .travel-overlay {
    justify-content: center;
    text-align: center;
}

/* Article Count */
.blog-cta .article-number {
    font-size: 40px;
    font-weight: 700;
}

/* Responsive */
@media(max-width:991px) {

    .blog-cta .big-card {
        height: 300px;
    }

}

@media(max-width:768px) {

    .blog-cta .small-card {
        height: 200px;
    }

    .blog-cta .big-card {
        height: 260px;
    }

    .blog-cta .travel-title {
        font-size: 20px;
    }

}





/* ================privacy_policy================= */
*/ .legal-page h1 {
    color: #0d2a4d;
}

.legal-page h3 {
    color: #1f3c88;
    font-weight: 600;
}

.legal-page p,
.legal-page li {
    font-size: 16px;
    line-height: 1.7;
}


/* ===============visting_image_details============= */

.visting_image_details {
    min-height: 280px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 70px;
    margin: 40px auto;

}


.visting_image_details::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(to right, rgba(255, 120, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.visting_image_details .hero-content {
    color: #fff;
    max-width: 520px;
    z-index: 2;
}

.visting_image_details .hero-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
}

.visting_image_details .hero-content p {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 24px;
}

.visting_image_details .btn-orange {
    background: #ff7300;
    color: #fff;
    padding: 12px 42px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .2);
}


/* ================.package-cards============== */


.package-cards {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    height: 100%;
}

.package-cards .package-image {
    position: relative;
}

.package-cards .package-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}



.package-cards .departure-badge {
    position: absolute;
    bottom: -18px;
    left: 20px;
    background: #2d7df6;
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
}

.package-cards .package-body {
    padding: 35px 25px 10px 15px;
}

.package-cards .package-body h3 {
    font-size: 20px;
    font-weight: 700;
}

.package-cards .package-cards.route-text {
    color: #666;
    margin: 12px 0;
}

.package-cards .icon-row {
    display: flex;
    gap: 4px;
    font-size: 24px;
    margin-bottom: 20px;
}

.package-cards .highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.package-cards .highlight-list li {
    margin-bottom: 10px;
    color: #222;
}

.package-cards .package-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 25px 10px;
    border-top: 1px solid #eee;
    padding: 10px 10px 25px 10px;
}

.package-cards .old-price {
    text-decoration: line-through;
    color: #888;
}

.package-cards .new-price {
    font-size: 26px;
    font-weight: 800;
}

.package-cards .btn-details {
    background: #31c33d;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 500;
}


.package-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}









.filter_packages {
    background: #f3f3f3;
    border-radius: 40px;
    padding: 14px 20px;
    overflow-x: auto;
    white-space: nowrap;
    margin: 20px auto;
}

.filter_packages .filter-scroll {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: max-content;
}

.filter_packages .filter-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 40px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    transition: 0.3s ease;
    cursor: pointer;
}

.filter_packages .filter-btn:hover {
    background: #f8f9fa;
    border-color: #bbb;
}

.filter_packages .reset-btn {
    color: red;
    font-size: 14px;
    font-weight: 600;
    margin-left: auto;
    text-decoration: none;
}

@media (max-width: 768px) {
    .filter_packages .filter-wrapper {
        border-radius: 20px;
        padding: 12px;
    }

    .filter_packages.filter-btn {
        font-size: 15px;
        padding: 12px 18px;
    }

    .filter_packages .reset-btn {
        font-size: 15px;
    }
}


/* =============breadcrumb-custom========== */

.breadcrumb-custom {
    margin: 20px auto;
}

.breadcrumb-custom a {}



















/* ======================trending-section=============== */







.trending-section center {}

.trending-section {
    margin: 40px 0px;
}

.trending-section .swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.trending-section .swiper-full-mobile {
    position: relative;
    margin: 50px auto;
    padding-bottom: 50px;
}

.trending-section .swiper-full-mobile:befores {
    content: "";
    width: 265px;
    background: url(http://md-aqil.github.io/images/Pixel-3-XL.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    height: 565px;
    z-index: 2;
    margin: auto;
}

.trending-section .swiper-full-mobile .swiper-slide {
    height: 100%;
}

.trending-section .swiper-full-mobile .swiper-slide img {
    width: 100%;
    height: 530px;
    object-fit: cover;

}

.trending-section .swiper-slide.swiper-slide-active img {
    border-radius: 00px;

}

.trending-section.swiper-pagination {
    position: relative;
    margin-top: 20px;
}











/* ========(index)======heading line============== */

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin: 40px 0;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    color: #ff7b02;
}

.section-heading .line {
    flex: 1;
    height: 1px;
    background: #795548;
    position: relative;
}

/* red dot */
.section-heading .line::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #795548;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* left side dot */
.section-heading .line:first-child::after {
    right: 0;
}

/* right side dot */
.section-heading .line:last-child::after {
    left: 0;
}

@media (max-width: 600px) {
    .section-heading h2 {
        font-size: 18px;
    }

    .section-heading {
        gap: 10px;
    }
}


/* ==================.feedback-section============== */

.feedback-section .review-card {
    background: #f8f9fa;
    border-radius: 16px;
}

.feedback-section .review-img {

    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    min-width: 55px;
    width: 8%;
}

.feedback-section .review-stars {
    font-size: 18px;
    letter-spacing: 2px;
}

@media screen and (max-width:768px) {
    .feedback-section .review-stars {
        font-size: 12px;
        letter-spacing: 0px;
        font-weight: bold;
    }


}



/* ==========footer================= */



.domestic-trips-section {
    background: #fffde6;
    padding: 50px 0;
}

.domestic-trips-section .section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.domestic-trips-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px 35px;
}

.domestic-trips-grid a {
    font-size: 16px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
}

.domestic-trips-grid a:hover {
    color: #0b8a45;
    text-decoration: underline;
}

/* Tablet */
@media (max-width: 992px) {
    .domestic-trips-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .domestic-trips-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
















/* ===============footer=============== */

.site-footer {
    background: #fffde6;
    padding: 0px 40px 20px;
    border-top: 1px solid #ddd;
    font-family: Arial, sans-serif;
    margin-top: 40px;
}

.site-footer .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.site-footer .footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.site-footer .footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.site-footer .footer-col ul {
    list-style: none;
    padding: 0;
}

.site-footer .footer-col ul li {
    margin-bottom: 8px;
}

.site-footer .footer-col ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.site-footer .footer-col ul li a:hover {
    text-decoration: underline;
}

.site-footer .map-btn {
    display: inline-block;
    border: 1px solid #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-top: 10px;
    text-decoration: none;
    color: #000;
}

.site-footer .social-icons a {
    font-size: 20px;
    margin-right: 12px;
    color: #000;
}

.site-footer .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.site-footer .footer-bottom p {
    font-size: 14px;
    margin: 0px;

}

.site-footer .payment-icons img {
    height: 28px;
    margin-left: 10px;
}

.site-footer .mt {
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .site-footer .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .site-footer .footer-container {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .site-footer .site-footer {
        padding: 0px;
    }
}





/* ================feedback-section============== */




.feedback-section {}

.feedback-section .feedback-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.feedback-section .feedback-card {
    border: 1px solid #efefef;
    border-radius: 18px;
    padding: 14px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.feedback-section .feedback-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.feedback-section .feedback-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.feedback-section .feedback-stars {
    font-size: 20px;
    color: #f4c430;
    white-space: nowrap;
}

.feedback-section .feedback-text {
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .feedback-section .feedback-title {
        font-size: 26px;
    }

    .feedback-section .feedback-card {
        padding: 12px;
    }
}



/* ============package-highlights============= */

.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    align-items: center;
    margin-bottom: 10px;
}

.package-highlights span {
    white-space: nowrap;
}




.location-card {
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
}

.location-card .overlay {
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}



/* ==============about_us================= */



.about_hero {
    padding: 30px 0 0px 0px;
}

.about_hero a {
    color: black;
}


.about_hero .highlight-section .section-title {
    margin-bottom: 30px;
}

.about_hero .hero-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
}

.about_hero .hero-title span {
    color: #f27d52;
}

.about_hero .hero-text {
    color: #666;
    margin-top: 25px;
    line-height: 1.8;
    max-width: 520px;
}

.about_hero .main-btn {
    background: #f27d52;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 25px;
    transition: .3s;
}

.about_hero .main-btn:hover {
    background: #111;
}

.about_hero .hero-images {
    position: relative;
    height: 520px;
}

.about_hero .hero-img {
    position: absolute;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.about_hero .img1 {
    width: 240px;
    height: 320px;
    left: 20px;
    top: 90px;
}

.about_hero .img2 {
    width: 240px;
    height: 240px;
    right: 40px;
    top: 0;
}

.about_hero .img3 {
    width: 200px;
    height: 220px;
    right: 0;
    bottom: 40px;
}

.about_hero.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
}

.about_hero .destination-card {
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
}

.about_hero .destination-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .4s;
}

.about_hero .destination-card:hover img {
    transform: scale(1.08);
}

.about_hero .destination-content {
    padding: 18px;
}

.about_hero .destination-content h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.about_hero .destination-content p {
    color: #666;
    margin: 0;
}

.about_hero.story-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 25px;
}

.about_hero .story-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.about_hero .story-content {
    padding: 20px;
}

.about_hero .story-content h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.about_hero .story-content p {
    color: #666;
    margin-top: 10px;
    line-height: 1.8;
}

.about_hero.highlight-box {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    height: 100%;
}

.about_hero .highlight-user {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.about_hero .highlight-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.about_hero .highlight-video {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.about_hero .highlight-video img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.about_hero .newsletter {
    margin-top: 80px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    padding: 90px 40px;
    background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1600&auto=format&fit=crop') center/cover;
}

.about_hero .newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.about_hero .story .section-title {
    margin-bottom: 30px;
}

.about_hero .newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.about_hero .newsletter h2 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 25px;
}

.about_hero .newsletter-form {
    max-width: 650px;
    margin: auto;
    display: flex;
    background: #fff;
    padding: 10px;
    border-radius: 60px;
}

.about_hero .newsletter-form input {
    border: none;
    outline: none;
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
}

.about_hero .newsletter-form button {
    border: none;
    background: #f27d52;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
}

.about_hero footer {
    padding: 70px 0 30px;
}

.about_hero .footer-title {
    font-weight: 800;
    margin-bottom: 20px;
}

.about_hero .footer-link {
    display: block;
    color: #666;
    margin-bottom: 10px;
}

.about_hero .swiper {
    padding-bottom: 20px;
}

.about_hero .story .row .col-lg-5 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media(max-width:991px) {

    .about_hero .hero {
        text-align: center;
    }

    .about_hero .hero-title {
        font-size: 50px;
    }

    .about_hero .hero-text {
        margin: auto;
        margin-top: 20px;
    }

    .about_hero .hero-images {
        margin-top: 50px;
        height: 420px;
    }

    .about_hero .img1 {
        width: 180px;
        height: 240px;
        left: 0;
    }

    .about_hero .img2 {
        width: 180px;
        height: 180px;
    }

    .about_hero .img3 {
        width: 170px;
        height: 180px;
    }

    .about_hero .newsletter h2 {
        font-size: 36px;
    }
}

@media(max-width:767px) {

    .about_hero .hero-title {
        font-size: 42px;
    }

    .about_hero .section-title {
        font-size: 32px;
    }

    .about_hero .newsletter {
        padding: 60px 20px;
    }

    .about_hero .newsletter-form {
        flex-direction: column;
        gap: 10px;
        border-radius: 24px;
    }

    .about_hero .newsletter-form input,
    .about_hero .newsletter-form button {
        width: 100%;
    }

    .about_hero .hero-images {
        height: 350px;
    }

    .about_hero .img1 {
        width: 150px;
        height: 190px;
    }

    .about_hero .img2 {
        width: 150px;
        height: 150px;
    }

    .about_hero .img3 {
        width: 140px;
        height: 160px;
    }
}