@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');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #917423;
    --secondary-color: #222222;
    --white-color: #fff;
    --black-color: #000;
}

body {
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

figure {
    margin: 0;
    padding: 0;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

p, span {
    margin: 0;
    padding: 0;
}

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 Content Css Start **************************/
/* mini header css */
.mini-header {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
}

.infocont {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
}

    .infocont a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .infocont a:hover {
            color: var(--secondary-color);
        }

.social_icons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    margin-top: 5px;
}

    .social_icons i {
        color: var(--white-color);
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

        .social_icons i:hover {
            color: var(--secondary-color);
        }
/* mini header css */
/* header css */
.header {
    width: 100%;
    position: relative;
    background: var(--white-color);
    transition: all 0.3s ease;
    z-index: 10;
}

.header_stick.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.5s ease;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#scrollBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s;
}

    #scrollBtn:hover {
        background-color: var(--secondary-color);
    }

.navbar-expand-lg {
    padding: 20px 0;
    background: var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .navbar-expand-lg h1 {
        font-weight: 600;
        color: var(--secondary-color);
        font-size: 36px;
    }

    .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
        align-items: center;
    }

    .navbar-expand-lg .navbar-nav {
        align-items: center;
        gap: 40px;
    }

.navbar-light .navbar-nav .nav-link.active {
    border: none;
    padding: 10px 20px !important;
    background: var(--primary-color);
    color: var(--white-color) !important;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-head-Btn {
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
}

    .custom-head-Btn:hover {
        background: #edc24b;
        color: var(--secondary-color);
        box-shadow: 0 0 10px #d4af37;
    }

.navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.navbar-nav .nav-item:hover .nav-link {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::before {
    width: 100%;
}
/* header css */
/* hero section */
.hero-section {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(../images/hero-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-form {
    width: 100%;
    padding: 50px;
    background: #222222ee;
}

    .main-form h1 {
        color: var(--white-color);
        font-size: 52px;
        font-weight: 600;
        margin-bottom: 20px;
    }

.booking {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

    .booking i {
        position: absolute;
        top: 15px;
        color: var(--white-color);
        right: 20px;
    }

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    padding-right: 20px;
}

.input-booking {
    width: 100%;
    padding: 10px;
    background: #222222a3;
    border: 2px solid var(--white-color);
    color: var(--white-color);
}

    .input-booking option {
        color: var(--black-color);
    }

    .input-booking::placeholder {
        color: var(--white-color);
    }

    .input-booking:focus {
        outline: 2px solid var(--white-color);
        border: 2px solid var(--white-color);
        box-shadow: 0 0 5px #d4af37;
    }

.hero-content {
    width: 100%;
    padding: 50px;
}

.typing-text {
    font-size: 30px;
    font-weight: bold;
    border-right: 2px solid black;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    min-height: 36px;
    background: #222222ce;
    padding: 10px;
    color: var(--white-color);
    margin-bottom: 20px;
    animation: blinkCursor 0.7s infinite;
}

@keyframes blinkCursor {
    0% {
        border-color: var(--white-color);
    }

    50% {
        border-color: var(--white-color);
    }

    100% {
        border-color: var(--white-color);
    }
}

.hero-content h3 {
    font-size: 48px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 20px;
}

    .hero-content h3 span {
        color: #d4af37; /* gold highlight */
    }

.hero-content p {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 20px;
}
/* hero section */
/* about section */
.about-section {
    width: 100%;
    height: 100%;
    padding: 100px 0;
}

.big-image {
    width: 100%;
    height: 100%;
    background: url(../images/aboutus-banner-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 5px solid var(--primary-color);
}

.up-image {
    width: 100%;
    border: 5px solid var(--primary-color);
    margin-bottom: 15px;
    margin-left: -10px;
}

.down-image {
    width: 100%;
    border: 5px solid var(--primary-color);
    margin-left: -10px;
}

.about-content {
    width: 100%;
    padding: 50px;
}

    .about-content h2 {
        font-size: 18px;
        font-weight: 600;
        padding: 10px;
        width: 60%;
        text-align: center;
        margin-bottom: 10px;
        background: var(--primary-color);
        color: var(--white-color);
    }

    .about-content h3 {
        font-size: 42px;
        font-weight: 600;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .about-content p {
        margin-bottom: 10px;
    }
/* about section */
/* services section */
.services-section {
    width: 100%;
    height: 100%;
    padding: 0 0 100px 0;
}

.services-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .services-heading h2 {
        font-size: 42px;
        font-weight: 600;
        color: var(--white-color);
        background: var(--primary-color);
        width: 40%;
        padding: 10px;
    }

.mainSer {
    width: 100%;
    border: 5px solid var(--primary-color);
    background: #222222ec;
    margin-bottom: 25px;
}

.imageServ {
    width: 100%;
    height: 100%;
    background: url(../images/services-image-one.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imageServ2 {
    width: 100%;
    height: 100%;
    background: url(../images/services-image-two.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imageServ3 {
    width: 100%;
    height: 100%;
    background: url(../images/services-image-three.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imageServ4 {
    width: 100%;
    height: 100%;
    background: url(../images/services-image-four.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.padDiv {
    width: 100%;
    padding: 20px;
}

    .padDiv h2 {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--white-color);
    }

    .padDiv p {
        margin-bottom: 10px;
        font-size: 14px;
        color: var(--white-color);
    }
/* services section */
/* fleets section */
.fleets-section {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    background: var(--secondary-color);
}

.chane-bg {
    background: var(--white-color);
}

.fleets-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .fleets-heading h2 {
        font-size: 42px;
        font-weight: 600;
        color: var(--primary-color);
        background: var(--white-color);
        width: 40%;
        padding: 10px;
    }

.main-fleet {
    width: 100%;
    height: 100%;
    background: var(--white-color);
    border: 5px solid var(--primary-color);
}

.car-features {
    width: 100%;
    padding: 30px;
}

    .car-features h3 {
        font-weight: 600;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--primary-color);
    }

    .car-features p {
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--primary-color);
    }

.features span > i {
    color: var(--primary-color);
}

.features span {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 10px;
}
/* fleets section */
/* contact us section */
.contact-us {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../images/contact-banner-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-Contact {
    width: 100%;
    height: auto;
    padding: 50px;
    margin-top: 50px;
    border: 5px solid var(--primary-color);
}

    .main-Contact h3 {
        font-weight: 600;
        margin-bottom: 40px;
        color: var(--white-color);
    }

.CfotmInp {
    width: 100%;
    height: 100%;
}

    .CfotmInp .ininput {
        width: 100%;
        padding: 10px 20px;
        border: 2px solid var(--primary-color);
        border-radius: 0;
        margin-bottom: 20px;
        background: transparent;
        color: var(--white-color);
    }

        .CfotmInp .ininput:focus {
            outline: none;
            border: 2px solid var(--primary-color);
            border-radius: 0;
        }

        .CfotmInp .ininput::placeholder {
            color: var(--white-color);
        }
/* contact us section */
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    background: var(--black-color);
}

.left-footer-content {
    width: 100%;
    height: 100%;
}

    .left-footer-content h2 {
        font-weight: 600;
        color: var(--primary-color);
        background: var(--white-color);
        padding: 10px;
        margin-bottom: 20px;
        padding: 10px;
    }

    .left-footer-content p {
        font-size: 16px;
        color: var(--white-color);
    }

.center-footer-content {
    width: 100%;
    height: 100%;
}

    .center-footer-content h2 {
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        color: var(--white-color);
        margin-bottom: 20px;
    }

.footer_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 6px;
    margin-top: 20px;
}

    .footer_ul .footer_li a {
        color: var(--white-color);
        transform: translateX(0px);
        transition: all 0.3s ease-in-out;
    }

        .footer_ul .footer_li a:hover {
            transform: translateX(10px);
        }

.right-footer-content h2 {
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: var(--white-color);
    margin-bottom: 20px;
}

.right-footer-content .getin_touch {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}

.getin_touch a {
    font-family: "Poppins", sans-serif;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

    .getin_touch a:hover {
        color: var(--primary-color);
    }

.getin_touch p {
    color: var(--white-color);
}

.last-footer-content h2 {
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: var(--white-color);
    margin-bottom: 20px;
}

.last-footer-content .social-icons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
    gap: 30px;
}

    .last-footer-content .social-icons .icon {
        background: var(--primary-color);
        padding: 10px 20px;
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .last-footer-content .social-icons .icon:hover {
            background: var(--secondary-color);
        }

.bootom-footer-section {
    width: 100%;
    background: var(--primary-color);
    padding: 20px;
    color: var(--white-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%;
    height: 400px;
    padding: 100px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../images/slide-01.png);
    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: 600;
        color: var(--white-color);
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: var(--white-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}
/* inner pages banner css */
/* inner services css */
.inner-services {
    width: 100%;
    height: 100%;
    padding: 40px 0;
}

.main-ner-image {
    width: 100%;
    padding: 20px;
}

    .main-ner-image img {
        border: 10px solid var(--primary-color);
    }

.main-ner-content {
    width: 100%;
    padding: 50px;
}

    .main-ner-content h1 {
        font-size: 42px;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .main-ner-content p {
        font-size: 18px;
        margin-bottom: 10px;
    }
/* inner services css */
/************************** All Main Content Css End **************************/

.sec-result {
    padding: 60px 0;
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 16px;
        background: #ebebeb;
    }

        .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: #ebebeb;
                        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: #917423 !important;
        color: #ffffff !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #202123;
            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: #ebebeb;
    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: #c99914;
                background-color: #000000;
                padding: 5px;
                border-radius: 5px;
                font-size: 13px;
            }

    .update-fleet-box .fleet-detail {
        padding: 0px 13px;
        border-right: 1px solid #b48c69;
        border-left: 1px solid #b48c69;
    }

        .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 #202123;
                margin: 3px 0;
                border-radius: 6px;
                font-size: 12px;
                background-color: #202123;
                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: 0%;
    }

        .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: #ebebeb;
    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: #ebebeb;
    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;
            padding: 8px 10px;
        }

        .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;
}

.ui-menu .ui-menu-item {
    width: 350px !important;
}

/************************** 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;
    }
    .navbar-expand-lg h1 {
        font-size: 26px;
    }

    .hero-content h3 {
        font-size: 38px;
    }

    .hero-content {
        padding: 20px;
    }

    .about-content {
        padding: 0px;
    }

        .about-content h3 {
            font-size: 30px;
        }

    .padDiv {
        padding: 10px 5px;
    }

        .padDiv h2 {
            font-size: 20px;
        }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden;
    }
    .navbar-expand-lg h1 {
        font-size: 20px;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 10px 5px !important;
        font-size: 15px;
    }

        .navbar-light .navbar-nav .nav-link.active {
            padding: 10px 5px !important;
        }
    .custom-head-Btn {
        padding: 10px 20px !important;
    }
    .hero-content h3 {
        font-size: 38px;
    }
    .hero-content {
        padding: 20px;
    }
    .about-content {
        padding: 0px;
    }
        .about-content h3 {
            font-size: 30px;
        }
    .padDiv {
        padding: 10px 5px;
    }
        .padDiv h2 {
            font-size: 20px;
        }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden;
    }

    .mini-header {
        padding: 10px 0px;
    }

    .navbar-expand-lg h1 {
        font-size: 26px;
    }

    .infocont {
        gap: 10px;
        font-size: 14px;
    }

        .infocont i {
            padding-right: 5px;
        }

    .hero-section {
        padding: 30px 0;
    }

    .main-form {
        padding: 20px;
    }

    .hero-content {
        padding: 10px;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-content {
        padding: 20px 0;
    }

        .about-content h3 {
            font-size: 30px;
        }

    .services-heading {
    }

        .services-heading h2 {
            font-size: 30px;
            width: fit-content;
        }

    .services-heading {
        margin-bottom: 40px;
    }

    .fleets-section {
        padding: 30px 0;
    }

    .fleets-heading h2 {
        font-size: 30px;
        width: fit-content;
    }

    .fleets-heading {
        margin-bottom: 40px;
    }

    .contact-us {
        padding: 30px 0;
    }

    .main-Contact {
        padding: 20px;
        margin-top: 20px;
    }

    .footer {
        padding: 30px 0;
    }

    .banner-section {
        height: 270px;
        padding: 20px;
    }

        .banner-section h2 {
            font-size: 40px;
        }

    .breadcrumb {
        margin-top: 10px;
    }

    .main-ner-content {
        padding: 10px;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .sec-result {
        padding: 30px 0;
    }

        .sec-result .upper-list {
            display: none;
        }

        .sec-result .number-box {
            padding: 10px 0px;
        }

        .sec-result .for-line::before {
            left: 76%;
        }

    .update-fleet-box .fleet-detail {
        padding: 0px 0px;
        border-right: unset;
        border-left: unset;
    }

    .welcome {
        height: 400px !important;
        background-size: cover !important;
    }

    .WelComeText {
        margin-top: 234px !important;
        margin-left: 60px !important;
        line-height: 28px !important;
    }

    .WelComeText1 {
        font-size: 25px !important;
    }

    .WelComeText2 {
        font-size: 20px !important;
    }

    .setfield {
        width: auto !important;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden;
    }

    .mini-header {
        padding: 10px 0px;
    }

    .navbar-expand-lg h1 {
        font-size: 26px;
    }

    .infocont {
        gap: 10px;
        font-size: 14px;
    }

        .infocont i {
            padding-right: 5px;
        }

    .hero-section {
        padding: 30px 0;
    }

    .main-form {
        padding: 20px;
    }

    .hero-content {
        padding: 10px;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-content {
        padding: 20px 0;
    }

        .about-content h3 {
            font-size: 30px;
        }

    .services-heading {
    }

        .services-heading h2 {
            font-size: 30px;
            width: fit-content;
        }

    .services-heading {
        margin-bottom: 40px;
    }

    .fleets-section {
        padding: 30px 0;
    }

    .fleets-heading h2 {
        font-size: 30px;
        width: fit-content;
    }

    .fleets-heading {
        margin-bottom: 40px;
    }

    .contact-us {
        padding: 30px 0;
    }

    .main-Contact {
        padding: 20px;
        margin-top: 20px;
    }

    .footer {
        padding: 30px 0;
    }

    .banner-section {
        height: 270px;
        padding: 20px;
    }

        .banner-section h2 {
            font-size: 40px;
        }

    .breadcrumb {
        margin-top: 10px;
    }

    .main-ner-content {
        padding: 10px;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .sec-result {
        padding: 30px 0;
    }

        .sec-result .upper-list {
            display: none;
        }

        .sec-result .number-box {
            padding: 10px 0px;
        }

        .sec-result .for-line::before {
            left: 76%;
        }

    .update-fleet-box .fleet-detail {
        padding: 0px 0px;
        border-right: unset;
        border-left: unset;
    }

    .welcome {
        height: 400px !important;
        background-size: cover !important;
    }

    .WelComeText {
        margin-top: 234px !important;
        margin-left: 60px !important;
        line-height: 28px !important;
    }

    .WelComeText1 {
        font-size: 25px !important;
    }

    .WelComeText2 {
        font-size: 20px !important;
    }

    .setfield {
        width: auto !important;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x:hidden;
    }
    .mini-header {
        padding: 10px 0px;
    }
    .navbar-expand-lg h1 {
        font-size: 26px;
    }
    .infocont {
        gap: 10px;
        font-size: 14px;
    }
    .infocont i {
        padding-right:5px;
    }
    .hero-section {
        padding: 30px 0;
    }
    .main-form {
        padding: 20px;
    }
    .hero-content {
        padding: 10px;
    }
    .about-section {
        padding: 40px 0;
    }
    .about-content {
        padding: 20px 0;
    }
        .about-content h3 {
            font-size: 30px;
        }
    .services-heading {

    }
    .services-heading h2 {
        font-size: 30px;
        width: fit-content;
    }
    .services-heading {
        margin-bottom: 40px;
    }
    .fleets-section {
        padding: 30px 0;
    }
    .fleets-heading h2 {
        font-size: 30px;
        width: fit-content;
    }
    .fleets-heading {
        margin-bottom: 40px;
    }
    .contact-us {
        padding: 30px 0;
    }
    .main-Contact {
        padding: 20px;
        margin-top: 20px;
    }
    .footer {
        padding: 30px 0;
    }
    .banner-section {
        height: 270px;
        padding: 20px;
    }
        .banner-section h2 {
            font-size: 40px;
        }
    .breadcrumb {
        margin-top: 10px;
    }
    .main-ner-content {
        padding: 10px;
    }
    .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }
    .sec-result {
        padding: 30px 0;
    }
    .sec-result .upper-list {
        display: none;
    }
    .sec-result .number-box {
        padding: 10px 0px;
    }
    .sec-result .for-line::before {
        left: 76%;
    }
    .update-fleet-box .fleet-detail {
        padding: 0px 0px;
        border-right: unset;
        border-left: unset;
    }
    .welcome {
        height: 400px !important;
        background-size: cover !important;
    }

    .WelComeText {
        margin-top: 234px !important;
        margin-left: 60px !important;
        line-height: 28px !important;
    }

    .WelComeText1 {
        font-size: 25px !important;
    }

    .WelComeText2 {
        font-size: 20px !important;
    }

    .setfield {
        width: auto !important;
    }

}
