@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('../fonts/bomiro/bomiro.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #E50000;
    --primary-greencolor: #4ABC00;
    --primary-orangecolor: #FFA500;
    --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: 'Bomiro', 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;
}

/************************** Header css **************************/
/* mini header css */
.mini-header {
    width: 100%;
    padding: 5px;
    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;
        font-weight: 600;
    }

        .infocont a:hover {
            color: #000000;
        }

        .infocont a i {
            padding-right: 5px;
        }

.social_icons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    margin-top: 5px;
}

    .social_icons i {
        color: var(--white-color);
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

        .social_icons i:hover {
            color: #000000;
        }
/* mini header css */
/* header css */
.header {
    width: 100%;
    transition: all 0.3s ease;
    z-index: 10;
}

    .header .header_stick {
        width: 100%;
        position: relative;
        background: var(--white-color);
        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);
            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(--primary-orangecolor);
    }

.header .navbar-expand-lg {
    padding: 5px 0;
    background-color: var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .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-greencolor);
    color: var(--white-color);
    font-family: "bomiro", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 7px;
}

    .header .navbar-light .navbar-nav .nav-link.active:hover {
        color: var(--black-color);
    }

.header .header-Btn {
    border: none;
    padding: 10px 40px;
    background: var(--primary-orangecolor);
    background-size: 300% 300%;
    color: var(--white-color) !important;
    font-family: "bomiro", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
    border-radius: 7px;
}

    .header .header-Btn:hover {
        background: var(--primary-color);
        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:hover .inactive {
    color: var(--black-color) !important;
}

.header .navbar-nav .nav-item .inactive::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-orangecolor);
    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-orangecolor);
    transition: all 0.3s ease;
}

.header .navbar-nav .nav-item .inactive:hover::after {
    width: 100%;
}

.header .navbar-brand .logo {
    width: 200px;
}
/* header css */
/************************** Header css end **************************/
/************************** Hero Section Css Start **************************/
/* hero section */
.hero {
    position: relative;
    width: 100%;
    height: 100svh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('../images/hero-banner.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero h1 {
        color: var(--white-color);
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        border-radius: 10px;
        background: var(--primary-color);
        width: fit-content;
        padding: 10px 40px;
        margin-bottom: 10px;
    }

    .hero h2 {
        color: var(--white-color);
        font-size: 62px;
        font-weight: 600;
        margin-bottom: 20px;
    }

        .hero h2 span {
            color: var(--primary-greencolor);
            font-family: "bomiro", sans-serif;
        }

    .hero p {
        position: relative;
        z-index: 3;
        color: var(--white-color);
        margin-bottom: 20px;
        padding-right: 60px;
    }

    .hero .comout {
        position: relative;
        z-index: 3;
    }

.main-heroo {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-head {
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bokking-eginer-main {
    width: 100%;
    background: #00000061;
    padding: 50px;
    border-radius: 10px;
    border: 5px solid var(--primary-orangecolor);
}

.booking {
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .booking .custom-input {
        width: 100%;
        padding: 10px 40px 10px 10px;
        background: transparent;
        border: 2px solid var(--white-color);
        color: var(--white-color);
        margin-bottom: 20px;
        font-family: "Poppins", sans-serif;
    }

        .booking .custom-input::placeholder {
            color: var(--white-color);
        }

        .booking .custom-input:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .booking .custom-input option {
            color: var(--black-color);
        }

    .booking i {
        color: var(--primary-orangecolor);
        position: absolute;
        top: 15px;
        right: 20px;
    }

.hero-Btn {
    border: none;
    padding: 10px 40px;
    background: var(--primary-orangecolor);
    background-size: 300% 300%;
    color: var(--white-color) !important;
    font-family: "bomiro", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
    border-radius: 7px;
}

    .hero-Btn:hover {
        background: var(--primary-color);
        box-shadow: 0 0 5px 0 var(--primary-color);
    }
/* hero section */
/************************** Hero Section Css End **************************/
/************************** About Section Css Start **************************/
.about-us-section {
    width: 100%;
    padding: 70px 0;
}

.about-heading {
    width: 100%;
}

    .about-heading h2 {
        font-size: 52px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 70px;
    }

        .about-heading h2 span {
            color: var(--primary-greencolor);
            font-family: "bomiro", sans-serif;
        }

.about-image {
    width: 100%;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    border: 5px solid var(--primary-greencolor);
}

.about-content {
    width: 100%;
    padding: 0 20px;
}

    .about-content h2 {
        font-size: 40px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 10px;
    }

        .about-content h2 span {
            color: var(--primary-greencolor);
            font-family: "bomiro", sans-serif;
        }

    .about-content p {
        margin-bottom: 10px;
    }

.About-Btn {
    border: none;
    padding: 10px 40px;
    background: var(--primary-orangecolor);
    background-size: 300% 300%;
    color: var(--white-color) !important;
    font-family: "bomiro", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
    border-radius: 7px;
}

    .About-Btn:hover {
        background: var(--primary-color);
        box-shadow: 0 0 5px 0 var(--primary-color);
    }
/************************** About Section Css End **************************/
/************************** Services Section Css Start **************************/
.services-section {
    width: 100%;
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../images/services-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.services-heading {
    width: 100%;
}

    .services-heading h2 {
        font-size: 52px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 70px;
    }

        .services-heading h2 span {
            color: var(--primary-greencolor);
            font-family: "bomiro", sans-serif;
        }

.services-main {
    width: 100%;
    padding: 50px 40px;
    background: var(--white-color);
    border: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    border-radius: 25px;
}

    .services-main h3 {
        font-size: 32px;
        font-weight: 700;
        color: var(--black-color);
    }

    .services-main p {
        text-align: center;
    }

.services-Btn {
    border: none;
    padding: 10px 40px;
    background: var(--primary-orangecolor);
    background-size: 300% 300%;
    color: var(--white-color) !important;
    font-family: "bomiro", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
    border-radius: 7px;
}

    .services-Btn:hover {
        background: var(--primary-color);
        box-shadow: 0 0 5px 0 var(--primary-color);
    }
/************************** Services Section Css End **************************/
/************************** Fleets Section Css Start **************************/
/* fleet section css */
.our-fleet-section {
    width: 100%;
    padding: 30px 0;
}

.heading-services {
    width: 100%;
    margin-bottom: 20px;
}

    .heading-services h3 {
        font-size: 30px;
        font-weight: 700;
        line-height: 1.2em;
        color: var(--black-color);
        margin-bottom: 10px;
    }

        .heading-services h3 span {
            color: var(--primary-greencolor);
            font-family: "bomiro", sans-serif;
        }

.fleet-card {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: var(--white-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

    .fleet-card .fleet-image {
        width: 100%;
        height: 250px;
        border-radius: 10px 10px 0 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url('../images/fleet-1.jpg') no-repeat center center/cover;
    }

    .fleet-card .fleet-image-2 {
        width: 100%;
        height: 250px;
        border-radius: 10px 10px 0 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url('../images/fleet-2.jpg') no-repeat center center/cover;
    }

    .fleet-card .fleet-image-3 {
        width: 100%;
        height: 250px;
        border-radius: 10px 10px 0 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url('../images/fleet-3.jpg') no-repeat center center/cover;
    }

.fleet-contentD {
    width: 100%;
    padding: 20px;
}

.fleet-heading {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .fleet-heading .main-car-name h3 {
        font-size: 32px;
        font-weight: 700;
        color: var(--black-color);
    }

    .fleet-heading .car-rating i {
        color: goldenrod;
    }

.fleet-contentD p {
    color: var(--black-color);
    margin-bottom: 10px;
}

.fleet-main-bttuns {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .fleet-main-bttuns .fleet_btn {
        border: none;
        padding: 10px 20px;
        background: var(--primary-orangecolor);
        color: var(--white-color);
        font-family: "bomiro", sans-serif;
        font-weight: 600;
        transition: all 0.3s ease;
        border-radius: 7px;
        width: 75%;
        text-align: center;
    }

        .fleet-main-bttuns .fleet_btn:hover {
            background: var(--primary-color);
            box-shadow: 0 0 5px 0 var(--primary-color);
        }

    .fleet-main-bttuns .fleet_btn2 {
        border: none;
        padding: 10px 20px;
        background: var(--primary-color);
        color: var(--white-color);
        font-family: "bomiro", sans-serif;
        font-weight: 600;
        transition: all 0.3s ease;
        border-radius: 7px;
        width: 20%;
        text-align: center;
    }

        .fleet-main-bttuns .fleet_btn2:hover {
            background: var(--primary-orangecolor);
            box-shadow: 0 0 5px 0 var(--primary-orangecolor);
        }
/* fleet section css */
/************************** Fleets Section Css End **************************/
/************************** Contact Us Section Css Start **************************/
/* contact section css */
.contact-section {
    width: 100%;
    padding: 70px 0;
}

.contact-heading {
    width: 100%;
    margin-bottom: 70px;
}

    .contact-heading h3 {
        font-size: 52px;
        font-weight: 700;
        line-height: 1.2em;
        color: var(--black-color);
        margin-bottom: 10px;
    }

        .contact-heading h3 span {
            color: var(--primary-greencolor);
            font-family: "bomiro", sans-serif;
        }

.main-contact {
    width: 100%;
    background: var(--white-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    border: 5px solid var(--primary-color);
    padding: 50px;
}

.contact-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.contact-social-icons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .contact-social-icons a {
        color: var(--white-color);
        font-size: 18px;
        font-weight: 600;
        padding: 10px 20px;
        background: var(--primary-orangecolor);
        border-radius: 7px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
    }

        .contact-social-icons a:hover {
            background: var(--black-color);
            box-shadow: 0 2px 5px var(--black-color);
        }

.contact-form {
    width: 100%;
    padding: 20px;
}

    .contact-form h3 {
        font-size: 32px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 20px;
    }

.main-form-input {
    width: 100%;
    background: #f5f5f5;
    margin-bottom: 20px;
    padding: 15px 15px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

    .main-form-input i {
        color: var(--primary-color);
        margin-top: 5px;
        position: absolute;
    }

    .main-form-input .custom-input {
        width: 100%;
        background: transparent;
        color: var(--black-color);
        border: none;
        font-family: "Poppins", sans-serif;
        margin-left: 28px;
    }

        .main-form-input .custom-input:focus {
            border: none;
            outline: none;
        }

        .main-form-input .custom-input::placeholder {
            font-weight: 500;
        }

.main-form-input-2 {
    width: 100%;
    background: #f5f5f5;
    margin-bottom: 20px;
    padding: 15px 15px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

    .main-form-input-2 i {
        color: var(--primary-color);
        margin-top: 5px;
        position: absolute;
    }

    .main-form-input-2 .custom-input-2 {
        width: 100%;
        background: transparent;
        color: var(--black-color);
        border: none;
        font-family: "Poppins", sans-serif;
        margin-left: 21px;
    }

        .main-form-input-2 .custom-input-2:focus {
            border: none;
            outline: none;
        }

        .main-form-input-2 .custom-input-2::placeholder {
            font-weight: 500;
        }

.contact-button-div {
    width: 100%;
}

    .contact-button-div .contact-btn {
        color: var(--white-color);
        font-size: 18px;
        font-weight: 600;
        padding: 10px 40px;
        background: var(--primary-orangecolor);
        border-radius: 7px;
        border: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
    }

        .contact-button-div .contact-btn:hover {
            background: var(--primary-color);
            box-shadow: 0 2px 5px var(--primary-color);
        }
/* contact section css */
/************************** Contact Us Section Css End **************************/
/************************** Footer Section Css Start **************************/
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--primary-color);
}

    .footer .footer-logo {
        width: 210px;
        background-color: #F6F7FB;
        padding: 6px;
        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(--secondary-color);
    }

    .getin_touch a i {
        padding-right: 5px;
    }

.getin_touch p {
    color: var(--white-color);
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

    .getin_touch p i {
        padding-right: 5px;
        margin-top: 3px;
    }

.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: 10px;
    gap: 10px;
    margin-bottom: 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(--black-color);
    padding: 20px;
    color: var(--white-color);
    text-align: center;
}

    .bootom-footer-section .bottom-footer-content p {
        margin-bottom: 0px !important;
    }

    .bootom-footer-section .bottom-footer-content a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .bootom-footer-section .bottom-footer-content a:hover {
            color: var(--primary-color);
        }
/* footer section css */
/* inner pages banner css */
.banner-section {
    width: 100%;
    height: 300px;
    padding: 100px;
    background: var(--black-color);
    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(--primary-color);
    font-family: "Poppins", sans-serif;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}

.breadcrumb-item.active {
    color: var(--primary-orangecolor);
    font-family: "Poppins", sans-serif;
}
/* 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-greencolor);
        border-radius: 15px;
    }

.main-ner-content {
    width: 100%;
    padding: 50px;
}

    .main-ner-content h1 {
        font-size: 42px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 10px;
    }

    .main-ner-content p {
        font-size: 18px;
        margin-bottom: 10px !important;
    }
/* inner services css */
/************************** Footer Section Css End **************************/
/* 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: #edf2fa;
    }

        .sec-result .upper-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .upper-list li .icon-box {
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                    height: 100%;
                    object-fit: contain;
                }

            .sec-result .upper-list li .text-box {
                padding: 0 10px;
            }

                .sec-result .upper-list li .text-box h6 {
                    font-size: 16px;
                    font-weight: 600;
                    color: #000;
                }

                .sec-result .upper-list li .text-box p {
                    font-size: 14px;
                }

    .sec-result .number-box {
        padding: 30px 40px;
    }

        .sec-result .number-box ul {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .number-box ul li {
                width: 24%;
                position: relative;
            }

                .sec-result .number-box ul li .num-circle {
                    text-align: center;
                }

                    .sec-result .number-box ul li .num-circle h6 {
                        background-color: #edf2fa;
                        width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 20px;
                        margin: 0 auto;
                        color: #000;
                        font-weight: 600;
                    }

                    .sec-result .number-box ul li .num-circle p {
                        font-size: 14px;
                        margin-top: 15px;
                        text-transform: uppercase;
                        color: #000;
                    }

    .sec-result .completed {
        background-color: #e50000 !important;
        color: #ffffff !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #000000;
            position: absolute;
            width: 67%;
            height: 4px;
            top: 30%;
            border-radius: 10px;
            left: 70%;
        }

    .sec-result .cancellation-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        background-color: #000000bd;
    }

        .sec-result .cancellation-box .img-box {
            background-color: #fff;
            padding: 10px;
            border-radius: 10px;
        }

            .sec-result .cancellation-box .img-box .shield-img {
                width: 50px;
            }

        .sec-result .cancellation-box .text-box {
            padding-left: 10px;
        }

            .sec-result .cancellation-box .text-box p {
                line-height: 23px;
                color: #fff;
                font-size: 18px;
            }


.update-fleet-box {
    background: #edf2fa;
    margin: 20px 0;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            object-fit: contain;
        }

    .update-fleet-box .car-text {
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 10px;
        font-weight: 700;
    }

    .update-fleet-box .private-text {
        font-size: 14px;
    }

    .update-fleet-box .star-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 7px 0 0;
    }

        .update-fleet-box .star-list li {
            padding: 0 1px;
        }

            .update-fleet-box .star-list li i {
                color: #ffffff;
                background-color: #ed1f24;
                padding: 4px;
                border-radius: 5px;
            }

    .update-fleet-box .fleet-detail {
        padding: 0px 13px;
        border-right: 1px solid #bbbbbb;
        border-left: 1px solid #bbbbbb;
    }

        .update-fleet-box .fleet-detail h4 {
            font-size: 22px;
            font-weight: 600;
            padding-bottom: 5px;
            color: #000000;
        }

        .update-fleet-box .fleet-detail .passenger-list {
            display: flex;
            align-items: center;
        }

            .update-fleet-box .fleet-detail .passenger-list li {
                font-size: 13px;
                padding: 0 8px 0 0;
                font-weight: 600;
            }

                .update-fleet-box .fleet-detail .passenger-list li i {
                    font-size: 16px;
                }

        .update-fleet-box .fleet-detail .passenger-list-2 {
            padding: 10px 0;
        }

            .update-fleet-box .fleet-detail .passenger-list-2 li {
                font-size: 15px;
                padding: 3px 10px;
                border: 1px solid #000000;
                margin: 3px 0;
                border-radius: 6px;
                font-size: 12px;
                background-color: #000000;
                width: fit-content;
                color: #ffffff;
            }

                .update-fleet-box .fleet-detail .passenger-list-2 li i {
                    font-size: 16px;
                    padding-right: 5px;
                }

        .update-fleet-box .fleet-detail .info-btn {
            color: #f9b442;
            text-decoration: underline;
            font-weight: 500;
        }

    .update-fleet-box .rate-box {
        margin-top: 10%;
    }

        .update-fleet-box .rate-box h6 {
            font-size: 15px;
            margin-top: 4px;
        }

        .update-fleet-box .rate-box .prize-box {
            text-align: center;
            padding: 4px 0;
            font-size: 20px;
            line-height: 29px;
            color: #000;
            font-weight: 600;
        }

        .update-fleet-box .rate-box .done-btn {
            padding: 0px;
            border-radius: 5px;
            text-align: center;
            color: #000000;
            font-weight: 600;
        }

.right-card {
    background-color: #edf2fa;
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .right-card .top-heading {
        display: flex;
        align-items: center;
        padding: 10px 0 15px;
    }

        .right-card .top-heading i {
            font-size: 24px;
            padding-right: 10px;
            color: #000000;
        }

        .right-card .top-heading h5 {
            font-size: 22px;
            color: #000000;
        }

    .right-card .distance-box {
        padding: 20px 0;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #000000;
    }

        .right-card .distance-box h6 {
            color: #000;
        }

        .right-card .distance-box ul {
            padding: 10px 0 0;
        }

            .right-card .distance-box ul li {
                font-size: 14px;
                padding: 5px 0px;
                color: #000;
            }

                .right-card .distance-box ul li i {
                    font-size: 16px;
                    color: #000000;
                    padding-right: 5px;
                }

    .right-card .cal-mile {
        padding: 10px 0 0;
    }

        .right-card .cal-mile li {
            font-size: 16px;
            padding: 5px 0;
            color: #000;
        }

            .right-card .cal-mile li i {
                padding-right: 5px;
                color: #000000;
            }

    .right-card .distance-box-2 ul li {
        font-size: 14px;
        padding: 5px 0;
        color: #000;
    }

        .right-card .distance-box-2 ul li i {
            font-size: 15px;
            color: #000000;
            padding-right: 3px;
        }

.ui-menu {
    height: 250px !important;
    overflow-y: scroll;
}

.Passenger-Information {
    background: #edf2fa;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #000000;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: center;
            padding: 4px 0;
            font-size: 16px;
            font-weight: 600;
            line-height: 18px;
            color: #000;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ccc !important;
        }

        .Passenger-Information .input-box p {
            font-size: 13px;
            padding: 4px 0;
        }

    .Passenger-Information .input-box-extra {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Passenger-Information .input-box-extra input {
            margin: 0 !important;
        }

        .Passenger-Information .input-box-extra label {
            padding-left: 10px;
        }

.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;
}*/

.loadingDiv {
    text-align: center;
    background: rgba(0,0,0,0.5) url(images/ajax-loader.gif) no-repeat right center;
    position: fixed;
    display: none;
    z-index: 99999999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

.fleet-img-box {
    width: 100%;
    height: 220px;
    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;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 12px;
    }

    .hero {
        padding: 80px 0;
        height: auto;
    }

    .bokking-eginer-main {
        padding: 20px;
    }

    .services-main {
        padding: 20px 10px;
    }

        .services-main h3 {
            font-size: 24px;
        }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x:hidden;
    }
    .header .navbar-expand-lg .navbar-nav {
        gap: 12px;
    }
    .hero {
        padding: 80px 0;
        height: auto;
    }
    .bokking-eginer-main {
        padding: 20px;
    }
    .services-main {
        padding: 20px 10px;
    }
    .services-main h3 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden;
    }

    .infocont {
        gap: 5px;
        flex-wrap: wrap;
    }

    .header .navbar-brand .logo {
        width: 150px;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .hero h2 {
        font-size: 40px;
        text-align: center;
    }

    .hero {
        height: auto;
        padding: 40px 0;
    }

    .bokking-eginer-main {
        background: #000000c7;
        padding: 15px 10px;
        border: 3px solid var(--primary-orangecolor);
    }

    .about-us-section {
        padding: 30px 0;
    }

    .about-heading h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .about-content {
        padding: 10px;
    }

        .about-content h2 {
            font-size: 30px;
        }

    .services-section {
        padding: 30px 0;
    }

    .services-heading h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .services-main {
        margin-bottom: 15px;
    }

    .contact-section {
        padding: 30px 0;
    }

    .contact-heading {
        margin-bottom: 20px;
    }

        .contact-heading h3 {
            font-size: 30px;
        }

    .contact-form {
        padding: 10px 0px;
    }

    .main-contact {
        padding: 15px;
    }

    .footer {
        padding: 20px 0;
    }

    .center-footer-content {
        margin-left: 0;
    }

        .center-footer-content h2 {
        }

    .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;
    }

    .banner-section {
        height: 230px;
        padding: 40px 0;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden;
    }

    .infocont {
        gap: 5px;
        flex-wrap: wrap;
    }

    .header .navbar-brand .logo {
        width: 150px;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .hero h2 {
        font-size: 40px;
        text-align: center;
    }

    .hero {
        height: auto;
        padding: 40px 0;
    }

    .bokking-eginer-main {
        background: #000000c7;
        padding: 15px 10px;
        border: 3px solid var(--primary-orangecolor);
    }

    .about-us-section {
        padding: 30px 0;
    }

    .about-heading h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .about-content {
        padding: 10px;
    }

        .about-content h2 {
            font-size: 30px;
        }

    .services-section {
        padding: 30px 0;
    }

    .services-heading h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .services-main {
        margin-bottom: 15px;
    }

    .contact-section {
        padding: 30px 0;
    }

    .contact-heading {
        margin-bottom: 20px;
    }

        .contact-heading h3 {
            font-size: 30px;
        }

    .contact-form {
        padding: 10px 0px;
    }

    .main-contact {
        padding: 15px;
    }

    .footer {
        padding: 20px 0;
    }

    .center-footer-content {
        margin-left: 0;
    }

        .center-footer-content h2 {
            margin-top: 10px;
        }

    .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;
    }

    .banner-section {
        height: 230px;
        padding: 40px 0;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden;
    }

    .infocont {
        gap: 5px;
        flex-wrap: wrap;
    }

    .header .navbar-brand .logo {
        width: 150px;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .hero h2 {
        font-size: 40px;
        text-align: center;
    }

    .hero {
        height: auto;
        padding: 40px 0;
    }

    .bokking-eginer-main {
        background: #000000c7;
        padding: 15px 10px;
        border: 3px solid var(--primary-orangecolor);
    }

    .about-us-section {
        padding: 30px 0;
    }

    .about-heading h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .about-content {
        padding: 10px;
    }

        .about-content h2 {
            font-size: 30px;
        }

    .services-section {
        padding: 30px 0;
    }

    .services-heading h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .services-main {
        margin-bottom: 15px;
    }

    .contact-section {
        padding: 30px 0;
    }

    .contact-heading {
        margin-bottom: 20px;
    }

        .contact-heading h3 {
            font-size: 30px;
        }

    .contact-form {
        padding: 10px 0px;
    }

    .main-contact {
        padding: 15px;
    }

    .footer {
        padding: 20px 0;
    }

    .center-footer-content {
        margin-left: 0;
    }

        .center-footer-content h2 {
            margin-top: 10px;
        }

    .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;
    }

    .banner-section {
        height: 230px;
        padding: 40px 0;
    }
}
