html,
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

/*** 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;
    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-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }

    25% {
        border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
    }

    50% {
        border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
    }

    75% {
        border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
    }

    100% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }
}

/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 100px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 100px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 8px !important;
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
    object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
    height: 700px;
}

.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    margin-right: 25%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    display: flex;
    width: 15px;
    height: 15px;
    border: 6px solid var(--bs-white);
    border-radius: 15px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: var(--bs-secondary);
    opacity: 1;
    transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--bs-primary);
}

@media (max-width: 992px) {
    .carousel-indicators [data-bs-target] {
        display: none;
    }
}

/*** Carousel Header End ***/


/* About page */
.bg-breadcrumb-about {

    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)),
        url("../../assets/images/fact-bg.webp");
    position: relative;
    overflow: hidden;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    transition: 0.5s;

}

/* Destination page */
.bg-breadcrumb-destination {

    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)),
        url("../../assets/images/carousel-1.webp");
    position: relative;
    overflow: hidden;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    transition: 0.5s;
}

/* Contact page */
.bg-breadcrumb-contact {

    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)),
        url("../../assets/images/contact-bg.webp");
    position: relative;
    overflow: hidden;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    transition: 0.5s;
}

/* Gallery page */
.bg-breadcrumb-gallery {

    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)),
        url("../../assets/images/gallery-bg.webp");
    position: relative;
    overflow: hidden;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    transition: 0.5s;
}

/* Taxi page */
.bg-breadcrumb-taxi {

    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)),
        url("../../assets/images/fact-bg.webp");
    position: relative;
    overflow: hidden;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    transition: 0.5s;
}

/* Hotel page */
.bg-breadcrumb-hotel {

    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)),
        url("../../assets/images/hotel-bg.webp");
    position: relative;
    overflow: hidden;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature {
    background: var(--bs-light);
}

.feature .feature-item {
    display: flex;
    border-radius: 10px;
}

.feature .feature-item .feature-icon span {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    ;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Features End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;

}

.about .about-img .img-1 {
    height: 85%;
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}

/*** About End ***/


/*** Fact Counter Start ***/
.counter {
    background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)), url(../images/bg-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    justify-content: center;
}

.counter .counter-item {
    background: linear-gradient(#fff,#fff);
    border-radius: 50%;
    height: 200px;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*** Fact Counter End ***/

/*** Services Start ***/
.service .service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 60px;
    background: var(--bs-light);
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    z-index: -1;
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover::after {
    opacity: 1;
}

.service .service-item .service-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Service End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item:hover {
    box-shadow: 0 4px 10px #ea001f4f;
    cursor: pointer;
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(234, 0, 30, .3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-card {
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 55%, #eef2ff 100%);
    padding: 1.75rem;
    box-shadow: 0 20px 60px rgba(21, 24, 56, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(21, 24, 56, 0.16);
}

.vehicle-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.vehicle-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 1s ease;
}

.vehicle-card:hover .vehicle-media img {
    transform: scale(1.05);
}

.vehicle-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--bs-dark);
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(16, 24, 40, 0.15);
}

.vehicle-meta {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.vehicle-meta span {
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vehicle-body {
    display: flex;
    flex-direction: column;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.vehicle-title {
    font-weight: 700;
}

.vehicle-subtitle {
    letter-spacing: 2px;
    font-size: 12px;
    color: #8f98b3;
    font-weight: 600;
}

.vehicle-chip {
    background: rgba(234, 0, 31, 0.1);
    color: var(--bs-primary);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vehicle-desc {
    color: #4a5168;
    font-size: 15px;
}

.vehicle-pricing .price-tile {
    background: var(--bs-white);
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid #eef0fc;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.vehicle-pricing .price-tile span {
    font-size: 8px;
    color: #8c92ab;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vehicle-pricing .price-tile h5 {
    font-weight: 700;
    margin-bottom: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.vehicle-pricing .price-tile h5 small {
    font-size: 12px;
    font-weight: 500;
    color: #8f98b3;
}

.vehicle-pricing .price-tile small {
    color: #8c92ab;
}

.vehicle-cta .btn {
    border-radius: 12px;
    font-weight: 600;
    text-transform: none;
    padding: 0.75rem 1.25rem;
}

@media (max-width: 767.98px) {
    .vehicle-media img {
        height: 260px;
    }

    .vehicle-card {
        padding: 1.25rem;
    }

    .vehicle-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.destination-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.destination-carousel .owl-nav .owl-prev,
.destination-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.destination-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.destination-carousel .owl-nav .owl-next {
    right: 0;
}

.destination-carousel .owl-nav .owl-prev:hover,
.destination-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.tour-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.tour-carousel .owl-nav .owl-prev,
.tour-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.tour-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.tour-carousel .owl-nav .owl-next {
    right: 0;
}

.tour-carousel .owl-nav .owl-prev:hover,
.tour-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.tour-carousel .owl-nav.disabled{
    display: block;
}

.car-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.car-carousel .owl-nav .owl-prev,
.car-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.car-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.car-carousel .owl-nav .owl-next {
    right: 0;
}

.car-carousel .owl-nav .owl-prev:hover,
.car-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.car-carousel .owl-nav.disabled{
    display: block;
}

.route-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.route-carousel .owl-nav .owl-prev,
.route-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.route-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.route-carousel .owl-nav .owl-next {
    right: 0;
}

.route-carousel .owl-nav .owl-prev:hover,
.route-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.route-carousel .owl-nav.disabled{
    display: block;
}

/*** Cars Categories End ***/


/*** Process Start ***/
.steps {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/bg-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.steps .steps-item {
    position: relative;
    background: var(--bs-secondary);
    border-radius: 10px;
}

.steps .steps-item h4,
.steps .steps-item p {
    color: var(--bs-white);
}

.steps .steps-item .setps-number {
    position: absolute;
    width: 64px;
    height: 64px;
    bottom: 0;
    right: 40px;
    font-weight: 900;
    border: 1px solid var(--bs-white);
    border-radius: 64px;
    transform: translateY(50%);
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** Process End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
    overflow: hidden;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 250px;
    /* set a fixed height for uniform boxes */
}


.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    /* background: rgba(255, 255, 255, 0.3); */
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills the box and crops extra */
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    position: relative;
    background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}

/*** Blog End ***/


/*** Banner Start ***/
.banner .banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.banner .banner-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .6);
    z-index: 2;
}

.banner .banner-item .banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    z-index: 5;
}

@media (min-width: 992px) {
    .banner .banner-item .banner-content h2 {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content h1 {
        font-size: 72px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content p {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

/*** Banner End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
    z-index: 2;
    transition: 0.5s;
}

.team .team-item:hover::after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-content p {
    color: var(--bs-white);
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    z-index: 4;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    border-radius: 70px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-light);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 4px solid var(--bs-white);
}

/* Enhanced Testimonial Styles */
.enhanced-testimonial {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.enhanced-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    z-index: 1;
}

.enhanced-testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.enhanced-quote {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    box-shadow: 0 5px 15px rgba(234, 0, 30, 0.3);
    z-index: 2;
}

.enhanced-quote i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.testimonial-avatar {
    position: relative;
    margin-right: 20px;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--bs-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.enhanced-testimonial:hover .avatar-ring {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

.enhanced-testimonial:hover .testimonial-avatar img {
    transform: scale(1.1);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bs-dark);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.testimonial-email {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.star-filled {
    color: #ffc107;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.star-empty {
    color: #e9ecef;
    font-size: 1.1rem;
}

.rating-text {
    margin-left: 8px;
    font-size: 0.9rem;
    color: var(--bs-secondary);
    font-weight: 600;
}

.testimonial-card p {
    background: #fff;
    position: relative;
    height: 150px;
    padding: 5px;
    overflow: hidden;
    overflow-y: scroll;
    margin-top: 10px;
}

.view-more-btn {
    color: var(--bs-primary) !important;
    text-decoration: none !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    padding: 5px 0;
}

.view-more-btn:hover {
    color: var(--bs-secondary) !important;
    transform: translateX(5px);
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Empty testimonials state */
.empty-testimonials {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    border: 2px dashed #dee2e6;
}

.empty-testimonials i {
    opacity: 0.5;
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background: #dee2e6;
    transition: all 0.3s ease;
    border: none;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    background: var(--bs-primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(234, 0, 30, 0.3);
}

.testimonial-carousel .owl-dots .owl-dot:hover {
    background: var(--bs-secondary);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .enhanced-testimonial {
        margin: 20px 10px;
    }

    .testimonial-inner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px !important;
    }

    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .testimonial-avatar img {
        width: 70px;
        height: 70px;
    }

    .testimonial-name {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .enhanced-testimonial {
        margin: 15px 5px;
        border-radius: 15px;
    }

    .testimonial-inner {
        padding: 25px 15px !important;
    }

    .testimonial-content {
        padding: 20px 15px !important;
    }

    .testimonial-avatar img {
        width: 60px;
        height: 60px;
    }
}

/* Scrollbar for testimonial description */
.testimonial .testimonial-carousel .testimonial-card::-webkit-scrollbar {
    width: 6px;
}

/* Background of scrollbar track */
.testimonial .testimonial-carousel .testimonial-card::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Scrollbar thumb */
.testimonial .testimonial-carousel .testimonial-card::-webkit-scrollbar-thumb {
    background: #f4c542;  /* Yellow color */
    border-radius: 10px;
}

/* Hover color */
.testimonial .testimonial-carousel .testimonial-card::-webkit-scrollbar-thumb:hover {
    background: #e6b100;
}


/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-light);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: #649B4A;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/

/* Floating icons wrapper */
.floating-icons .social-link {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Floating position */
.floating-icons {
    position: fixed;
    bottom: 120px;
    right: 25px;
    transition: right 0.3s ease;
    z-index: 9999999999;
}

/* Base icon style */
.floating-icons .btn-video-play-floating-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    position: relative;
    overflow: hidden;

    /* 🎯 Two animations: pop + float */
    animation: pop 1.5s infinite ease-in-out,
        float 3s infinite ease-in-out;
}

/* Control SVG size */
.floating-icons .btn-video-play-floating-icons svg {
    width: 60%;
    height: 60%;
    fill: #fff;
}

/* WhatsApp specific */
.WhatsApp .btn-video-play-floating-icons {
    background: #25D366;
}

/* Phone specific */
.phone .btn-video-play-floating-icons {
    background: #25D366;
}

/* Pop / bounce animation */
@keyframes pop {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
}

/* Floating up & down */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-icons {
        bottom: 80px;
        right: 15px;
    }

    .floating-icons .btn-video-play-floating-icons {
        width: 45px;
        height: 45px;
    }

    .floating-icons .btn-video-play-floating-icons svg {
        width: 55%;
        height: 55%;
    }
}

.car-card {
    transition: all 0.3s ease-in-out;
}

.car-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.room-item {
    transition: all 0.3s ease-in-out;
}

.room-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.tour-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
    margin-bottom: 10px;
}

.tour-item:hover {
    border-radius: 10px;
    overflow: hidden;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 10;
}



.testimonial-section {
    text-align: center;
    padding: 50px 20px;
}

.testimonial-section h1 {
    font-size: 2.5em;
    color: royalblue;
    margin-bottom: 20px;
}

.section-tag {
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: inline-block;
}

.testimonial-stats .stat-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 20px 60px rgba(20, 24, 62, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.testimonial-stats .stat-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #101828;
}

.testimonial-stats .stat-card h2 small {
    font-size: 1rem;
    font-weight: 600;
    color: #667085;
}

.testimonial-card.modern-testimonial {
    min-width: auto;
}

.modern-testimonial {
    background-color: #fff;
    border-radius: 24px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
}

.modern-testimonial::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.modern-testimonial .testimonial-quote-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(59, 130, 246, 0.12);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.modern-testimonial .testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1f2937;
}

.testimonial-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.15), transparent);
    opacity: 0.7;
}

.client-image {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    border: 3px solid #fff;
}

.client-image img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
}

.client-email {
    font-size: 0.9rem;
    color: #64748b;
}

.testimonial-rating i {
    color: #facc15;
    margin-right: 2px;
}

.testimonial-rating i.muted {
    color: #e2e8f0;
}

.review-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #0f766e;
    border-radius: 999px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.review-badge i {
    font-size: 1rem;
}

.testimonial-profile {
    position: relative;
    z-index: 1;
}

.empty-testimonials {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

@media (max-width: 991.98px) {
    .modern-testimonial {
        padding: 1.75rem;
    }

    .testimonial-stats .stat-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 575.98px) {
    .testimonial-stats .stat-card {
        flex: 1 1 100%;
    }

    .modern-testimonial {
        padding: 1.5rem;
    }
}

h3 {
    font-size: 1.3em;
    margin: 10px 0 5px 0;
    color: #333;
}

/* Tour Details */
.tour-hero {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.tour-hero-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tour-hero-media {
    position: relative;
    min-height: 320px;
}

.tour-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-feature-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 600;
    color: var(--bs-primary);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.tour-hero-content {
    padding: 2.5rem 3rem;
}

.hero-crumb {
    text-decoration: none;
    color: #475467;
    font-weight: 500;
}

.hero-crumb.active {
    color: var(--bs-dark);
}

.hero-crumb-divider {
    color: #98a2b3;
}

.tour-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
}

.tour-hero-subtitle {
    color: #475467;
    font-size: 1.05rem;
}

.tour-hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.tour-hero-meta .meta-item {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1rem 1.2rem;
}

.tour-hero-meta .meta-item small {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    color: #94a3b8;
}

.tour-hero-meta .meta-item h5 {
    margin: 0.5rem 0 0;
    color: #0f172a;
    font-weight: 700;
}

.tour-section {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.section-heading {
    font-weight: 700;
    font-size: 1.4rem;
    color: #101828;
    margin-bottom: 1.5rem;
}

.tour-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.overview-card {
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    background: #f8fafc;
}

.overview-card .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

.overview-card .value {
    font-weight: 600;
    color: #0f172a;
}

.tour-description p {
    color: #475467;
    line-height: 1.8;
}

.tour-gallery-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.itinerary-accordion .accordion-item {
    border: none;
    border-radius: 18px;
    margin-bottom: 1rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.itinerary-accordion .accordion-button {
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    gap: 0.5rem;
}

.itinerary-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(59, 130, 246, 0.08);
    color: #0f172a;
    box-shadow: inset 0 -1px 0 rgba(15, 23, 42, 0.05);
}

.itinerary-accordion .accordion-button:focus {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.step-badge {
    background: rgba(59, 130, 246, 0.12);
    color: var(--bs-primary);
    padding: 0.2rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

.step-title {
    color: #0f172a;
    font-size: 1rem;
}

.itinerary-accordion .accordion-body {
    padding: 1.25rem 1.5rem;
    background: #fff;
}

.step-description {
    color: #475467;
    line-height: 1.7;
}

.inclusion-card {
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: #f8fafc;
    padding: 1.5rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.inclusion-card .card-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.inclusion-card .card-body {
    color: #475467;
}

.tour-sticky-card {
    position: sticky !important;
    top: 90px;
    border-radius: 24px;
    padding: 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
    margin-bottom: 1.5rem;
}

.price-highlight small {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
}

.price-highlight h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #101828;
}

.tour-benefits li {
    padding: 0.4rem 0;
    color: #1f2937;
    font-weight: 500;
}

.contact-chip {
    background: rgba(16, 185, 129, 0.12);
    border-radius: 16px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: #065f46;
}

.contact-chip a {
    color: inherit;
    text-decoration: none;
}

.tour-form-card {
    border-radius: 24px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

@media (max-width: 991.98px) {
    .tour-hero-content {
        padding: 2rem;
    }

    .tour-sticky-card {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .tour-hero-card {
        border-radius: 18px;
    }

    .tour-section {
        padding: 1.5rem;
    }
}



/*--------------------------------------------------------------
# Travel Hero Section
--------------------------------------------------------------*/
.travel-hero {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.travel-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.travel-hero .hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.travel-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--background-color), transparent 60%) 0%,
            color-mix(in srgb, var(--background-color), transparent 80%) 50%,
            color-mix(in srgb, var(--background-color), transparent 90%) 100%);
    z-index: 1;
}

.travel-hero .hero-text {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    padding-top: 150px;
    padding-bottom: 80px;
}

.travel-hero .hero-text .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.travel-hero .hero-text .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.travel-hero .hero-text .hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.travel-hero .hero-text .hero-buttons .btn.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.travel-hero .hero-text .hero-buttons .btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    transform: translateY(-2px);
}

.travel-hero .hero-text .hero-buttons .btn.btn-outline {
    background-color: transparent;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
}

.travel-hero .hero-text .hero-buttons .btn.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.travel-hero .booking-form-wrapper .booking-form {
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
    backdrop-filter: blur(10px);
}

.travel-hero .booking-form-wrapper .booking-form .form-title {
    color: var(--heading-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.travel-hero .booking-form-wrapper .booking-form label {
    color: var(--heading-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.travel-hero .booking-form-wrapper .booking-form .form-control,
.travel-hero .booking-form-wrapper .booking-form .form-select {
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    /* color: var(--default-color);
    background-color: var(--surface-color); */
    transition: all 0.3s ease;
}

.travel-hero .booking-form-wrapper .booking-form .form-control:focus,
.travel-hero .booking-form-wrapper .booking-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
    outline: none;
}

.travel-hero .booking-form-wrapper .booking-form .form-control::placeholder,
.travel-hero .booking-form-wrapper .booking-form .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.travel-hero .booking-form-wrapper .booking-form .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.travel-hero .booking-form-wrapper .booking-form .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .travel-hero .hero-text {
        text-align: center;
        margin-bottom: 3rem;
    }

    .travel-hero .hero-text .hero-title {
        font-size: 2.5rem;
    }

    .travel-hero .hero-text .hero-subtitle {
        font-size: 1.1rem;
    }

    .travel-hero .booking-form {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .travel-hero .hero-text .hero-title {
        font-size: 2rem;
    }

    .travel-hero .hero-text .hero-subtitle {
        font-size: 1rem;
    }

    .travel-hero .hero-text .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .travel-hero .hero-text .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }

    .travel-hero .booking-form-wrapper .booking-form {
        padding: 1.5rem;
    }
}


.slider-area {
    margin-top: 150px;
    z-index: 2;
}

.slider-area .hero__caption {
    padding-top: 0px;
    overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-area .hero__caption {
        padding-top: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .hero__caption {
        padding-top: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider-area .hero__caption {
        padding-top: 50px;
    }
}

@media (max-width: 575px) {
    .slider-area .hero__caption {
        padding-top: 30px;
    }
}

.slider-area .hero__caption span {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 800;
    display: block;
}

.slider-area .hero__caption h1 {
    color: #00095e;
    line-height: 1.2;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1px;
    line-height: 1.2;
    position: absolute;
    top: -80px;
    right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-area .hero__caption h1 {
        font-size: 50px;
        line-height: 1.2;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .hero__caption h1 {
        font-size: 40px;
        line-height: 1.2;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider-area .hero__caption h1 {
        font-size: 40px;
        line-height: 1.4;
    }
}

@media (max-width: 575px) {
    .slider-area .hero__caption h1 {
        font-size: 22px;
        line-height: 1.3;
    }
}

.slider-area .hero__caption h1 dd {
    position: relative;
    display: inline-block;
}

.slider-area .hero__caption h1 dd::before {
    position: absolute;
    content: "";
    height: 11px;
    background: #ffc800;
    width: 97%;
    display: inline-block;
    top: 58%;
    z-index: -1;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.slider-area .hero__caption p {
    font-size: 14px;
    color: #00095e;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Roboto", sans-serif;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .hero__caption p {
        font-size: 19px;
    }
}

@media (max-width: 575px) {
    .slider-area .hero__caption p {
        font-size: 15px;
    }
}

.slider-bg1 {
    background-image: url(../images/hero/h1_hero1.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    margin-top: -130px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider-bg1 {
        margin-top: 0px;
    }
}

@media (max-width: 575px) {
    .slider-bg1 {
        margin-top: 0px;
    }
}

.slider-height {
    height: 800px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-height {
        height: 470px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-height {
        height: 400px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider-height {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .slider-height {
        height: 300px;
    }
}

.slider-area .car-img .car {
    position: relative;
    bottom: 36%;
    right: -9%;
}

.slider-area .car-img .car img {
    width: 80%;
}

.flip {
    transform: scaleX(-1);
}

.bird-animation {
    opacity: 1;
}

.bird {
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/174479/bird-cells.svg);
    background-size: auto 100%;
    width: 88px;
    height: 125px;
    will-change: background-position;
    -webkit-animation-name: fly-cycle;
    animation-name: fly-cycle;
    -webkit-animation-timing-function: steps(10);
    animation-timing-function: steps(10);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.bird--one {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.bird--two {
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
    -webkit-animation-delay: -0.75s;
    animation-delay: -0.75s;
}

.bird--three {
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
    -webkit-animation-delay: -0.25s;
    animation-delay: -0.25s;
}

.bird--four {
    -webkit-animation-duration: 1.1s;
    animation-duration: 1.1s;
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.bird-container {
    position: absolute;
    top: -50px;
    left: -10%;
    -webkit-transform: scale(0) translateX(-10vw);
    transform: scale(0) translateX(-10vw);
    will-change: transform;
    -webkit-animation-name: fly-right-one;
    animation-name: fly-right-one;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.bird-container--one {
    -webkit-animation-duration: 15s;
    animation-duration: 15s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.bird-container--two {
    -webkit-animation-duration: 16s;
    animation-duration: 16s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.bird-container--three {
    -webkit-animation-duration: 14.6s;
    animation-duration: 14.6s;
    -webkit-animation-delay: 9.5s;
    animation-delay: 9.5s;
}

.bird-container--four {
    -webkit-animation-duration: 16s;
    animation-duration: 16s;
    -webkit-animation-delay: 10.25s;
    animation-delay: 10.25s;
}

@-webkit-keyframes fly-cycle {
    100% {
        background-position: -900px 0;
    }
}

@keyframes fly-cycle {
    100% {
        background-position: -900px 0;
    }
}

@-webkit-keyframes fly-right-one {
    0% {
        -webkit-transform: scale(0.3) translateX(-10vw);
        transform: scale(0.3) translateX(-10vw);
    }

    10% {
        -webkit-transform: translateY(2vh) translateX(10vw) scale(0.4);
        transform: translateY(2vh) translateX(10vw) scale(0.4);
    }

    20% {
        -webkit-transform: translateY(0vh) translateX(30vw) scale(0.5);
        transform: translateY(0vh) translateX(30vw) scale(0.5);
    }

    30% {
        -webkit-transform: translateY(4vh) translateX(50vw) scale(0.6);
        transform: translateY(4vh) translateX(50vw) scale(0.6);
    }

    40% {
        -webkit-transform: translateY(2vh) translateX(70vw) scale(0.6);
        transform: translateY(2vh) translateX(70vw) scale(0.6);
    }

    50% {
        -webkit-transform: translateY(0vh) translateX(90vw) scale(0.6);
        transform: translateY(0vh) translateX(90vw) scale(0.6);
    }

    60% {
        -webkit-transform: translateY(0vh) translateX(110vw) scale(0.6);
        transform: translateY(0vh) translateX(110vw) scale(0.6);
    }

    100% {
        -webkit-transform: translateY(0vh) translateX(110vw) scale(0.6);
        transform: translateY(0vh) translateX(110vw) scale(0.6);
    }
}

@keyframes fly-right-one {
    0% {
        -webkit-transform: scale(0.3) translateX(-10vw);
        transform: scale(0.3) translateX(-10vw);
    }

    10% {
        -webkit-transform: translateY(2vh) translateX(10vw) scale(0.4);
        transform: translateY(2vh) translateX(10vw) scale(0.4);
    }

    20% {
        -webkit-transform: translateY(0vh) translateX(30vw) scale(0.5);
        transform: translateY(0vh) translateX(30vw) scale(0.5);
    }

    30% {
        -webkit-transform: translateY(4vh) translateX(50vw) scale(0.6);
        transform: translateY(4vh) translateX(50vw) scale(0.6);
    }

    40% {
        -webkit-transform: translateY(2vh) translateX(70vw) scale(0.6);
        transform: translateY(2vh) translateX(70vw) scale(0.6);
    }

    50% {
        -webkit-transform: translateY(0vh) translateX(90vw) scale(0.6);
        transform: translateY(0vh) translateX(90vw) scale(0.6);
    }

    60% {
        -webkit-transform: translateY(0vh) translateX(110vw) scale(0.6);
        transform: translateY(0vh) translateX(110vw) scale(0.6);
    }

    100% {
        -webkit-transform: translateY(0vh) translateX(110vw) scale(0.6);
        transform: translateY(0vh) translateX(110vw) scale(0.6);
    }
}

@-webkit-keyframes fly-right-two {
    0% {
        -webkit-transform: translateY(-2vh) translateX(-10vw) scale(0.5);
        transform: translateY(-2vh) translateX(-10vw) scale(0.5);
    }

    10% {
        -webkit-transform: translateY(0vh) translateX(10vw) scale(0.4);
        transform: translateY(0vh) translateX(10vw) scale(0.4);
    }

    20% {
        -webkit-transform: translateY(-4vh) translateX(30vw) scale(0.6);
        transform: translateY(-4vh) translateX(30vw) scale(0.6);
    }

    30% {
        -webkit-transform: translateY(1vh) translateX(50vw) scale(0.45);
        transform: translateY(1vh) translateX(50vw) scale(0.45);
    }

    40% {
        -webkit-transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
        transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
    }

    50% {
        -webkit-transform: translateY(0vh) translateX(90vw) scale(0.45);
        transform: translateY(0vh) translateX(90vw) scale(0.45);
    }

    51% {
        -webkit-transform: translateY(0vh) translateX(110vw) scale(0.45);
        transform: translateY(0vh) translateX(110vw) scale(0.45);
    }

    100% {
        -webkit-transform: translateY(0vh) translateX(110vw) scale(0.45);
        transform: translateY(0vh) translateX(110vw) scale(0.45);
    }
}

@keyframes fly-right-two {
    0% {
        -webkit-transform: translateY(-2vh) translateX(-10vw) scale(0.5);
        transform: translateY(-2vh) translateX(-10vw) scale(0.5);
    }

    10% {
        -webkit-transform: translateY(0vh) translateX(10vw) scale(0.4);
        transform: translateY(0vh) translateX(10vw) scale(0.4);
    }

    20% {
        -webkit-transform: translateY(-4vh) translateX(30vw) scale(0.6);
        transform: translateY(-4vh) translateX(30vw) scale(0.6);
    }

    30% {
        -webkit-transform: translateY(1vh) translateX(50vw) scale(0.45);
        transform: translateY(1vh) translateX(50vw) scale(0.45);
    }

    40% {
        -webkit-transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
        transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
    }

    50% {
        -webkit-transform: translateY(0vh) translateX(90vw) scale(0.45);
        transform: translateY(0vh) translateX(90vw) scale(0.45);
    }

    51% {
        -webkit-transform: translateY(0vh) translateX(110vw) scale(0.45);
        transform: translateY(0vh) translateX(110vw) scale(0.45);
    }

    100% {
        -webkit-transform: translateY(0vh) translateX(110vw) scale(0.45);
        transform: translateY(0vh) translateX(110vw) scale(0.45);
    }
}

.destination-item {
    position: relative;
    width: auto;
    height: 235px;
    overflow: hidden;
    border-radius: 20px;
}

.destination-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.destination-item .destination-content {
    position: absolute;
    bottom: 5px;
    padding: 10px;
    color: #fff !important;
    border-radius: 10%;
}

.destination-item .destination-star {
    position: absolute;
    top: 5px;
    right: 0px;
    padding: 2px;
    color: #fff !important;
    border-radius: 10%;
}

.route-carousel .route-item .route-text{
    display: flex;
    background: #FDB714;
    padding: 15px;
    align-items: center;
    justify-content: center;
}