/*** 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: capitalize;
    color: var(--bs-primary);
    font-size: 25px;
    /* padding-bottom: 5px; */
    font-weight: 600;
}

/* .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: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    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-control-prev, .carousel-control-next{
    opacity: 1;
    width: 100%;
    justify-content: end;
}
.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 85%;
    left: unset;
    border-radius: 50%;
    background-size: 50%;
    width: 30px;
    height: 30px;
    right: 90px;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 85%;
    right: 50px;
    border-radius: 50%;
    background-size: 50%;
    width: 30px;
    height: 30px;
}

.carousel-indicators{
    bottom: 30px;
}
.carousel-header .carousel .carousel-indicators li {
    opacity: 1;
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #fff;
    opacity: 0.2;
    margin: 0 5px;
    border-radius: 20px;
    transition: opacity 0.5s, background-color 0.5s, width 0.5s;
    transition-delay: 0.5s, 0.5s, 0s;
    border: none;
}
.carousel-header .carousel .carousel-indicators li.active{
    opacity: 1;
    background: #ffffff;
    /* width: 100px; */
    transition-delay: 0s;
}
.carousel-header  .carousel-inner{
    overflow: hidden;
    border-radius: 20px;
}
.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 480px;
    /* overflow: hidden;
    border-radius: 20px; */
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* border-radius: 20px; */
}

.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;
}



/*** 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 {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** 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  .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 185px;
    cursor: pointer;
}
.ExploreTour .national-item::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    top: 0;
    left: 0;
}
.ExploreTour  .national-item img {
    transition: 0.5s;
    height: 100%;
    min-height: 185px;
    object-fit: cover;
}

.ExploreTour  .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour  .national-item .national-info{
    position: absolute;
    bottom: 0;
    left: 10px;
    transition: 0.5s;
    z-index: 2;
}
/* 
.ExploreTour  .national-item:hover .national-content {
    background: rgba(19, 53, 123, .6);
} */


.ExploreTour  .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);
}


/* 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(19, 53, 123, 0.8);
}

.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 {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.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 Start ***/
.footer {
    background: var(--bs-dark) !important;
}
.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);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/


select {
    /* -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
    background: none;
    padding: 0px;
    border: none;
    font-size: 16px;
    width: 100%;
  }

  /* Optional styling */
  select:focus {
    outline: none;
    border-color: #007BFF;
    border: none;
    box-shadow: none;
  }
  .btn-primary:active:focus{
    box-shadow: none;
  }
  .carousel-header{
    position: relative;
    margin-top:20px;
    /* border-radius: 20px; */
    /* overflow: hidden; */
  }
  .cstm-nav-bar a {
    padding: 10px 20px;
    display: inline-flex;
    justify-content:center;
    align-items: center;
    gap: 12px;
    background: #f6fbff;
    color: #13357b;
    border: 1px solid #13357b ;
    border-radius: 10px;
    overflow: hidden;
}
.cstm-nav-bar a:hover{
    box-shadow: inset 300px 0 0 0 #13357b !important;
    color: #ffffff !important;
    border: 1px solid #fff ;
    border-radius: 10px;
    background: none;
}
.cstm-nav-bar {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.carousel_content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 550px;
    width: 100%;
    z-index: 2;
}
.carousel_content.stay {
    max-width: 900px;
}
/*.carousel-header .carousel-inner .carousel-item::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
} */
.slider_btn{
    background-color: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    position: relative;
}
.location-icon {
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    z-index: 1;
}
.icon {
    position: relative;
}
.slider_btn {
    background-color: #fff;
    border-radius: 20px;
    padding: 10px 30px 10px 40px;
    position: relative;
}
.search-bar {
    display: flex;
    align-items: center;
    /* border: 2px solid #13357b;
    border-radius: 5px;
    background-color: #fff;
    padding: 5px; */
    gap: 10px;
    /* background: #13357b; */
    /* overflow: hidden; */
}

.search-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-right: 2px solid #13357b;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
}
.search-item:nth-child(2){
    border-right: 0;
}

.search-item:last-child {
    border-right: none;
}

.search-item .icon {
    /* font-size: 1.2em; */
    margin-right: 8px;
    font-style: normal;
}
.search-item .icon img {
    max-width: 20px;
}
.search-item input {
    border: none;
    outline: none;
    font-size: 1em;
    color: #333;
    width: 100%;
}

.search-item input[readonly] {
    color: #555;
}

.search-button {
    background-color:3fff ; /* Matches the blue button color */
    color: #13357b;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    font-weight: bold;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #fff;
}

.search-button:hover {
    box-shadow: inset 300px 0 0 0 #13357b !important;
    color: #ffffff !important;
    border: 1px solid #fff;
    border-radius: 10px;
    background: none;
}

/* Dropdown and modal styling */
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

#guestSummary {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1em;
    color: #333;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    top: 50px;
    left: 0;
    z-index: 10;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
}

.counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.counter span {
    font-size: 1em;
    color: #333;
    flex: 1;
}

.counter button {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.2em;
    cursor: pointer;
    background-color: #f0f0f0;
}

.counter input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 1em;
    color: #333;
    outline: none;
    background: transparent;
}


.done-button {
    background-color: #13357b;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    margin-top: 15px;
}
.main-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.citytour-inner-section .city_block {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 10px;
}
.citytour-inner-section .city_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.citytour-inner-section{
    position: relative;
}
.citytour-inner-section  .owl-nav {
    position: absolute;
    width: 100%;
    top: 30%;
    transform: translateY(-30%);
}
.citytour-inner-section .owl-prev{
    position: absolute;
    background-image: url(../img/left-arrow.svg);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    left: -20px;
    font-size: 0;
}
.citytour-inner-section .owl-next{
    position: absolute;
    background-image: url(../img/right-arrow.svg);
    width: 24px;
    height: 24px;
    right: -20px;
    font-size: 0;
}
.citytour_carousel .item p {
    text-align: center;
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
}
.product_slider .owl-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 2;
}
.owl-dot.active{
    opacity: 1;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
}
.owl-dot span{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.2;
    display: flex;
}
.product_slider{
    position: relative;
    /* border: 1px solid #000; */
    border-radius: 10px;
    height: 100%;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}
/*.product_block::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    top: 0;
    left: 0;
    z-index: 1;
} */
.product_slider  .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}
.product_carousel:hover .owl-nav{
    display: block;
   
}
.product_slider .owl-prev{
    position: absolute;
    background-image: url(../img/left-arrow.svg);
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    left: 10px;
    font-size: 0;
    background-color: #fff;
    border-radius: 50%;
    background-size: 17px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: top left;
}
.product_slider .owl-next {
    position: absolute;
    background-image: url(../img/right-arrow.svg);
    width: 18px;
    height: 18px;
    right: 10px;
    font-size: 0;
    background-color: #fff;
    border-radius: 50%;
    background-size: 17px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: top right;
}
.product_block {
    height: 280px;
    max-width: 100%;
    position: relative;
    min-height: 280px;
    cursor: pointer;
}
.product_block img{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_det {
    padding: 10px;
}
.product_content {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.product_name {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product_name h3 {
    font-size: 18px;
    margin-bottom: 0;
}
.product_name span{
    font-size: 15px;
    color: #000;
    font-weight: 500;
}
.rating{
    flex-shrink: 0;
}
.heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
    width: 18px;
    height: 18px;
    /* background: #fff; */
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.ExploreTour {
    padding: 30px 0;
}
.section_text {
    display: block;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}
.about_inner {
    display: flex;
    justify-content: space-between;
    gap: 70px;
}
.about_inner .main-heading {
    flex: 1;
}
.about_img{
    flex-shrink: 0;
}
.about_img img {
    max-width: 400px;
}
.about_Section {
    background: #f6fbff;
    padding: 40px 0;
}
.about_project {
    padding: 30px 20px;
    border-radius: 20px;
    margin-top: 10px;
}
 .outer {
    display: flex;
    align-items: flex-start;
    /* border-right: 1px solid #dbdce6; */
    justify-content: center;
    gap: 15px;
    height: 100%;
}
.outer:nth-child(4){
    border-right: 0;
}
.outer p {
    margin: 0 0 0 10px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}
.outer p span {
    color: #6a6a6a;
    display: block;
    font-weight: 400;
    font-size: 14px;
    margin-top: 4px;
}
.catgory_img{
    position: relative;
}
.catgory_img::after{
    position: absolute;
    content: "";
    background-image: url(../img/light-shape.svg);
    left: 0;
    right: 0;
    margin: auto;
    top: 30px;
    bottom: 0;
    width: 110px;
    height: 94px;
    background-position: center;
    background-size: 80px;
    background-repeat: no-repeat;
}
.catgory_img {
    position: relative;
    flex: 0 0 110px;
}
.catgory_img img {
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    bottom: 0;
    margin: auto;
    z-index: 2;
    text-align: center;
    flex-shrink: 0;
}
.category-content {
    flex: 1;
}
.about{
    position: relative;
}
.about::before {
    position: absolute;
    content: "";
    background-image: url(../img/Paper\ Plane.jfif);
    width: 280px;
    height: 160px;
    top: 20%;
    left: 0;
    background-repeat: no-repeat;
    background-size: 300px;
}
.form-control:read-only{
    background-color: #fff;
    box-shadow: none;
    border: none;
    padding: 0;
}
.text-link{
    color: #13357b;
    font-weight: 500;
}
.search-item .form-select {
    padding: 0 10px;
    border: none;
}
.search-item .form-select:focus{
    box-shadow: none;
}
.cstm-nav-bar .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    border-radius: 50%;
    background-size: 50%;
    width: 30px;
    height: 30px;
    font-size: 0;
    background-image:
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");    background-repeat: no-repeat;
    background-color: #13357b;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
}

.cstm-nav-bar .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    border-radius: 50%;
    background-size: 50%;
    width: 30px;
    height: 30px;
    font-size: 0;
    background-image: url(
    "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-color: #13357b;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
}
.city_text{
    font-size: 20px;
}
.search-btn {
    padding: 13px;
    background: #13357b;
    border-radius: 10px;
}
.search-btn button {
    border: none;
    background: no-repeat;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}
.search-btn button i{
    font-size: 20px;
    color: #fff;
}
.search-btn button span{
    display: none;
}

@media(max-width:1399px){
    .about::before{
        background-size: 150px;
    }
}
@media(max-width:1199px){
    .traveller-img {
        text-align: center;
    }
    .traveller-img img {
        max-width: 400px;
        margin: auto;
    }
    .about::before {
        top: 7%;
        background-size: 140px;
    }
    .section-title{
        font-size: 25px;
    }
    .catgory_img {
        flex: 0 0 60px;
        text-align: center;
    }
    .catgory_img img{
        max-height: 30px;
        text-align: center;
        object-fit: contain;
    }
    .catgory_img::after{
        width: 100%;
        background-size: 60px;
    }
    .outer{
        gap: 5px;
    }
}
@media(max-width:991px){
    .carousel-indicators {
        bottom: 30px;
        margin: 0;
    }
    .city_text{
        font-size: 18px;
    }
    .carousel_content{
        max-width: 500px;
    }
    .carousel_content.stay{
        max-width: 720px;
    }
    .carousel-header .carousel-inner .carousel-item{
        min-height: 350px;
    }
    .about_img img {
        max-width: 250px;
    }
    .about_inner{
        gap: 20px;
    }
    .about::before {
        max-width: 170px;
        background-size: 160px;
    }
    .section-title{
        font-size: 25px;
    }
    .carousel-header {
        margin-top: 35px;
    }
    .traveller-img {
        text-align: center;
    }
    .traveller-img img{
        max-width: 400px;
        margin: auto;
    }
    .carousel-header .carousel-control-next .carousel-control-next-icon, .carousel-header .carousel-control-prev .carousel-control-prev-icon{
        width: 25px;
        height: 25px;
    }
    .carousel-header .carousel-control-prev .carousel-control-prev-icon{
        right: 85px;
    }
}
@media(max-width:767px){
    .carousel-header .carousel-control-prev .carousel-control-prev-icon, .carousel-header .carousel-control-next .carousel-control-next-icon{
        top: 89%;
    }
    .carousel-indicators {
        bottom: 0;
        margin-bottom: 1rem;
    }
    .search-btn{
        width: 100%;
        padding: 8px 20px;
    }
    .search-btn button{
        justify-content: center;
        width: 100%;
    }
    .search-btn button span {
        display: block;
        text-align: center;
        color: #fff;
    }
    .search-btn button i{
        display: none;
    }
    .carousel_content.stay {
        max-width: 470px;
    }
    .about::before{
        display: none;
    }
    .about_img {
        text-align: center;
    }
    .about_inner {
        gap: 20px;
        flex-direction: column;
    }
    .catgory_img::after{
        background-size: 60px;
        width: 100%;
    }
    .catgory_img {
        flex: 0 0 60px;
        text-align: center;
    }
    .catgory_img img{
        max-height: 30px;
        object-fit: contain;
        text-align: center;
    }
    .citytour-inner-section .owl-dots {
        display: flex;
        gap: 4px;
        align-items: center;
        justify-content: center;
        margin-top: 25px;
    }
    .citytour-inner-section .owl-dot span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #13357b;
        opacity: 1;
        display: flex;
    }
    .carousel-header .carousel-control-next .carousel-control-next-icon, .carousel-header .carousel-control-prev .carousel-control-prev-icon{
        width: 25px;
        height: 25px;
    }
    .cstm-nav-bar .owl-next{
        width: 25px;
        height: 25px;
    }
    .cstm-nav-bar .owl-prev{
        width: 25px;
        height: 25px;
    }
    .search-bar{
        flex-direction: column;
    }
}
@media(max-width:575px){
    .city_text{
        font-size: 16px;
    }
    .carousel_content.stay {
        max-width: 400px;
    }
    .citytour-inner-section .owl-dots {
        display: flex;
        gap: 4px;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }
    .citytour-inner-section .owl-dot.active span{
        background-color: #13357b;
        width: 6px;
        height: 6px;
        border-radius: 50%;
    }
    .citytour-inner-section .owl-dot span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #dddcdc;
        display: flex;
    }
    .carousel_content {
        max-width: 400px;
    }
    .carousel-indicators {
        bottom: 0;
        margin-bottom: 8px;
    }
    .cstm-nav-bar a{
        padding: 10px 10px;
    }
    .section-title {
        font-size: 20px;
    }
    .about::before{
        display: none;
    }
    .cstm-nav-bar .owl-prev, .cstm-nav-bar .owl-next{
        width: 20px;
        height: 20px;
    }
    .carousel-header {
        margin-top: 50px;
    }
    .cstm-nav-bar{
        top: -40px;
    }
    .cstm-nav-bar a {
        padding: 5px 8px;
        gap: 5px;
        font-size: 14px;
        /* border-radius: 0; */
    }
    .carousel-header .carousel-control-next .carousel-control-next-icon, .carousel-header .carousel-control-prev .carousel-control-prev-icon{
       display: none;
    }
    .carousel-header .carousel-inner .carousel-item {
        min-height: 260px;
    }
    .ExploreTour {
        padding: 30px 0;
    }
    .catgory_img::after {
        background-size: 50px;
    }
    .catgory_img img{
        max-height: 25px;
    }
    .about_project{
        padding: 15px 15px;
    }
    .traveller-img img {
        max-width: 250px;
    }
    .about_Section{
        padding: 30px 0;
    }
    .search-bar{
        flex-direction: column;
    }
    .search-item{
        padding: 8px 8px;
    }
}
@media(max-width:480px){
    .carousel_content.stay {
        max-width: 220px;
    }
    .carousel_content {
        max-width: 220px;
    }
    .citytour-inner-section .city_block {
        width: 70px;
        height: 70px;
    }
    .citytour_carousel .item p{
        font-size: 14px;
    }
    .ExploreTour .national-item img{
        min-height: 150px;
    }
    .ExploreTour .national-item{
        min-height: 150px;
    }
}