@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");

:root {
    /* colors */
    --primary-color: #030303;
    --secondary-color: #ffffff1c;
    --desktop-bg: linear-gradient(to right,
            rgba(0, 0, 0, 1) 0%,
            rgba(94, 94, 94, 0) 100%);
    --background-color: linear-gradient(90deg, #000000 0%, #717171 100%);
    --nav-background: linear-gradient(180deg, #000000 -11.87%, #333333 114.03%);
    --text-color: #fff;
    --btn-border: 4px solid #ffffff33;
    --border: 2px solid #ffffff33;
    --border-2: 1.53px solid #00000033;
    --btn-color: #949494;
    --circle-border: #f6f6f6;
    --btn-gradient: linear-gradient(90deg, #747474 0%, #949494 100%);

    /* Font Families */
    --primary-font: "Mulish", serif;
    --secondary-font: "Open Sans", sans-serif;
}

/* CSS Reset */
div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

div::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

div::-webkit-scrollbar-thumb {
    background-color: #ff8447;
    border: 2px solid #ff8447;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: var(--primary-font);
    -webkit-font-smoothing: antialiased;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

.topbar_wrapper {
    background: var(--primary-color);
    padding-inline: 30px;
    border-bottom: var(--border);
}

.breadcrumb-item.active {
    color: #ffffff;
}

.inner_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 57px;
}

.inner_wrapper p {
    color: var(--text-color);
    font-family: var(--primary-font);
    font-size: 15px;
}

.inner_wrapper ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.inner_wrapper ul li {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
}

.inner_wrapper ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inner_wrapper ul li a i {
    color: #fff;
    font-size: 13px;
}

.navbar {
    background: var(--nav-background);
    padding-inline: 30px;
    padding-block: 10px;
}

.navbar-nav {
    gap: 45px;
    align-items: center;
}

.navbar-nav .nav-item .nav-link {
    font-size: 18px;
    color: var(--text-color);
}

.navbar-brand {
    width: 250px;
    height: 80px;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-wrap button {
    padding: 8px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--btn-gradient);
    color: var(--text-color);
    border-radius: 73.94px;
    border: none;
    box-shadow: none;
    font-weight: 500;
    font-size: 16px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.btn-wrap button:hover {
    color: #000 !important;
    background: #fff;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.btn-wrap button:hover img {
    filter: none;
}

.btn-wrap button a {
    color: #fff;
}

.btn-wrap button:hover a {
    color: #000000;
}

.airport_transfer_content .btn-wrap button {
    background: #fff;
    color: #000000;
    font-weight: 600;
}

nav ol li a {
    color: #fff;
    font-family: var(--primary-font);
}

.breadcrumb-item.active {
    color: #fff;
    font-family: var(--primary-font);
}

.dashboard_wrapper {
    background: url("../Images/desktop.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    position: relative;
}

.dashboard_wrapper::before {
    content: "";
    display: block;
    background: var(--desktop-bg);
    height: 100%;
    position: absolute;
    width: 100%;
}

.booking_box_wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.booking-box {
    position: absolute;
    bottom: -45px;
    z-index: 9;
    background: #fff;
    border-radius: 50px;
    width: 90%;
    margin: 0 auto;
    min-height: 94px;
    /* border: 2px solid rgba(0, 0, 0, 0.1); */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.booking_box_icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.booking_box_icon img {
    width: 40px;
    height: 40px;
}

.booking-box p {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.booking-box .form-select,
.booking-box .form-control,
.booking-box input {
    font-size: 15px;
    border: none;
    background: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    padding: 0;
    padding-bottom: 5px;
}



.booking-box .form-select option {
    margin-bottom: 10px;
    padding: 20px;
}

.form-control:focus,
input:focus,
.form-select:focus {
    color: none;
    border-color: none;
    outline: 0;
    box-shadow: none;
}

.booking-box .form-control[readonly] {
    background-color: transparent;
    opacity: 1;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    padding: 0;
    padding-bottom: 5px;
}

.booking_box_content {
    padding: 0 7px;
}

.booking-box .form-control::placeholder,
.booking-box .form-select::placeholder {
    color: #000000;
}

.inner_dashboard {
    height: 300px;
}

.select_vehicle_dashboard {
    background: url("../Images/select-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.booking_dashboard {
    background: url("../Images/select-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.airport_dashboard {
    background: url("../Images/airport-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.about_dashboard {
    background: url("../Images/about-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.inner_dashboard .dashboard_content {
    height: 295px;
}

.dashboard_content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-inline: 30px;
    gap: 20px;
    height: 100vh;
    max-width: 50%;
}

.dashboard_content span {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
}

.dashboard_content h1 {
    font-size: 42px;
    line-height: 50px;
    color: var(--text-color);
    font-weight: 500;
}

.dashboard_content p {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.mid_Information {
    /* padding-block-start: 100px; */
    padding-block-start: 60px;
    /* padding-inline: 30px; */
}

.common_head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.common_head h2 {
    font-size: 35px;
    font-weight: 700;
    color: #000;
}

.common_head p {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    color: #000;
}

.airport_name span {
    font-size: 16px;
    font-weight: 500;
}

.white p {
    color: #fff;
}

.common_head.white h2 {
    color: #fff;
}

.common_head.white p {
    color: #fff;
    margin-top: 12px;
}

.top_airport_carousel .swiper {
    width: 100%;
    height: 100%;
}

.top_airport_carousel {
    margin-top: 30px;
}

.top_airport_carousel .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 188px !important; */
}

.top_airport_carousel .top_airport_img_wrap {
    width: 100%;
    height: 100%;
}

.top_airport_carousel .top_airport_img_wrap img {
    width: 100%;
    height: 100%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 100%;
}

.top_airport_carousel .airport_name {
    margin-top: 10px;
}

.top_airport_carousel .top_airport_carousel .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top_airport_carousel .swiper-pagination {
    position: static;
    margin-top: 15px;
}

.top_airport_carousel .swiper-pagination-bullet-active {
    background: #000 !important;
}

.mid_Information {
    background: #fff;
}

.about_wrapper {
    margin-block: 60px;
    padding-inline: 30px;
}

.about_right_wrapper {
    padding-left: 30px;
}

.about_wrapper .about_img {
    width: 100%;
    margin: 0 auto;
    height: 490px;
}

.about_wrapper .about_img img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
}

.about_wrapper .about_content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.about_wrapper .about_content h3 {
    color: #000;
    font-size: 30px;
    font-weight: 800;
    line-height: 32px;
}

.about_wrapper p {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.about_wrapper .btn-wrap button {
    margin-top: 10px;
}

.about_radio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border: var(--border-2);
    border-radius: 30px;
    gap: 10px;
    min-width: 98.5px;
    width: auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.about_radio span {
    margin-bottom: 0 !important;
}

.about_radio.white {
    border: 1px solid #fff;
}

.about_radio span {
    background: #ededed;
    width: 25px;
    height: 25px;
    border-radius: 100%;
}

.about_radio p {
    font-weight: 700;
    font-size: 20px !important;
}


.fleet_wrapper {
    background: linear-gradient(180deg, #000000 0%, #333333 100%);
    min-height: 100vh;
    padding: 30px;
    margin-block: 60px;
}

.fleet_car_wrapper {
    margin-top: 70px;
}

.fleet_car_wrap .fleet_car_img {
    width: 100%;
    height: 235px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff1c;
    cursor: pointer;

}

.fleet_car_wrap .fleet_car_img img {
    width: 341px;
    height: 150px;
    object-fit: contain;
}

.fleet_car_wrap .fleet_content {
    margin-block: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.fleet_car_wrap .fleet_content h4 {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 700;
}

.fleet_car_wrap .fleet_content p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.carousel_feet_content h5 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
}

.carousel_feet_content p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-block: 20px;
}


.fleet_carousel_wrapper {
    margin-top: 45px;
}


.fleet_carousel_img img {
    width: 100%;
    height: 450px;
    object-fit: contain;
}

.passenger_assets_wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.passenger_assets_wrap li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 10px;
}

.passenger_assets_wrap .assetsIcon {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background: #3a3a3a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.passenger_assets_wrap .assetsIcon img {
    width: 25px;
    height: 25px;
}

.passenger_assets_wrap .passenger_content {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.arrow_carousel_wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.arrow_carousel_wrap .carousel-control-next,
.carousel-control-prev {
    position: static;
}

.dots_carousel_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    margin-right: 15px;
}

.dots_carousel_wrap .carousel-indicators {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.arrow_circle button {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background: #575757;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow_circle i {
    color: #fff;
    font-size: 18px;
}

.carousel-indicators {
    margin-left: 0;
    margin-right: 0;
}

.carousel-indicators button.active {
    background-color: #ff8447 !important;
}

.carousel-indicators button {
    background-color: #575757 !important;
}

.carousel-indicators button.active::before {
    width: 30px;
    height: 30px;
    border: 1.49px solid #ff8447;
    border-radius: 100%;
    position: absolute;
    content: "";
    left: -9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: -9px;
}

.active-border {
    border: 2px solid #ff8447;
}

.carousel-indicators {
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    margin-left: 11px;
    margin-right: 11px;
    aspect-ratio: 1/1;
    position: relative;
}

.carousel-control-prev-icon {
    background-image: url("../Images/arrow_left.svg") !important;
}

.carousel-control-next-icon {
    background-image: url("../Images/arrow_right.svg") !important;
}

.services_wrapper {
    background: linear-gradient(180deg, #000000 0%, #333333 100%);
    height: 700px;
}

.services_inner_wrap {
    margin-top: 20px;
    padding: 0 10px 0 30px;
}

.services_content .accordion {
    height: 432px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 15px;
}

.services_content h5 {
    margin-block: 25px;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.services_content .accordion-button {
    font-size: 19px;
    font-weight: 500;
}

.services_content .accordion-button:focus {
    box-shadow: none;
}

.services_content .accordion-item {
    border-bottom: 2px solid #ffffff33;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
}

.services_content .accordion-body p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.services_content .accordion-button::after {
    content: "\f067";
    background-image: none;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 30px;
    height: 30px;
    color: #fff;
    border: 1.49px solid #fff;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.services_content .accordion-button:not(.collapsed)::after {
    content: "\f068";
    background-image: none;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 30px;
    height: 30px;
    border: 1.49px solid #ff8447;
    color: #ff8447;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.services_content .accordion-button {
    background: transparent;
    color: var(--text-color);
}

.services_content .accordion-item {
    background: transparent;
    color: var(--text-color);
}

.airport_transfer_wrapper {
    background: url(../Images/add_bg.png);
    background-position: bottom right;
    background-size: cover;
    padding-inline: 30px;
    padding-block: 105px;
}

.airport_transfer_content {
    /* padding-block: 100px; */
}

.airport_transfer_content h2 {
    max-width: 70%;
}

.airport_transfer_content p {
    max-width: 70%;
}

.work_wrapper {
    padding-bottom: 60px;
    padding-inline: 30px;
}

.work_img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: var(--btn-color);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}


.work_cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.work_cards h4 {
    font-size: 20px;
    font-family: var(--primary-font);
    margin: 10px 0;
    font-weight: 700;
}

.work_cards p {
    font-size: 15px;
    font-family: var(--primary-font);
    text-align: center;
}

.facilities_wrapper {
    padding-block: 80px;
    padding-inline: 30px;
}

.facility_card {
    /* border: 1px solid var(--btn-color); */
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.facility_card_img {
    height: 75px;
    width: 75px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 100%;
}

.facility_card h4 {
    font-size: 20px;
    font-family: var(--primary-font);
    margin: 10px 0;
    font-weight: 800;
    text-align: center;
}

.facility_card p {
    font-size: 15px;
    font-family: var(--primary-font);
    text-align: center;
    font-weight: 500;
}

.service_img {
    width: 100%;
    height: 100%
}

.service_img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.shadow-effect {}

.shadow-effect p {
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}

.testimonials {
    min-height: 65vh;
    display: flex;
    align-items: center;
    padding-block: 60px;
}

.testimonials_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.testimonials_content h3 {
    color: #000;
    font-weight: 700;
}

.testimonials_content .designation {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    display: block;
}

.testimonials_content p {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.rating i {
    font-size: 18px;
}

.rating .fa-solid.g {
    color: #e4e4e4;
}

.rating .fa-solid {
    color: #e95440;
}

.review {
    position: fixed;
    bottom: -64px;
    width: 850px;
}

.testimonial-name {
    margin: -17px auto 0;
    display: table;
    background: #3190e7;
    padding: 9px 35px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

.owl-carousel .item {
    text-align: center;
    padding: 25px;
    margin-bottom: 80px;
    opacity: 0.5;
    transform: scale(0.8);
    transition: all 0.3s ease-in-out;
}

.owl-carousel .item .testimonials_content {
    display: none;
}

.owl-carousel .owl-item.active.center .item .testimonials_content {
    display: flex;
}

.owl-carousel .owl-item.active.center .item {
    opacity: 1;
    transform: scale(1);
}

.owl-carousel .owl-item img {
    max-width: 90px;
    margin: 0 auto 17px;
    border-radius: 50%;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-carousel .owl-dots.disabled {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.owl-carousel .owl-dots .owl-dot span {
    background: rgba(113, 113, 113, 0.4);
    display: inline-flex;
    align-items: center;
    height: 10px;
    width: 10px;
    margin: 5px;
    border-radius: 50%;
    transition: all 250ms ease-out;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: rgba(113, 113, 113, 1);
    transform: scale(1.3);
    width: 30px;
    height: 7px;
    border-radius: 5px;
}

footer {
    background: linear-gradient(180deg, #000000 0%, #333333 100%);
    padding-block: 30px 0;
}

.footer_wrapper {
    padding-inline: 30px;
}

.footer_top {
    display: flex;
    justify-content: space-between;
}

.social_links ul {
    justify-content: center;
    display: flex;
    align-items: center;
    height: 100px;
}

.social_links ul li {
    background: #252525;
    border: 1px solid #252525;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}

.social_links ul li a {
    color: #fff;
}

.footer_content {
    margin-top: 35px;
}

.footer_logo {
    height: 110px;
    width: 100%;
}

.footer_contact_info_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.footer_contact_info_wrap li {
    font-size: 14px;
}

.footer_about p {
    color: #fff;
    max-width: 395px;
    font-size: 15px;
}

.footer_about ul li {
    color: #fff;
    display: flex;
    /* margin-top: 12px; */
    align-items: center;
    gap: 10px;

}

.footer_about ul li .footer_info_icon {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: #717171;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_about ul li .footer_info_icon i {
    font-size: 14px;
}

.footer_links h4 {
    color: #fff;
    font-family: var(--primary-font);
}

.footer_links ul li a {
    color: #fff;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 300;
}

.footer_links ul li {
    margin-top: 10px;
}

.select_wrapper {
    padding-block: 60px;
    padding-inline: 30px;
}

.select_vehicle_card_wrapper {
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    padding: 25px;
}

.select_vehicle_card_wrapper h2 {
    font-size: 30px;
}

.select_vehicle_card {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 25px;
    margin-top: 45px;
    background: #f8f9fb;
}

.vehicle_img {
    background-color: #fff;
    border-radius: 20px;
    padding: 10px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle_img img {
    height: 90%;
    width: 100%;
    object-fit: contain;
}

.vehicle_details {
    padding: 30px;
}

.vehicle_details h4 {
    font-size: 27px;
    font-family: var(--primary-font);
    margin-bottom: 8px;
    font-weight: 800;
}

.vehicle_details p {
    font-size: 18px;
    font-family: var(--primary-font);
    font-weight: 500;
    line-height: 27px;
}

.vehicle_facilities {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.vehicle_facilities i {
    font-size: 18px;
    color: #1c1b1f;
}

.vehicle_facilities li {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--primary-font);
}

.vehicle_features {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.vehicle_btn {
    border: 1px solid #000;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 12px;
    background-color: #fff;
}

.vehicle_btn img {
    width: 25px;
    height: 25px;
    margin-right: 7px;
}

.vehicle_features p {
    font-size: 18px;
    font-weight: 600;
}

.select_btn_wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.btn_wrapper2 button {
    color: #000;
    font-size: 20px;
    border: 3px solid rgba(0, 0, 0, 0.4);
    width: 350px;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn_wrapper2 button:hover {
    background: linear-gradient(90deg, #000 0%, #717171 100%);
    color: #fff;
}

.btn_wrapper2 a {
    color: #000;
    font-size: 20px;
    border: 3px solid rgba(0, 0, 0, 0.4);
    width: 350px;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn_wrapper2 a:hover {
    background: linear-gradient(90deg, #000 0%, #717171 100%);
    color: #fff;
}

.btn-container {
    display: flex;
    justify-content: space-between;
}

.btn-container .btn_wrapper2 button {
    background: #000000;
    color: #ffffff;
}

.btn-container .btn_wrapper2 button:hover {
    background: linear-gradient(90deg, #000 0%, #717171 100%);
    color: #fff;
}

.btn-container .btn_wrapper2 a {
    background: #000000;
    color: #ffffff;
}

.btn-container .btn_wrapper2 a:hover {
    background: linear-gradient(90deg, #000 0%, #717171 100%);
    color: #fff;
}

.vehicle_details_wrapper {
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
}

.vehicle_detail_img {
    height: 300px;
    width: 100%;
    background: #ebebeb;
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 25px;
    position: relative;
}

.vehicle_detail_img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.vehicle_detail_img span {
    background: linear-gradient(90deg, #000 0%, #717171 100%);
    padding: 10px 20px;
    color: #ffffff;
    border-radius: 12px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.travel_details {
    position: relative;
}

.travel_details ul::before {
    content: "";
    display: inline-block;
    width: 2px;
    background: #000000;
    position: absolute;
    left: 20px;
    top: 53px;
    height: calc(100% - 105px);
}

.travel_details ul li {
    display: flex;
    align-items: center;
    margin-top: 35px;
    gap: 14px;
    position: relative;
    /* padding-left: 25px; */
    margin-bottom: 25px;
}

.travel_details ul li .location {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}

.location_details h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.location_details p {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 0;
}

.distance_details ul {
    display: flex;
    margin-top: 35px;
}

.distance_details ul li {
    margin-right: 45px;
    margin-left: 15px;
    font-size: 17px;
    font-weight: 600 !important;
}

.vehicle_details_footer {
    font-size: 17px;
    font-weight: 500;
}

.footer_links ul li a {
    font-family: var(--primary-font);
}

.footer_info_icon_wrap {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: #717171;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_links ul {
    margin-top: 20px;
}

.footer_about h3 {
    color: #fff;
    margin-bottom: 20px;
}

.footer_copyright {
    padding-block: 10px;
    text-align: center;
    margin-top: 45px;
    background: linear-gradient(90deg,
            rgba(113, 113, 113, 1) 0%,
            rgba(209, 209, 209, 1) 58.09997320175171%,
            rgba(147, 147, 147, 1) 100%);
}

.footer_copyright p {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 600;
}

/* --------------------about----------------------- */
.btn-wrap button img {
    filter: invert(1);
}

.airport_transfer_wrapper .btn-wrap button img {
    filter: invert(0);
}

.common_head .white h2,
.white h4 {
    color: #fff;
}

.about_wrapper span {
    color: #929292;
    font-size: 20px;
    font-weight: 700;
    display: block;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
}

.about_features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.about_features li {
    margin-right: 50px;
    font-size: 17px;
    font-weight: 700;
    margin-top: 12px;
}

.about_features li i {
    color: linear-gradient(90deg, #747474 0%, #949494 100%);
}

.about_wrapper h3 {
    font-weight: 700;
    line-height: 37px;
    font-family: var(--primary-font);
    font-size: 30px;
}

.about_facilities li {
    display: flex;
    align-items: center;
    margin-top: 45px;
    margin-right: 0px;
    gap: 23px;
}

.about_facility_img {
    background: #f2f2f2;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}

.about_facility_img img {
    height: 50px;
    width: 50px;
}

.about_facility_content h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.about_facility_content p {
    font-size: 16px;
    font-weight: 500;
}

.showcase_wrapper {
    background: linear-gradient(180deg, #000000 0%, #333333 100%);
    /* margin-block: 60px; */
    padding-block: 60px;
    padding-inline: 30px;
}

.filter_airport_wrapper {
    padding-block: 10px;
    padding-inline: 30px;
}

.airport_list {
    padding-top: 20px;
    padding-bottom: 60px;
}

.showcase_main_img {
    height: 475px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.showcase_main_img img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.showcase_num {
    margin-block: 35px;
}

#map {
    height: 400px;
    width: 100%;
}

.showcase_card {
    background: #ffffff;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 22px;
}

.showcase_card .showcase_img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase_card .showcase_img img {
    width: 35px;
    height: 35px;
}

.showcase_card p {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-top: 12px;
}

/* --------------------------------service-page------------------------------ */

.deal_wrapper {
    background: linear-gradient(180deg, #000000 0%, #333333 100%);
    margin-block: 60px;
    padding-block: 75px;
}

.deal_wrapper .btn-wrap button {
    background: #fff;
    color: #000000;
    font-weight: 600;
    font-size: 15px;
}

.deal_wrapper .btn-wrap button img {
    filter: invert(0);
}

.service_wrapper {
    margin-block: 60px;
    padding-inline: 30px;
}

.service_card_wrapper {
    margin-top: 30px;
}

.service_card {
    background: rgba(217, 217, 217, 0);
    border: 2px solid;
    border-color: rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    padding: 30px;
    border-radius: 10px;
    min-height: 100%;

}

.service_card .service_img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.service_card .service_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service_card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-block: 12px;
}

.service_card p {
    font-size: 15px;
    margin-bottom: 20px;
}

/* ----------------------------booking-------------------------- */
.booking_details_wrapper {
    margin-block: 60px;
    padding-inline: 30px;
}

.booking_Details_form {
    border: 2px solid;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 30px;
    background: #fff;
}

.iti {
    display: block;
}

.booking_extra_option {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-block: 20px;
    flex-wrap: wrap;
}

.booking_extra_option .form-check input {
    width: 20px;
    height: 20px;
}

.booking_extra_option .form-check {
    width: 350px;
    margin-top: 12px;
}

#pickupDate::-webkit-calendar-picker-indicator {
    display: none;
}

#pickupDate {
    appearance: textfield;
}

#pickupTime::-webkit-calendar-picker-indicator {
    display: none;
}

#pickupTime {
    appearance: textfield;
}

#dropTime::-webkit-calendar-picker-indicator {
    display: none;
}

#dropTime {
    appearance: textfield;
}

#dropDate::-webkit-calendar-picker-indicator {
    display: none;
}

#dropDate {
    appearance: textfield;
}

.booking_Details_form form {
    margin-top: 20px;
}

.booking_Details_form form label {
    font-size: 17px;
    font-weight: 600;
    margin-top: 12px;
}

.booking_Details_form form .form-check label {
    margin-top: 4px;
    margin-left: 12px;
}

.input_box {
    display: block;
    width: 100%;
    color: #212529;
    background: #f8f9fb;
    border: 2px solid #00000033;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.input_wrap {
    position: relative;
    height: 49.6px;
    display: block;
    width: 100%;
    color: #212529;
    background: #f8f9fb;
    border: 2px solid #00000033;
    /* padding: 12px; */
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.input_icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    top: 0;
    left: 8px;
}

.input_icon img {
    width: 30px;
}

.input_wrap select {
    width: 100%;
    height: 100%;
    background: #f8f9fb;
    border: 0;
    padding-left: 41px;
    border-radius: 0.25rem;
}

.counter-box {
    padding-left: 41px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.count_int {
    border: 0.5px solid #ced4da;
    border-radius: 100%;
    width: 25px;
    height: 25px;
}

.counter_function {
    display: flex;
    align-items: center;
    gap: 16px;
}

.input_wrap input {
    width: 100%;
    height: 100%;
    background: #f8f9fb;
    border: 0;
    padding-inline: 40px;
    border-radius: 0.25rem;
}

.input_wrap select:focus-visible {
    box-shadow: none;
    outline: none;
}

.booking_Details_form form input::placeholder {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.booking_extra_option .form-check {
    display: flex;
    align-items: center;
}

/* --------------------------------------------Airport------------------------------------------ */

.airport_content_wrapper {
    margin-block: 60px;
    padding-inline: 30px;
}

.filter_list_wrapper {
    background: #f5f5f5;
    border-radius: 12px;
    display: flex;
    padding: 12px;
    margin-block: 45px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.filter_list_wrapper button {
    background: #8f8f8f;
    border-radius: 10px;
    border-color: transparent;
    padding: 2px 15px;
    color: #ffffff;
}

.filter_list_wrapper button a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.filter_list_wrapper ul {
    margin-left: 20px;
    display: flex;
    justify-content: space-around;
    gap: 11px;
    flex-wrap: wrap;
}

.filter_list_wrapper ul li {
    background: rgba(143, 143, 143, 0);
    border-radius: 4px;
    border: 2px solid;
    border-color: rgba(0, 0, 0, 0.2);
    padding: 4px 11px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    aspect-ratio: 1 / 1;
}

.filter_list_wrapper ul li a {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}

.airport_list_card {
    background: linear-gradient(90.9deg,
            rgba(6, 6, 6, 1) 0%,
            rgba(48, 48, 48, 1) 100%);
    border-radius: 10px;
    height: 375px;
    overflow: hidden;
}

.airport_card_img {
    height: 307px;
    width: 100%;
}

.airport_card_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.airport_name {
    text-align: center;
    padding-block: 10px;
}

.airport_name p {
    margin-bottom: 0;
    font-size: 27px;
    color: #ffffff;
    font-weight: 600;
}

.service_card_img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    /* padding: 20px; */
}

.service_card_img img {
    height: 60px;
    width: 60px;
}

/* ------------------------contact------------------------- */
.contact_wrapper {
    margin-block: 60px;
}

.contact_wrapper .container {
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
}

.contact_details {
    margin-top: 25px;
}

.contact_details li {
    font-size: 18px;
    margin-top: 18px;
}

.side-lines {
    position: relative;
}

.side-lines::before,
.side-lines::after {
    content: "";
    position: absolute;
    top: 26%;
    width: 32%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.2);
}

.side-lines::before {
    width: 62%;
    margin-left: -138px;
}

.side-lines::after {
    width: 65%;
    margin-right: -140px;
}

.side-lines::before {
    left: 0;
}

.side-lines::after {
    right: 0;
}

.work_cards_wrapper {
    display: flex;
}

/* ----------------------------------------responsive-------------------------------------- */
@media (max-width: 2560.98px) {
    body {
        max-width: 1920px;
    }
}

/* 
css */

.alert-box {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 250px;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: fadeIn 0.5s ease-in-out;
}

.success {
    background-color: #28a745;
    /* Green */
}

.error {
    background-color: #dc3545;
    /* Red */
}

.close-btn {
    float: right;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#openMenu {
    display: none;
    background: transparent;
    border: 0;
}

#openMenu i {
    color: #fff;
    font-size: 26px;
}

#closeBar {
    display: none;
    background: transparent;
    border: 0;
}

#closeBar i {
    color: #fff;
    font-size: 23px;
}

.responsive_logo {
    display: none;
}


/* ---------------------------------------------conatact-page------------------------------------------ */


.contact-container {
    background: white;
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 100vh;
}

.contact-header {
    padding: 15px 0 15px 0;
    background-color: #f8f9fa;
}

.contact-header h1 {
    font-size: 4rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    padding-left: 15px;
}

.contact-info-section {
    background: #2c2c2c;
    color: white;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.contact-info-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-section h3 {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
}

.contact-info-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #ccc;
    max-width: 445px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    gap: 10px;
}

.contact-item i {
    color: #fff;
    font-size: 1rem;
}

.contact-item span {
    color: #ccc;
    font-size: 15px;
}

.business-hours {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.business-hours h6 {
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 16px;
}

.business-hours p {
    color: #ccc;
    margin: 0;
    font-size: 16px;
}

.social-icons {
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    font-size: 16px;
    background: #717171;
    border-radius: 4px;
    text-align: center;
    line-height: 35px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #dc3545;
    transform: translateY(-2px);
}

.form-section {
    padding: 40px 50px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    border-color: #000;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #999;
    font-size: 14px;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-send {
    background: var(--btn-gradient);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    float: right;
}

.btn-send:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}