@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: #1C3341;
    --secondary-color: #F9E781;
    --grey-shade: #A7C8CF;
    --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 **************************/
/* mini header css */
.mini-header {
    width: 100%;
    padding: 5px;
    background: var(--secondary-color);
}

.infocont {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
}

    .infocont a {
        color: var(--black-color);
        transition: all 0.3s ease-in-out;
    }

        .infocont a:hover {
            color: var(--primary-color);
        }

        .infocont a > i {
            padding-right: 5px;
        }

.social_icons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

    .social_icons i {
        color: var(--black-color);
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

        .social_icons i:hover {
            color: var(--primary-color);
        }
/* mini header css */
/* header css */
.header {
    width: 100%;
    position: relative;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 10;
}

.header-sticky {
    width: 100%;
    position: relative;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 10;
}

    .header-sticky.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        animation: fadeInDown 0.5s ease;
    }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#scrollBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s;
}

    #scrollBtn:hover {
        background: var(--secondary-color);
        color: var(--black-color);
    }

.navbar-expand-lg {
    padding: 10px 0;
    background: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .navbar-expand-lg .logo {
        width: 150px;
        border-radius: 10px;
    }

    .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
        align-items: center;
    }

    .navbar-expand-lg .navbar-nav {
        align-items: center;
        gap: 30px;
    }

.navbar-light .navbar-nav .nav-link.active {
    border: none;
    padding: 10px 20px !important;
    background: var(--secondary-color);
    color: var(--black-color);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-Btn {
    border: none;
    padding: 10px 40px !important;
    background: var(--secondary-color);
    color: var(--black-color);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

    .header-Btn:hover {
        color: var(--black-color);
        background: var(--white-color);
    }

.navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.navbar-nav .nav-item:hover .nav-link {
    color: var(--white-color);
}

.navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::before {
    width: 100%;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
}
/* header css */
/* 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: 70vh;
        object-fit: cover;
    }

.carousel-control-prev, .carousel-control-next {
    opacity: 1;
}

    .carousel-control-prev i, .carousel-control-next i {
        background: #1c3341;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        color: #fff;
        font-size: 18px;
        transition: all 0.3s ease-in-out;
    }

        .carousel-control-next i:hover {
            background: #f9e781;
            color: #000;
        }

        .carousel-control-prev i:hover {
            background: #f9e781;
            color: #000;
        }

.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: 50px;
    border-radius: 20px;
    position: relative;
    top: -200px;
    z-index: 3;
}

    .hero-form-con h3 {
        font-size: 32px;
        font-weight: 700;
        color: var(--primary-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 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;
        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: var(--secondary-color);
            color: var(--black-color);
        }

    .hero-form-con .input-con-div i {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        color: var(--black-color);
        background: var(--secondary-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: 0 0 40px 0;
    position: relative;
    top: -60px;
}

.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-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .about-Btn:hover {
        color: var(--black-color);
        background: var(--secondary-color);
    }
/* about section css end */
/* services section css start */
.services-section {
    width: 100%;
    padding: 60px 0;
    background: var(--primary-color);
    position: relative;
    top: 0px;
}

.service-main {
    background: var(--white-color);
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

    .services-section .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        color: var(--white-color);
    }

.service-box {
    background: var(--white-color);
    padding: 30px;
    height: 400px;
    border-radius: 20px;
    text-align: center;
    border: 5px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.service-box-in {
    height: auto;
}

.service-box:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 5px solid var(--secondary-color);
}

.service-box .service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 auto 20px auto;
}

.service-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 15px;
}

.service-box p {
    color: var(--black-color);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.services-btn {
    border: none;
    padding: 10px 30px !important;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .services-btn:hover {
        color: var(--black-color);
        background: var(--secondary-color);
    }
/* services section css end */
/* our fleets section */
.our-fleet-section {
    width: 100%;
    height: 100%;
    padding: 40px 0px;
}

    .our-fleet-section h2 {
        font-size: 42px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 40px;
        text-align: center;
    }

    .our-fleet-section .fleetPara {
        text-align: center;
        margin-bottom: 50px;
    }

.fleet-card {
    width: 100%;
    /* height: auto; */
    padding: 30px;
    margin-bottom: 25px;
    background: var(--white-color);
    border: 5px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
}

    .fleet-card .fleet-1 {
        width: 100%;
        height: 200px;
        border-radius: 15px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .fleet-card h3 {
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
        font-size: 32px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--primary-color);
    }

    .fleet-card .fleet-para {
        color: var(--black-color);
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--primary-color);
    }

.fleet-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 10px;
}

    .fleet-features p {
        color: var(--black-color);
    }

    .fleet-features i {
        padding-right: 5px;
        color: var(--primary-color);
    }

.fleet_btn {
    width: 100%;
    border: none;
    padding: 10px 40px !important;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .fleet_btn:hover {
        color: var(--black-color);
        background: var(--secondary-color);
    }
/* our fleets section */
/* 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 h3 {
                font-size: 42px;
                font-weight: 500;
                color: var(--white-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(--primary-color);
                background: var(--white-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(--primary-color);
                    background: var(--secondary-color);
                }

        .contact-section .contact-form .contact-btn-div {
            width: 100%;
        }

        .contact-section .contact-form .contact-btn {
            border: none;
            background: var(--white-color);
            padding: 7px 14px;
            color: var(--primary-color);
            display: inline-flex;
            gap: 10px;
            align-items: center;
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease-in-out;
        }

            .contact-section .contact-form .contact-btn:hover {
                background: var(--secondary-color);
                color: var(--primary-color);
            }

            .contact-section .contact-form .contact-btn i {
                background: var(--primary-color);
                padding: 10px 10px;
                border-radius: 50px;
                color: var(--white-color);
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 14px;
            }
/* contact section */
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--primary-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: var(--white-color);
    }

.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: var(--white-color);
}

.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(--secondary-color);
    }

    .getin_touch a i {
        padding-right: 7px;
    }

.getin_touch p {
    color: var(--primary-color);
}

.last-footer-content h2 {
    font-weight: 600;
    font-size: 24px;
    color: var(--white-color);
}

.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(--secondary-color);
    padding: 10px;
    color: var(--black-color);
    text-align: center;
}

    .bootom-footer-section a {
        color: var(--black-color);
        transition: all 0.3s ease-in-out;
    }

        .bootom-footer-section a:hover {
            color: var(--white-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(--secondary-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;
        border: 3px solid #1c3341;
    }

        .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;
                    border: 2px solid #1c3341;
                    padding: 6px;
                    border-radius: 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: #f9e781;
                        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: #1c3341 !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;
    border: 5px solid #1c3341;
}

    .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: #000000;
                background-color: #f9e781;
                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;
    border: 3px solid #1c3341;
    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;
    border: 5px solid #1c3341;
    margin-bottom: 30px;
}

    .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) {
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .infocont {
        gap: 5px;
    }

        .infocont a {
            font-size: 14px;
        }

    .social_icons {
        gap: 15px;
    }

        .social_icons i {
            font-size: 14px;
        }

    .navbar-expand-lg {
        padding: 5px 0;
    }

        .navbar-expand-lg .logo {
            width: 120px;
        }

        .navbar-expand-lg .navbar-nav {
            gap: 15px;
        }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .header-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .hero-section {
        height: 70vh;
    }

        .hero-section .carousel-inner .carousel-item img {
            height: 50vh;
        }

    .carousel-caption {
        bottom: 13.25rem !important;
        padding: 0 10px;
    }

        .carousel-caption h5 {
            font-size: 32px;
        }

        .carousel-caption p {
            font-size: 14px;
        }

    .hero-form-con {
        padding: 20px;
        border-radius: 12px;
        top: -150px;
    }

        .hero-form-con .input-con-div .custom-input {
            font-size: 14px;
        }

        .hero-form-con .booking-btn {
            padding: 10px 20px;
            font-size: 14px;
        }

    .about-section {
        padding: 0 0 0px 0;
    }

        .about-section h2 {
            font-size: 32px;
        }

    .left-content p {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .about-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .services-section {
        padding: 40px 0;
    }

        .services-section .section-title {
            margin-bottom: 20px;
        }

            .services-section .section-title h2 {
                font-size: 32px;
            }

    .service-box {
        padding: 20px;
        height: auto;
    }

        .service-box .service-icon {
            width: 40px;
            height: 40px;
            font-size: 14px;
            margin: 0 auto 10px auto;
        }

        .service-box h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .service-box p {
            margin-bottom: 10px;
            font-size: 14px;
        }

    .services-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .our-fleet-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleet-card {
        padding: 20px;
    }

        .fleet-card h3 {
            font-size: 24px;
        }

        .fleet-card .fleet-para {
            font-size: 14px;
        }

    .fleet-features {
        gap: 5px;
    }

        .fleet-features p {
            font-size: 14px;
        }

    .fleet_btn {
        font-size: 14px;
    }

    .contact-section .contact-form {
        padding: 20px 0 0 0;
    }

    .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;
    }

    .contact-section .contact-form .contact-input-div {
        margin-bottom: 10px;
    }

        .contact-section .contact-form .contact-input-div .custom-input {
            padding: 10px 5px;
            font-size: 14px;
        }

    .contact-section .contact-form .contact-btn {
        font-size: 14px;
    }

    .contact-section .contact-form .social-media-div a {
        padding: 7px 13px;
        border-radius: 5px;
    }

    .footer .footer-logo {
        width: 150px;
    }

    .footer_ul {
        gap: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .bottom-footer-content 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;
    }

    .infocont {
        gap: 5px;
    }

        .infocont a {
            font-size: 14px;
        }

    .social_icons {
        gap: 15px;
    }

        .social_icons i {
            font-size: 14px;
        }

    .navbar-expand-lg {
        padding: 5px 0;
    }

        .navbar-expand-lg .logo {
            width: 120px;
        }

        .navbar-expand-lg .navbar-nav {
            gap: 10px;
        }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .header-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .navbar-expand-lg .navbar-collapse {
        padding: 20px;
    }

    .hero-section {
        height: auto;
    }

        .hero-section .carousel-inner .carousel-item img {
            height: 60vh;
        }

    .carousel-caption {
        bottom: 13.25rem !important;
        padding: 0 10px;
    }

        .carousel-caption h5 {
            font-size: 26px;
        }

        .carousel-caption p {
            font-size: 14px;
        }

    .hero-form-con {
        padding: 20px;
        border-radius: 12px;
        top: -180px;
    }

        .hero-form-con .input-con-div .custom-input {
            font-size: 14px;
        }

        .hero-form-con .booking-btn {
            padding: 10px 20px;
            font-size: 14px;
        }

    .about-section {
        padding: 0 0 0px 0;
        top: -80px;
    }

        .about-section h2 {
            font-size: 32px;
        }

    .left-content p {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .about-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .services-section {
        padding: 40px 0;
    }

        .services-section .section-title {
            margin-bottom: 20px;
        }

            .services-section .section-title h2 {
                font-size: 32px;
            }

    .service-box {
        padding: 20px;
        height: auto;
    }

        .service-box .service-icon {
            width: 40px;
            height: 40px;
            font-size: 14px;
            margin: 0 auto 10px auto;
        }

        .service-box h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .service-box p {
            margin-bottom: 10px;
            font-size: 14px;
        }

    .services-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .our-fleet-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleet-card {
        padding: 20px;
    }

        .fleet-card h3 {
            font-size: 24px;
        }

        .fleet-card .fleet-para {
            font-size: 14px;
        }

    .fleet-features {
        gap: 5px;
    }

        .fleet-features p {
            font-size: 14px;
        }

    .fleet_btn {
        font-size: 14px;
    }

    .contact-section .contact-form {
        padding: 20px 0 0 0;
    }

    .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;
    }

    .contact-section .contact-form .contact-input-div {
        margin-bottom: 10px;
    }

        .contact-section .contact-form .contact-input-div .custom-input {
            padding: 10px 5px;
            font-size: 14px;
        }

    .contact-section .contact-form .contact-btn {
        font-size: 14px;
    }

    .contact-section .contact-form .social-media-div a {
        padding: 7px 13px;
        border-radius: 5px;
    }

    .footer .footer-logo {
        width: 150px;
    }

    .footer_ul {
        gap: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .navbar-light .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(214deg) brightness(103%) contrast(101%);
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .infocont {
        gap: 5px;
    }

        .infocont a {
            font-size: 14px;
        }

    .social_icons {
        gap: 15px;
    }

        .social_icons i {
            font-size: 14px;
        }

    .navbar-expand-lg {
        padding: 5px 0;
    }

        .navbar-expand-lg .logo {
            width: 120px;
        }

        .navbar-expand-lg .navbar-nav {
            gap: 10px;
        }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .header-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .navbar-expand-lg .navbar-collapse {
        padding: 20px;
    }

    .hero-section {
        height: auto;
    }

        .hero-section .carousel-inner .carousel-item img {
            height: 60vh;
        }

    .carousel-caption {
        bottom: 13.25rem !important;
        padding: 0 10px;
    }

        .carousel-caption h5 {
            font-size: 26px;
        }

        .carousel-caption p {
            font-size: 14px;
        }

    .hero-form-con {
        padding: 20px;
        border-radius: 12px;
        top: -180px;
    }

        .hero-form-con .input-con-div .custom-input {
            font-size: 14px;
        }

        .hero-form-con .booking-btn {
            padding: 10px 20px;
            font-size: 14px;
        }

    .about-section {
        padding: 0 0 0px 0;
        top: -80px;
    }

        .about-section h2 {
            font-size: 32px;
        }

    .left-content p {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .about-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .services-section {
        padding: 40px 0;
    }

        .services-section .section-title {
            margin-bottom: 20px;
        }

            .services-section .section-title h2 {
                font-size: 32px;
            }

    .service-box {
        padding: 20px;
        height: auto;
    }

        .service-box .service-icon {
            width: 40px;
            height: 40px;
            font-size: 14px;
            margin: 0 auto 10px auto;
        }

        .service-box h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .service-box p {
            margin-bottom: 10px;
            font-size: 14px;
        }

    .services-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .our-fleet-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleet-card {
        padding: 20px;
    }

        .fleet-card h3 {
            font-size: 24px;
        }

        .fleet-card .fleet-para {
            font-size: 14px;
        }

    .fleet-features {
        gap: 5px;
    }

        .fleet-features p {
            font-size: 14px;
        }

    .fleet_btn {
        font-size: 14px;
    }

    .contact-section .contact-form {
        padding: 20px 0 0 0;
    }

    .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;
    }

    .contact-section .contact-form .contact-input-div {
        margin-bottom: 10px;
    }

        .contact-section .contact-form .contact-input-div .custom-input {
            padding: 10px 5px;
            font-size: 14px;
        }

    .contact-section .contact-form .contact-btn {
        font-size: 14px;
    }

    .contact-section .contact-form .social-media-div a {
        padding: 7px 13px;
        border-radius: 5px;
    }

    .footer .footer-logo {
        width: 150px;
    }

    .footer_ul {
        gap: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .navbar-light .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(214deg) brightness(103%) contrast(101%);
    }

    .sec-result .upper-list {
        display: none;
    }

    .update-fleet-box .fleet-detail {
        border: none;
    }

    .banner-section {
        padding: 50px;
    }

        .banner-section h2 {
            font-size: 32px;
        }

    .breadcrumb {
        margin-top: 5px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .infocont {
        gap: 5px;
        flex-direction: column;
    }

        .infocont a {
            font-size: 14px;
        }

    .social_icons {
        gap: 15px;
        justify-content: center;
    }

        .social_icons i {
            font-size: 14px;
        }

    .navbar-expand-lg {
        padding: 5px 0;
    }

        .navbar-expand-lg .logo {
            width: 120px;
        }

        .navbar-expand-lg .navbar-nav {
            gap: 10px;
        }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .header-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .navbar-expand-lg .navbar-collapse {
        padding: 20px;
    }

    .hero-section {
        height: auto;
    }

        .hero-section .carousel-inner .carousel-item img {
            height: 60vh;
        }

    .carousel-caption {
        bottom: 13.25rem !important;
        padding: 0 10px;
        display: block !important;
    }

        .carousel-caption h5 {
            font-size: 26px;
        }

        .carousel-caption p {
            font-size: 14px;
        }

    .hero-form-con {
        padding: 20px;
        border-radius: 12px;
        top: -180px;
    }

        .hero-form-con .input-con-div .custom-input {
            font-size: 14px;
        }

        .hero-form-con .booking-btn {
            padding: 10px 20px;
            font-size: 14px;
        }

    .about-section {
        padding: 40px 0;
        top: 20px;
    }

        .about-section h2 {
            font-size: 32px;
        }

    .left-content p {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .about-Btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .services-section {
        padding: 40px 0;
    }

        .services-section .section-title {
            margin-bottom: 20px;
        }

            .services-section .section-title h2 {
                font-size: 32px;
            }

    .service-box {
        padding: 20px;
        height: auto;
        margin-bottom: 20px;
    }

        .service-box .service-icon {
            width: 40px;
            height: 40px;
            font-size: 14px;
            margin: 0 auto 10px auto;
        }

        .service-box h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .service-box p {
            margin-bottom: 10px;
            font-size: 14px;
        }

    .services-btn {
        padding: 8px 20px !important;
        font-size: 14px;
    }

    .our-fleet-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleet-card {
        padding: 20px;
    }

        .fleet-card h3 {
            font-size: 24px;
        }

        .fleet-card .fleet-para {
            font-size: 14px;
        }

    .fleet-features {
        gap: 5px;
    }

        .fleet-features p {
            font-size: 14px;
        }

    .fleet_btn {
        font-size: 14px;
    }

    .contact-section .contact-form {
        padding: 20px 0 0 0;
    }

    .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;
    }

    .contact-section .contact-form .contact-input-div {
        margin-bottom: 10px;
    }

        .contact-section .contact-form .contact-input-div .custom-input {
            padding: 10px 5px;
            font-size: 14px;
        }

    .contact-section .contact-form .contact-btn {
        font-size: 14px;
    }

    .contact-section .contact-form .social-media-div a {
        padding: 7px 13px;
        border-radius: 5px;
    }

    .footer .footer-logo {
        width: 150px;
    }

    .footer_ul {
        gap: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .right-footer-content .getin_touch {
        gap: 5px;
    }

    .getin_touch a {
        font-size: 14px;
    }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .navbar-light .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(214deg) brightness(103%) contrast(101%);
    }

    .sec-result .upper-list {
        display: none;
    }

    .update-fleet-box .fleet-detail {
        border: none;
    }

    .banner-section {
        padding: 50px;
    }

        .banner-section h2 {
            font-size: 32px;
        }

    .breadcrumb {
        margin-top: 5px;
    }
}

.sec-privacy {
    padding: 40px 0 40px;
}

    .sec-privacy .content-box {
    }

        .sec-privacy .content-box h1 {
            text-transform: capitalize;
            position: relative;
            line-height: 25px;
            color: #ffffff;
            font-weight: 700;
            font-size: 22px;
            padding: 10px 20px;
            margin: 0 auto 20px;
            text-align: center;
            background-color: #1c3341;
            width: fit-content;
            border-radius: 10px;
        }

        .sec-privacy .content-box h2 {
            text-transform: capitalize;
            position: relative;
            line-height: 25px;
            color: #000;
            font-weight: 700;
            font-size: 22px;
            padding: 10px 0;
            margin: 0;
        }

        .sec-privacy .content-box h3 {
            text-transform: capitalize;
            position: relative;
            padding: 6px 20px;
            color: #000000;
            font-weight: 700;
            font-size: 18px;
            margin: 0;
        }

        .sec-privacy .content-box ul {
            padding-left: 30px;
            padding-bottom: 10px;
            list-style: none;
        }

            .sec-privacy .content-box ul li {
                padding: 3px 0;
                font-size: 16px;
            }

                .sec-privacy .content-box ul li i {
                    color: #000000;
                    font-size: 16px;
                    padding-right: 7px;
                }

                .sec-privacy .content-box ul li span {
                }

        .sec-privacy .content-box .para {
            color: #000000;
            padding: 5px 0;
            font-weight: 600;
            margin: 0;
        }

        .sec-privacy .content-box h6 a {
            font-size: 16px;
            color: #0089bf;
            text-decoration: underline;
        }

        .sec-privacy .content-box h6 span {
            font-weight: 700;
            font-size: 15px;
            color: #000;
            padding-right: 5px;
        }
