@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #e92002;
    --secondary-color: #fafad2;
    --white-color: #fff;
    --black-color: #000;
    --formbg-color: #EDEEF3;
}

body {
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

figure {
    margin: 0;
    padding: 0;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

p,
span {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

a,
button {
    display: inline-block;
}

    button:focus {
        outline: none;
        box-shadow: none;
    }

select {
    cursor: pointer;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.reviewLink {
    background: red;
    color: white;
    padding: 7px;
    border-radius: 5px;
    position: relative;
    top: -20px;
    left: 85%;
}

    .reviewLink:hover {
        color: black;
    }
/************************** All Main Css Start **************************/
/* mini header css */
.mini-header {
    width: 100%;
    padding: 5px;
    background: var(--primary-color);
}

.infocont {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
}

    .infocont a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
        font-family: "Poppins", sans-serif;
    }

        .infocont a:hover {
            color: var(--white-color);
        }

        .infocont a > i {
            padding-right: 5px;
        }

.social_icons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    margin-top: 0px;
}

    .social_icons i {
        color: var(--white-color);
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

        .social_icons i:hover {
            color: var(--white-color);
        }
/* mini header css */
/* header css */
.header {
    width: 100%;
    position: relative;
    background: var(--white-color);
    transition: all 0.3s ease;
    z-index: 10;
}

.header-sticky {
    width: 100%;
    position: fixed;
    background: var(--white-color);
    transition: all 0.3s ease;
    z-index: 10;
}

    .header-sticky.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--white-color);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        animation: fadeInDown 0.5s ease;
    }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-sticky.sticky .navbar-nav .nav-item .nav-link {
    color: var(--black-color);
}

    .header-sticky.sticky .navbar-nav .nav-item .nav-link.active {
        color: var(--white-color);
    }

#scrollBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s;
}

    #scrollBtn:hover {
        background: var(--black-color);
        color: var(--white-color);
    }

.navbar-expand-lg {
    padding: 10px 0;
    background: transparent;
}

    .navbar-expand-lg .logo {
        width: 180px;
        border-radius: 10px;
        background: #fff;
        padding: 6px;
    }

    .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
        align-items: center;
    }

    .navbar-expand-lg .navbar-nav {
        align-items: center;
        gap: 20px;
    }

.navbar-light .navbar-nav .nav-link.active {
    border: none;
    padding: 10px 20px !important;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-Btn {
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

    .header-Btn:hover {
        color: var(--white-color);
        background: var(--black-color);
    }

.navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.navbar-nav .nav-item:hover .nav-link {
    color: var(--white-color);
}

.navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::before {
    width: 100%;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    padding-right: 20px;
}
/* header css */
/* hero section */
.hero-section {
    width: 100%;
    height: 100%;
    padding: 14% 0 11%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url(../images/hero-banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 30%;
        height: 100%;
        background-color: var(--primary-color);
        opacity: 0.4;
        display: none;
    }

.bookingForm {
    width: 100%;
    height: 100%;
}

.left-herocon {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
}

    .left-herocon h1 {
        font-size: 16px;
        font-weight: 600;
        color: var(--white-color);
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
        width: fit-content;
        margin: 0 auto;
    }

    .left-herocon h2 {
        font-size: 34px;
        font-weight: 700;
        color: var(--white-color);
        text-align: center;
        margin: 0 auto;
    }

    .left-herocon p {
        color: var(--white-color);
        margin-bottom: 10px;
        text-align: center;
    }

.right-bg-con {
    width: 100%;
    height: 100%;
}

.main-booking-form {
    width: 100%;
    padding: 30px 40px 20px 40px;
    background: #ffffff;
    border-radius: 25px;
    margin-top: 20px;
}

    .main-booking-form .form-heading {
        width: 100%;
    }

        .main-booking-form .form-heading h2 {
            color: #000000;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
        }

.form-input-div {
    width: 100%;
    background: var(--primary-color);
    padding: 10px 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 10px;
}

.icon-div i {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    border-radius: 7px;
    color: #ffffff;
    font-size: 20px;
    position: relative;
    z-index: 0;
}

.form-input-style {
    width: 100%;
    padding: 10px 35px 10px 5px;
    border: none;
    outline: none;
    color: var(--white-color);
    position: relative;
    z-index: 1;
}

    .form-input-style:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }

    .form-input-style::placeholder {
        color: var(--white-color);
    }

.form-input-div .custom-i {
    color: var(--white-color);
    position: absolute;
    top: 15px;
    right: 10px;
    z-index: 0;
}

.input-div {
    width: 100%;
    position: relative;
    z-index: 1;
}

.form-input-style option {
    color: var(--black-color);
}

.form-input-style-1 {
    width: 100%;
    padding: 10px 5px;
    border: none;
    outline: none;
    color: var(--black-color);
    position: relative;
    z-index: 1;
    background: transparent;
}

    .form-input-style-1::placeholder {
        color: var(--black-color);
    }

.form-input-div-1 {
    width: 100%;
    background: #efefef;
    padding: 10px 10px;
    display: flex;
    gap: 10px;
    border: 1px solid #000;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 10px;
}

.input-div .custom-time {
    color: var(--black-color);
    position: absolute;
    top: 15px;
    right: 10px;
    z-index: 0;
}

.border-radius-right {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: 1px solid #ccc !important;
}

.border-radius-left {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.form-btn {
    width: 100%;
    padding: 12px 0;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

    .form-btn:hover {
        background: var(--black-color);
        color: var(--white-color);
    }
/* hero section */
/* about us section */
.about-us-section {
    width: 100%;
    padding: 40px 0;
}

.left-about-content {
    width: 100%;
    padding: 20px;
    position: relative;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
}
/* Animated Button */
.video-btn {
    font-size: 18px;
    width: 80px;
    height: 80px;
    background: #e92002;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255,77,77,0.8);
    animation: blink 1.5s infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
}

    .video-btn:hover {
        background: var(--black-color);
    }

        .video-btn:hover i {
            color: var(--white-color);
        }

@keyframes blink {
    0% {
        box-shadow: 0 0 30px #ff4d4d;
    }

    50% {
        box-shadow: 0 0 80px #ff1a1a;
    }

    100% {
        box-shadow: 0 0 100px #ff4d4d;
    }
}

/* Popup Overlay */
.video-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
    z-index: 9999;
}

    .video-popup.active {
        visibility: visible;
        opacity: 1;
    }

/* Popup Box */
.popup-content {
    background: #000;
    width: 80%;
    max-width: 900px;
    border-radius: 15px;
    overflow: hidden;
    transform: scale(0.7);
    animation: zoomIn 0.4s forwards;
    position: relative;
}

@keyframes zoomIn {
    to {
        transform: scale(1);
    }
}

/* Video */
.popup-content video {
    width: 100%;
    height: auto;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 35px;
    color: #fff;
    cursor: pointer !important;
    border: none;
    outline: none;
    background: transparent;
}

.video-btn i {
    font-size: 24px;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.right-about-content {
    width: 100%;
    padding: 20px;
}

    .right-about-content h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .right-about-content p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .right-about-content .about-btn {
        border: none;
        padding: 10px 40px !important;
        background: var(--primary-color);
        color: var(--white-color);
        border-radius: 10px;
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        transition: all 0.5s ease-in-out;
    }

        .right-about-content .about-btn:hover {
            background: var(--black-color);
        }
/* about us section */
/* service section start */
.services-section {
    width: 100%;
    padding: 40px 0;
    background: #f9f9f9;
}

    .services-section .service-heading {
        width: 100%;
        text-align: center;
    }

        .services-section .service-heading h2 {
            font-size: 32px;
            font-weight: 700;
            width: fit-content;
            margin: 0 auto;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }

.service-card {
    width: 100%;
    padding: 60px;
    height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
    margin-top: 80px;
    border: 3px solid #e92002;
}

    .service-card h2 {
        font-size: 24px;
        font-weight: 700;
        margin-top: 20px;
        text-align: center;
    }

    .service-card p {
        text-align: center;
    }

    .service-card .service-btn {
        border: none;
        padding: 10px 40px !important;
        background: var(--primary-color);
        color: var(--white-color);
        border-radius: 10px;
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        transition: all 0.5s ease-in-out;
    }

        .service-card .service-btn:hover {
            background: var(--black-color);
        }

.top-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 3%;
    left: 47%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    rotate: 45deg;
}

    .top-icon i {
        font-size: 20px;
        color: #fff;
        rotate: -45deg;
    }
/* service section start */
/* app section start */
.app-section {
    width: 100%;
    padding: 40px 0;
}

    .app-section .app-heading {
        width: 100%;
    }

        .app-section .app-heading h2 {
            font-size: 32px;
            font-weight: 700;
            width: fit-content;
            margin: 0 auto;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }

        .app-section .app-heading h3 {
            font-size: 52px;
            font-weight: 700;
            margin-top: 80px;
            margin-left: 10px;
        }

.main-app-content {
    width: 100%;
    background: #000000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 60px;
    border-radius: 15px;
    margin-top: 40px;
    border-radius: 20px;
    position: relative;
}

    .main-app-content .app-text-content {
        width: 100%;
    }

        .main-app-content .app-text-content .app-papr {
            font-size: 16px;
            margin-bottom: 20px;
            color: var(--white-color);
        }

.download-app-buttons {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
}

    .download-app-buttons .app-btn {
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
    }

        .download-app-buttons .app-btn:hover {
            background: var(--white-color);
        }

        .download-app-buttons .app-btn i {
            font-size: 22px;
            color: var(--white-color);
            transition: all 0.3s ease-in-out;
        }

        .download-app-buttons .app-btn:hover i {
            color: var(--primary-color);
        }

    .download-app-buttons p {
        color: var(--white-color);
        font-size: 16px;
    }

.app-screen-image {
    position: absolute;
    top: -290px;
    right: 50px;
}

    .app-screen-image .app-screen {
        width: 100%;
        height: 650px;
        object-fit: contain;
    }
/* app section start */
/* fleets section css start */
.fleets-section {
    width: 100%;
    padding: 40px 0;
    background: #f2f2f2;
}

    .fleets-section h2 {
        font-size: 32px;
        font-weight: 700;
        width: fit-content;
        margin: 0 auto;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
    }

    .fleets-section .fleet-section-image {
        background: var(--primary-color);
        padding: 20px;
        border-radius: 15px;
        margin-top: 10px;
    }

        .fleets-section .fleet-section-image .fleet-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

    .fleets-section .fleet-section-content {
        width: 100%;
        padding: 0 20px;
    }

        .fleets-section .fleet-section-content h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--black-color);
        }

        .fleets-section .fleet-section-content .para {
            font-size: 16px;
            margin-bottom: 10px;
            color: var(--black-color);
        }

        .fleets-section .fleet-section-content .fleet-features {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
            margin-bottom: 10px;
        }

            .fleets-section .fleet-section-content .fleet-features p i {
                width: 30px;
                height: 30px;
                background: var(--primary-color);
                color: var(--white-color);
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 14px;
            }

            .fleets-section .fleet-section-content .fleet-features p {
                display: flex;
                gap: 7px;
                align-items: center;
            }

        .fleets-section .fleet-section-content .fleet-btn {
            padding: 10px 40px;
            color: var(--white-color);
            background: var(--primary-color);
            text-align: center;
            font-weight: 600;
            font-family: "Poppins", sans-serif;
            border-radius: 10px;
            transition: all 0.3s ease-in-out;
        }

            .fleets-section .fleet-section-content .fleet-btn:hover {
                color: var(--white-color);
                background: var(--black-color);
            }

.fleet-slider {
    position: relative;
    margin-top: 50px;
}

.custom-prev, .custom-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer !important;
    transition: 0.3s ease;
}

    .custom-prev:hover, .custom-next:hover {
        background: var(--black-color);
        color: var(--white-color);
    }

/* left button */
.custom-prev {
    left: -100px;
}

/* right button */
.custom-next {
    right: -100px;
}
/* fleets section css start */
/* Contact Us Section Start */
.contact-section {
    width: 100%;
}

    .contact-section .contact-main {
        width: 100%;
        background: var(--black-color);
        padding: 60px 0;
    }

.contact-content {
    width: 100%;
    padding: 0 10px;
}

    .contact-content h2 {
        color: var(--white-color);
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .contact-content .contact-para {
        color: var(--white-color);
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 20px;
    }

.contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .contact-info p {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .contact-info p i {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 50%;
            color: var(--white-color);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
        }

        .contact-info p a {
            color: var(--white-color);
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease-in-out;
        }

            .contact-info p a:hover {
                color: var(--primary-color);
            }

.contact-form {
    width: 100%;
    padding: 30px 40px;
    background: var(--white-color);
    border-radius: 15px;
}

    .contact-form h2 {
        color: var(--black-color);
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
    }

.contact-input-div {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .contact-input-div label {
        color: var(--black-color);
        font-size: 16px;
        font-weight: 500;
    }

    .contact-input-div .contact-input-style {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
        outline: none;
        font-size: 16px;
        color: var(--black-color);
    }

        .contact-input-div .contact-input-style:focus {
            border: 1px solid var(--primary-color);
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
        }

        .contact-input-div .contact-input-style::placeholder {
            color: #999;
        }

.contact-btn {
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

    .contact-btn:hover {
        background: var(--black-color);
        color: var(--white-color);
    }
/* Contact Us Section Start */
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--primary-color);
}

    .footer .footer-logo {
        width: 270px;
        background-color: #F6F7FB;
        padding: 10px;
        border-radius: 10px;
    }

.center-footer-content {
    width: 100%;
    height: 100%;
    margin-left: 20px;
}

    .center-footer-content h2 {
        font-weight: 600;
        color: #fff;
        font-size: 24px;
    }

.footer_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    padding: 0px;
    margin-top: 10px;
}

    .footer_ul .footer_li a {
        color: var(--white-color);
        transform: translateX(0px);
        transition: all 0.3s ease-in-out;
        font-size: 14px;
        font-family: "Poppins", sans-serif;
    }

        .footer_ul .footer_li a:hover {
            transform: translateX(10px);
        }

        .footer_ul .footer_li a i {
            padding-right: 5px;
        }

.right-footer-content h2 {
    font-weight: 600;
    color: var(--white-color);
    font-size: 24px;
}

.right-footer-content .getin_touch {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    margin-top: 10px;
}

.getin_touch a {
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}

    .getin_touch a:hover {
        color: var(--white-color);
    }

    .getin_touch a i {
        padding-right: 5px;
    }

.getin_touch p {
    color: var(--white-color);
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 14px;
}

    .getin_touch p i {
        padding-right: 5px;
        margin-top: 3px;
    }

.last-footer-content h2 {
    font-weight: 600;
    color: var(--white-color);
    font-size: 24px;
}

.left-footer-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

    .social-icons .icon {
        background: var(--white-color);
        padding: 10px 20px;
        color: var(--primary-color);
        transition: all 0.3s ease-in-out;
        border-radius: 5px;
    }

        .social-icons .icon:hover {
            background: var(--black-color);
            color: var(--white-color);
        }

.bootom-footer-section {
    width: 100%;
    background: var(--black-color);
    padding: 10px 0;
    color: var(--white-color);
    text-align: center;
}

    .bootom-footer-section .bottom-footer-content p {
        margin-bottom: 0px !important;
        color: var(--white-color);
    }

    .bootom-footer-section .bottom-footer-content a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .bootom-footer-section .bottom-footer-content a:hover {
            color: var(--primary-color);
        }
/* footer section css */
/* inner pages banner css */
.banner-section {
    width: 100%;
    padding: 0px 0;
    height: 40vh;
    background: var(--black-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* display: flex; */
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    bottom: 0;
}

    .banner-section h2 {
        font-size: 52px;
        font-weight: 600;
        color: #fff;
        margin-top: 170px;
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}
/* inner pages banner css */
/* our clients section start */
.ourclients-section {
    width: 100%;
    padding: 40px 0;
}

.ourclient-image-box {
    width: 100%;
}

    .ourclient-image-box img {
        width: 100%;
        border: 5px solid var(--primary-color);
        border-radius: 15px;
    }

.ourclient-content-box {
    width: 100%;
    padding: 0 30px;
}

    .ourclient-content-box p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .ourclient-content-box ul li {
        width: 100%;
        list-style: disc;
        margin-left: 20px;
        margin-bottom: 5px;
        font-size: 16px;
    }
/* our clients section start */
/* Tour Packages section start */
.tourpackages-section {
    width: 100%;
    padding: 40px 0;
}

.tourpackages-image-box {
    width: 100%;
}

    .tourpackages-image-box img {
        width: 100%;
        border: 5px solid var(--primary-color);
        border-radius: 15px;
    }

.tourpackages-content-box {
    width: 100%;
    padding: 0 30px;
}

    .tourpackages-content-box p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .tourpackages-content-box ul li {
        width: 100%;
        list-style: disc;
        margin-left: 20px;
        margin-bottom: 5px;
        font-size: 16px;
    }

        .tourpackages-content-box ul li a {
            color: var(--black-color);
            transition: all 0.3s ease-in-out;
        }

            .tourpackages-content-box ul li a:hover {
                color: var(--primary-color);
            }

            .tourpackages-content-box ul li a span {
                color: var(--primary-color);
                font-weight: 600;
            }

.extra-color {
    color: var(--primary-color);
    font-weight: 600;
}
/* Tour Packages section start */
/* testimonials section */
.testimonials {
    width: 100%;
    height: 100%;
    padding: 100px 0;
}

.THeading {
    width: 100%;
    height: 100%;
    text-align: center;
}

    .THeading h2 {
        font-size: 20px;
        font-weight: 600;
        color: var(--secondary-color);
    }

    .THeading h3 {
        font-size: 52px;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

.main-testimonials {
    width: 100%;
    height: 100%;
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.left-test {
    padding: 50px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
    height: 350px;
    margin: 0 20px;
}

.slick-track {
    padding: 20px 0;
}

.left-test .T-comm {
    margin-bottom: 20px;
}

.rpofile {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .rpofile img {
        width: 50px;
    }

.rating p {
    font-size: 20px;
    font-weight: 600;
}

.rating i {
    color: gold;
}
/* testimonials section */
/* drive for us section start */
.drive-for-us {
    width: 100%;
    padding: 40px 0;
}

.driveforus-content-box {
    width: 100%;
}

    .driveforus-content-box h2 {
        font-size: 32px;
        font-weight: 700;
        width: fit-content;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
    }

    .driveforus-content-box ul {
        width: 100%;
        margin: 20px 0;
    }

        .driveforus-content-box ul li {
            width: 100%;
            list-style: disc;
            margin-left: 20px;
            margin-bottom: 5px;
            font-size: 16px;
        }

.main-form-driver {
    width: 100%;
    padding: 10px;
    background: #ffffff;
    border-radius: 25px;
    margin-top: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    .main-form-driver .form-image {
        width: 100%;
    }

        .main-form-driver .form-image img {
            width: 100%;
            height: 72vh;
            object-fit: cover;
            border-radius: 15px;
        }

.driver-input-div {
    width: 100%;
    margin-bottom: 15px;
}

    .driver-input-div .driver-input {
        width: 100%;
        padding: 8px 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        outline: none;
        font-size: 16px;
        color: var(--black-color);
    }

        .driver-input-div .driver-input:focus {
            border: 1px solid var(--primary-color);
        }

        .driver-input-div .driver-input::placeholder {
            color: #999;
        }

.driver-info-div {
    width: 100%;
    margin-bottom: 15px;
}

    .driver-info-div h2 {
        font-size: 20px;
        font-weight: 600;
        margin-top: 10px;
    }

.driver-doc-div {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

    .driver-doc-div .driver-doc-input {
        width: 83%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 5px;
        outline: none;
        font-size: 16px;
        color: var(--black-color);
    }

        .driver-doc-div .driver-doc-input:focus {
            border: 1px solid var(--primary-color);
        }

        .driver-doc-div .driver-doc-input::placeholder {
            color: #999;
        }

    .driver-doc-div label {
        width: 30%;
        color: var(--black-color);
        font-weight: 600;
    }
/* drive for us section start */
/* contact-inner-section */
.contact-inner-section {
    background: var(--white-color);
    padding: 40px 0;
}

.contact-inner-content h2 {
    color: var(--black-color);
}

.contact-inner-content .contact-inner-oara {
    color: var(--black-color);
}

.contact-inner-form {
    background: #f2f2f2;
}
/* contact-inner-section */
/* faq section start */
.faq-section {
    width: 100%;
    padding: 40px 0;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-header {
    border-top: 1px solid #dfdfdf;
}

.accordion-button:not(.collapsed) {
    color: #e92002 !important;
    background-color: #ffffff !important;
}

    .accordion-button:not(.collapsed)::after {
        filter: invert(27%) sepia(91%) saturate(7473%) hue-rotate(357deg) brightness(102%) contrast(107%);
    }

.accordion-button:focus {
    box-shadow: none;
}
/* faq section start */
/* terms and conditions section start */
.terms-section {
    width: 100%;
    padding: 40px 0;
}

.terms-content {
    width: 100%;
}

    .terms-content h2 {
        font-size: 20px;
        font-weight: 700;
        width: fit-content;
        border-bottom: 1px solid var(--primary-color);
        padding-bottom: 5px;
        margin: 20px 0;
    }

    .terms-content p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .terms-content ul li {
        width: 100%;
        list-style: disc;
        margin-left: 20px;
        margin-bottom: 5px;
        font-size: 16px;
    }

    .terms-content p a {
        color: var(--primary-color);
        transition: all 0.3s ease-in-out;
    }

        .terms-content p a:hover {
            color: var(--black-color);
        }
/* terms and conditions section start */
/************************** All Main Css End **************************/

/************************** media-query **************************/

@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .custom-prev {
        left: -20px;
    }

    .custom-next {
        right: -20px;
    }

    .main-form-driver .form-image img {
        height: 82vh;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .infocont {
        gap: 5px;
    }

        .infocont a {
            font-size: 14px;
        }

    .social_icons {
        gap: 15px;
    }

        .social_icons i {
            font-size: 14px;
        }

    .navbar-expand-lg {
        padding: 5px 0;
    }

        .navbar-expand-lg .navbar-nav {
            gap: 5px;
        }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        font-weight: 500;
        padding: 5px;
    }

    .navbar-expand-lg .logo {
        width: 140px;
    }

    .hero-section {
        padding: 12% 0 4%;
    }

    .left-herocon {
        gap: 5px;
    }

        .left-herocon h2 {
            font-size: 24px;
        }

        .left-herocon h1 {
            font-size: 12px;
            padding-bottom: 5px;
        }

        .left-herocon p {
            margin-bottom: 5px;
            font-size: 14px;
        }

    .main-booking-form {
        padding: 20px;
    }

        .main-booking-form .form-heading h2 {
            font-size: 24px;
            margin-bottom: 5px;
        }

    .form-input-div {
        padding: 5px 5px;
        gap: 5px;
        margin-bottom: 10px;
    }

    .icon-div i {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .form-input-style {
        padding: 5px 35px 5px 5px;
        font-size: 14px;
    }

    .form-input-div .custom-i {
        top: 8px;
        font-size: 14px;
    }

    .form-input-div-1 {
        padding: 5px 5px;
        gap: 5px;
        margin-bottom: 10px;
    }

    .form-input-style-1 {
        padding: 5px 5px;
        font-size: 14px;
    }

    .form-btn {
        font-size: 14px;
    }

    .left-about-content {
        padding: 10px;
    }

    .about-image {
        height: auto;
    }

    .video-btn {
        font-size: 14px;
        width: 50px;
        height: 50px;
    }

        .video-btn i {
            font-size: 16px;
        }

    .right-about-content h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .right-about-content p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .right-about-content .about-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .services-section .service-heading h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .service-card {
        padding: 20px;
        height: auto;
        gap: 5px;
        margin-top: 60px;
        border-radius: 10px;
    }

    .top-icon {
        width: 40px;
        height: 40px;
        left: 42%;
    }

        .top-icon i {
            font-size: 14px;
        }

    .service-card h2 {
        font-size: 16px;
        margin-top: 10px;
    }

    .service-card p {
        font-size: 12px;
    }

    .service-card .service-btn {
        padding: 8px 20px !important;
        font-size: 12px;
    }

    .app-section .app-heading h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .app-section .app-heading h3 {
        font-size: 32px;
        margin-top: 40px;
    }

    .main-app-content {
        padding: 20px 30px;
        margin-top: 20px;
        border-radius: 10px;
    }

        .main-app-content .app-text-content .app-papr {
            font-size: 14px;
            margin-bottom: 10px;
        }

    .download-app-buttons {
        gap: 5px;
    }

        .download-app-buttons p {
            font-size: 14px;
        }

        .download-app-buttons .app-btn {
            width: 35px;
            height: 35px;
            gap: 5px;
        }

            .download-app-buttons .app-btn i {
                font-size: 16px;
            }

    .app-screen-image {
        top: -170px;
        right: 20px;
    }

        .app-screen-image .app-screen {
            height: 350px;
        }

    .fleets-section h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .fleet-slider {
        margin-top: 10px;
    }

    .fleets-section .fleet-section-image {
        padding: 10px;
    }

        .fleets-section .fleet-section-image .fleet-image {
            height: 250px;
        }

    .fleets-section .fleet-section-content h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .fleets-section .fleet-section-content .para {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .fleets-section .fleet-section-content .fleet-features {
        gap: 5px;
        margin-bottom: 5px;
    }

        .fleets-section .fleet-section-content .fleet-features p i {
            width: 25px;
            height: 25px;
            font-size: 10px;
        }

        .fleets-section .fleet-section-content .fleet-features p {
            gap: 5px;
            font-size: 14px;
        }

    .fleets-section .fleet-section-content .fleet-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .custom-next {
        right: -10px;
    }

    .custom-prev {
        left: -10px;
    }

    .custom-prev, .custom-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .contact-section .contact-main {
        padding: 40px 0;
    }

    .contact-content {
        padding: 0 0px;
    }

        .contact-content h2 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .contact-content .contact-para {
            font-size: 14px;
            margin-bottom: 0px;
        }

    .contact-form {
        padding: 20px;
        border-radius: 10px;
    }

        .contact-form h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }

    .contact-input-div label {
        font-size: 12px;
    }

    .contact-input-div {
        margin-bottom: 0px;
    }

        .contact-input-div .contact-input-style {
            padding: 8px 10px;
            border-radius: 5px;
            font-size: 14px;
        }

    .contact-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 150px;
    }

    .center-footer-content h2 {
        font-size: 20px;
    }

    .last-footer-content h2 {
        font-size: 20px;
    }

    .right-footer-content h2 {
        font-size: 20px;
    }

    .footer_ul {
        margin-top: 0px;
    }

    .bootom-footer-section {
        padding: 5px 0;
    }

        .bootom-footer-section .bottom-footer-content p {
            font-size: 14px;
        }

    .banner-section {
        height: 25vh;
    }

        .banner-section h2 {
            font-size: 32px;
            margin-top: 100px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .ourclient-content-box {
        padding: 0px;
    }

        .ourclient-content-box p {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .ourclient-content-box ul li {
            margin-bottom: 0px;
            font-size: 14px;
        }

    .tourpackages-content-box {
        padding: 0px;
    }

        .tourpackages-content-box p {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .tourpackages-content-box ul li a {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .tourpackages-content-box ul li {
            font-size: 14px;
        }

    .driveforus-content-box h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .driveforus-content-box ul {
        margin: 5px 0;
    }

        .driveforus-content-box ul li {
            font-size: 14px;
        }

    .driver-input-div {
        margin-bottom: 0px;
    }

        .driver-input-div .driver-input {
            padding: 8px 10px;
            font-size: 14px;
        }

    .driver-info-div h2 {
        font-size: 16px;
        margin-top: 0px;
    }

    .driver-doc-div label {
        font-size: 14px;
        width: 40%;
    }

    .driver-doc-div {
        margin-bottom: 7px;
        gap: 0px;
    }

        .driver-doc-div .driver-doc-input {
            width: 74%;
            padding: 5px;
            font-size: 14px;
        }

    .main-form-driver .form-image img {
        height: 60vh;
    }

    .safebtn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .navbar-expand-lg .navbar-nav li a {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .infocont {
        gap: 5px;
        justify-content: center;
    }

        .infocont a {
            font-size: 14px;
        }

    .social_icons {
        gap: 15px;
        justify-content: center;
    }

        .social_icons i {
            font-size: 14px;
        }

    .navbar-expand-lg {
        padding: 5px 0;
        position: relative;
    }

        .navbar-expand-lg .navbar-nav {
            gap: 5px;
        }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        font-weight: 500;
        padding: 5px;
        color: #000;
    }

    .navbar-expand-lg .logo {
        width: 140px !important;
    }

    .hero-section {
        padding: 4% 0 4%;
    }

    .left-herocon {
        gap: 5px;
    }

        .left-herocon h2 {
            font-size: 24px;
        }

        .left-herocon h1 {
            font-size: 12px;
            padding-bottom: 5px;
        }

        .left-herocon p {
            margin-bottom: 5px;
            font-size: 14px;
        }

    .main-booking-form {
        padding: 20px;
    }

        .main-booking-form .form-heading h2 {
            font-size: 24px;
            margin-bottom: 5px;
        }

    .form-input-div {
        padding: 5px 5px;
        gap: 5px;
        margin-bottom: 10px;
    }

    .icon-div i {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .form-input-style {
        padding: 5px 35px 5px 5px;
        font-size: 14px;
    }

    .form-input-div .custom-i {
        top: 8px;
        font-size: 14px;
    }

    .form-input-div-1 {
        padding: 5px 5px;
        gap: 5px;
        margin-bottom: 10px;
    }

    .form-input-style-1 {
        padding: 5px 5px;
        font-size: 14px;
    }

    .form-btn {
        font-size: 14px;
    }

    .left-about-content {
        padding: 10px;
    }

    .about-image {
        height: auto;
    }

    .video-btn {
        font-size: 14px;
        width: 50px;
        height: 50px;
    }

        .video-btn i {
            font-size: 16px;
        }

    .right-about-content h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .right-about-content p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .right-about-content .about-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .services-section .service-heading h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .service-card {
        padding: 20px;
        height: auto;
        gap: 5px;
        margin-top: 60px;
        border-radius: 10px;
    }

    .top-icon {
        width: 40px;
        height: 40px;
        left: 47%;
    }

        .top-icon i {
            font-size: 14px;
        }

    .service-card h2 {
        font-size: 24px;
        margin-top: 10px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-card .service-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .app-section .app-heading h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .app-section .app-heading h3 {
        font-size: 32px;
        margin-top: 40px;
    }

    .main-app-content {
        padding: 20px 30px;
        margin-top: 20px;
        border-radius: 10px;
    }

        .main-app-content .app-text-content .app-papr {
            font-size: 14px;
            margin-bottom: 10px;
        }

    .download-app-buttons {
        gap: 5px;
    }

        .download-app-buttons p {
            font-size: 14px;
        }

        .download-app-buttons .app-btn {
            width: 35px;
            height: 35px;
            gap: 5px;
        }

            .download-app-buttons .app-btn i {
                font-size: 16px;
            }

    .app-screen-image {
        top: -170px;
        right: 20px;
    }

        .app-screen-image .app-screen {
            height: 350px;
        }

    .fleets-section h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .fleet-slider {
        margin-top: 10px;
    }

    .fleets-section .fleet-section-image {
        padding: 10px;
    }

        .fleets-section .fleet-section-image .fleet-image {
            height: 250px;
        }

    .fleets-section .fleet-section-content h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .fleets-section .fleet-section-content .para {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .fleets-section .fleet-section-content .fleet-features {
        gap: 5px;
        margin-bottom: 5px;
    }

        .fleets-section .fleet-section-content .fleet-features p i {
            width: 25px;
            height: 25px;
            font-size: 10px;
        }

        .fleets-section .fleet-section-content .fleet-features p {
            gap: 5px;
            font-size: 14px;
        }

    .fleets-section .fleet-section-content .fleet-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .custom-next {
        right: -10px;
    }

    .custom-prev {
        left: -10px;
    }

    .custom-prev, .custom-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
        display: none !important;
    }

    .contact-section .contact-main {
        padding: 40px 0;
    }

    .contact-content {
        padding: 0 0px;
    }

        .contact-content h2 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .contact-content .contact-para {
            font-size: 14px;
            margin-bottom: 0px;
        }

    .contact-form {
        padding: 20px;
        border-radius: 10px;
        margin-top: 20px;
    }

        .contact-form h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }

    .contact-input-div label {
        font-size: 12px;
    }

    .contact-input-div {
        margin-bottom: 0px;
    }

        .contact-input-div .contact-input-style {
            padding: 8px 10px;
            border-radius: 5px;
            font-size: 14px;
        }

    .contact-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 200px;
    }

    .center-footer-content h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .last-footer-content h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .right-footer-content h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .footer_ul {
        margin-top: 5px;
        padding: 0;
    }

    .bootom-footer-section {
        padding: 5px 0;
    }

        .bootom-footer-section .bottom-footer-content p {
            font-size: 14px;
        }

    .banner-section {
        height: 25vh;
    }

        .banner-section h2 {
            font-size: 32px;
            margin-top: 100px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .ourclient-content-box {
        padding: 0px;
    }

        .ourclient-content-box p {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .ourclient-content-box ul li {
            margin-bottom: 0px;
            font-size: 14px;
        }

    .tourpackages-content-box {
        padding: 0px;
    }

        .tourpackages-content-box p {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .tourpackages-content-box ul li a {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .tourpackages-content-box ul li {
            font-size: 14px;
        }

    .driveforus-content-box h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .driveforus-content-box ul {
        margin: 5px 0;
    }

        .driveforus-content-box ul li {
            font-size: 14px;
        }

    .driver-input-div {
        margin-bottom: 0px;
    }

        .driver-input-div .driver-input {
            padding: 8px 10px;
            font-size: 14px;
        }

    .driver-info-div h2 {
        font-size: 16px;
        margin-top: 0px;
    }

    .driver-doc-div label {
        font-size: 14px;
        width: 40%;
    }

    .driver-doc-div {
        margin-bottom: 7px;
        gap: 0px;
    }

        .driver-doc-div .driver-doc-input {
            width: 74%;
            padding: 5px;
            font-size: 14px;
        }

    .main-form-driver .form-image img {
        height: 60vh;
    }

    .safebtn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .navbar-expand-lg .navbar-nav li a {
        font-size: 14px;
    }

    .fleets-section .fleet-section-content {
        margin-top: 20px;
    }

    .slick-dots {
        display: none !important;
    }

    .left-footer-content {
        justify-content: flex-start;
    }

    .center-footer-content {
        margin-left: 0px;
    }

    .navbar-expand-lg .navbar-nav li a {
        color: #000 !important;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .infocont {
        gap: 5px;
        justify-content: center;
    }

        .infocont a {
            font-size: 14px;
        }

    .social_icons {
        gap: 15px;
        justify-content: center;
    }

        .social_icons i {
            font-size: 14px;
        }

    .navbar-expand-lg {
        padding: 5px 0;
        position: relative;
    }

        .navbar-expand-lg .navbar-nav {
            gap: 5px;
        }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        font-weight: 500;
        padding: 5px;
        color: #000;
    }

    .navbar-expand-lg .logo {
        width: 140px !important;
    }

    .hero-section {
        padding: 4% 0 4%;
    }

    .left-herocon {
        gap: 5px;
    }

        .left-herocon h2 {
            font-size: 24px;
        }

        .left-herocon h1 {
            font-size: 12px;
            padding-bottom: 5px;
        }

        .left-herocon p {
            margin-bottom: 5px;
            font-size: 14px;
        }

    .main-booking-form {
        padding: 20px;
    }

        .main-booking-form .form-heading h2 {
            font-size: 24px;
            margin-bottom: 5px;
        }

    .form-input-div {
        padding: 5px 5px;
        gap: 5px;
        margin-bottom: 10px;
    }

    .icon-div i {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .form-input-style {
        padding: 5px 35px 5px 5px;
        font-size: 14px;
    }

    .form-input-div .custom-i {
        top: 8px;
        font-size: 14px;
    }

    .form-input-div-1 {
        padding: 5px 5px;
        gap: 5px;
        margin-bottom: 10px;
    }

    .form-input-style-1 {
        padding: 5px 5px;
        font-size: 14px;
    }

    .form-btn {
        font-size: 14px;
    }

    .left-about-content {
        padding: 10px;
    }

    .about-image {
        height: auto;
    }

    .video-btn {
        font-size: 14px;
        width: 50px;
        height: 50px;
    }

        .video-btn i {
            font-size: 16px;
        }

    .right-about-content h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .right-about-content p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .right-about-content .about-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .services-section .service-heading h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .service-card {
        padding: 20px;
        height: auto;
        gap: 5px;
        margin-top: 60px;
        border-radius: 10px;
    }

    .top-icon {
        width: 40px;
        height: 40px;
        left: 47%;
    }

        .top-icon i {
            font-size: 14px;
        }

    .service-card h2 {
        font-size: 24px;
        margin-top: 10px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-card .service-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .app-section .app-heading h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .app-section .app-heading h3 {
        font-size: 32px;
        margin-top: 40px;
    }

    .main-app-content {
        padding: 20px 30px;
        margin-top: 20px;
        border-radius: 10px;
    }

        .main-app-content .app-text-content .app-papr {
            font-size: 14px;
            margin-bottom: 10px;
        }

    .download-app-buttons {
        gap: 5px;
    }

        .download-app-buttons p {
            font-size: 14px;
        }

        .download-app-buttons .app-btn {
            width: 35px;
            height: 35px;
            gap: 5px;
        }

            .download-app-buttons .app-btn i {
                font-size: 16px;
            }

    .app-screen-image {
        top: -170px;
        right: 20px;
    }

        .app-screen-image .app-screen {
            height: 350px;
        }

    .fleets-section h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .fleet-slider {
        margin-top: 10px;
    }

    .fleets-section .fleet-section-image {
        padding: 10px;
    }

        .fleets-section .fleet-section-image .fleet-image {
            height: 250px;
        }

    .fleets-section .fleet-section-content h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .fleets-section .fleet-section-content .para {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .fleets-section .fleet-section-content .fleet-features {
        gap: 5px;
        margin-bottom: 5px;
    }

        .fleets-section .fleet-section-content .fleet-features p i {
            width: 25px;
            height: 25px;
            font-size: 10px;
        }

        .fleets-section .fleet-section-content .fleet-features p {
            gap: 5px;
            font-size: 14px;
        }

    .fleets-section .fleet-section-content .fleet-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .custom-next {
        right: -10px;
    }

    .custom-prev {
        left: -10px;
    }

    .custom-prev, .custom-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
        display: none !important;
    }

    .contact-section .contact-main {
        padding: 40px 0;
    }

    .contact-content {
        padding: 0 0px;
    }

        .contact-content h2 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .contact-content .contact-para {
            font-size: 14px;
            margin-bottom: 0px;
        }

    .contact-form {
        padding: 20px;
        border-radius: 10px;
        margin-top: 20px;
    }

        .contact-form h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }

    .contact-input-div label {
        font-size: 12px;
    }

    .contact-input-div {
        margin-bottom: 0px;
    }

        .contact-input-div .contact-input-style {
            padding: 8px 10px;
            border-radius: 5px;
            font-size: 14px;
        }

    .contact-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 200px;
    }

    .center-footer-content h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .last-footer-content h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .right-footer-content h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .footer_ul {
        margin-top: 5px;
        padding: 0;
    }

    .bootom-footer-section {
        padding: 5px 0;
    }

        .bootom-footer-section .bottom-footer-content p {
            font-size: 14px;
        }

    .banner-section {
        height: 25vh;
    }

        .banner-section h2 {
            font-size: 32px;
            margin-top: 100px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .ourclient-content-box {
        padding: 0px;
    }

        .ourclient-content-box p {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .ourclient-content-box ul li {
            margin-bottom: 0px;
            font-size: 14px;
        }

    .tourpackages-content-box {
        padding: 0px;
    }

        .tourpackages-content-box p {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .tourpackages-content-box ul li a {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .tourpackages-content-box ul li {
            font-size: 14px;
        }

    .driveforus-content-box h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .driveforus-content-box ul {
        margin: 5px 0;
    }

        .driveforus-content-box ul li {
            font-size: 14px;
        }

    .driver-input-div {
        margin-bottom: 0px;
    }

        .driver-input-div .driver-input {
            padding: 8px 10px;
            font-size: 14px;
        }

    .driver-info-div h2 {
        font-size: 16px;
        margin-top: 0px;
    }

    .driver-doc-div label {
        font-size: 14px;
        width: 40%;
    }

    .driver-doc-div {
        margin-bottom: 7px;
        gap: 0px;
    }

        .driver-doc-div .driver-doc-input {
            width: 74%;
            padding: 5px;
            font-size: 14px;
        }

    .main-form-driver .form-image img {
        height: 60vh;
    }

    .safebtn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .navbar-expand-lg .navbar-nav li a {
        font-size: 14px;
    }

    .fleets-section .fleet-section-content {
        margin-top: 20px;
    }

    .slick-dots {
        display: none !important;
    }

    .left-footer-content {
        justify-content: flex-start;
    }

    .center-footer-content {
        margin-left: 0px;
    }

    .navbar-expand-lg .navbar-nav li a {
        color: #000 !important;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .infocont {
        gap: 5px;
        justify-content: center;
        flex-wrap: wrap;
    }

        .infocont a {
            font-size: 14px;
        }

    .social_icons {
        gap: 15px;
        justify-content: center;
    }

        .social_icons i {
            font-size: 14px;
        }

    .navbar-expand-lg {
        padding: 5px 0;
        position: relative;
    }

        .navbar-expand-lg .navbar-nav {
            gap: 5px;
        }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        font-weight: 500;
        padding: 5px;
        color: #000;
    }

    .navbar-expand-lg .logo {
        width: 140px !important;
    }

    .hero-section {
        padding: 4% 0 4%;
    }

    .left-herocon {
        gap: 5px;
    }

        .left-herocon h2 {
            font-size: 24px;
        }

        .left-herocon h1 {
            font-size: 12px;
            padding-bottom: 5px;
        }

        .left-herocon p {
            margin-bottom: 5px;
            font-size: 13px;
        }

    .main-booking-form {
        padding: 20px;
    }

        .main-booking-form .form-heading h2 {
            font-size: 24px;
            margin-bottom: 5px;
        }

    .form-input-div {
        padding: 5px 5px;
        gap: 5px;
        margin-bottom: 10px;
    }

    .icon-div i {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .form-input-style {
        padding: 5px 35px 5px 5px;
        font-size: 14px;
    }

    .form-input-div .custom-i {
        top: 8px;
        font-size: 14px;
    }

    .form-input-div-1 {
        padding: 5px 5px;
        gap: 5px;
        margin-bottom: 10px;
    }

    .form-input-style-1 {
        padding: 5px 5px;
        font-size: 14px;
    }

    .form-btn {
        font-size: 14px;
    }

    .left-about-content {
        padding: 10px;
    }

    .about-image {
        height: auto;
    }

    .video-btn {
        font-size: 14px;
        width: 50px;
        height: 50px;
    }

        .video-btn i {
            font-size: 16px;
        }

    .right-about-content h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .right-about-content p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .right-about-content .about-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .services-section .service-heading h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .service-card {
        padding: 20px;
        height: auto;
        gap: 5px;
        margin-top: 60px;
        border-radius: 10px;
    }

    .top-icon {
        width: 40px;
        height: 40px;
        left: 44%;
    }

        .top-icon i {
            font-size: 14px;
        }

    .service-card h2 {
        font-size: 24px;
        margin-top: 10px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-card .service-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .app-section .app-heading h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .app-section .app-heading h3 {
        font-size: 20px;
        margin-top: 20px;
        text-align: center;
    }

    .main-app-content {
        padding: 20px 30px;
        margin-top: 20px;
        border-radius: 10px;
    }

        .main-app-content .app-text-content .app-papr {
            font-size: 14px;
            margin-bottom: 10px;
        }

    .download-app-buttons {
        gap: 5px;
    }

        .download-app-buttons p {
            font-size: 14px;
        }

        .download-app-buttons .app-btn {
            width: 35px;
            height: 35px;
            gap: 5px;
        }

            .download-app-buttons .app-btn i {
                font-size: 16px;
            }

    .app-screen-image {
        top: 0;
        right: 0;
        position: relative;
    }

        .app-screen-image .app-screen {
            height: 350px;
        }

    .fleets-section h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .fleet-slider {
        margin-top: 10px;
    }

    .fleets-section .fleet-section-image {
        padding: 10px;
        overflow: hidden;
    }

        .fleets-section .fleet-section-image .fleet-image {
            height: 181px;
        }

    .fleets-section .fleet-section-content h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .fleets-section .fleet-section-content .para {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .fleets-section .fleet-section-content .fleet-features {
        gap: 5px;
        margin-bottom: 5px;
    }

        .fleets-section .fleet-section-content .fleet-features p i {
            width: 25px;
            height: 25px;
            font-size: 10px;
        }

        .fleets-section .fleet-section-content .fleet-features p {
            gap: 5px;
            font-size: 14px;
        }

    .fleets-section .fleet-section-content .fleet-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .custom-next {
        right: -10px;
    }

    .custom-prev {
        left: -10px;
    }

    .custom-prev, .custom-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
        display: none !important;
    }

    .contact-section .contact-main {
        padding: 40px 0;
    }

    .contact-content {
        padding: 0 0px;
    }

        .contact-content h2 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .contact-content .contact-para {
            font-size: 14px;
            margin-bottom: 0px;
        }

    .contact-form {
        padding: 20px;
        border-radius: 10px;
        margin-top: 20px;
    }

        .contact-form h2 {
            font-size: 24px;
            margin-bottom: 10px;
        }

    .contact-input-div label {
        font-size: 12px;
    }

    .contact-input-div {
        margin-bottom: 0px;
    }

        .contact-input-div .contact-input-style {
            padding: 8px 10px;
            border-radius: 5px;
            font-size: 14px;
        }

    .contact-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 200px;
    }

    .center-footer-content h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .last-footer-content h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .right-footer-content h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .footer_ul {
        margin-top: 5px;
        padding: 0;
    }

    .bootom-footer-section {
        padding: 5px 0;
    }

        .bootom-footer-section .bottom-footer-content p {
            font-size: 14px;
        }

    .banner-section {
        height: 19vh;
    }

        .banner-section h2 {
            font-size: 32px;
            margin-top: 60px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .ourclient-content-box {
        padding: 0px;
    }

        .ourclient-content-box p {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .ourclient-content-box ul li {
            margin-bottom: 0px;
            font-size: 14px;
        }

    .tourpackages-content-box {
        padding: 0px;
    }

        .tourpackages-content-box p {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .tourpackages-content-box ul li a {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .tourpackages-content-box ul li {
            font-size: 14px;
        }

    .driveforus-content-box h2 {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .driveforus-content-box ul {
        margin: 5px 0;
    }

        .driveforus-content-box ul li {
            font-size: 14px;
        }

    .driver-input-div {
        margin-bottom: 0px;
    }

        .driver-input-div .driver-input {
            padding: 8px 10px;
            font-size: 14px;
        }

    .driver-info-div h2 {
        font-size: 16px;
        margin-top: 0px;
    }

    .driver-doc-div label {
        font-size: 14px;
        width: 40%;
    }

    .driver-doc-div {
        margin-bottom: 7px;
        gap: 0px;
    }

        .driver-doc-div .driver-doc-input {
            width: 74%;
            padding: 5px;
            font-size: 14px;
        }

    .main-form-driver .form-image img {
        height: auto;
        margin-bottom: 20px;
    }

    .safebtn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .navbar-expand-lg .navbar-nav li a {
        font-size: 14px;
    }

    .fleets-section .fleet-section-content {
        margin-top: 20px;
    }

    .slick-dots {
        display: none !important;
    }

    .left-footer-content {
        justify-content: flex-start;
    }

    .center-footer-content {
        margin-left: 0px;
    }

    .navbar-expand-lg .navbar-nav li a {
        color: #000 !important;
    }
}
