:root {
    --bk-cl: #fff;
    --bk2-cl: #ebebeb;
    --bk3-cl: rgba(255, 255, 255, 0.95);
    --m-cl: #f4b400;
    --s-cl: #1f2e4e;
    --txt-cl: #2c3e50;
    --txt-sec-cl: #9b9ea2;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    --font-smoothing: antialiased;
}

body {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.95em;
    overflow-x: hidden !important;
    background: var(--bk-cl);
}

a {
    text-decoration: none !important;
}

p {
    color: var(--s-cl);
}

/* =================== PRELOADER CSS START =================== */
.preloader-bg,
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--bk-cl);
    z-index: 10000009;
}

#preloader {
    display: table;
    table-layout: fixed;
}

#preloader-status {
    display: table-cell;
    vertical-align: middle;
}

.preloader-position {
    position: relative;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

.loader {
    position: relative;
    width: 70px;
    height: 70px;
    left: 50%;
    top: auto;
    margin-left: -22px;
    margin-top: 1px;
    -webkit-animation: rotate 1s infinite linear;
    -moz-animation: rotate 1s infinite linear;
    -ms-animation: rotate 1s infinite linear;
    -o-animation: rotate 1s infinite linear;
    animation: rotate 1s infinite linear;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.loader span {
    position: absolute;
    width: 70px;
    height: 70px;
    top: -1px;
    left: -1px;
    border: 1px solid transparent;
    border-top: 1px solid var(--s-cl);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =================== PRELOADER CSS END =================== */

/* =================== SCROLL TOP CSS START =================== */
#scroll-top-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--m-cl);
    color: var(--bk-cl);
    padding: 15px 22px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.4s ease;
}

#scroll-top-button.show {
    opacity: 1;
    pointer-events: auto;
}

#scroll-top-button:hover {
    background-color: var(--s-cl);
}

/* ================== SCROLL TOP CSS END =================== */

/* =================== WHATSAPP FLOAT CSS START =================== */
.whatsapp-float {
    position: fixed;
    bottom: 35%;
    right: -8%;
    background-color: #25d366;
    width: 12%;
    border-radius: 38px 0 0 40px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    text-align: center;
    text-decoration: none;
}

.whatsapp-float-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
}

.whatsapp-float i {
    font-size: 2em;
    color: var(--bk-cl);
    margin-right: 8px;
}

.whatsapp-float h1 {
    font-size: 1em;
    margin: 0;
    color: var(--bk-cl);
    white-space: nowrap;
}

.whatsapp-float:hover {
    right: 0;
}

/* =================== WHATSAPP FLOAT CSS END =================== */

/* =================== CHAT CSS START =================== */
#chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--m-cl);
    color: var(--bk-cl);
    padding: 15px 18px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#chatbox {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    height: 450px;
    background: #f4f5f7;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.hidden {
    display: none !important;
}

.chat-main-header {
    background: var(--m-cl);
    color: var(--bk-cl);
    padding: 15px 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.chat-main-header .chat-main i {
    font-size: 30px;
}

.chat-main-header button {
    background: none;
    color: var(--bk-cl);
    font-size: 20px;
    border: none;
    cursor: pointer;
}

.chat-sec {
    display: flex;
    flex-direction: column;
    height: 86%;
    width: 95%;
    position: absolute;
    top: 12%;
    left: 8px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--bk-cl);
}

.chat-nav {
    flex-shrink: 0;
    padding: 10px;
    background: var(--bk-cl);
    border-bottom: 1px solid #ccc;
    position: relative;
    z-index: 1;
}

.chat-nav .chat-logo {
    height: 4.4vh;
    width: 12%;
    background: var(--s-cl);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-nav .chat-logo svg {
    width: 70%;
    height: auto;
}

.chat-nav span {
    padding: 0 4px;
}

.chat-sec .chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.chat-sec .bot-message {
    margin: 13px 0;
}

.chat-sec .chat-messages .bot-message span {
    padding: 6px 16px;
    background: #f4f5f7;
    border-radius: 5px 18px 18px;
}

.chat-sec .chat-messages .chat-user {
    text-align: right;
    margin: 10px 0;
}

.chat-sec .chat-messages .chat-user span {
    padding: 6px 16px;
    background: var(--m-cl);
    color: var(--bk-cl);
    border-radius: 18px 0 18px 18px;
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    padding: 5px;
    background: var(--bk-cl);
    border-top: 1px solid #ccc;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

#chat-input {
    color: var(--s-cl);
    flex: 1;
    padding: 10px;
    border: none;
    border-bottom-left-radius: 10px;
    outline: none;
}

#send-btn {
    background: var(--m-cl);
    color: var(--bk-cl);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    border-radius: 10px;
}

/* =================== CHAT CSS END =================== */

/* =================== NAVABAR CSS START =================== */
.navbar {
    display: block;
    width: 100%;
    background: var(--bk-cl);
    box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
}

.nav-scroll {
    top: 0;
    display: block;
    background: var(--bk-cl);
    box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
    padding: 10px 0 0 0;
    position: fixed;
    left: 0;
    width: 100%;
    border: none;
}

.top_navbar {
    background-color: var(--s-cl);
}

.top_navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.top_navbar a {
    color: var(--bk-cl);
    margin-right: 1rem;
}

.top_navbar a i {
    color: var(--m-cl);
}

.navbar .container {
    border: none;
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: var(--s-cl);
}

.logo-wrapper {
    float: left;
}

.logo {
    padding: 0;
}

.logo-wrapper .logo svg {
    padding: 10px 0;
    height: 50px;
}

.navbar .navbar-nav .nav-link {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--s-cl);
    margin: 1px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    padding-right: 9px;
    padding-left: 9px;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--m-cl);
}

.navbar .navbar-nav .nav-link:hover i {
    color: var(--m-cl);
}

.navbar .navbar-nav .active {
    color: var(--m-cl);
}

.navbar .navbar-nav .active i {
    color: var(--m-cl);
}

.dropdown .nav-link i {
    padding-left: 0px;
    font-size: 11px;
    color: var(--s-cl);
}

.navbar .dropdown-menu .dropdown-item {
    padding: 7px 0;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--s-cl);
    position: relative;
    background-color: transparent;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.navbar .dropdown-menu .dropdown-item span {
    display: block;
    cursor: pointer;
}

.navbar .dropdown-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 8px;
    float: right;
    color: var(--s-cl);
}

.navbar .dropdown-menu .dropdown-item.active i {
    color: var(--m-cl);
}

.navbar .dropdown-menu .dropdown:hover>.dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
    color: var(--m-cl);
}

.navbar .dropdown-toggle::after {
    display: none;
}

.navbar .dropdown-menu li:last-child {
    border-bottom: none;
}

.navbar .dropdown-menu li {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.navbar .dropdown-menu li:hover {
    padding-left: 5px;
}

.navbar .dropdown-menu .dropdown-menu.pull-left {
    top: 0;
    left: auto;
    right: 100%;
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-language .select-wrapper2 .select2 {
    width: 100%;
    background: transparent !important;
    border: 1px solid var(--s-cl);
    border-radius: 30px;
}

.nav-language .select-wrapper2 .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
    line-height: 28px;
    padding: 0 30px;
    text-align: center;
    color: var(--s-cl);
}

.nav-language .select-wrapper2 .select2-container--default .select2-results__options {
    color: var(--s-cl);
    background-color: var(--bk-cl);
    width: 120px !important;
    box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
}

.nav-language .select-wrapper2 {
    display: inline;
    position: relative;
}

.nav-language .select-wrapper2::after {
    content: "";
    background-image: url("../img/others/angel-down.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 10px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 0;
    display: inline-block;
}

.nav-language .select-wrapper2::before {
    content: "";
    background-image: url("../img/others/globe-solid.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 17px;
    height: 17px;
    position: absolute;
    left: 6px;
    top: -6px;
    pointer-events: none;
    display: inline-block;
}

.navbar .default_img_box img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.navbar .profile .user_image_name {
    display: flex;
    align-items: center;
    padding: 0 0 10px 0;
    border-bottom: 2px solid #ddd;
}

.navbar .profile .user_image_name .user_name {
    padding-left: 10px;
}

.navbar .profile .user_image_name .user_name h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.navbar .profile .user_image_name .user_name h6 {
    font-size: 14px;
    margin: 0;
}

.navbar .profile .dropdown-menu {
    position: absolute;
    right: -65px;
    top: 55px;
}

.navbar .profile .dropdown-menu .dropdown-item i {
    padding: 7px 5px 0 11px;
    font-size: 16px;
    float: left;
    color: var(--s-cl);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.navbar .profile .dropdown-menu .dropdown-item:hover i {
    color: var(--m-cl);
}

/* =================== NAVABAR CSS END =================== */

/* =================== BANNER HOME CSS START =================== */
.banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    --webkit-box-align: center;
    --ms-flex-align: center;
    align-items: center;
    position: relative;
    min-height: 602px;
    background-position: center;
    background-image: url(../img/banners/banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.banner>* {
    position: relative;
    z-index: 3;
}

.banner .banner-heading {
    position: absolute;
    width: 50%;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.banner .banner-heading h1,
.banner .banner-heading h2 span,
.banner .banner-heading h1 span {
    position: relative;
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--bk-cl);
    line-height: 1em;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.banner .banner-heading h2 span {
    color: var(--m-cl);
    font-size: 3rem;
}

.banner .banner-heading h1 span {
    color: var(--m-cl);
}

.banner .banner-heading h1 .h1-visible {
    visibility: hidden;
}

.banner .banner-heading .features {
    float: left;
    padding: 15px 0;
}

.banner .banner-heading .features .feature-item {
    padding: 10px;
    font-size: 1.3rem;
}

.banner .banner-heading .features .feature-item i {
    color: var(--m-cl);
    width: 30px;
    text-align: left;
}

.banner .banner-heading .features .feature-item span {
    color: var(--bk-cl);
}

.banner .banner-heading .scroller {
    height: 45px;
    line-height: 70px;
    overflow: hidden;
}

.banner .banner-heading .scroller .inner {
    animation: 10s normal infinite running scroll;
}

@keyframes scroll {
    0% {
        margin-top: 0px;
    }

    15% {
        margin-top: 0px;
    }

    25% {
        margin-top: -55px;
    }

    45% {
        margin-top: -55px;
    }

    55% {
        margin-top: -110px;
    }

    65% {
        margin-top: -110px;
    }

    75% {
        margin-top: -170px;
    }

    85% {
        margin-top: -170px;
    }

    95% {
        margin-top: -230px;
    }

    105% {
        margin-top: -230px;
    }
}

.banner .booking {
    position: relative;
    background: var(--bk3-cl);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 2px;
    margin: 2rem 0;
    border-radius: 20px;
}

.banner .booking h1 {
    color: var(--s-cl);
    font-weight: 600;
    text-align: center;
}

.banner .booking .location-group {
    position: relative;
    padding: 10px;
    border-radius: 10px;
}

.banner .booking .input-with-icon,
.banner .booking .input1_wrapper,
.banner .booking .time_wrapper {
    display: flex;
    align-items: center;
    background: #f3f3f3;
    border: 1px solid #cccccf;
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 10px;
    position: relative;
}

.banner .booking .input-with-icon,
.banner .booking .input1_wrapper,
.banner .booking .time_wrapper {
    color: var(--m-cl);
    font-size: 20px;
}

.banner .booking input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 16px;
}

.banner .booking .input-with-icon:has(input:focus),
.banner .booking .input1_wrapper:has(input:focus),
.banner .booking .time_wrapper:has(input:focus) {
    border: 2px solid var(--s-cl);
}

.banner .booking .circle-icon,
.square-icon {
    width: 12px;
    height: 12px;
    margin-right: 10px;
    display: inline-block;
}

.banner .booking .circle-icon {
    border: 4px solid black;
    border-radius: 50%;
}

.banner .booking .square-icon {
    border: 4px solid black;
}

.banner .booking .vertical-line {
    height: 78px;
    width: 2px;
    background: black;
    margin-left: 15px;
    margin-bottom: 10px;
    margin-top: -30px;
    position: absolute;
    z-index: 99;
}

.banner .booking .send-icon {
    margin-left: auto;
    font-size: 20px;
    cursor: pointer;
    color: var(--m-cl);
    transform: rotate(-45deg);
}

.banner .booking .dates_time {
    display: flex;
    gap: 1rem;
}

.banner .booking .dates__row {
    flex: 1 1 250px;
    min-width: 128px;
}

.banner .booking .round_trip_button {
    display: flex;
    padding: 0;
    margin: 0 10px;
}

.banner .booking .round_trip_button label {
    left: 5px;
    top: 13px;
}

.banner .booking input[type="radio"] {
    width: 15px;
}

.banner .booking label {
    position: relative;
    left: 20px;
}

.banner .hidden-input {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

/* =================== BANNER HOME CSS END =================== */

/* =================== BOOKING PAGE  CSS START =================== */
.booking-main {
    background: var(--bk2-cl);
    padding: 60px 0;
}

.booking-main .booking-progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bk-cl);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    position: relative;
}

.booking-main .booking-progress-bar .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    text-align: center;
}

.booking-main .booking-progress-bar .step-number {
    width: 40px;
    height: 40px;
    background-color: var(--s-cl);
    color: var(--bk-cl);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2em;
    z-index: 1;
}

.booking-main .booking-progress-bar .step.active .step-number {
    background-color: var(--m-cl);
}

.booking-main .booking-progress-bar .step-text {
    margin-top: 10px;
    font-size: 0.9em;
    color: var(--s-cl);
    font-weight: 600;
}

.booking-main .booking-progress-bar .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #eee;
    transform: translateX(50%);
    z-index: 0;
}

.booking-main .booking-progress-bar .step.active2:not(:last-child)::after {
    background-color: var(--m-cl);
}

.booking-main .booking-details-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.booking-main .booking-details-container .vehicle-selection {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-main .booking-details-container .vehicle-selection .vehicles-carousel {
    display: none;
}

.booking-main .booking-details-container .vehicle-selection .vehicle-card2,
.booking-main .booking-details-container .vehicle-selection .vehicle-card-3 {
    background-color: var(--bk-cl);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-main .booking-details-container .vehicle-card-inner {
    display: flex;
    gap: 10px;
}

.booking-main .booking-details-container .vehicle-card2:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-main .booking-details-container .vehicle-selection .vehicle-card2 img,
.booking-main .booking-details-container .vehicle-selection .vehicle-card-3 img {
    width: 200px;
    height: 120px;
    object-fit: contain;
    border-radius: 5px;
    flex-shrink: 0;
}

.booking-main .booking-details-container .vehicle-info h3 {
    margin: 0;
    /* font-size: 1.5em; */
    color: #333;
    font-weight: 700;
}

.booking-main .booking-details-container .price {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--m-cl);
    margin-bottom: 10px;
}

.booking-main .booking-details-container .features {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    font-size: 0.9em;
    color: var(--s-cl);
}

.booking-main .booking-details-container .features span {
    display: flex;
    align-items: center;
}

.booking-main .booking-details-container .features i {
    margin-right: 5px;
    color: var(--m-cl);
}

.vehicle-card2.grey-card.p-3.selected {
    border: 3px solid var(--m-cl);
    box-shadow: 0 2px 14px 5px #ffc010c2;
}

.booking-main .select-button,
.booking-main .next-button {
    background-color: var(--m-cl);
    color: var(--bk-cl);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.next-button {
    width: 100% !important;
}

.booking-main .select-button:hover {
    background-color: #e68a00;
}

.booking-main .trip-detail {
    flex: 1;
    background-color: var(--bk-cl);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 25px 25px;
    height: fit-content;
    align-self: flex-start;
}

.booking-main .trip-detail h2 {
    color: var(--s-cl);
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-weight: 700;
}

.booking-main .booking-details-container .trip-detail .booking-form-group {
    margin-bottom: 6px;
}

.booking-main .booking-details-container .trip-detail .booking-form-group label {
    font-size: 13px;
    font-weight: 600;
    width: 35%;
}

.booking-main .booking-details-container .trip-detail .via-for-group {
    margin-left: 40px;
    margin-bottom: 15px;
}

.booking-main .booking-details-container .trip-detail .via-for-group label {
    font-size: 13px;
    width: 27%;
}

.booking-main .booking-details-container .trip-detail .booking-form-group input {
    border: none;
    border-bottom: 1px solid #bfbfbf;
    background: var(--bk-cl);
    width: 62%;
    padding: 0 4px;
}

.booking-main .booking-details-container .trip-detail .via-for-group input {
    width: 70% !important;
}

.booking-main .trip-detail .summary-fare {
    font-size: 1.5em !important;
    color: var(--m-cl);
}

.booking-main .continue-button {
    width: 100%;
    background-color: var(--m-cl);
    color: var(--m-cl);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.booking-main .continue-button:hover {
    background-color: #f4b400;
}

.booking-main .vehicle-selection .booking-form {
    background-color: var(--bk-cl);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 25px 25px 0;
}

.booking-main .vehicle-selection .booking-form .head {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 0;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.booking-main .vehicle-selection .booking-form .head h2 {
    color: var(--s-cl);
    font-size: 1.8em;
    font-weight: 700;
}

.booking-main .vehicle-selection .booking-form .head .btn-outline-secondary {
    background: var(--bk-cl) !important;
    border: 1px solid var(--s-cl) !important;
    color: var(--s-cl) !important;
    outline: none !important;
    box-shadow: none !important;
}

.booking-main .vehicle-selection .booking-form .sub-head {
    margin-top: 0;
    width: 100%;
}

.booking-main .vehicle-selection .booking-form .sub-head h2 {
    color: var(--s-cl);
    font-size: 1.4em;
    font-weight: 700;
}

.booking-main .vehicle-selection .booking-form .sub-head .booking-vehicle,
.booking-main .vehicle-selection .booking-form .sub-head .booking-map {
    margin: 10px 0;
}

.booking-main .vehicle-selection .booking-form .sub-head .booking-details {
    padding: 15px 0;
}

.booking-main .vehicle-selection .booking-form h2 {
    color: var(--s-cl);
    font-size: 1.8em;
    font-weight: 700;
}

.booking-main .booking-payment {
    display: flex;
    width: 100%;
}

.payment-card {
    padding: 40px;
    background: var(--bk-cl);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.credit-card-box {
    padding: 30px;
    background: var(--bk-cl);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.credit-card-preview {
    background: #2d8cf0;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
}

.credit-card-preview img {
    width: 40px;
}

.btn-primary {
    background-color: #2d8cf0;
    border: none;
    padding: 12px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #1c6ed8;
}

.form-control:focus {
    box-shadow: none;
    border-color: #2d8cf0;
}

.info-label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

/* =================== BOOKING PAGE  CSS END =================== */

/* =================== MAKE YOUR TRIP HOME CSS START =================== */
.make-trip-sec {
    background: var(--bk2-cl);
    padding: 100px 0;
}

.make-trip-sec .icon-box h5 {
    color: var(--s-cl);
}

.make-trip-sec .icon-box .icon-circle i {
    color: var(--m-cl);
}

.make-trip-sec .icon-box .icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--s-cl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* =================== MAKE YOUR TRIP HOME CSS END =================== */

/* =================== VEHICLES CSS END =================== */
.vehicles .background-image {
    background-image: url(../img/banners/bg-sahde-1.png);
    background-position: -33px 157px;
    background-repeat: no-repeat;
    background-size: 39% auto;
}

.vehicles .background-image .container {
    padding: 100px 0;
}

.vehicles .vehicle-title {
    padding: 20px 0;
}

.vehicles .vehicle-title .main-heading h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--s-cl);
}

.vehicles .vehicle-title .sub_heading a {
    font-size: 1rem;
    color: var(--s-cl);
}

.vehicles .vehicle-title .sub_heading a:hover,
.vehicles .vehicle-title .sub_heading a:hover i {
    color: var(--m-cl);
}

.vehicles .vehicle-title .sub_heading a i {
    color: var(--s-cl);
    margin-right: 10px;
    transform: rotate(45deg);
}

.vehicles .vehicles-item {
    position: relative;
    overflow: hidden;
}

.vehicles .vehicles-content {
    border-radius: 15px;
    padding: 1rem 15px;
    border: 2px solid var(--bk2-cl);
    text-align: center;
    background: var(--bk-cl);
}

.vehicles .vehicles-content .vehicles-headings {
    height: 100px;
}

.vehicles .vehicles-content .vehicles-headings {
    text-align: left;
}

.vehicles .vehicles-content .vehicles-headings h4 {
    color: var(--s-cl);
    font-weight: 600;
    font-size: 19px;
}

.vehicles .vehicles-img {
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vehicles .vehicles-img img {
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 100%;
    height: 140px;
    padding-bottom: 10px;
}

.vehicles .vehicles-item:hover .vehicles-img img {
    transform: translateY(-10px);
}

.vehicles .vehicles-content .car-details {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.vehicles .vehicles-content .car-details i {
    color: var(--m-cl);
}

.vehicles .vehicles-item .car-details .passenger-details {
    text-align: center;
    display: flex;
    justify-content: center;
}

.vehicles .vehicles-item .car-details .passenger-details span {
    font-size: 10px;
    font-weight: 500;
    color: var(--s-cl);
}

/* =================== VEHICLE HOME CSS END =================== */

/* =================== QUICK GUIDE HOME CSS START =================== */
.quick-guide {
    background: var(--bk2-cl);
}

.quick-guide .works-card {
    align-items: center;
    margin: 3rem 0;
}

.quick-guide .works-card img {
    border-radius: 1em;
}

.works-desc1,
.works-desc {
    padding: 0 50px;
    position: relative;
    display: block;
}

.works-desc1:before,
.works-desc:before {
    background-color: var(--s-cl);
    content: "";
    display: block;
    height: 9px;
    position: absolute;
    transform: translateX(-4px);
    width: 9px;
    left: calc(2.5% - 4px);
}

.works-desc:after {
    background-color: var(--s-cl);
    bottom: 2px;
    content: "";
    position: absolute;
    top: -211px;
    -webkit-transition: height 0.5s ease-out 2s;
    -moz-transition: height 0.5s ease-out 2s;
    transition: height 0.5s ease-out 2s;
    width: 1px;
    left: calc(2.5% - 4px);
    transform: none;
}

.works-desc1:after {
    background-color: var(--s-cl);
    bottom: 2px;
    content: "";
    position: absolute;
    top: 9px;
    -webkit-transition: height 0.5s ease-out 2s;
    -moz-transition: height 0.5s ease-out 2s;
    transition: height 0.5s ease-out 2s;
    width: 1px;
    left: calc(2.5% - 4px);
    transform: none;
}

.works-desc-last:after {
    bottom: 110px;
}

/* =================== QUICK GUIDE HOME CSS END =================== */

/* =================== DRIVERS HOME CSS START =================== */
.driver-section {
    position: relative;
}

.driver-section .background-image {
    background-image: url(../img/banners/bg-sahde-3.png);
    background-position: 100% 60px;
    background-repeat: no-repeat;
    background-size: 193px auto;
}

.driver-2 .driver_row {
    display: flex;
    flex-wrap: wrap;
}

.driver-section .driver-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.driver-section .driver-content {
    padding: 0 4rem;
}

.driver-section .driver-content p {
    color: var(--s-cl);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.driver-section .driver-content .list-main .list-unstyled li strong {
    color: var(--s-cl);
    font-size: 16px;
}

.driver-section .driver-content .list-main .list-unstyled li span {
    color: var(--m-cl);
    font-size: 16px;
}

.driver-section .driver-content .button-1 {
    display: inline-block;
    height: auto;
    padding: 5px 15px;
    margin: 0 2px;
    border: 1px solid var(--s-cl);
    border-radius: 30px;
    color: var(--bk-cl);
    background: var(--s-cl);
    font-weight: 300;
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease,
        background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}

.driver-section .driver-content .button-1:hover {
    background-color: transparent;
    border: 1px solid var(--s-cl);
    color: var(--bk-cl);
}

.driver-section .driver-content .button-1 span {
    transform: rotate(-45deg);
}

.driver-section .driver-content .list-main {
    display: flex;
}

.driver-section .driver-content .list-main .list {
    padding: 0 35px 0 0;
}

.driver-section .taxi-image {
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.driver-section .taxi-image.animate {
    opacity: 1;
    transform: translateX(0);
}

/* =================== DRIVERS HOME CSS END =================== */

/* =================== OUR SERVICES CSS START =================== */
.our-services {
    background: var(--bk2-cl);
    padding: 100px 0;
}

.our-services .card {
    margin: 20px 0;
}

.our-services .card .card_content .card-p {
    height: 20vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--s-cl) transparent;
}

.our-services .card .card_content p {
    font-size: 15px;
}

.our-services .card .card_content a {
    display: inline-block;
    height: auto;
    width: 100%;
    padding: 15px;
    margin: 0 2px;
    border-radius: 30px;
    border: 1px solid var(--m-cl);
    color: var(--m-cl);
    background: transparent;
    font-weight: 300;
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease,
        background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}

.our-services .card .card_content a:hover {
    border: 1px solid var(--m-cl);
    color: var(--bk-cl);
    background: var(--m-cl);
}

/* =================== OUR SERVICES CSS END =================== */

/* =================== COUNTER CSS START =================== */
.counter {
    background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)),
        url(../img/banners/bg-showcase.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 50px;
}

.counter .counter-item .counter-item-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bk-cl);
    background: var(--m-cl);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.counter .counter-item .counter-counting .number {
    color: var(--bk-cl);
    font-weight: 700;
    font-size: calc(1.125rem + 0.7vw);
}

.counter .counter-item .counter-counting .plus {
    color: var(--bk-cl);
    font-weight: 700;
    font-size: calc(1.375rem + 0.5vw);
}

.counter .counter-item .h4-desc {
    color: var(--bk-cl);
    font-size: 1.3rem;
    margin: 0;
}

/* =================== COUNTER CSS END =================== */

/* =================== TESTIMONIALS HOME CAROUSEL CSS START =================== */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials .background-image {
    background-image: url(../img/banners/bg-sahde-2.png);
    background-position: -182px -521px;
    background-repeat: no-repeat;
    background-size: 24% auto;
}

.testimonials .item {
    position: relative;
    padding: 40px 40px 0px;
    border-radius: 20px 20px 20px 0;
    background: var(--bk2-cl);
}

.testimonials .item .stars {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 20px 10px 20px;
    border-radius: 0 0 0 20px;
    color: var(--m-cl);
    background: var(--bk-cl);
}

.testimonials .item .stars i {
    font-size: 10px;
}

.testimonials .item i.fa-quote-left {
    color: var(--m-cl);
    font-size: 45px;
    margin-bottom: 10px;
}

.testimonials .item .text {
    height: 20vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--s-cl) transparent;
}

.testimonials .item .text h5 {
    border-radius: 20px;
    font-family: "Outfit", sans-serif;
    color: var(--m-cl);
    font-weight: 700;
    font-size: 14px;
}

.testimonials .item .text p {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.95em;
    color: var(--s-cl);
    margin-bottom: 15px;
}

.testimonials .item .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -40px;
}

.testimonials .item .info .img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials .item .info .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonials .item .info h6 {
    font-family: "Outfit", sans-serif;
    color: var(--s-cl);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 0;
}

.testimonials .item .info p {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    color: var(--txt-cl);
    margin-bottom: 0;
}

.testimonials .item .img-curv {
    position: relative;
    padding: 15px;
    border-radius: 0 40px 0 0;
    background: var(--bk-cl);
}

/* =================== TESTIMONIALS HOME CAROUSEL CSS END =================== */

/* =================== SERVICES CSS START =================== */
/* TRASFER MAIN -START */
.transfer-main .transfer-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: var(--bk-cl);
    transition: 0.5s;
}

.transfer-main .transfer-item .transfer_img_icon {
    height: 60%;
}

.transfer-main .transfer-item:hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 60px;
}

.transfer-main .transfer-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--s-cl);
    border-radius: 10px;
    z-index: -1;
    transition: 0.5s;
    opacity: 0;
}

.transfer-main .transfer-item:hover::after {
    opacity: 1;
}

.transfer-main .transfer-item .transfer-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--m-cl);
    background: var(--s-cl);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.transfer-main .transfer-item p {
    font-size: 13px;
    color: var(--s-cl);
    line-height: 1.5;
    padding: 12px 0;
}

/* TRASFER MAIN -END */

/* SERVICE - START */
.service-section {
    background: var(--bk-cl);
}

.service-section.sightseeing {
    background: var(--bk2-cl);
}

.service-section .service_background,
.service-section .service_background {
    background: var(--bk2-cl);
}

.service-section .service_row {
    padding: 0 0 20px;
}

.service-section .column_adjust_img .service_row {
    display: flex;
    flex-wrap: wrap;
}

.service-section .service_row .img-column img {
    border-radius: 14px;
}

.service-section .service_row .services_content h2 {
    color: var(--s-cl);
    font-weight: 600;
}

.service-section .service_row .services_content p span {
    color: var(--m-cl);
    font-weight: 600;
}

.service-section .airport-meeting-table h5 {
    color: var(--s-cl);
    font-weight: 600;
}

.service-section .airport-meeting-table table thead tr th {
    background: var(--m-cl);
    color: var(--bk-cl);
}

/* SERVICE - END */

/* CRUSIE PORT - START */
.station-transfer,
.cruise-port-transfer {
    background: var(--bk2-cl);
}

.station-transfer .port-card,
.cruise-port-transfer .port-card {
    box-shadow: 0px 0px 4px 6px rgb(218 218 218 / 85%);
    -webkit-box-shadow: 0px 0px 4px 6px rgb(218 218 218 / 85%);
    -moz-box-shadow: 0px 0px 4px 6px rgb(218 218 218 / 85%);
}

.station-transfer .port-card h5,
.cruise-port-transfer .port-card h5 {
    color: var(--s-cl);
    font-weight: 600;
}

.station-transfer .port-card p,
.cruise-port-transfer .port-card p {
    color: var(--s-cl);
}

/* CRUSIE PORT - END */

/* SIGHTSEEING CARDS - START */
.our-services .card,
.sightseeing-cards .card {
    height: 100%;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.53);
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.53);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.53);
}

.our-services .card .card_content,
.sightseeing-cards .card .card_content {
    padding: 20px 0 0;
}

.our-services .card .card_content h5,
.sightseeing-cards .card .card_content h5 {
    color: var(--s-cl);
    font-weight: 600;
}

.sightseeing-cards .card .card_content p {
    margin-bottom: 0;
}

.sightseeing-cards .card .card_content .table2 tbody tr th {
    border: none !important;
    font-size: 20px;
    color: var(--s-cl);
}

.sightseeing-cards .card .card_content .table2 tbody tr td {
    border: none !important;
    text-align: end;
}

.sightseeing-cards .card .card_content .table2 tbody tr td a {
    display: inline-block;
    height: auto;
    padding: 5px 15px;
    border: 1px solid var(--m-cl);
    color: var(--bk-cl);
    background: var(--m-cl);
    border-radius: 30px;
    font-weight: 300;
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease,
        background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}

.sightseeing-cards .card .card_content .table2 tbody tr td a:hover {
    border: 1px solid var(--m-cl);
    color: var(--m-cl);
    background: transparent;
}

/* SIGHTSEEING CARDS - END */

/* SIGHTSEEING BOOK - START */
.sightseeing-book {
    background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)),
        url(../img/banners/bg-showcase.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sightseeing-book h2 {
    color: var(--bk-cl);
    font-weight: 600;
}

.sightseeing-book a {
    background: var(--m-cl) !important;
    border: 1px solid var(--m-cl) !important;
    border-radius: 30px !important;
    color: var(--bk-cl) !important;
}

/* SIGHTSEEING BOOK - END */

/* FAQ - START */
.faq-service {
    background: var(--bk-cl);
}

.faq-service-accordin .fs-accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-service-accordin .fs-accordion-item button[aria-expanded="true"] {
    border-bottom: 1px solid var(--txt-cl);
}

.faq-service-accordin button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: var(--s-cl);
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.faq-service-accordin button:hover,
.faq-service-accordin button:focus {
    cursor: pointer;
    color: var(--m-cl);
}

.faq-service-accordin button:hover::after,
.faq-service-accordin button:focus::after {
    cursor: pointer;
    color: var(--m-cl);
    border: 1px solid var(--m-cl);
}

.faq-service-accordin button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.faq-service-accordin button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.faq-service-accordin button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.faq-service-accordin button[aria-expanded="true"] {
    color: var(--m-cl);
}

.faq-service-accordin button[aria-expanded="true"] .icon::after {
    width: 0;
}

.faq-service-accordin button[aria-expanded="true"]+.fs-accordion-content {
    opacity: 1;
    max-height: 13em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.faq-service-accordin button .fs-accordion-title {
    padding: 1em 1.5em 1em 0;
}

.faq-service-accordin .fs-accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.faq-service-accordin .fs-accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
}

/* FAQ - END */
/* =================== SERVICES CSS END =================== */

/* =================== CONTACT CSS START =================== */
/* BANNER - START */
.other-banner .contact-heading {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.other-banner .contact-heading h1,
.other-banner .contact-heading h1 span,
.other-banner .contact-heading h6 {
    position: relative;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--bk-cl);
    line-height: 1em;
}

.other-banner .contact-heading h1 {
    color: var(--m-cl);
    font-size: 70px;
}

.other-banner .contact-heading h1 span {
    color: var(--bk-cl);
}

.other-banner .contact-heading h6 {
    color: var(--m-cl);
    font-weight: 100;
    letter-spacing: 6px;
}

/* BANNER - END */

/* CONTACT BOX - START */
.contact-box {
    position: relative;
    margin-bottom: 0px;
    margin-top: -100px;
}

.contact-box .container {
    position: relative;
    z-index: 2;
}

.contact-box .item {
    background: var(--s-cl);
    height: 25vh;
    padding: 25px 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    line-height: 1;
    text-align: left;
    overflow: hidden;
    transition: background-color 300ms ease, transform 300ms ease,
        color 300ms ease;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    border-radius: 20px;
}

.contact-box .item.active {
    background: var(--m-cl);
}

.contact-box .item:hover {
    background: var(--m-cl);
    transform: translate3d(0px, -15px, 0.01px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.contact-box .item h5 {
    font-size: 21px;
    color: var(--bk-cl);
    margin-bottom: 0px;
}

.contact-box .item.active h5 {
    color: var(--s-cl);
}

.contact-box .item:hover h5 {
    color: var(--s-cl);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.contact-box .item a {
    color: #999;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 0;
}

.contact-box .item.active a {
    color: var(--s-cl);
}

.contact-box .item:hover a {
    color: var(--s-cl);
}

.contact-box .item span {
    font-size: 35px;
    color: var(--m-cl);
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.contact-box .item.active span {
    color: var(--s-cl);
}

.contact-box .item:hover span {
    color: var(--s-cl);
}

.contact-box .item i.numb {
    font-size: 120px;
    position: absolute;
    bottom: -20px;
    right: -20px;
    color: rgba(255, 255, 255, 0.1);
    opacity: 0.2;
}

.contact-box .item.active i.numb {
    color: rgba(0, 0, 0, 0.2);
}

.contact-box .item:hover .numb {
    color: rgba(0, 0, 0, 0.2);
}

/* CONTACT BOX - END */

/* CONTACT FORM - START */
.contact {
    padding: 50px 0;
}

.contact h5 {
    color: var(--s-cl);
    font-size: 21px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact .form-group {
    margin-bottom: 15px;
    padding: 18.5px 20px;
    background-color: var(--bk-cl);
    border: 1px solid var(--s-cl);
    border-radius: 30px;
}

.contact .form-box label {
    margin-left: 20px;
}

.contact .form-group input,
.contact .form-group textarea {
    border: none;
    width: 100%;
    resize: none;
    color: var(--s-cl);
}

.google-map {
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-radius: 20px;
}

/* CONTACT FORM - END */
/* =================== CONTACT CSS END =================== */

/* =================== DRIVE CSS START =================== */
.driver-sec-1 {
    position: relative;
    background: var(--bk-cl);
}

.driver-2 {
    background: var(--bk2-cl);
}

.driver-sec-1 .item {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    isolation: isolate;
}

.driver-sec-1 .item img {
    width: 100%;
    border-radius: 20px;
    transform: scale(1);
    transition: transform 500ms ease;
}

.driver-sec-1 .item:hover img {
    transform: scale(1.05);
}

.driver-2 .content {
    padding: 0 100px 0 0;
}

.driver-sec-1 .content .drive-h6 {
    color: var(--s-cl);
    font-weight: 600;
}

.driver-sec-1 .content p {
    color: var(--s-cl);
}

.driver-sec-1 .content .list-icon i {
    color: var(--main);
}

.driver-sec-1 .content .custom-list {
    list-style: none;
    padding-left: 1.5rem;
    position: relative;
}

.driver-sec-1 .content .custom-list li {
    position: relative;
    padding-left: 1.5rem;
}

.driver-sec-1 .content .custom-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: var(--s-cl);
    line-height: 1.5;
}

/* =================== DRIVE CSS END =================== */

/* =================== ABOUT CSS START =================== */
/* ABOUT US START */
.about-us {
    background: var(--bk2-cl);
}

.about-us .about-item p {
    color: var(--s-cl);
}

.about-us .about-item .about-cards {
    text-align: center;
    margin-top: 1.5rem;
}

.about-us .about-item .about-cards .about-card {
    background: var(--s-cl);
    color: var(--bk-cl);
    border-radius: 17px;
    padding: 1rem;
    border: none;
}

.about-us .about-item .about-cards i {
    color: var(--m-cl);
    font-size: 2rem;
}

.about-us .about-item .about-cards .about-card p {
    color: var(--bk-cl);
    font-size: 12px;
}

.about-us .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.about-us .about-img img {
    border-radius: 15px;
}

.about-us .about-img .img-2 img {
    height: 100%;
    width: 100%;
}

/* ABOUT US END */

/* WHY CHOOSE US START*/
.why-choose-us {
    padding: 100px 50px;
}

.why-choose-us .feature-box .row {
    align-items: center;
    --bs-gutter-y: 3rem;
}

.why-choose-us .feature-box .feature-card {
    display: flex;
    border-radius: 10px;
}

.why-choose-us .feature-box .feature-card.item-2 {
    justify-content: end;
    text-align: end;
}

.why-choose-us .feature-box .feature-card .feat-head {
    font-size: 1rem;
    font-weight: 700;
    padding: 0;
    margin: 0;
    color: var(--s-cl);
}

.why-choose-us .feature-box .feature-card .feature-content-1 {
    margin-left: 1rem;
}

.why-choose-us .feature-box .feature-card .feature-content-2 {
    margin-right: 1rem;
}

.why-choose-us .feature-box .feature-card .feat-para {
    font-size: 14px;
    color: var(--txt-cl);
    line-height: 1.5;
}

.why-choose-us .feature-box .feature-card .feat-icon span {
    width: 90px;
    height: 90px;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--m-cl);
    background: var(--s-cl);
    border-radius: 50%;
}

.why-choose-us .feature-box .feat-img {
    text-align: center;
}

.why-choose-us .feature-box .feat-img img {
    width: 100%;
    object-fit: cover;
    max-width: 100%;
    height: auto;
}

/* WHY CHOOSE US END*/

/* CAPTAION START*/
.caption {
    position: relative;
    background: var(--bk2-cl);
}

.caption .item {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    isolation: isolate;
}

.caption .item img {
    width: 100%;
    border-radius: 20px;
    transform: scale(1);
    transition: transform 500ms ease;
}

.caption .item:hover img {
    transform: scale(1.05);
}

.caption .content p {
    color: var(--s-cl);
}

.caption .content .list-icon i {
    color: var(--main);
}

/* CAPTAION END*/

/* =================== ABOUT CSS END =================== */

/* =================== APP CSS START =================== */
.app {
    position: relative;
    background: var(--m-cl);
}

.app .sec-pad {
    padding: 50px 50px 0 !important;
}

.app .app-content h6 {
    display: inline-block;
    text-transform: uppercase;
    font-size: 10px;
    color: var(--s-cl);
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 6px;
}

.app .app-content h3 {
    font-size: 35px;
    color: var(--s-cl);
    line-height: 1.2em;
}

.app .app-content p {
    font-size: 14px;
    color: var(--s-cl);
    line-height: 1.5em;
}

.app .app-content img {
    position: relative;
    display: block;
}

/* =================== APP CSS END =================== */

/* =================== FOOTER CSS START =================== */
footer {
    background: var(--bk2-cl);
}

footer .social-links .tittle span {
    color: var(--s-cl) !important;
}

footer .social-links .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .social-links .social-icons a {
    background: var(--m-cl) !important;
    width: 40px;
    text-align: center;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    display: flex;
    justify-content: center;
}

footer .social-links .social-icons a:hover {
    background: transparent !important;
    border: 1px solid var(--s-cl);
}

footer .social-links .social-icons a i {
    color: var(--s-cl) !important;
}

footer .links .about-us .footer-logo svg {
    height: 35px;
    margin-bottom: 20px;
}

footer .links .about-us p {
    color: var(--s-cl);
    font-size: 14px;
    line-height: 1.6;
}

footer .links .sub-links h6 {
    color: var(--s-cl);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

footer .links .sub-links p {
    color: var(--s-cl);
    margin-bottom: 0.5rem;
}

footer .links .sub-links p a {
    color: var(--s-cl);
    margin-bottom: 0.5rem;
}

footer .copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* =================== FOOTER CSS END =================== */

/* =================== MEDIA QUERRY START =================== */
@media (min-width: 1400px) {
    .works-desc1:after {
        top: 103% !important;
    }

    .works-desc:after {
        top: -334px !important;
    }

    .works-desc-last:after {
        bottom: 80px;
    }

    .counter .counter-item .counter-counting .number,
    .counter .counter-item .counter-counting .plus {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 1200px) {

    .banner .banner-heading h1,
    .banner .banner-heading h1 span {
        font-size: 50px;
    }

    .banner .banner-heading h2 span {
        font-size: 2rem;
    }

    @keyframes scroll {
        0% {
            margin-top: 0px;
        }

        15% {
            margin-top: 0px;
        }

        25% {
            margin-top: -38px;
        }

        45% {
            margin-top: -38px;
        }

        55% {
            margin-top: -78px;
        }

        65% {
            margin-top: -78px;
        }

        75% {
            margin-top: -140px;
        }

        85% {
            margin-top: -140px;
        }

        95% {
            margin-top: -180px;
        }

        105% {
            margin-top: -180px;
        }
    }
}

@media (min-width: 1100px) {
    .whatsapp-float {
        width: 165px;
        right: -122px;
    }
}

@media (max-width: 1024px) {
    .driver-section .background-image {
        background-size: 27% auto;
    }

    .testimonials .background-image {
        background-position: 0px 0px;
    }
}

@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        width: 210px;
        padding: 15px 25px;
        border-radius: 20px;
        border: 0;
        background-color: var(--bk-cl);
        box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 12px 19px 9px rgba(0, 0, 0, 0.2);
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .navbar .profile .dropdown-menu {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        width: 15vw;
        padding: 15px;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .navbar .dropdown-menu .dropdown-menu {
        left: calc(100% + 10px);
        top: -12px;
        right: auto;
        min-width: 210px;
        transform: translateY(0);
        background-color: var(--bk-cl);
    }

    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .nav-scroll {
        height: 60px !important;
        padding: 0;
        background: var(--bk-cl);
        box-shadow: 0 10px 19px 9px rgba(0, 0, 0, 0.2);
    }

    .top_navbar .container {
        justify-content: center;
    }

    .top_navbar .first_Sec {
        justify-content: center;
    }

    .logo-wrapper {
        padding: 5px 15px;
    }

    .nav-scroll .logo-wrapper {
        padding: 5px 15px;
    }

    .navbar .logo {
        margin-left: 0px;
    }

    .navbar .container {
        max-width: 100%;
        padding: 0;
    }

    .navbar .nav-link {
        margin: 0px auto !important;
    }

    .navbar .navbar-nav .nav-link:hover {
        color: var(--s-cl);
    }

    .navbar .navbar-nav .nav-link:hover i {
        color: var(--s-cl);
    }

    .navbar .dropdown-menu .dropdown-item {
        color: var(--s-cl);
        padding: 0 15px;
        font-size: 14px;
        line-height: 40px;
    }

    .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
        font-weight: 300;
    }

    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: var(--bk-cl);
        box-shadow: none;
    }

    .navbar .dropdown-menu li a {
        padding: 0 15px;
    }

    .navbar .navbar-nav {
        padding: 0 20px 0;
    }

    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: var(--bk-cl);
        text-align: left;
    }

    .nav-container {
        align-items: flex-start;
        flex-direction: column;
        padding: 0 15px 24px;
    }

    .nav-language .select-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
        padding: 0 40px;
    }

    .nav-language .select-wrapper .select2-container--default .select2-results__options {
        position: fixed;
        z-index: 999;
        width: 122px !important;
    }

    .signup-btn,
    .login-btn {
        padding: 5px 43px !important;
        margin: 5px 2px !important;
    }

    .banner .banner-heading.features .feature-item.pound-sign i {
        margin: 0 !important;
    }

    .banner .banner-heading h1,
    .banner .banner-heading h1 span {
        font-size: 35px;
    }

    .banner .banner-heading h2 span {
        font-size: 1.5rem;
    }

    @keyframes scroll {
        0% {
            margin-top: 0px;
        }

        15% {
            margin-top: 0px;
        }

        25% {
            margin-top: -38px;
        }

        45% {
            margin-top: -38px;
        }

        55% {
            margin-top: -78px;
        }

        65% {
            margin-top: -78px;
        }

        75% {
            margin-top: -120px;
        }

        85% {
            margin-top: -120px;
        }

        95% {
            margin-top: -180px;
        }

        105% {
            margin-top: -180px;
        }
    }

    .banner .banner-heading .features .feature-item {
        padding: 2px 0;
        font-size: 1rem;
    }

    .sec-pad {
        padding: 50px 15px !important;
    }

    .works-desc1:after {
        top: 103% !important;
    }

    .works-desc:after {
        top: -228px !important;
    }

    .works-desc-last:after {
        bottom: 160px;
    }

    .driver-section .driver-container {
        flex-direction: column;
    }

    .driver-section .taxi-image {
        display: none;
    }

    .whatsapp-float {
        width: 144px;
        right: -108px;
    }

    .whatsapp-float i {
        font-size: 1.5em;
    }

    .whatsapp-float h1 {
        font-size: 0.9em;
    }

    .faq-logo {
        display: none !important;
    }

    .contact-box .item {
        height: 23vh;
        padding: 25px 20px;
    }

    .other-banner {
        min-height: 50vh !important;
    }

    .other-banner .contact-heading h1 {
        font-size: 50px;
    }

    .service-section .column_adjust_img .service_row {
        flex-direction: column-reverse;
    }

    .driver-2 .content {
        padding: 0;
    }

    .driver-2 .driver_row {
        flex-direction: column-reverse;
    }

    .booking-main .booking-details-container {
        gap: 5px !important;
    }

    .booking-main .booking-details-container .vehicle-selection {
        flex: 0;
    }

    .booking-main .booking-details-container .vehicle-selection .vehicle-card2 {
        flex-direction: column;
    }

    .booking-main .booking-details-container .features {
        justify-content: flex-start;
    }

    .booking-main .select-button {
        width: 100%;
    }
}

@media (min-width: 767px) and (max-width: 1200px) {
    .about-us .about-img .img-2 {
        position: relative;
        padding: 0;
    }
}

@media screen and (max-width: 768px) {
    .banner .banner-heading {
        width: 100%;
        top: 32vh;
        padding: 0px 13px;
    }

    .banner .banner-heading h1,
    .banner .banner-heading h1 span {
        font-size: 48px !important;
    }

    .banner .booking {
        margin: 80% 0 10%;
    }

    .vehicles .vehicles-img img {
        width: 90%;
        max-width: 90%;
    }

    .works-desc1:before,
    .works-desc:before {
        display: none;
    }

    .works-desc1:after,
    .works-desc:after {
        display: none;
    }

    .works-desc,
    .works-desc1 {
        padding: 10px 0;
    }

    .quick-guide .works-card {
        margin: 1rem 0;
    }

    .counter {
        padding: 30px 0;
    }

    .counter .counter-item .h4-desc {
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 135px;
        right: -105px;
    }

    .whatsapp-float i {
        font-size: 1.2em;
    }

    .whatsapp-float h1 {
        font-size: 0.85em;
    }

    .about-us {
        padding: 60px 15px;
    }

    .why-choose-us .feature-box .row {
        --bs-gutter-y: 1rem;
    }

    .why-choose-us .feature-box .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-choose-us .feature-box .feature-card.item-2 {
        text-align: center !important;
        flex-direction: column-reverse !important;
    }

    .why-choose-us .feature-box .feature-card .feat-icon {
        margin-bottom: 1rem;
    }

    .why-choose-us .feature-box .feature-card .feat-icon span {
        width: 75px;
        height: 75px;
        font-size: 25px;
    }

    .why-choose-us .feature-box .feature-card .feat-head {
        font-size: 1rem;
    }

    .why-choose-us .feature-box .feature-card .feat-para {
        font-size: 12px;
        line-height: 1.5;
    }

    .why-choose-us .feature-box .feature-card .feature-content-1 {
        margin-left: 0;
    }

    .why-choose-us .feature-box .feature-card .feature-content-2 {
        margin-right: 0;
    }

    .why-choose-us .feature-box .feat-img {
        display: none;
    }

    .service-section .airport-meeting-table table thead tr th,
    .service-section .airport-meeting-table table tbody tr td {
        font-size: 10px;
        line-height: 1.4;
    }

    .about-us .about-item .about-cards .about-card p {
        font-size: 17px;
    }
}

@media (min-width: 540px) and (max-width: 768px) {
    .booking-main .vehicle-selection #main-vehichle-selection {
        margin-bottom: 54px !important;
    }

    .booking-main .booking-details-container .vehicle-card2 img {
        width: 125px !important;
    }

    .booking-main .booking-details-container .vehicle-info h3,
    .booking-main .booking-details-container .price {
        text-align: center !important;
    }

    .booking-main .booking-details-container {
        flex-direction: column;
    }

    .booking-main .booking-details-container .vehicle-selection {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .booking-main .booking-details-container .vehicle-card2 img {
        width: 70%;
        height: auto;
    }

    .booking-main .booking-details-container .vehicle-card-inner {
        flex-wrap: wrap;
        flex-direction: column;
    }
}

@media screen and (max-width: 630px) {
    .driver-section .driver-content .list-main .list {
        padding: 0 50px 0 0;
    }

    footer .social-links {
        flex-direction: column;
    }

    footer .social-links .tittle {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 576px) {

    .banner .banner-heading h1,
    .banner .banner-heading h1 span {
        font-size: 28px !important;
    }

    .banner .banner-heading h2 span {
        font-size: 22px !important;
    }

    .banner .banner-heading .scroller {
        height: 28px;
    }

    @keyframes scroll {
        0% {
            margin-top: 0px;
        }

        15% {
            margin-top: 0px;
        }

        25% {
            margin-top: -35px;
        }

        45% {
            margin-top: -35px;
        }

        55% {
            margin-top: -75px;
        }

        65% {
            margin-top: -75px;
        }

        75% {
            margin-top: -110px;
        }

        85% {
            margin-top: -110px;
        }

        95% {
            margin-top: -150px;
        }

        105% {
            margin-top: -150px;
        }
    }

    .banner .booking {
        margin: 400px 3% 10%;
        width: 94%;
    }

    .banner .booking .dates_time {
        flex-wrap: wrap;
    }

    .vehicles .vehicles-carousel {
        padding: 0 20px;
    }

    .vehicles .vehicles-content .vehicles-headings {
        height: 55px;
    }

    .vehicles .vehicles-img img {
        width: 60%;
        max-width: 60%;
    }

    .counter .g-5 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }

    .whatsapp-float {
        width: 140px;
        right: -103px;
    }

    .whatsapp-float i {
        font-size: 1.5em;
    }

    .whatsapp-float h1 {
        font-size: 0.9em;
    }
}

@media (max-width: 540px) {
    .booking-main .booking-details-container .vehicle-selection {
        margin-bottom: 50px;
    }

    .booking-main .booking-details-container .vehicle-selection .vehicle-card2 {
        width: 100%;
        margin: 10px 0;
    }

    .booking-main .booking-details-container .vehicle-card-inner {
        flex-direction: row;
    }
}

@media screen and (max-width: 520px) {
    .driver-section .driver-content {
        padding: 0 1rem;
    }

    .other-banner .contact-heading h1 {
        font-size: 45px;
    }
}

@media screen and (max-width: 420px) {
    .main-title p {
        font-size: 11px;
        line-height: 1.5;
    }

    .driver-section .driver-content .list-main .list .list-unstyled li {
        margin: 0 !important;
    }

    .driver-section .driver-content .list-main .list {
        padding: 0 20px 0 0;
    }

    .driver-section .driver-content .list-main .list-unstyled li span,
    .driver-section .driver-content .list-main .list-unstyled li strong {
        font-size: 11px;
    }

    .why-choose-us .feature-box .feature-card .feat-icon span {
        width: 65px;
        height: 65px;
        font-size: 25px;
    }

    .why-choose-us .feature-box .feature-card .feat-head {
        font-size: 11px;
    }

    .why-choose-us .feature-box .feature-card .feat-para {
        font-size: 10px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 400px) {
    .vehicles .vehicles-img img {
        width: 80%;
        max-width: 80%;
    }
}

@media (max-width: 425px) {
    .driver-section .taxi-image {
        width: 90%;
        float: right;
    }

    .col-425-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 360px) {
    #chatbox {
        right: 10px !important;
        width: 300px;
    }

    .sightseeing-cards .card .card_content .table2 tbody tr th {
        font-size: 16px;
    }

    .section-title {
        font-size: 25px !important;
    }
}

@media (min-width: 328px) and (max-width: 472px) {
    .banner .banner-heading h1 .h1-visible {
        visibility: visible;
    }
}

/* =================== MEDIA QUERRY END =================== */