@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@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: #D11A1C;
    --white-color: #fff;
    --black-color: #000;
}

body {
    overflow-x: hidden;
}

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: "Space Grotesk", 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;
}

/************************** All Main Css Start **************************/
/* header css start */
.main-header {
    width: 100%;
    background: var(--primary-color);
    padding: 7px 0;
    height: 100px;
    position: relative;
}

.mini-header {
    width: 100%;
}

    .mini-header .left-content {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .mini-header .left-content i {
            width: 30px;
            height: 30px;
            color: var(--primary-color);
            background: var(--white-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            border: 1px solid var(--white-color);
            transition: all 0.3s ease;
        }

        .mini-header .left-content p {
            font-size: 16px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }

            .mini-header .left-content p a {
                color: var(--white-color);
                transition: all 0.3s ease;
            }

                .mini-header .left-content p a:hover {
                    text-decoration: underline;
                }

            .mini-header .left-content p:hover i {
                color: var(--white-color);
                background: var(--primary-color);
            }

    .mini-header .right-content {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

        .mini-header .right-content ul {
            display: flex;
            align-items: center;
            gap: 15px;
        }

            .mini-header .right-content ul li a {
                width: 30px;
                height: 30px;
                color: var(--white-color);
                background: var(--primary-color);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
                border: 1px solid var(--white-color);
                transition: all 0.3s ease;
            }

                .mini-header .right-content ul li a:hover {
                    color: var(--primary-color);
                    background: var(--white-color);
                }

nav.navbar.navbar-expand-lg.navbar-light {
    padding: 7px 20px 7px 3px;
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 99;
    top: 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.Header-Logo {
    width: 150px;
    border-radius: 0;
}

nav.navbar.navbar-expand-lg.navbar-light .navbar-collapse {
    justify-content: flex-end;
    align-items: center;
}

nav.navbar.navbar-expand-lg.navbar-light .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    padding: 10px 15px;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

    nav.navbar.navbar-expand-lg.navbar-light .navbar-nav .nav-item .nav-link:hover {
        text-decoration: underline;
    }

nav.navbar.navbar-expand-lg.navbar-light .navbar-nav {
    gap: 20px;
}

    nav.navbar.navbar-expand-lg.navbar-light .navbar-nav .nav-item .nav-link.active {
        background: var(--primary-color);
        border-radius: 10px;
        color: var(--white-color);
        text-decoration: none;
    }

.header-btn {
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    font-family: "Poppins", sans-serif;
}

    .header-btn:hover {
        background: transparent;
        color: var(--primary-color);
    }

.header-sticky {
    width: 100%;
    position: relative;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 10;
}

    .header-sticky.sticky {
        position: fixed !important;
        top: 0 !important;
        left: 0;
        right: 0;
        background-color: var(--primary-color) !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
        animation: fadeInDown 0.5s ease;
        border-radius: 0 !important;
    }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#scrollBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--primary-color);
    border: 2px solid var(--primary-color) !important;
    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(--white-color);
        color: var(--primary-color);
    }

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
}

.header-sticky.sticky .navbar-nav .nav-item .nav-link {
    color: var(--white-color) !important;
}

    .header-sticky.sticky .navbar-nav .nav-item .nav-link.active {
        background: var(--white-color) !important;
        color: var(--primary-color) !important;
    }

.header-sticky.sticky .header-btn {
    background: var(--white-color) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--white-color);
}

    .header-sticky.sticky .header-btn:hover {
        background: var(--primary-color) !important;
        color: var(--white-color) !important;
        border: 2px solid var(--white-color);
    }

.header-sticky.sticky .Header-Logo {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7436%) hue-rotate(24deg) brightness(110%) contrast(102%);
}
/* header css start */
/* hero section css start */
.hero-section {
    width: 100%;
    height: 92vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url(../images/hero-banner-imageoption2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-section .hero-content {
        width: 100%;
        padding-top: 0;
        height: 100%;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }

        .hero-section .hero-content h1 {
            font-size: 62px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--white-color);
        }

            .hero-section .hero-content h1 span {
                color: var(--primary-color);
            }

        .hero-section .hero-content p {
            font-size: 18px;
            color: var(--white-color);
            margin-top: 10px;
        }

    .hero-section .hero-form {
        width: 100%;
        padding: 40px;
        border-radius: 15px;
        background: #00000073;
    }

        .hero-section .hero-form h2 {
            font-size: 42px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--white-color);
            margin-bottom: 20px;
        }

            .hero-section .hero-form h2 span {
                color: var(--primary-color);
            }

        .hero-section .hero-form .custom-divinput {
            width: 100%;
            position: relative;
            margin-bottom: 25px;
        }

            .hero-section .hero-form .custom-divinput .custom-input {
                width: 100%;
                padding: 12px 5px;
                border: none;
                border-bottom: 2px solid var(--white-color);
                font-size: 16px;
                color: var(--white-color);
                background: transparent;
                font-family: "Poppins", sans-serif;
                transition: all 0.3s ease;
            }

                .hero-section .hero-form .custom-divinput .custom-input:focus {
                    border: none;
                    border-bottom: 2px solid var(--primary-color);
                    box-shadow: none;
                    outline: none;
                }

                .hero-section .hero-form .custom-divinput .custom-input::placeholder {
                    color: var(--white-color);
                }

                .hero-section .hero-form .custom-divinput .custom-input option {
                    color: var(--black-color);
                }

            .hero-section .hero-form .custom-divinput i {
                width: 40px;
                height: 40px;
                color: var(--white-color);
                position: absolute;
                top: 50%;
                right: 10px;
                transform: translateY(-50%);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                pointer-events: none;
                transition: all 0.3s ease;
                background: var(--primary-color);
                border-radius: 50%;
            }

        .hero-section .hero-form .heroform-btn {
            padding: 10px 25px;
            background: var(--primary-color);
            color: var(--white-color);
            border-radius: 10px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-color);
            font-family: "Poppins", sans-serif;
            transition: all 0.3s ease;
        }

            .hero-section .hero-form .heroform-btn:hover {
                background: transparent;
                color: var(--white-color);
            }

/* hero section css start */
/* about section css start */
.about-section {
    width: 100%;
    padding: 40px 0;
}

    .about-section h2 {
        font-size: 42px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 10px;
    }

        .about-section h2 span {
            color: var(--primary-color);
        }

.left-content-about p {
    color: var(--black-color);
    margin-bottom: 10px;
    margin-top: 10px;
}

.left-content-about h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
}

.left-content-about .second-p {
    margin-bottom: 10px;
}

.right-content img {
    border-radius: 20px;
    border: 5px solid var(--primary-color);
}

.about-Btn {
    border: none;
    padding: 10px 25px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

    .about-Btn:hover {
        color: var(--primary-color);
        background: transparent;
    }
/* about section css end */
/* services section css start */
.service-section {
    width: 100%;
    padding: 40px 0;
    background: var(--black-color);
}

    .service-section .service-img-box {
        width: 100%;
        height: 550px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

        .service-section .service-img-box .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .service-section .service-content-box {
        width: 100%;
        padding: 0 40px;
    }

        .service-section .service-content-box h2 {
            font-size: 42px;
            font-weight: 700;
            color: var(--white-color);
            margin-bottom: 10px;
        }

        .service-section .service-content-box span {
            color: var(--primary-color);
        }

        .service-section .service-content-box p {
            color: var(--white-color);
        }

    .service-section .service-content-cards {
        width: 100%;
        padding: 0 40px;
        margin-top: 20px;
    }

        .service-section .service-content-cards .service-card {
            width: 100%;
            height: auto;
            padding: 20px;
            margin-bottom: 25px;
            background: transparent;
            border-radius: 10px;
            border: 3px solid var(--primary-color);
        }

            .service-section .service-content-cards .service-card .service-card-icon {
                display: flex;
                align-items: center;
                gap: 10px;
            }

                .service-section .service-content-cards .service-card .service-card-icon i {
                    width: 50px;
                    height: 50px;
                    color: var(--white-color);
                    background: var(--primary-color);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 20px;
                    transition: all 0.3s ease;
                }

                .service-section .service-content-cards .service-card .service-card-icon h3 {
                    font-size: 22px;
                    font-weight: 600;
                    color: var(--white-color);
                }

            .service-section .service-content-cards .service-card .service-card-content {
                margin-top: 15px;
                color: var(--white-color);
                font-size: 16px;
            }

                .service-section .service-content-cards .service-card .service-card-content .serc-btn {
                    color: var(--white-color);
                    text-decoration: underline;
                    margin-top: 10px;
                }
/* services section css end */
/* fleets section css start */
.fleets-section {
    width: 100%;
    padding: 40px 0;
}

    .fleets-section h2 {
        font-size: 42px;
        font-weight: 700;
        font-family: "Poppins", sans-serif;
        margin-bottom: 40px;
        text-align: center;
        color: var(--black-color);
    }

        .fleets-section h2 span {
            color: var(--primary-color);
        }

    .fleets-section .fleet-section-image {
        background: var(--primary-color);
        padding: 20px;
        border-radius: 15px;
        margin-top: 10px;
    }

    .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;
            border: 2px solid var(--primary-color);
            transition: all 0.3s ease-in-out;
        }

            .fleets-section .fleet-section-content .fleet-btn:hover {
                color: var(--primary-color);
                background: var(--white-color);
            }

.fleet-slider {
    position: relative;
}

.custom-prev, .custom-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid var(--primary-color) !important;
    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(--white-color);
        color: var(--primary-color);
    }

/* left button */
.custom-prev {
    left: -100px;
}

/* right button */
.custom-next {
    right: -100px;
}
/* fleets section css start */
/* contact section */
.contact-section {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,17,0.2), rgba(0,0,17,0.2)), url(../images/contact-bg-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 40px 0;
}

    .contact-section .contact-top-main {
        width: 100%;
    }

        .contact-section .contact-top-main .contact-left-heading {
            width: 100%;
        }

            .contact-section .contact-top-main .contact-left-heading h2 {
                font-size: 52px;
                font-weight: 700;
                color: var(--white-color);
                margin-bottom: 10px;
            }

                .contact-section .contact-top-main .contact-left-heading h2 span {
                    color: var(--primary-color);
                }

            .contact-section .contact-top-main .contact-left-heading h3 {
                font-size: 42px;
                font-weight: 500;
                color: var(--white-color);
            }

                .contact-section .contact-top-main .contact-left-heading h3 span {
                    color: var(--primary-color);
                }

        .contact-section .contact-top-main .contact-right-text {
            width: 100%;
        }

            .contact-section .contact-top-main .contact-right-text p {
                font-size: 18px;
                color: var(--white-color);
            }

    .contact-section .contact-form {
        width: 100%;
        padding: 80px 0 0 0;
    }

        .contact-section .contact-form .contact-input-div {
            width: 100%;
            margin-bottom: 20px;
        }

            .contact-section .contact-form .contact-input-div .custom-input {
                width: 100%;
                background: transparent;
                padding: 15px 10px;
                border: none;
                border-bottom: 2px solid var(--white-color);
                border-radius: 0;
                color: var(--white-color);
            }

                .contact-section .contact-form .contact-input-div .custom-input::placeholder {
                    font-family: "Poppins", sans-serif;
                    color: var(--white-color);
                }

        .contact-section .contact-form .social-media-div {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 5px;
        }

            .contact-section .contact-form .social-media-div a {
                color: var(--white-color);
                background: var(--primary-color);
                padding: 10px 17px;
                border-radius: 10px;
                transition: all 0.3s ease-in-out;
            }

                .contact-section .contact-form .social-media-div a:hover {
                    color: var(--black-color);
                    background: var(--white-color);
                }

        .contact-section .contact-form .contact-btn-div {
            width: 100%;
        }

        .contact-section .contact-form .contact-btn {
            border: none;
            background: var(--primary-color);
            padding: 10px 25px;
            color: var(--white-color);
            display: inline-flex;
            gap: 10px;
            align-items: center;
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s ease-in-out;
        }

            .contact-section .contact-form .contact-btn:hover {
                background: var(--white-color);
                color: var(--black-color);
            }

            .contact-section .contact-form .contact-btn i {
                background: var(--white-color);
                padding: 10px 10px;
                border-radius: 50px;
                color: var(--black-color);
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 14px;
                transition: all 0.3s ease-in-out;
            }

            .contact-section .contact-form .contact-btn:hover i {
                background: var(--primary-color);
                color: var(--white-color);
            }
/* contact section */
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--black-color);
}

    .footer .footer-logo {
        width: 250px;
        border-radius: 10px;
    }

.left-footer-content {
    width: 100%;
    height: 100%;
}

    .left-footer-content a {
        color: var(--white-color);
        margin-bottom: 10px;
    }

        .left-footer-content a h1 {
            font-weight: 600;
        }

.center-footer-content {
    width: 100%;
}

    .center-footer-content h2 {
        font-weight: 600;
        font-size: 24px;
        color: #d11a1c;
    }

.footer_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 6px;
    margin-top: 10px;
}

    .footer_ul .footer_li a {
        color: var(--white-color);
        transform: translateX(0px);
        font-size: 17px;
        font-weight: 500;
        font-family: "Poppins";
        transition: all 0.3s ease-in-out;
    }

        .footer_ul .footer_li a:hover {
            transform: translateX(10px);
        }

        .footer_ul .footer_li a i {
            padding-right: 7px;
        }

.right-footer-content h2 {
    font-weight: 600;
    font-size: 24px;
    color: #d11a1c;
}

.right-footer-content .getin_touch {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top: 10px;
}

.getin_touch a {
    color: var(--white-color);
    font-weight: 500;
    font-size: 17px;
    font-family: "Poppins";
    transition: all 0.3s ease-in-out;
}

    .getin_touch a:hover {
        color: var(--primary-color);
    }

    .getin_touch a i {
        padding-right: 7px;
    }

.getin_touch span {
    color: var(--white-color);
}

.getin_touch i {
    color: var(--white-color);
}

.last-footer-content h2 {
    font-weight: 600;
    font-size: 24px;
    color: #d11a1c;
}

.social-icons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

.bootom-footer-section {
    width: 100%;
    background: var(--primary-color);
    padding: 10px;
    color: var(--white-color);
    text-align: center;
}

    .bootom-footer-section a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .bootom-footer-section a:hover {
            color: var(--black-color);
        }
/* footer section css */
/* inner pages banner css */
.banner-section {
    width: 100%;
    padding: 100px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/inner-banner-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .banner-section h2 {
        font-size: 52px;
        font-weight: 700;
        color: var(--white-color);
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item a {
    font-family: "Poppins", sans-serif;
    color: var(--white-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}

.breadcrumb-item.active {
    font-family: "Poppins", sans-serif;
    color: var(--primary-color);
    font-weight: 600;
}
/* inner pages banner css */
/* inner services css */
.inner-services {
    width: 100%;
    height: 100%;
    padding: 40px 0;
}

.main-ner-image {
    width: 100%;
    padding: 10px;
}

    .main-ner-image img {
        border: 5px solid var(--primary-color);
        width: 100%;
        border-radius: 15px;
    }

.main-ner-content {
    width: 100%;
    padding: 20px;
}

    .main-ner-content h1 {
        font-size: 42px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 10px;
    }

        .main-ner-content h1 span {
            color: var(--primary-color);
        }

    .main-ner-content p {
        font-size: 18px;
        margin-bottom: 10px;
    }
/* inner services css */
.sec-result {
    padding: 60px 0;
    /* margin-top: 140px; */
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 16px;
        background: #edf2fa00;
        border: 3px solid #000000;
        border-radius: 10px;
    }

        .sec-result .upper-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .upper-list li .icon-box {
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                    height: 100%;
                    border: 2px solid #d11a1c;
                    object-fit: contain;
                    border-radius: 5px;
                    padding: 7px;
                }

            .sec-result .upper-list li .text-box {
                padding: 0 10px;
            }

                .sec-result .upper-list li .text-box h6 {
                    font-size: 16px;
                    font-weight: 600;
                    color: #000;
                }

                .sec-result .upper-list li .text-box p {
                    font-size: 14px;
                }

    .sec-result .number-box {
        padding: 30px 40px;
    }

        .sec-result .number-box ul {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .number-box ul li {
                width: 24%;
                position: relative;
            }

                .sec-result .number-box ul li .num-circle {
                    text-align: center;
                }

                    .sec-result .number-box ul li .num-circle h6 {
                        background-color: #000000;
                        width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 20px;
                        margin: 0 auto;
                        color: #ffffff;
                        font-weight: 600;
                        position: relative;
                    }

                    .sec-result .number-box ul li .num-circle p {
                        font-size: 14px;
                        margin-top: 15px;
                        text-transform: uppercase;
                        color: #000;
                    }

    .sec-result .completed {
        background-color: #d11a1c !important;
        color: #ffffff !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #000000;
            position: absolute;
            width: 67%;
            height: 4px;
            top: 30%;
            border-radius: 10px;
            left: 70%;
        }

    .sec-result .cancellation-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        background-color: #000000bd;
    }

        .sec-result .cancellation-box .img-box {
            background-color: #fff;
            padding: 10px;
            border-radius: 10px;
        }

            .sec-result .cancellation-box .img-box .shield-img {
                width: 50px;
            }

        .sec-result .cancellation-box .text-box {
            padding-left: 10px;
        }

            .sec-result .cancellation-box .text-box p {
                line-height: 23px;
                color: #fff;
                font-size: 18px;
            }


.update-fleet-box {
    background: #edf2fa00;
    margin: 20px 0;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 3px solid #000;
    border-radius: 15px;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            background: #d11a1c;
            border-radius: 10px;
            object-fit: contain;
        }

    .update-fleet-box .car-text {
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 10px;
        font-weight: 700;
    }

    .update-fleet-box .private-text {
        font-size: 14px;
    }

    .update-fleet-box .star-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 7px 0 0;
    }

        .update-fleet-box .star-list li {
            padding: 0 1px;
        }

            .update-fleet-box .star-list li i {
                color: #ffffff;
                background-color: #d11a1c;
                padding: 4px;
                border-radius: 5px;
            }

    .update-fleet-box .fleet-detail {
        padding: 0px 13px;
        border-right: 1px solid #bbbbbb;
        border-left: 1px solid #bbbbbb;
    }

        .update-fleet-box .fleet-detail h4 {
            font-size: 22px;
            font-weight: 600;
            padding-bottom: 5px;
            color: #000000;
        }

        .update-fleet-box .fleet-detail .passenger-list {
            display: flex;
            align-items: center;
        }

            .update-fleet-box .fleet-detail .passenger-list li {
                font-size: 13px;
                padding: 0 8px 0 0;
                font-weight: 600;
            }

                .update-fleet-box .fleet-detail .passenger-list li i {
                    font-size: 16px;
                }

        .update-fleet-box .fleet-detail .passenger-list-2 {
            padding: 10px 0;
        }

            .update-fleet-box .fleet-detail .passenger-list-2 li {
                font-size: 15px;
                padding: 3px 10px;
                border: 1px solid #000000;
                margin: 3px 0;
                border-radius: 6px;
                font-size: 12px;
                background-color: #000000;
                width: fit-content;
                color: #ffffff;
            }

                .update-fleet-box .fleet-detail .passenger-list-2 li i {
                    font-size: 16px;
                    padding-right: 5px;
                }

        .update-fleet-box .fleet-detail .info-btn {
            color: #f9b442;
            text-decoration: underline;
            font-weight: 500;
        }

    .update-fleet-box .rate-box {
        margin-top: 10%;
    }

        .update-fleet-box .rate-box h6 {
            font-size: 15px;
            margin-top: 4px;
        }

        .update-fleet-box .rate-box .prize-box {
            text-align: center;
            padding: 4px 0;
            font-size: 20px;
            line-height: 29px;
            color: #000;
            font-weight: 600;
        }

        .update-fleet-box .rate-box .done-btn {
            padding: 0px;
            border-radius: 5px;
            text-align: center;
            color: #000000;
            font-weight: 600;
        }

.right-card {
    background-color: #edf2fa00;
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 3px solid #000;
    border-radius: 10px;
}

    .right-card .top-heading {
        display: flex;
        align-items: center;
        padding: 10px 0 15px;
    }

        .right-card .top-heading i {
            font-size: 24px;
            padding-right: 10px;
            color: #000000;
        }

        .right-card .top-heading h5 {
            font-size: 22px;
            color: #000000;
        }

    .right-card .distance-box {
        padding: 20px 0;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #000000;
    }

        .right-card .distance-box h6 {
            color: #000;
        }

        .right-card .distance-box ul {
            padding: 10px 0 0;
        }

            .right-card .distance-box ul li {
                font-size: 14px;
                padding: 5px 0px;
                color: #000;
            }

                .right-card .distance-box ul li i {
                    font-size: 16px;
                    color: #000000;
                    padding-right: 5px;
                }

    .right-card .cal-mile {
        padding: 10px 0 0;
    }

        .right-card .cal-mile li {
            font-size: 16px;
            padding: 5px 0;
            color: #000;
        }

            .right-card .cal-mile li i {
                padding-right: 5px;
                color: #000000;
            }

    .right-card .distance-box-2 ul li {
        font-size: 14px;
        padding: 5px 0;
        color: #000;
    }

        .right-card .distance-box-2 ul li i {
            font-size: 15px;
            color: #000000;
            padding-right: 3px;
        }

.ui-menu {
    height: 250px !important;
    overflow-y: scroll;
}

.Passenger-Information {
    background: #edf2fa00;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 3px solid #000;
    border-radius: 15px;
    margin-bottom: 20px;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #000000;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: center;
            padding: 4px 0;
            font-size: 16px;
            font-weight: 600;
            line-height: 18px;
            color: #000;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ccc !important;
        }

        .Passenger-Information .input-box p {
            font-size: 13px;
            padding: 4px 0;
        }

    .Passenger-Information .input-box-extra {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Passenger-Information .input-box-extra input {
            margin: 0 !important;
        }

        .Passenger-Information .input-box-extra label {
            padding-left: 10px;
        }

.ui-dialog .ui-dialog-content {
    overflow-y: hidden !important;
}

.ui-dialog .ui-dialog-buttonpane button {
    background: #000 !important;
    padding: 7px 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    border-radius: 7px !important;
}
/************************** 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) {
    .custom-prev {
        left: -50px;
    }

    .custom-next {
        right: -50px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .custom-prev {
        left: -50px;
    }
    .custom-next {
        right: -50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header {
        height: 90px;
    }

    .mini-header .left-content i {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .mini-header .left-content p a {
        font-size: 14px;
    }

    .mini-header .right-content ul li a {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    nav.navbar.navbar-expand-lg.navbar-light .navbar-nav {
        gap: 10px;
    }

        nav.navbar.navbar-expand-lg.navbar-light .navbar-nav .nav-item .nav-link {
            font-size: 14px;
        }

    .Header-Logo {
        width: 120px;
    }

    .header-btn {
        padding: 8px 25px;
        font-size: 14px;
        border-radius: 5px;
    }

    .hero-section .hero-content h1 {
        font-size: 48px;
    }

    .hero-section .hero-content p {
        font-size: 14px;
    }

    .hero-section .hero-form {
        padding: 30px;
    }

        .hero-section .hero-form h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .hero-section .hero-form .custom-divinput .custom-input {
            padding: 10px 5px;
            font-size: 14px;
        }

        .hero-section .hero-form .custom-divinput i {
            width: 30px;
            height: 30px;
            font-size: 13px;
        }

        .hero-section .hero-form .heroform-btn {
            padding: 8px 25px;
            font-size: 14px;
            border-radius: 5px;
        }

    .about-section h2 {
        font-size: 32px;
        margin-bottom: 0px;
    }

    .left-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .about-Btn {
        padding: 8px 25px;
        font-size: 14px;
    }

    .service-section .service-img-box {
        display: none;
    }

        .service-section .service-img-box .service-image {
            display: none;
        }

    .service-section .service-content-box {
        padding: 0 0px;
    }

        .service-section .service-content-box h2 {
            font-size: 32px;
        }

        .service-section .service-content-box p {
            font-size: 14px;
        }

    .service-section .service-content-cards {
        padding: 0 0px;
        margin-top: 10px;
    }

        .service-section .service-content-cards .service-card {
            padding: 15px;
        }

            .service-section .service-content-cards .service-card .service-card-icon i {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .service-section .service-content-cards .service-card .service-card-icon h3 {
                font-size: 24px;
            }

            .service-section .service-content-cards .service-card .service-card-content {
                font-size: 14px;
                margin-top: 10px;
            }

    .fleets-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleets-section .fleet-section-content h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .fleets-section .fleet-section-content .para {
        font-size: 14px;
    }

    .fleets-section .fleet-section-content .fleet-features {
        gap: 5px;
    }

        .fleets-section .fleet-section-content .fleet-features p {
            font-size: 14px;
            gap: 3px;
        }

            .fleets-section .fleet-section-content .fleet-features p i {
                width: 25px;
                height: 25px;
                font-size: 12px;
            }

    .custom-prev {
        left: -40px;
    }

    .custom-next {
        right: -20px;
    }

    .custom-prev, .custom-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .contact-section .contact-top-main .contact-left-heading h2 {
        font-size: 42px;
    }

    .contact-section .contact-top-main .contact-left-heading h3 {
        font-size: 32px;
    }

    .contact-section .contact-top-main .contact-right-text p {
        font-size: 16px;
    }

    .contact-section .contact-form {
        padding: 40px 0 0 0;
    }

        .contact-section .contact-form .contact-input-div .custom-input {
            padding: 10px 5px;
            font-size: 14px;
        }

        .contact-section .contact-form .social-media-div a {
            padding: 8px 13px;
            font-size: 14px;
        }

        .contact-section .contact-form .contact-btn {
            padding: 8px 25px;
            font-size: 14px;
        }

    .footer .footer-logo {
        width: 150px;
    }

    .footer_ul {
        gap: 5px;
        margin-top: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

        .getin_touch a i {
            padding-right: 2px;
        }

    .getin_touch span {
        font-size: 14px;
    }

    .bootom-footer-section {
        padding: 5px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .fleets-section .fleet-section-content .fleet-btn {
        padding: 8px 25px;
        font-size: 14px;
    }

    .left-content-about p {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header {
        height: 90px;
    }

    .mini-header .left-content i {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .mini-header .left-content p a {
        font-size: 14px;
    }

    .mini-header .right-content ul li a {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    nav.navbar.navbar-expand-lg.navbar-light .navbar-nav {
        gap: 10px;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

        nav.navbar.navbar-expand-lg.navbar-light .navbar-nav .nav-item .nav-link {
            font-size: 14px;
        }

    nav.navbar.navbar-expand-lg.navbar-light {
        top: 0px;
    }

    .Header-Logo {
        width: 120px;
    }

    .header-btn {
        padding: 8px 25px;
        font-size: 14px;
        border-radius: 5px;
    }

    .hero-section .hero-content h1 {
        font-size: 48px;
        text-align: center;
    }

    .hero-section .hero-content p {
        font-size: 14px;
        text-align: center;
    }

    .hero-section .hero-form {
        padding: 30px;
        margin-top: 20px;
    }

        .hero-section .hero-form h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .hero-section .hero-form .custom-divinput .custom-input {
            padding: 10px 5px;
            font-size: 14px;
        }

        .hero-section .hero-form .custom-divinput i {
            width: 30px;
            height: 30px;
            font-size: 13px;
        }

        .hero-section .hero-form .heroform-btn {
            padding: 8px 25px;
            font-size: 14px;
            border-radius: 5px;
        }

    .about-section h2 {
        font-size: 32px;
        margin-bottom: 0px;
    }

    .left-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .about-Btn {
        padding: 8px 25px;
        font-size: 14px;
    }

    .service-section .service-img-box {
        display: none;
    }

        .service-section .service-img-box .service-image {
            display: none;
        }

    .service-section .service-content-box {
        padding: 0 0px;
    }

        .service-section .service-content-box h2 {
            font-size: 32px;
        }

        .service-section .service-content-box p {
            font-size: 14px;
        }

    .service-section .service-content-cards {
        padding: 0 0px;
        margin-top: 10px;
    }

        .service-section .service-content-cards .service-card {
            padding: 15px;
        }

            .service-section .service-content-cards .service-card .service-card-icon i {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .service-section .service-content-cards .service-card .service-card-icon h3 {
                font-size: 24px;
            }

            .service-section .service-content-cards .service-card .service-card-content {
                font-size: 14px;
                margin-top: 10px;
            }

    .fleets-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleets-section .fleet-section-content h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .fleets-section .fleet-section-content .para {
        font-size: 14px;
    }

    .fleets-section .fleet-section-content .fleet-features {
        gap: 5px;
    }

        .fleets-section .fleet-section-content .fleet-features p {
            font-size: 14px;
            gap: 3px;
        }

            .fleets-section .fleet-section-content .fleet-features p i {
                width: 25px;
                height: 25px;
                font-size: 12px;
            }

    .custom-prev {
        left: -40px;
    }

    .custom-next {
        right: -20px;
    }

    .custom-prev, .custom-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
        display: none !important;
    }

    .contact-section .contact-top-main .contact-left-heading h2 {
        font-size: 42px;
    }

    .contact-section .contact-top-main .contact-left-heading h3 {
        font-size: 32px;
    }

    .contact-section .contact-top-main .contact-right-text p {
        font-size: 16px;
    }

    .contact-section .contact-form {
        padding: 40px 0 0 0;
    }

        .contact-section .contact-form .contact-input-div .custom-input {
            padding: 10px 5px;
            font-size: 14px;
        }

        .contact-section .contact-form .social-media-div a {
            padding: 8px 13px;
            font-size: 14px;
        }

        .contact-section .contact-form .contact-btn {
            padding: 8px 25px;
            font-size: 14px;
        }

    .footer .footer-logo {
        width: 150px;
    }

    .footer_ul {
        gap: 5px;
        margin-top: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

        .getin_touch a i {
            padding-right: 2px;
        }

    .getin_touch span {
        font-size: 14px;
    }

    .bootom-footer-section {
        padding: 5px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .left-content-about {
        margin-top: 20px;
    }

    .header-sticky.sticky .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(326deg) brightness(101%) contrast(101%);
    }

    .header-sticky.sticky .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
    }

    .slick-dots {
        display: none !important;
    }

    .fleets-section .fleet-section-content {
        padding: 0 0px;
        margin-top: 20px;
    }

        .fleets-section .fleet-section-content .fleet-btn {
            padding: 8px 25px;
            font-size: 14px;
        }

    .left-content-about p {
        font-size: 14px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header {
        height: 90px;
    }

    .mini-header .left-content i {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .mini-header .left-content p a {
        font-size: 14px;
    }

    .mini-header .right-content ul li a {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    nav.navbar.navbar-expand-lg.navbar-light .navbar-nav {
        gap: 10px;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

        nav.navbar.navbar-expand-lg.navbar-light .navbar-nav .nav-item .nav-link {
            font-size: 14px;
        }

    nav.navbar.navbar-expand-lg.navbar-light {
        top: 0px;
    }

    .Header-Logo {
        width: 120px;
    }

    .header-btn {
        padding: 8px 25px;
        font-size: 14px;
        border-radius: 5px;
    }

    .hero-section {
        height: auto;
        padding: 100px 0 40px 0;
    }

        .hero-section .hero-content h1 {
            font-size: 48px;
            text-align: center;
        }

        .hero-section .hero-content p {
            font-size: 14px;
            text-align: center;
        }

        .hero-section .hero-form {
            padding: 30px;
            margin-top: 20px;
        }

            .hero-section .hero-form h2 {
                font-size: 32px;
                margin-bottom: 10px;
            }

            .hero-section .hero-form .custom-divinput .custom-input {
                padding: 10px 5px;
                font-size: 14px;
            }

            .hero-section .hero-form .custom-divinput i {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }

            .hero-section .hero-form .heroform-btn {
                padding: 8px 25px;
                font-size: 14px;
                border-radius: 5px;
            }

    .about-section h2 {
        font-size: 32px;
        margin-bottom: 0px;
    }

    .left-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .about-Btn {
        padding: 8px 25px;
        font-size: 14px;
    }

    .service-section .service-img-box {
        display: none;
    }

        .service-section .service-img-box .service-image {
            display: none;
        }

    .service-section .service-content-box {
        padding: 0 0px;
    }

        .service-section .service-content-box h2 {
            font-size: 32px;
        }

        .service-section .service-content-box p {
            font-size: 14px;
        }

    .service-section .service-content-cards {
        padding: 0 0px;
        margin-top: 10px;
    }

        .service-section .service-content-cards .service-card {
            padding: 15px;
        }

            .service-section .service-content-cards .service-card .service-card-icon i {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .service-section .service-content-cards .service-card .service-card-icon h3 {
                font-size: 24px;
            }

            .service-section .service-content-cards .service-card .service-card-content {
                font-size: 14px;
                margin-top: 10px;
            }

    .fleets-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleets-section .fleet-section-content h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .fleets-section .fleet-section-content .para {
        font-size: 14px;
    }

    .fleets-section .fleet-section-content .fleet-features {
        gap: 5px;
    }

        .fleets-section .fleet-section-content .fleet-features p {
            font-size: 14px;
            gap: 3px;
        }

            .fleets-section .fleet-section-content .fleet-features p i {
                width: 25px;
                height: 25px;
                font-size: 12px;
            }

    .custom-prev {
        left: -40px;
    }

    .custom-next {
        right: -20px;
    }

    .custom-prev, .custom-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
        display: none !important;
    }

    .contact-section .contact-top-main .contact-left-heading h2 {
        font-size: 42px;
    }

    .contact-section .contact-top-main .contact-left-heading h3 {
        font-size: 32px;
    }

    .contact-section .contact-top-main .contact-right-text p {
        font-size: 16px;
    }

    .contact-section .contact-form {
        padding: 40px 0 0 0;
    }

        .contact-section .contact-form .contact-input-div .custom-input {
            padding: 10px 5px;
            font-size: 14px;
        }

        .contact-section .contact-form .social-media-div a {
            padding: 8px 13px;
            font-size: 14px;
        }

        .contact-section .contact-form .contact-btn {
            padding: 8px 25px;
            font-size: 14px;
        }

    .footer .footer-logo {
        width: 150px;
    }

    .footer_ul {
        gap: 5px;
        margin-top: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

        .getin_touch a i {
            padding-right: 2px;
        }

    .getin_touch span {
        font-size: 14px;
    }

    .bootom-footer-section {
        padding: 5px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .left-content-about {
        margin-top: 20px;
    }

    .header-sticky.sticky .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(326deg) brightness(101%) contrast(101%);
    }

    .header-sticky.sticky .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
    }

    .slick-dots {
        display: none !important;
    }

    .fleets-section .fleet-section-content {
        padding: 0 0px;
        margin-top: 20px;
    }

        .fleets-section .fleet-section-content .fleet-btn {
            padding: 8px 25px;
            font-size: 14px;
        }

    .contact-section .contact-form .social-media-div {
        margin-top: 20px;
    }

    .left-content-about p {
        font-size: 14px;
    }
    .sec-result .upper-list {
        display: none;
    }
    .update-fleet-box .fleet-detail {
        border: none;
    }
    .contact-section .contact-form .contact-input-div {
        margin-bottom: 0px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header {
        height: 160px;
    }

    .mini-header .left-content i {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .mini-header .left-content p a {
        font-size: 14px;
    }

    .mini-header .right-content ul li a {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .mini-header .left-content {
        justify-content: center;
        flex-direction: column;
        gap: 0;
    }

    .mini-header .right-content {
        justify-content: center;
    }

    nav.navbar.navbar-expand-lg.navbar-light .navbar-nav {
        gap: 0px;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

        nav.navbar.navbar-expand-lg.navbar-light .navbar-nav .nav-item .nav-link {
            font-size: 14px;
        }

    nav.navbar.navbar-expand-lg.navbar-light {
        top: 20px;
    }

    .Header-Logo {
        width: 100px;
    }

    .header-btn {
        padding: 8px 25px;
        font-size: 14px;
        border-radius: 5px;
    }

    .hero-section {
        height: auto;
        padding: 70px 0 40px 0;
    }

        .hero-section .hero-content h1 {
            font-size: 32px;
            text-align: center;
        }

        .hero-section .hero-content p {
            font-size: 14px;
            text-align: center;
        }

        .hero-section .hero-form {
            padding: 30px;
            margin-top: 20px;
        }

            .hero-section .hero-form h2 {
                font-size: 32px;
                margin-bottom: 10px;
            }

            .hero-section .hero-form .custom-divinput .custom-input {
                padding: 10px 5px;
                font-size: 14px;
            }

            .hero-section .hero-form .custom-divinput i {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }

            .hero-section .hero-form .heroform-btn {
                padding: 8px 25px;
                font-size: 14px;
                border-radius: 5px;
            }

    .about-section h2 {
        font-size: 32px;
        margin-bottom: 0px;
    }

    .left-content p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .about-Btn {
        padding: 8px 25px;
        font-size: 14px;
    }

    .service-section .service-img-box {
        display: none;
    }

        .service-section .service-img-box .service-image {
            display: none;
        }

    .service-section .service-content-box {
        padding: 0 0px;
    }

        .service-section .service-content-box h2 {
            font-size: 32px;
        }

        .service-section .service-content-box p {
            font-size: 14px;
        }

    .service-section .service-content-cards {
        padding: 0 0px;
        margin-top: 10px;
    }

        .service-section .service-content-cards .service-card {
            padding: 15px;
        }

            .service-section .service-content-cards .service-card .service-card-icon i {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .service-section .service-content-cards .service-card .service-card-icon h3 {
                font-size: 24px;
            }

            .service-section .service-content-cards .service-card .service-card-content {
                font-size: 14px;
                margin-top: 10px;
            }

    .fleets-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleets-section .fleet-section-content h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .fleets-section .fleet-section-content .para {
        font-size: 14px;
    }

    .fleets-section .fleet-section-content .fleet-features {
        gap: 5px;
    }

        .fleets-section .fleet-section-content .fleet-features p {
            font-size: 14px;
            gap: 3px;
        }

            .fleets-section .fleet-section-content .fleet-features p i {
                width: 25px;
                height: 25px;
                font-size: 12px;
            }

    .custom-prev {
        left: -40px;
    }

    .custom-next {
        right: -20px;
    }

    .custom-prev, .custom-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
        display: none !important;
    }

    .contact-section .contact-top-main .contact-left-heading h2 {
        font-size: 32px;
    }

    .contact-section .contact-top-main .contact-left-heading h3 {
        font-size: 24px;
    }

    .contact-section .contact-top-main .contact-right-text p {
        font-size: 14px;
        margin-top: 10px;
    }

    .contact-section .contact-form {
        padding: 40px 0 0 0;
    }

        .contact-section .contact-form .contact-input-div .custom-input {
            padding: 10px 5px;
            font-size: 14px;
        }

        .contact-section .contact-form .social-media-div a {
            padding: 8px 13px;
            font-size: 14px;
        }

        .contact-section .contact-form .contact-btn {
            padding: 8px 25px;
            font-size: 14px;
        }

    .footer .footer-logo {
        width: 150px;
    }

    .footer_ul {
        gap: 5px;
        margin-top: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

        .getin_touch a i {
            padding-right: 2px;
        }

    .getin_touch span {
        font-size: 14px;
    }

    .bootom-footer-section {
        padding: 5px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .left-content-about {
        margin-top: 20px;
    }

    .header-sticky.sticky .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(326deg) brightness(101%) contrast(101%);
    }

    .header-sticky.sticky .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
    }

    .slick-dots {
        display: none !important;
    }

    .fleets-section .fleet-section-content {
        padding: 0 0px;
        margin-top: 20px;
    }

        .fleets-section .fleet-section-content .fleet-btn {
            padding: 8px 25px;
            font-size: 14px;
        }

    .contact-section .contact-form .social-media-div {
        margin-top: 20px;
    }

    .left-content-about p {
        font-size: 14px;
    }
    .sec-result .upper-list{
        display: none;
    }
    .update-fleet-box .fleet-detail{
        border: none;
    }
    .contact-section .contact-form .contact-input-div {
        margin-bottom: 0px;
    }
}
