
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/


/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}
/*** Destination End ***/


/*** Packages Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; 
    z-index: 5;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev,
.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -60px;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    border: 2px solid var(--bs-primary) !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
}
.packages .packages-carousel .owl-nav .owl-prev {
    left: 0;
}
.packages .packages-carousel .owl-nav .owl-next {
    right: 0;
}
.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary) !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}
.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(135deg, #ed5145 0%, #f8b14c 100%) !important;
    border-color: transparent !important;
    transform: translateY(-3px) scale(1.08) !important;
    box-shadow: 0 8px 20px rgba(237, 81, 69, 0.35) !important;
}
.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: #ffffff !important;
}
/*** Packages End ***/


/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.ExploreTour .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}
/*** Explore Tour End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
   opacity: 1;
   margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(36, 115, 130, 0.5);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
    background: linear-gradient(rgba(19, 53, 123, .8), rgba(19, 53, 123, .8)), url(../img/tour-booking-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}


.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}



/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(19, 53, 123, .5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px; 
    height: 100px; 
    top: 0; left: 50%; 
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary); 
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev,
.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -60px;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    border: 2px solid var(--bs-primary) !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
}
.testimonial .testimonial-carousel .owl-nav .owl-prev {
    left: 0;
}
.testimonial .testimonial-carousel .owl-nav .owl-next {
    right: 0;
}
.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary) !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}
.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(135deg, #ed5145 0%, #f8b14c 100%) !important;
    border-color: transparent !important;
    transform: translateY(-3px) scale(1.08) !important;
    box-shadow: 0 8px 20px rgba(237, 81, 69, 0.35) !important;
}
.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: #ffffff !important;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white); 
    border-style: dotted;
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer & Copyright Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}
.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** Copyright End ***/

/* ==========================================================================
   PREMIUM WEB APPLICATION DESIGN SYSTEM UPGRADE (JAIPUR TRAVEL HOUSE / BST)
   ========================================================================== */
:root {
    --bs-primary: #ed5145 !important;
    --bs-secondary: #f8b14c !important;
    --bs-dark: #0f172a !important;
    --bs-light: #f8fafc !important;
}

/* 1. Global Typography & Colors */
body {
    background-color: #fcfcfd;
    color: #475569;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    color: #0f172a;
    font-weight: 700;
}

/* 2. Stunning Section Titles */
.section-title,
.section-about-title,
.section-packages-title,
.section-services-title {
    background: linear-gradient(135deg, rgba(237, 81, 69, 0.12) 0%, rgba(248, 177, 76, 0.15) 100%) !important;
    color: #ed5145 !important;
    padding: 6px 20px !important;
    border-radius: 50rem !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    border: 1px solid rgba(237, 81, 69, 0.25) !important;
    box-shadow: 0 4px 10px rgba(237, 81, 69, 0.08) !important;
    margin-bottom: 15px !important;
}

.section-title::before, .section-title::after,
.section-about-title::before, .section-about-title::after,
.section-packages-title::before, .section-packages-title::after {
    display: none !important;
}

/* 3. Luxury Card Elevator Animation & Glassmorphism */
.blog-item,
.packages-item,
.services-item,
.service-item,
.guide-item,
.about-item,
.card {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.blog-item:hover,
.packages-item:hover,
.services-item:hover,
.service-item:hover,
.guide-item:hover,
.about-item:hover,
.card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 50px rgba(237, 81, 69, 0.15) !important;
    border-color: rgba(237, 81, 69, 0.35) !important;
}

/* Card Image Zoom Effect */
.blog-img,
.packages-img,
.service-img,
.guide-img {
    overflow: hidden !important;
    position: relative !important;
}

.blog-img img,
.packages-img img,
.service-img img,
.guide-img img {
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.blog-item:hover .blog-img img,
.packages-item:hover .packages-img img,
.service-item:hover .service-img img,
.guide-item:hover .guide-img img {
    transform: scale(1.12) !important;
}

/* 4. Rich Button Gradients & Hover Effects */
.btn-primary,
.btn-gradient {
    background: linear-gradient(135deg, #ed5145 0%, #f8b14c 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50rem !important;
    font-weight: 600 !important;
    padding: 12px 30px !important;
    box-shadow: 0 6px 20px rgba(237, 81, 69, 0.35) !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover,
.btn-gradient:hover {
    background: linear-gradient(135deg, #d9382b 0%, #e6982b 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(237, 81, 69, 0.55) !important;
}

/* 5. Stunning Breadcrumb Banner Upgrade */
.bg-breadcrumb {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(237, 81, 69, 0.8) 100%), url('../img/bg-hero.jpg') !important;
    background-position: center !important;
    background-size: cover !important;
    padding: 90px 0 !important;
    position: relative !important;
    border-bottom: 4px solid #f8b14c !important;
    box-shadow: inset 0 -20px 30px rgba(0,0,0,0.3) !important;
}

.bg-breadcrumb h3 {
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4) !important;
}

.breadcrumb-item a {
    color: #f8b14c !important;
    font-weight: 600 !important;
    transition: color 0.3s ease !important;
}

.breadcrumb-item a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* 6. Blog & Packages Price Tags and Badges */
.packages-price {
    background: linear-gradient(135deg, #ed5145 0%, #f8b14c 100%) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-radius: 50rem !important;
    padding: 8px 20px !important;
    box-shadow: 0 4px 15px rgba(237, 81, 69, 0.4) !important;
}

.blog-date span {
    background: #0f172a !important;
    color: #f8b14c !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    padding: 6px 16px !important;
    border: 1px solid #f8b14c !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
}

/* 7. Newsletter Section Modern Polish */
.newsletter {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    border-top: 4px solid #ed5145 !important;
}

.newsletter h2 {
    color: #ffffff !important;
}

/* 8. Responsive Adjustments */
@media (max-width: 768px) {
    .bg-breadcrumb {
        padding: 60px 0 !important;
    }
    .blog-item, .packages-item, .service-item {
        margin-bottom: 20px !important;
    }
}

/* ==========================================================================
   9. BOOTSTRAP 5 OPACITY UTILITY FIX (PREVENTS INVISIBLE TEXT & EMPTY CIRCLES/BADGES)
   ========================================================================== */
.bg-primary.bg-opacity-10, .bg-primary.bg-opacity-15 { background-color: rgba(237, 81, 69, 0.12) !important; color: #ed5145 !important; }
.bg-primary.bg-opacity-20, .bg-primary.bg-opacity-25 { background-color: rgba(237, 81, 69, 0.20) !important; color: #ed5145 !important; }
.bg-primary.bg-opacity-50 { background-color: rgba(237, 81, 69, 0.50) !important; color: #ffffff !important; }
.bg-primary.bg-opacity-75 { background-color: rgba(237, 81, 69, 0.75) !important; color: #ffffff !important; }

.bg-success.bg-opacity-10, .bg-success.bg-opacity-15 { background-color: rgba(25, 135, 84, 0.12) !important; color: #198754 !important; }
.bg-success.bg-opacity-20, .bg-success.bg-opacity-25 { background-color: rgba(25, 135, 84, 0.20) !important; color: #198754 !important; }
.bg-success.bg-opacity-50 { background-color: rgba(25, 135, 84, 0.50) !important; color: #ffffff !important; }
.bg-success.bg-opacity-75 { background-color: rgba(25, 135, 84, 0.75) !important; color: #ffffff !important; }

.bg-warning.bg-opacity-10, .bg-warning.bg-opacity-15 { background-color: rgba(248, 177, 76, 0.20) !important; color: #b45309 !important; }
.bg-warning.bg-opacity-20, .bg-warning.bg-opacity-25 { background-color: rgba(248, 177, 76, 0.30) !important; color: #b45309 !important; }
.bg-warning.bg-opacity-50 { background-color: rgba(248, 177, 76, 0.50) !important; color: #0f172a !important; }
.bg-warning.bg-opacity-75 { background-color: rgba(248, 177, 76, 0.75) !important; color: #0f172a !important; }

.bg-info.bg-opacity-10, .bg-info.bg-opacity-15 { background-color: rgba(13, 202, 240, 0.15) !important; color: #0891b2 !important; }
.bg-info.bg-opacity-20, .bg-info.bg-opacity-25 { background-color: rgba(13, 202, 240, 0.25) !important; color: #0891b2 !important; }
.bg-info.bg-opacity-50 { background-color: rgba(13, 202, 240, 0.50) !important; color: #0f172a !important; }
.bg-info.bg-opacity-75 { background-color: rgba(13, 202, 240, 0.75) !important; color: #0f172a !important; }

.bg-danger.bg-opacity-10, .bg-danger.bg-opacity-15 { background-color: rgba(220, 53, 69, 0.12) !important; color: #dc3545 !important; }
.bg-danger.bg-opacity-20, .bg-danger.bg-opacity-25 { background-color: rgba(220, 53, 69, 0.20) !important; color: #dc3545 !important; }
.bg-danger.bg-opacity-50 { background-color: rgba(220, 53, 69, 0.50) !important; color: #ffffff !important; }
.bg-danger.bg-opacity-75 { background-color: rgba(220, 53, 69, 0.75) !important; color: #ffffff !important; }

.bg-dark.bg-opacity-10, .bg-dark.bg-opacity-15 { background-color: rgba(15, 23, 42, 0.08) !important; color: #0f172a !important; }
.bg-dark.bg-opacity-20, .bg-dark.bg-opacity-25 { background-color: rgba(15, 23, 42, 0.15) !important; color: #0f172a !important; }
.bg-dark.bg-opacity-50 { background-color: rgba(15, 23, 42, 0.50) !important; color: #ffffff !important; }
.bg-dark.bg-opacity-75 { background-color: rgba(15, 23, 42, 0.75) !important; color: #ffffff !important; }

.bg-white.bg-opacity-10, .bg-white.bg-opacity-15 { background-color: rgba(255, 255, 255, 0.15) !important; color: #ffffff !important; }
.bg-white.bg-opacity-20, .bg-white.bg-opacity-25 { background-color: rgba(255, 255, 255, 0.25) !important; color: #ffffff !important; }
.bg-white.bg-opacity-50 { background-color: rgba(255, 255, 255, 0.50) !important; color: #ffffff !important; }
.bg-white.bg-opacity-75 { background-color: rgba(255, 255, 255, 0.75) !important; color: #0f172a !important; }

.bg-light.bg-opacity-10, .bg-light.bg-opacity-15 { background-color: rgba(248, 249, 250, 0.15) !important; color: #f8f9fa !important; }
.bg-light.bg-opacity-50 { background-color: rgba(248, 249, 250, 0.50) !important; color: #0f172a !important; }
.bg-light.bg-opacity-75 { background-color: rgba(248, 249, 250, 0.75) !important; color: #0f172a !important; }

/* Global Universal Modern Circular Owl Carousel Navigation (<>) */
.owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 25px;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    outline: none !important;
}
.owl-carousel .owl-nav .owl-prev i,
.owl-carousel .owl-nav .owl-next i {
    color: var(--bs-primary) !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important;
}
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(135deg, #ed5145 0%, #f8b14c 100%) !important;
    border-color: transparent !important;
    transform: translateY(-4px) scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(237, 81, 69, 0.4) !important;
}
.owl-carousel .owl-nav .owl-prev:hover i,
.owl-carousel .owl-nav .owl-next:hover i {
    color: #ffffff !important;
}


/* ==========================================================================
   MOBILE-FIRST COMPLETE RESPONSIVE OVERHAUL  v5.0
   Target: All home page sections, carousels, cards, buttons, headings
   ========================================================================== */

/* ── Base: Mobile-first section spacing ── */
.container-fluid.py-5 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.container.py-5       { padding-top: 2rem !important; padding-bottom: 2rem !important; }

/* ── About / Image Grid Section ── */
.about-section .row.g-5 { --bs-gutter-y: 1.5rem; }

/* ── Section title headings scale ── */
h1.display-5, h1.display-6 { font-size: clamp(1.5rem, 5vw, 2.8rem) !important; }
h1.fw-bold               { font-size: clamp(1.3rem, 4.5vw, 2.4rem) !important; }
h2.fw-bold, h2.fw-black  { font-size: clamp(1.25rem, 4vw, 2rem) !important; }
h3.fw-bold               { font-size: clamp(1.1rem, 3.5vw, 1.6rem) !important; }
h4.fw-bold               { font-size: clamp(1rem, 3vw, 1.25rem) !important; }
p.fs-5                   { font-size: clamp(0.9rem, 2.5vw, 1.1rem) !important; }

/* ── Cards global polish ── */
.card, .services-item, .packages-item, .blog-item {
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 12px rgba(15,23,42,0.05) !important;
    transition: all 0.25s ease !important;
    overflow: hidden !important;
    background: #ffffff !important;
}
.card:hover, .services-item:hover, .packages-item:hover, .blog-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 28px rgba(15,23,42,0.1) !important;
    border-color: #cbd5e1 !important;
}

/* ── Typography polish ── */
h1, h2, h3, h4, h5, h6 { font-weight: 600 !important; letter-spacing: -0.3px !important; color: #0f172a !important; }
p { line-height: 1.65 !important; color: #475569 !important; }

/* ── Buttons global ── */
.btn { border-radius: 8px !important; font-weight: 500 !important; padding: 0.6rem 1.5rem !important; transition: all 0.2s ease !important; }
.btn:hover { transform: translateY(-2px) !important; box-shadow: 0 6px 16px rgba(0,0,0,0.12) !important; }

/* ============================================================
   PHONE (≤ 575px)  — Primary Mobile-First Breakpoint
   ============================================================ */
@media (max-width: 575.98px) {

    /* Hero video */
    .video-wrapper, .video-player { max-height: 55vw !important; min-height: 220px !important; }
    .hero-video-container { overflow: hidden; }

    /* Search bar */
    .search-bar { margin-top: -1rem !important; }
    .search-bar .bg-white { padding: 12px !important; border-radius: 16px !important; }
    .search-bar .rounded-pill { padding: 8px 10px !important; border-radius: 10px !important; }
    .search-bar form input, .search-bar form select { font-size: 0.85rem !important; }
    #heroSearchForm .col-lg-3 .btn { padding: 10px !important; font-size: 0.9rem !important; min-height: 44px; }

    /* Trust bar */
    .trust-bar-row > div { min-width: 130px !important; }
    .trust-bar-row h6 { font-size: 0.72rem !important; }
    .trust-bar-row small { font-size: 0.6rem !important; }

    /* About section: stack images into simple 2-col grid, hide floating badge on xs */
    #about-section .position-relative.py-3 .row > div { padding: 4px !important; }
    #about-section .row.g-3 > .col-6 > div { height: 150px !important; }
    #about-section .position-absolute.top-50 { display: none !important; }
    #about-section .col-lg-6:first-child { margin-bottom: 1rem !important; }
    #about-section .ps-lg-3 { padding-left: 0 !important; }
    #about-section .d-inline-block.rounded-pill { font-size: 0.75rem !important; }
    #about-section h1 { font-size: 1.35rem !important; margin-bottom: 0.75rem !important; }
    #about-section p { font-size: 0.9rem !important; margin-bottom: 0.75rem !important; }
    #about-section .row.g-3.mb-4 > .col-sm-6 > div { padding: 0.5rem 0.75rem !important; font-size: 0.85rem !important; }
    #about-section .row.g-3.mb-4 > .col-sm-6 > div i { font-size: 1rem !important; }
    #about-section .btn { padding: 10px 18px !important; font-size: 0.88rem !important; width: 100% !important; margin-right: 0 !important; margin-bottom: 8px !important; }

    /* Tour package filter buttons */
    .home-filter-btn { padding: 6px 12px !important; font-size: 0.78rem !important; }
    .home-filter-btn i { display: none !important; }

    /* Tour package cards */
    .home-tour-card .packages-img { height: 200px !important; }
    .home-tour-card .packages-item .p-4 { padding: 1rem !important; }
    .home-tour-card h4 { font-size: 0.95rem !important; margin-bottom: 0.5rem !important; }
    .home-tour-card .d-flex.gap-2 .btn { font-size: 0.78rem !important; padding: 8px 8px !important; }
    .home-tour-card .badge { font-size: 0.65rem !important; padding: 4px 8px !important; }
    .home-tour-card .fs-4.fw-black { font-size: 1.2rem !important; }

    /* Fleet section */
    #about-section ~ * .fleet-item .p-4 { padding: 0.9rem !important; }
    .fleet-item h4 { font-size: 0.95rem !important; }
    .fleet-item .position-relative { height: 180px !important; }
    .fleet-item .row.g-2 .btn { font-size: 0.75rem !important; padding: 7px 6px !important; }

    /* Fleet section header controls */
    .d-flex.align-items-center.justify-content-between.mb-4 h3 { font-size: 1rem !important; }
    .d-flex.align-items-center.justify-content-between.mb-4 .badge { display: none !important; }
    .car-prev-btn, .car-next-btn, .bus-prev-btn, .bus-next-btn { width: 36px !important; height: 36px !important; }

    /* Why Choose Us Bento */
    .why-choose-bento .col-lg-8 > div { min-height: 200px !important; padding: 1.2rem !important; }
    .why-choose-bento .col-lg-4 > div { min-height: auto !important; padding: 1.2rem !important; }
    .why-choose-bento h3 { font-size: 1rem !important; }
    .why-choose-bento h4 { font-size: 0.9rem !important; }
    .why-choose-bento p  { font-size: 0.82rem !important; }
    .why-choose-bento .rounded-circle[style*="65px"] { width: 48px !important; height: 48px !important; }
    .why-choose-bento .rounded-circle[style*="65px"] i { font-size: 1.2rem !important; }
    .why-choose-bento .d-none.d-md-block { display: none !important; }
    /* Guarantee banner */
    .why-choose-bento .d-flex.flex-column.flex-md-row { flex-direction: column !important; align-items: flex-start !important; gap: 1rem !important; }
    .why-choose-bento .d-flex.gap-3.flex-shrink-0 { flex-direction: row !important; width: 100% !important; }
    .why-choose-bento .d-flex.gap-3.flex-shrink-0 .btn { flex: 1 !important; padding: 10px 8px !important; font-size: 0.85rem !important; }
    /* Icon row inside hero bento card */
    .why-choose-bento .col-sm-4 { flex: 0 0 100%; max-width: 100%; margin-bottom: 4px; }

    /* Booking Form */
    .booking-section .col-lg-5 h1 { font-size: 1.3rem !important; }
    .booking-section .p-4.p-md-5 { padding: 1rem !important; }
    .booking-section h3 { font-size: 1rem !important; }
    .booking-section .form-floating label { font-size: 0.82rem !important; }
    .booking-section .btn[type="submit"] { font-size: 0.95rem !important; padding: 12px !important; }

    /* Testimonial carousel */
    .testimonial-item .card { padding: 1rem !important; }
    .testimonial-item h5 { font-size: 0.9rem !important; }
    .testimonial-item p  { font-size: 0.82rem !important; }
    .testimonial-item .d-flex.align-items-center.gap-3 > div:first-child { width: 40px !important; height: 40px !important; font-size: 0.9rem !important; }

    /* Special Offers & Exclusive Deals */
    .special-offers .col-lg-4 { margin-bottom: 1rem !important; }
    .special-offers .card > .position-relative { height: 170px !important; }
    .exclusive-deals .card > .position-relative { height: 180px !important; }
    .exclusive-deals h5, .special-offers h5 { font-size: 0.92rem !important; }
    .exclusive-deals p, .special-offers p { font-size: 0.8rem !important; }

    /* Floating buttons spacing from edge */
    .float-whatsapp { width: 44px !important; height: 44px !important; bottom: 14px !important; right: 14px !important; font-size: 22px !important; }
    .float-call     { width: 44px !important; height: 44px !important; bottom: 14px !important; left: 14px !important; font-size: 20px !important; }
    .back-to-top    { right: 14px !important; bottom: 68px !important; width: 40px !important; height: 40px !important; font-size: 14px !important; }
}

/* ============================================================
   SMALL TABLET (576px – 767px)
   ============================================================ */
@media (min-width: 576px) and (max-width: 767.98px) {

    .video-wrapper, .video-player { max-height: 50vw !important; }
    .search-bar { margin-top: -1.5rem !important; }

    #about-section .row.g-3 > .col-6 > div { height: 180px !important; }
    #about-section .position-absolute.top-50 { min-width: 200px !important; padding: 0.8rem !important; }
    #about-section .position-absolute.top-50 h3 { font-size: 1.15rem !important; }

    .home-tour-card .packages-img { height: 210px !important; }
    .fleet-item .position-relative { height: 200px !important; }

    .float-whatsapp { width: 48px !important; height: 48px !important; bottom: 15px !important; right: 15px !important; font-size: 24px !important; }
    .float-call     { width: 48px !important; height: 48px !important; bottom: 15px !important; left: 15px !important; font-size: 22px !important; }
    .back-to-top    { right: 15px !important; bottom: 75px !important; width: 44px !important; height: 44px !important; font-size: 16px !important; }
}

/* ============================================================
   TABLET (768px – 991px)
   ============================================================ */
@media (min-width: 768px) and (max-width: 991.98px) {

    .video-wrapper, .video-player { max-height: 55vh !important; }
    .search-bar { margin-top: -2rem !important; }

    #about-section .row.g-3 > .col-6 > div { height: 200px !important; }
    #about-section .position-absolute.top-50 { min-width: 220px !important; }

    .home-tour-card .packages-img { height: 220px !important; }

    .fleet-item .position-relative { height: 210px !important; }

    .why-choose-bento .col-lg-8 > div { min-height: 260px !important; }

    .float-whatsapp { width: 52px !important; height: 52px !important; bottom: 20px !important; right: 20px !important; }
    .float-call     { width: 52px !important; height: 52px !important; bottom: 20px !important; left: 20px !important; }
    .back-to-top    { right: 20px !important; bottom: 85px !important; }
}

/* ============================================================
   DESKTOP  (≥ 992px)  — Ensure no regression
   ============================================================ */
@media (min-width: 992px) {
    .video-wrapper, .video-player { max-height: 85vh !important; }
    .search-bar { margin-top: -3.5rem !important; }

    #about-section .row.g-3 > .col-6 > div { height: auto; }
    .home-tour-card .packages-img { height: 250px !important; }
    .fleet-item .position-relative { height: 220px !important; }
}

/* ── Utility: hover-scale should not over-scale on touch devices ── */
@media (hover: none) {
    .hover-scale:hover { transform: none !important; }
    .hover-scale:active { transform: scale(0.97) !important; }
}

/* ── Prevent horizontal scroll on all screens (body only, container-fluid removed to allow dropdowns) ── */
body { overflow-x: hidden !important; }

/* ── Owl carousel dots — mobile friendly sizing ── */
@media (max-width: 575.98px) {
    .owl-dots { margin-top: 12px !important; }
    .owl-dot span { width: 8px !important; height: 8px !important; margin: 3px !important; }
}

/* ── Why Choose Us section bento alias ── */
.container-fluid[style*="radial-gradient"] .container { position: relative; z-index: 1; }

/* ── Section headings compact on xs ── */
@media (max-width: 575.98px) {
    .text-center.mx-auto.mb-5 { margin-bottom: 1.5rem !important; }
    .text-center.mx-auto.mb-5 h5.section-title { font-size: 0.8rem !important; }
    .text-center.mx-auto.mb-5 h1 { font-size: 1.35rem !important; margin-bottom: 0.5rem !important; }
    .text-center.mx-auto.mb-5 p { font-size: 0.85rem !important; }
    .text-center.mt-5 { margin-top: 1.5rem !important; }
    .text-center.mt-5 .btn { width: 100% !important; max-width: 340px; padding: 12px 20px !important; font-size: 0.9rem !important; }
}

/* ── Fix about section image grid min-height on mobile ── */
@media (max-width: 575.98px) {
    #about-section .position-relative.py-3 { padding-top: 0 !important; padding-bottom: 0 !important; }
    #about-section .pt-4 { padding-top: 4px !important; }
    #about-section .pb-4 { padding-bottom: 4px !important; }
}

/* ── Booking section contact card ── */
@media (max-width: 575.98px) {
    .d-flex.align-items-center.justify-content-between.p-4 { padding: 1rem !important; flex-direction: column !important; gap: 0.75rem !important; align-items: flex-start !important; }
    .d-flex.align-items-center.justify-content-between.p-4 a.btn { align-self: flex-end !important; }
}

/* ── Navbar on mobile ── */
@media (max-width: 991.98px) {
    .navbar-modern .nav-link { margin: 4px 0 !important; border-radius: 10px !important; font-size: 1rem !important; padding: 10px 14px !important; }
    .navbar-cta-group { display: flex !important; flex-direction: column !important; gap: 8px !important; width: 100% !important; margin-top: 10px !important; }
    .navbar-cta-group .btn { width: 100% !important; justify-content: center !important; }
    .navbar-brand img { max-height: 55px !important; }
}

/* ── Extra: filter buttons on mobile ── */
@media (max-width: 575.98px) {
    .d-flex.justify-content-center.flex-wrap.gap-2.mb-5 { gap: 6px !important; margin-bottom: 1rem !important; justify-content: flex-start !important; overflow-x: auto !important; flex-wrap: nowrap !important; padding-bottom: 6px !important; scrollbar-width: none; }
    .d-flex.justify-content-center.flex-wrap.gap-2.mb-5 .btn { flex-shrink: 0 !important; font-size: 0.78rem !important; padding: 6px 12px !important; white-space: nowrap !important; }
}