@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;
    font-family: "Poppins", sans-serif;
}

:root {
    --primary-color: #71730A;
    --primary-color2: #b1b104;
    --secondary-color: #BCBCBC;
    --white-color: #fff;
    --black-color: #181818;
}

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 */
.header {
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
    z-index: 10;
}

    .header .header_stick {
        width: 100%;
        position: relative;
        top: 20px;
        background: var(--white-color);
        box-shadow: 2px 2px 35px -12px rgba(0, 0, 0, 0.5);
        border-radius: 15px;
        transition: all 0.3s ease;
        z-index: 10;
    }

        .header .header_stick.sticky {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: var(--white-color);
            border-radius: 0px;
            box-shadow: 2px 2px 35px -12px rgba(0, 0, 0, 0.5);
            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(--primary-color2);
    }

.header .navbar-expand-lg {
    padding: 10px 20px;
    background: var(--white-color);
    box-shadow: 2px 2px 35px -12px rgba(0, 0, 0, 0.5);
}

    .header .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
        align-items: center;
    }

    .header .navbar-expand-lg .navbar-nav {
        align-items: center;
        gap: 40px;
    }

.header .navbar-light .navbar-nav .nav-link.active {
    border: none;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .header .navbar-light .navbar-nav .nav-link.active:hover {
        color: var(--black-color);
    }

.header .header-Btn {
    border: none;
    padding: 10px 40px;
    background: var(--primary-color);
    border-radius: 10px;
    color: var(--white-color) !important;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
}

    .header .header-Btn:hover {
        background: var(--primary-color2);
        box-shadow: 0 0 5px 0 var(--primary-color);
    }

.header .navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: var(--black-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}



.header .navbar-nav .nav-item .inactive::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.header .navbar-nav .nav-item .inactive:hover::before {
    width: 100%;
}

.header .navbar-nav .nav-item .inactive::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.header .navbar-nav .nav-item .inactive:hover::after {
    width: 100%;
}

.header .navbar-brand .logo {
    width: 100px;
}
/* header css */
/* hero section */
.hero-section {
    width: 100%;
    padding: 30px 0;
    margin-top: 10px;
}

.main-hero {
    width: 100%;
    height: 100%;
    padding: 120px 100px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../images/hero-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 35px;
}

    .main-hero .heading-section {
        width: 100%;
        text-align: center;
        padding: 20px;
    }

        .main-hero .heading-section h2 {
            font-size: 18px;
            font-weight: 600;
            color: var(--white-color);
            width: fit-content;
            padding: 10px 20px;
            border-radius: 10px;
            background: var(--primary-color);
            margin: 0 auto;
            margin-bottom: 10px;
        }

        .main-hero .heading-section h1 {
            font-size: 57px;
            font-weight: 700;
            color: var(--white-color);
            width: 50vw;
            margin: 10px auto;
        }

        .main-hero .heading-section p {
            color: var(--white-color);
            font-size: 20px;
        }

.rent-details-box {
    background-color: var(--white-color);
    border: 5px solid var(--primary-color);
    border-radius: 30px;
    padding: 25px 30px;
    margin: 0;
    margin-top: 30px;
}

.rent-details-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.rent-details-item {
    width: calc(33% - 30px);
    display: flex;
    border-bottom: 1px solid var(--primary-color2);
    padding-bottom: 15px;
}

    .rent-details-item .icon-box {
        margin-right: 10px;
        background: var(--primary-color);
        padding: 7px 15px;
        border-radius: 10px;
        color: var(--white-color);
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .rent-details-item .icon-box i {
            font-size: 20px;
        }

.rent-details-content {
    width: calc(100% - 34px);
}

    .rent-details-content h3 {
        font-size: 18px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 5px;
    }

    .rent-details-content input, .rent-details-content select {
        font-size: 16px;
        width: 100%;
        display: block;
        border: none;
        border-radius: 0;
        background-color: transparent;
        color: var(--black-color);
        box-shadow: none;
        outline: none;
        padding: 0 20px 0 0;
        background-position: right center;
        cursor: pointer;
        font-family: "Poppins", sans-serif;
    }

.gradient-text {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(270deg, #71730A, #b1b104, #BCBCBC, #fff);
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.custom-head-Btn2 {
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .custom-head-Btn2:hover {
        background: var(--primary-color2);
        color: var(--white-color);
        box-shadow: 0 0px 5px 0 var(--primary-color);
    }
/* hero section */
/* about us section */
.about-us-section {
    width: 100%;
    height: 100%;
    padding: 40px 0;
}

.about-txt-content {
    width: 100%;
    padding: 30px;
}

.heading-about {
    width: 100%;
}

    .heading-about h1 {
        background: var(--primary-color);
        padding: 10px 40px;
        font-weight: 600;
        color: var(--white-color);
        width: fit-content;
        margin: 0 auto;
        border-radius: 10px;
        font-size: 18px;
        margin-bottom: 40px;
    }

.about-txt-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black-color);
}

.about-txt-content p {
    margin-bottom: 10px;
}

.about-image-content .CarOne {
    border: 5px solid var(--primary-color);
    border-radius: 25px;
}
/* about us section */
/* services section */
.services-section {
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(180deg, #71730A 0%, #b1b104 100%);
}

.main-service {
    width: 100%;
    padding: 0px;
    border-radius: 35px;
}

.services-heading {
    width: 100%;
    text-align: center;
}

    .services-heading h3 {
        font-size: 18px;
        font-weight: 600;
        background: var(--white-color);
        width: fit-content;
        padding: 10px 40px;
        border-radius: 10px;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .services-heading h2 {
        font-size: 54px;
        font-weight: 700;
        color: var(--white-color);
    }

.main-sr-cards {
    width: 100%;
    margin-top: 100px;
}

.sr-card {
    width: 100%;
    padding: 50px;
    background: var(--white-color);
    position: relative;
    border-radius: 30px;
    height: 300px;
}

    .sr-card .sr-top-icon {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--white-color);
        border: 5px solid var(--primary-color);
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
    }

        .sr-card .sr-top-icon i {
            font-size: 40px;
            color: var(--primary-color);
        }

.sr-content {
    text-align: center;
}

    .sr-content h3 {
        font-size: 26px;
        font-weight: 700;
        margin: 10px 0;
    }

    .sr-content .p-bottom {
        margin-bottom: 10px !important;
    }

.custom-head-Btn3 {
    border: none;
    padding: 10px 40px !important;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease-in-out !important;
    margin-top: 50px;
}

    .custom-head-Btn3:hover {
        background: var(--black-color);
        color: var(--white-color);
        box-shadow: 0 0px 5px 0 var(--secondary-color);
    }
/* services section */
/* our fleets section */
.our-fleet-section {
    width: 100%;
    height: 100%;
    padding: 40px 0px;
}

    .our-fleet-section .sub {
        font-size: 18px;
        font-weight: 600;
        background: var(--primary-color);
        border-radius: 10px;
        width: fit-content;
        margin: 0 auto;
        color: var(--white-color);
        text-align: center;
        padding: 10px 40px;
        margin-bottom: 10px;
    }

    .our-fleet-section h2 {
        font-size: 54px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 40px;
        text-align: center;
    }

.fleet-card {
    width: 100%;
    padding: 30px;
    background: var(--white-color);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    margin-bottom: 15px;
}

    .fleet-card .fleet-1 {
        margin-bottom: 20px;
        width: 100%;
        height: 220px;
        object-fit: contain;
        border-radius: 25px;
    }

    .fleet-card h3 {
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--secondary-color);
    }

    .fleet-card .fleet-para {
        color: var(--black-color);
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--secondary-color);
    }

.fleet-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .fleet-features i {
        padding-right: 5px;
        color: var(--primary-color);
    }
/* our fleets section */
/* contact section */
.contact-section {
    width: 100%;
    height: 100%;
    padding: 40px 0px;
}

.contact-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.contact-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 10px;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 40px;
    margin-bottom: 10px;
}

.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: 35px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
}

.contact-info {
    width: 100%;
    height: 100%;
    padding: 40px;
    border-top-left-radius: 35px;
    border-bottom-left-radius: 35px;
    background: linear-gradient(180deg, #71730A 0%, #b1b104 100%);
}

    .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 {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--secondary-color);
}

    .in-con .icon-box {
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--white-color);
        color: var(--primary-color);
        border-radius: 5px;
    }

    .in-con a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
        margin-top: 5px;
    }

        .in-con a:hover {
            color: var(--black-color);
        }

.contact-form {
    width: 100%;
    height: 100%;
    padding: 50px;
}

.con_inp {
    width: 100%;
    height: 100%;
}

.contact-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--primary-color);
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    transition: all 0.5s ease-in-out;
}

    .contact-input::placeholder {
        color: var(--black-color);
    }

    .contact-input:focus {
        outline: none;
        border: 2px solid var(--primary-color);
    }

    .contact-input:not(:placeholder-shown) {
        border-bottom: 2px solid var(--primary-color2);
        border-top: none;
        border-left: none;
        border-right: none;
        box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
    }
/* contact section */
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--primary-color);
}

    .footer .footer-logo {
        height: 250px;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
    }

.center-footer-content {
    width: 100%;
    height: 100%;
    margin-left: 20px;
}

    .center-footer-content h2 {
        font-weight: 600;
        color: #fff;
        font-size: 24px;
    }

.footer_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 6px;
    margin-top: 10px;
}

    .footer_ul .footer_li a {
        color: var(--white-color);
        transform: translateX(0px);
        transition: all 0.3s ease-in-out;
        font-size: 17px;
    }

        .footer_ul .footer_li a:hover {
            transform: translateX(10px);
        }

        .footer_ul .footer_li a i {
            padding-right: 5px;
        }

.right-footer-content h2 {
    font-weight: 600;
    color: var(--white-color);
    font-size: 24px;
}

.right-footer-content .getin_touch {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top: 10px;
}

.getin_touch a {
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
    font-size: 17px;
}

    .getin_touch a:hover {
        color: var(--black-color);
    }

    .getin_touch a i {
        padding-right: 5px;
    }

.getin_touch p {
    color: var(--white-color);
}

    .getin_touch p i {
        padding-right: 5px;
    }

.last-footer-content h2 {
    font-weight: 600;
    color: var(--white-color);
    font-size: 24px;
}

.social-icons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

    .social-icons .icon {
        background: var(--white-color);
        padding: 10px 15px;
        color: var(--primary-color);
        transition: all 0.3s ease-in-out;
        border-radius: 5px;
    }

        .social-icons .icon:hover {
            background: var(--black-color);
            color: var(--white-color);
        }

.bootom-footer-section {
    width: 100%;
    background: var(--secondary-color2);
    padding: 20px;
    color: var(--black-color);
    text-align: center;
}

    .bootom-footer-section .bottom-footer-content a {
        color: var(--black-color);
        transition: all 0.3s ease-in-out;
    }

        .bootom-footer-section .bottom-footer-content a:hover {
            color: var(--primary-color);
        }

.bottom-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .bottom-footer-content .terms-list {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

        .bottom-footer-content .terms-list li {
            padding: 0 7px;
        }

            .bottom-footer-content .terms-list li a {
                text-decoration: underline;
            }
/* footer section css */
/* inner pages banner css */
.banner-section {
    width: 100%;
    height: 100%;
    padding: 30px;
}

.banner-image-bg {
    margin-top: 40px;
    padding: 50px;
    border-radius: 25px;
    background: var(--primary-color);
    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(--white-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);
        border-radius: 25px;
    }

.main-ner-content {
    width: 100%;
    padding: 50px;
}

    .main-ner-content h1 {
        font-size: 42px;
        font-weight: 600;
        color: var(--black-color);
        margin-bottom: 10px;
    }

    .main-ner-content p {
        font-size: 18px;
        margin-bottom: 10px !important;
    }
/* inner services css */
.sec-result {
    padding: 60px 0;
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 16px;
        background: #f5f5b1;
    }

        .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: #f5f5b1;
                        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: #6d6f0a !important;
        color: #ffffff !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #fbfd01;
            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: #f5f5b1;
    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: #71730a;
                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 #71730a;
                margin: 3px 0;
                border-radius: 6px;
                font-size: 12px;
                background-color: #71730a;
                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: #f5f5b1;
    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: #f5f5b1;
    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;
        }

.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;
}

.sec-privacy {
    padding: 60px 0 60px;
}

    .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: #71730a;
            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-bottom: 0px;
            color: #71730a;
            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;
            margin: 0;
            font-size: 15px;
        }

        .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;
        }
/************************** All Main Css End **************************/
.app-section {
    padding: 60px 0;
}

    .app-section .app-box {
        background-image: url('../images/app-banner.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        padding: 50px 50px;
        border-radius: 50px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

        .app-section .app-box .text-box {
        }

            .app-section .app-box .text-box h3 {
                font-size: 18px;
                color: #ffffff;
                padding: 8px 14px;
                font-weight: 600;
                background-color: #71730a;
                width: fit-content;
                border-radius: 10px;
            }

            .app-section .app-box .text-box h2 {
                font-size: 36px;
                color: #000;
                line-height: 43px;
                padding: 10px 0;
                font-weight: 600;
            }

            .app-section .app-box .text-box .para {
                font-size: 18px;
                font-weight: 300;
            }

            .app-section .app-box .text-box ul {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                margin-top: 20px;
            }

                .app-section .app-box .text-box ul li {
                    padding: 0 10px;
                }

                    .app-section .app-box .text-box ul li a {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border: 3px solid #71730a;
                        padding: 10px 30px;
                        border-radius: 50px;
                        font-size: 24px;
                        color: #fff;
                        background: #71730a;
                    }

                        .app-section .app-box .text-box ul li a p {
                            padding-left: 10px;
                            font-weight: 300;
                            color: #fff;
                            line-height: 21px;
                            font-size: 15px;
                        }

                            .app-section .app-box .text-box ul li a p span {
                                display: block;
                                font-weight: 600;
                                font-size: 18px;
                            }

        .app-section .app-box .img-box {
            text-align: center;
        }

            .app-section .app-box .img-box img {
                height: 500px;
                object-fit: contain;
            }


/************************** 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;
    }

    .main-hero {
        padding: 50px 30px;
    }

        .main-hero .heading-section h1 {
            width: 70vw;
        }

    .sr-card {
        height: 340px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden;
    }

    .header .navbar-brand .logo {
        width: 70px;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .main-hero {
        padding: 30px 0px;
        border-radius: 10px;
    }

        .main-hero .heading-section h1 {
            font-size: 40px;
            width: 100%;
        }

    .rent-details-box {
        border-radius: 10px;
        padding: 15px 15px;
        margin: 20px 10px 0;
    }

    .rent-details-item {
        width: 48%;
    }

    .heading-about h1 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .about-txt-content {
        padding: 10px 0;
    }

    .services-heading h2 {
        font-size: 36px;
    }

    .sr-card {
        height: auto;
        margin-bottom: 17%;
    }

    .custom-head-Btn3 {
        margin-top: 0px;
    }

    .our-fleet-section h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .contact-info {
        padding: 20px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .contact-section h2 {
        font-size: 36px;
    }

    .contact-form {
        padding: 20px;
    }

    .footer .footer-logo {
        height: 160px;
        padding: 10px;
        margin-bottom: 20px;
    }

    .center-footer-content {
        margin-left: 0px;
    }

    .banner-section {
        padding: 0px;
    }

    .banner-image-bg {
        padding: 30px;
    }

    .banner-section h2 {
        font-size: 36px;
    }

    .breadcrumb {
        margin-top: 5px;
        margin-bottom: 0;
    }

    .main-ner-image {
        padding: 0;
        margin: 5px 0;
    }

        .main-ner-image img {
            border: 5px solid var(--primary-color);
            border-radius: 15px;
        }

    .main-ner-content {
        padding: 10px 0;
    }

        .main-ner-content h1 {
            font-size: 30px;
        }

    .sec-result {
        padding: 30px 0;
    }

        .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 {
        }

        .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 {
    }

    .update-fleet-box .rate-box {
        margin-top: 0%;
    }

    .payfield {
        width: 100% !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden;
    }

    .header .navbar-brand .logo {
        width: 70px;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .main-hero {
        padding: 30px 0px;
        border-radius: 10px;
    }

        .main-hero .heading-section h1 {
            font-size: 40px;
            width: 100%;
        }

    .rent-details-box {
        border-radius: 10px;
        padding: 15px 15px;
        margin: 20px 10px 0;
    }

    .rent-details-item {
        width: 48%;
    }

    .heading-about h1 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .about-txt-content {
        padding: 10px 0;
    }

    .services-heading h2 {
        font-size: 36px;
    }

    .sr-card {
        height: auto;
        margin-bottom: 17%;
    }

    .custom-head-Btn3 {
        margin-top: 0px;
    }

    .our-fleet-section h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .contact-info {
        padding: 20px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .contact-section h2 {
        font-size: 36px;
    }

    .contact-form {
        padding: 20px;
    }

    .footer .footer-logo {
        height: 160px;
        padding: 10px;
        margin-bottom: 20px;
    }

    .center-footer-content {
        margin-left: 0px;
    }

    .banner-section {
        padding: 0px;
    }

    .banner-image-bg {
        padding: 30px;
    }

    .banner-section h2 {
        font-size: 36px;
    }

    .breadcrumb {
        margin-top: 5px;
        margin-bottom: 0;
    }

    .main-ner-image {
        padding: 0;
        margin: 5px 0;
    }

        .main-ner-image img {
            border: 5px solid var(--primary-color);
            border-radius: 15px;
        }

    .main-ner-content {
        padding: 10px 0;
    }

        .main-ner-content h1 {
            font-size: 30px;
        }

    .sec-result {
        padding: 30px 0;
    }

        .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 {
        }

        .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 {
    }

    .update-fleet-box .rate-box {
        margin-top: 0%;
    }

    .payfield {
        width: 100% !important;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden;
    }

    .header .navbar-brand .logo {
        width: 70px;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .main-hero {
        padding: 30px 0px;
        border-radius: 10px;
    }

        .main-hero .heading-section h1 {
            font-size: 36px;
            width: 100%;
        }

    .rent-details-box {
        border-radius: 10px;
        padding: 15px 15px;
    }

    .rent-details-item {
        width: 100%;
    }

    .heading-about h1 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .about-txt-content {
        padding: 10px 0;
    }

    .services-heading h2 {
        font-size: 36px;
    }

    .sr-card {
        height: auto;
        margin-bottom: 17%;
    }

    .custom-head-Btn3 {
        margin-top: 0px;
    }

    .our-fleet-section h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .contact-info {
        padding: 20px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .contact-section h2 {
        font-size: 36px;
    }

    .contact-form {
        padding: 20px;
    }

    .footer .footer-logo {
        height: 160px;
        padding: 10px;
        margin-bottom: 20px;
    }

    .center-footer-content {
        margin-left: 0px;
    }

    .banner-section {
        padding: 0px;
    }

    .banner-image-bg {
        padding: 30px;
    }

    .banner-section h2 {
        font-size: 36px;
    }

    .breadcrumb {
        margin-top: 5px;
        margin-bottom: 0;
    }

    .main-ner-image {
        padding: 0;
        margin: 5px 0;
    }

        .main-ner-image img {
            border: 5px solid var(--primary-color);
            border-radius: 15px;
        }

    .main-ner-content {
        padding: 10px 0;
    }

        .main-ner-content h1 {
            font-size: 30px;
        }

    .sec-result {
        padding: 30px 0;
    }

        .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;
    }

    .bottom-footer-content {
        flex-direction: column;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden;
    }

    .header .navbar-brand .logo {
        width: 70px;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .main-hero {
        padding: 30px 0px;
        border-radius: 10px;
    }

        .main-hero .heading-section h1 {
            font-size: 36px;
            width: 100%;
        }

    .rent-details-box {
        border-radius: 10px;
        padding: 15px 15px;
        margin: 10px;
    }

    .rent-details-item {
        width: 100%;
    }

    .heading-about h1 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .about-txt-content {
        padding: 10px 0;
    }

    .services-heading h2 {
        font-size: 36px;
    }

    .sr-card {
        height: auto;
        margin-bottom: 17%;
    }

    .custom-head-Btn3 {
        margin-top: 0px;
    }

    .our-fleet-section h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .contact-info {
        padding: 20px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .contact-section h2 {
        font-size: 36px;
    }

    .contact-form {
        padding: 20px;
    }

    .footer .footer-logo {
        height: 160px;
        padding: 10px;
        margin-bottom: 20px;
    }

    .center-footer-content {
        margin-left: 0px;
    }

    .banner-section {
        padding: 0px;
    }

    .banner-image-bg {
        padding: 30px;
    }

    .banner-section h2 {
        font-size: 36px;
    }

    .breadcrumb {
        margin-top: 5px;
        margin-bottom: 0;
    }

    .main-ner-image {
        padding: 0;
        margin: 5px 0;
    }

        .main-ner-image img {
            border: 5px solid var(--primary-color);
            border-radius: 15px;
        }

    .main-ner-content {
        padding: 10px 0;
    }

        .main-ner-content h1 {
            font-size: 30px;
        }

    .sec-result {
        padding: 30px 0;
    }

        .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;
    }

    .bottom-footer-content {
        flex-direction: column;
    }

    .app-section {
        padding: 30px 0;
    }

        .app-section .app-box {
            padding: 20px 10px;
            border-radius: 20px;
        }

            .app-section .app-box .text-box h2 {
                font-size: 36px;
                line-height: 36px;
            }

            .app-section .app-box .text-box ul {
                flex-direction: column;
            }

                .app-section .app-box .text-box ul li {
                    padding: 5px;
                }

    .frmleft {
        width: 100% !important;
    }

    .frmright {
        width: 100% !important;
    }
}
