@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;
    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: "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;
}

/************************** All Main Css Start **************************/
/* header css start */
.main-header {
    width: 100%;
    background: var(--primary-color);
    padding: 7px 0;
    height: 120px;
    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: 14px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.Header-Logo {
    width: 220px;
    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: var(--white-color);
        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 start */
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
}

    .hero-section .carousel-indicators {
        display: none;
    }

    .hero-section .carousel-inner .carousel-item img {
        height: 85vh;
        object-fit: cover;
    }

.carousel-control-prev, .carousel-control-next {
    opacity: 1;
}

    .carousel-control-prev i, .carousel-control-next i {
        background: var(--primary-color);
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        color: var(--white-color);
        border: 2px solid var(--primary-color);
        font-size: 18px;
        transition: all 0.3s ease-in-out;
    }

        .carousel-control-next i:hover {
            background: transparent;
            color: var(--primary-color);
        }

        .carousel-control-prev i:hover {
            background: transparent;
            color: var(--primary-color);
        }

.carousel-caption {
    bottom: 18.25rem !important;
    padding: 0 200px;
}

.hero-section .carousel-item {
    position: relative;
}

.hero-section .carousel-inner .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55); /* opacity adjust 0.3 to 0.8 */
    z-index: 1;
}

/* Ensure text stays above overlay */
.hero-section .carousel-caption {
    z-index: 2;
}

.carousel-caption h5 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.carousel-caption p {
    font-size: 18px;
    color: #fff;
}

.hero-form-con {
    background: var(--white-color);
    border: 5px solid var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    top: -210px;
    z-index: 3;
}

    .hero-form-con h3 {
        font-size: 32px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 20px;
    }

    .hero-form-con .input-con-div {
        width: 100%;
        margin-bottom: 20px;
        position: relative;
    }

        .hero-form-con .input-con-div .custom-input {
            width: 100%;
            padding: 10px 50px 10px 10px;
            border: 2px solid var(--primary-color);
            background: var(--white-color);
            border-radius: 10px;
            font-size: 16px;
            font-family: "Poppins", sans-serif;
            color: var(--black-color);
        }

            .hero-form-con .input-con-div .custom-input::placeholder {
                color: var(--black-color);
            }

    .hero-form-con .booking-btn {
        width: 100%;
        text-align: center;
        border: none;
        padding: 10px 40px;
        background: var(--primary-color);
        color: var(--white-color);
        border-radius: 5px;
        border: 2px solid var(--primary-color);
        font-size: 16px;
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        transition: all 0.3s ease-in-out;
    }

        .hero-form-con .booking-btn:hover {
            background: transparent;
            color: var(--primary-color);
        }

    .hero-form-con .input-con-div i {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        color: var(--white-color);
        background: var(--black-color);
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }
/* hero section start */
/* about section css start */
.about-section {
    width: 100%;
    padding: 40px 0 40px 0;
    position: relative;
    top: 0;
}

.about-main {
    padding: 40px 0;
    top: 0;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
}

.left-content {
    width: 100%;
    /* padding: 20px 0; */
}

    .left-content p {
        color: var(--black-color);
        /* margin-bottom: 20px; */
    }

    .left-content h4 {
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: 700;
        font-size: 18px;
    }

    .left-content .second-p {
        margin-bottom: 10px;
    }

.right-content img {
    border-radius: 20px;
    border: 5px solid var(--primary-color);
}

.about-Btn {
    border: none;
    padding: 12px 40px !important;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .about-Btn:hover {
        color: var(--primary-color);
        background: transparent;
    }
/* about section css end */
/* services section css start */
.services-section {
    width: 100%;
    padding: 40px 0;
}

    .services-section h2 {
        font-size: 42px;
        font-weight: 700;
        font-family: "Poppins", sans-serif;
        margin-bottom: 40px;
        text-align: center;
        color: var(--black-color);
    }

        .services-section h2 span {
            border-radius: 10px;
            color: var(--primary-color);
            text-decoration: underline;
        }

    .services-section .services-card-main {
        background: var(--white-color);
        padding: 30px;
        border: 3px solid var(--primary-color);
        border-radius: 15px;
        margin-top: 130px;
        position: relative;
    }

        .services-section .services-card-main .service-top {
            width: 370px;
            height: 220px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 15px;
            position: absolute;
            top: 0%;
            left: 50%;
            transform: translate(-50%, -50%);
            overflow: hidden;
        }

            .services-section .services-card-main .service-top img {
                object-fit: cover;
                border-radius: 15px;
                transform: scale(1);
                transition: all 0.3s ease-in-out;
            }

        .services-section .services-card-main:hover .service-top img {
            transform: scale(1.1);
        }

        .services-section .services-card-main .service-bottom {
            width: 100%;
            margin-top: 80px;
        }

            .services-section .services-card-main .service-bottom h3 {
                font-size: 32px;
                font-weight: 700;
                font-family: "Poppins", sans-serif;
                margin-bottom: 10px;
                text-align: center;
            }

            .services-section .services-card-main .service-bottom p {
                font-size: 16px;
                font-family: "Poppins", sans-serif;
                margin-bottom: 10px;
                text-align: center;
            }

            .services-section .services-card-main .service-bottom .service-btn {
                width: 100%;
                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;
            }

                .services-section .services-card-main .service-bottom .service-btn:hover {
                    color: var(--primary-color);
                    background: var(--white-color);
                }
/* services section css start */
/* fleets section css start */
.fleets-section {
    width: 100%;
    padding: 40px 0;
    background: #f2f2f2;
}

    .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 {
            border-radius: 10px;
            color: var(--primary-color);
            text-decoration: underline;
        }

    .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%;
    padding: 40px 0px;
}

.contact-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.contact-section h2 {
    font-size: 54px;
    font-weight: 700;
    color: var(--black-color);
    text-align: center;
}

.main-contact {
    width: 100%;
    height: 100%;
    background: var(--white-color);
    border-radius: 10px;
    border: 5px solid var(--primary-color);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
}

.contact-info {
    width: 100%;
    height: 100%;
    padding: 40px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background: var(--primary-color);
}

    .contact-info h3 {
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--black-color);
    }

    .contact-info p {
        color: var(--white-color);
        margin-bottom: 10px !important;
        margin-top: 5px;
    }

.sicial-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.in-con {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--black-color);
}

    .in-con i {
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--white-color);
        color: var(--black-color);
        border-radius: 5px;
    }

    .in-con a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
        margin-top: 5px;
        font-family: "Poppins", sans-serif;
    }

        .in-con a:hover {
            color: var(--black-color);
        }

.contact-form {
    width: 100%;
    height: 100%;
    padding: 30px;
}

.con_inp {
    width: 100%;
    height: 100%;
}

.contact-input {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease-in-out;
}

    .contact-input::placeholder {
        color: var(--black-color);
    }

    .contact-input:focus {
        outline: none;
        border: 2px solid var(--primary-color);
    }

.contact-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;
    margin-top: 10px;
}

    .contact-btn:hover {
        color: var(--primary-color);
        background: var(--white-color);
    }
/* contact section */
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--black-color);
}

    .footer .footer-logo {
        width: 100%;
    }

.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: 20px;
        color: #d11a1c;
    }

.footer_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    margin-top: 10px;
}

    .footer_ul .footer_li a {
        color: var(--white-color);
        transform: translateX(0px);
        font-size: 14px;
        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: 20px;
    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: 14px;
    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 p {
    color: var(--primary-color);
}

.last-footer-content h2 {
    font-weight: 600;
    font-size: 20px;
    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: 8px;
    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: 150px 0;
    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 */
.sec-result {
    padding: 60px 0;
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 16px;
        background: #edf2fa;
    }

        .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%;
                    object-fit: contain;
                }

            .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: #edf2fa;
                        width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 20px;
                        margin: 0 auto;
                        color: #000;
                        font-weight: 600;
                    }

                    .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: #edf2fa;
    margin: 20px 0;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            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: #edf2fa;
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .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: #edf2fa;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .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;
        }

#lkbtn_lgout {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-weight: 500;
    padding: 0;
}

    #lkbtn_lgout span {
        margin-right: 7px;
    }

.bottom-footer-content p {
    font-size: 14px;
}
/************************** 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) {
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    html {
        overflow-x: hidden;
    }

    .custom-next {
        right: -4%;
    }

    .custom-prev {
        left: -4%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden;
    }

    .hero-section {
        height: auto;
    }

        .hero-section .carousel-inner .carousel-item img {
            height: 700px;
        }

    .hero-form-con {
        border: 3px solid var(--primary-color);
        top: 0;
        margin-top: 20px;
    }

    .custom-prev {
        left: -8%;
    }

    .custom-next {
        right: -8%;
    }

    .custom-prev, .custom-next {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .carousel-caption {
        bottom: 18.25rem !important;
        padding: 0 0px;
    }

    .contact-heading {
        margin-bottom: 20px;
    }

    .contact-section h2 {
        font-size: 36px;
    }

    .sticky.navbar-light .navbar-toggler {
        border-color: rgb(255 255 255);
    }

    .sticky.navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(84%) hue-rotate(201deg) brightness(115%) contrast(100%);
    }

    .mini-header .left-content {
        gap: 4px;
        flex-wrap: wrap;
    }

    nav.navbar.navbar-expand-lg.navbar-light .navbar-nav {
        gap: 0px;
    }

    .contact-info {
        padding: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden;
    }

    .hero-section {
        height: auto;
    }

        .hero-section .carousel-inner .carousel-item img {
            height: 700px;
        }

    .hero-form-con {
        border: 3px solid var(--primary-color);
        top: 0;
        margin-top: 20px;
    }

    .custom-prev {
        left: -8%;
    }

    .custom-next {
        right: -8%;
    }

    .custom-prev, .custom-next {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .carousel-caption {
        bottom: 18.25rem !important;
        padding: 0 0px;
    }

    .contact-heading {
        margin-bottom: 20px;
    }

    .contact-section h2 {
        font-size: 36px;
    }

    .sticky.navbar-light .navbar-toggler {
        border-color: rgb(255 255 255);
    }

    .sticky.navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(84%) hue-rotate(201deg) brightness(115%) contrast(100%);
    }

    .mini-header .left-content {
        gap: 4px;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden;
    }

    nav.navbar.navbar-expand-lg.navbar-light .navbar-nav {
        gap: 10px;
    }

    .mini-header .left-content i {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .mini-header .left-content {
        gap: 5px;
        flex-wrap: wrap;
    }

    .hero-section .carousel-inner .carousel-item img {
        height: 350px;
    }

    nav.navbar.navbar-expand-lg.navbar-light {
        padding: 7px 3px 7px 3px;
        border-radius: 7px;
    }

    .Header-Logo {
        width: 150px;
    }

    .hero-form-con {
        border: 3px solid var(--primary-color);
        padding: 15px;
        border-radius: 10px;
        top: 0;
        margin-top: 10px;
    }

    .sticky.navbar-light .navbar-toggler {
        border-color: rgb(255 255 255);
    }

    .sticky.navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(84%) hue-rotate(201deg) brightness(115%) contrast(100%);
    }

    .about-section {
        padding: 30px 0 30px 0;
        top: 0;
    }

    .services-section h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .about-section h2 {
        font-size: 30px;
        margin: 10px 0;
    }

    .services-section {
        padding: 20px 0;
    }

    .fleets-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .fleets-section .fleet-section-image {
        padding: 10px;
        border-radius: 15px;
        margin-top: 10px;
    }

    .slick-slide img {
        border-radius: 10px;
    }

    .fleets-section .fleet-section-content {
        padding: 10px;
    }

        .fleets-section .fleet-section-content h3 {
            font-size: 26px;
        }

    .contact-section {
        padding: 30px 0px;
    }

    .contact-heading {
        margin-bottom: 30px;
    }

    .contact-section h2 {
        font-size: 30px;
    }

    .contact-info {
        padding: 10px;
    }

    .contact-form {
        padding: 10px;
    }

    .contact-btn {
        margin-top: 10px;
    }

    .banner-section {
        padding: 100px 0 80px;
    }

        .banner-section h2 {
            font-size: 36px;
        }

    .breadcrumb {
        margin-top: 0px;
    }

    .sec-result {
        padding: 30px 0;
        margin-top: 30px;
    }

        .sec-result .upper-list {
            display: none;
        }

            .sec-result .upper-list li {
                padding: 7px 0;
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                }

        .sec-result .number-box {
            padding: 20px 10px;
        }

        .sec-result .for-line::before {
            left: 80%;
        }

        .sec-result .cancellation-box {
            align-items: center;
            flex-direction: column;
        }

            .sec-result .cancellation-box .text-box {
                padding: 10px;
                text-align: center;
            }

    .update-fleet-box .fleet-detail {
        padding: 10px 0px;
        border-right: unset;
        border-left: unset;
    }

    .update-fleet-box .rate-box {
        margin-top: 0%;
    }

    .payfield {
        width: 100% !important;
    }

    .welcome {
        height: 380px !important;
        background-size: cover !important;
    }

    .WelComeText {
        margin-top: 225px !important;
        margin-left: 50px !important;
        line-height: 23px !important;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden;
    }

    nav.navbar.navbar-expand-lg.navbar-light .navbar-nav {
        gap: 10px;
    }

    .mini-header .left-content i {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .mini-header .left-content {
        gap: 5px;
        flex-wrap: wrap;
    }

    .hero-section .carousel-inner .carousel-item img {
        height: 350px;
    }

    nav.navbar.navbar-expand-lg.navbar-light {
        padding: 7px 3px 7px 3px;
        border-radius: 7px;
    }

    .Header-Logo {
        width: 150px;
    }

    .hero-form-con {
        border: 3px solid var(--primary-color);
        padding: 15px;
        border-radius: 10px;
        top: 0;
        margin-top: 10px;
    }

    .sticky.navbar-light .navbar-toggler {
        border-color: rgb(255 255 255);
    }

    .sticky.navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(84%) hue-rotate(201deg) brightness(115%) contrast(100%);
    }

    .about-section {
        padding: 30px 0 30px 0;
        top: 0;
    }

    .services-section h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .about-section h2 {
        font-size: 30px;
        margin: 10px 0;
    }

    .services-section {
        padding: 20px 0;
    }

    .fleets-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .fleets-section .fleet-section-image {
        padding: 10px;
        border-radius: 15px;
        margin-top: 10px;
    }

    .slick-slide img {
        border-radius: 10px;
    }

    .fleets-section .fleet-section-content {
        padding: 10px;
    }

        .fleets-section .fleet-section-content h3 {
            font-size: 26px;
        }

    .contact-section {
        padding: 30px 0px;
    }

    .contact-heading {
        margin-bottom: 30px;
    }

    .contact-section h2 {
        font-size: 30px;
    }

    .contact-info {
        padding: 10px;
    }

    .contact-form {
        padding: 10px;
    }

    .contact-btn {
        margin-top: 10px;
    }

    .banner-section {
        padding: 100px 0 80px;
    }

        .banner-section h2 {
            font-size: 36px;
        }

    .breadcrumb {
        margin-top: 0px;
    }

    .sec-result {
        padding: 30px 0;
        margin-top: 30px;
    }

        .sec-result .upper-list {
            display: none;
        }

            .sec-result .upper-list li {
                padding: 7px 0;
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                }

        .sec-result .number-box {
            padding: 20px 10px;
        }

        .sec-result .for-line::before {
            left: 80%;
        }

        .sec-result .cancellation-box {
            align-items: center;
            flex-direction: column;
        }

            .sec-result .cancellation-box .text-box {
                padding: 10px;
                text-align: center;
            }

    .update-fleet-box .fleet-detail {
        padding: 10px 0px;
        border-right: unset;
        border-left: unset;
    }

    .update-fleet-box .rate-box {
        margin-top: 0%;
    }

    .payfield {
        width: 100% !important;
    }

    .welcome {
        height: 380px !important;
        background-size: cover !important;
    }

    .WelComeText {
        margin-top: 225px !important;
        margin-left: 50px !important;
        line-height: 23px !important;
    }
}
