@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #1d370f;
    --secondary-color: #b2de4a;
    --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: "Space Grotesk", 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 **************************/
.main-header {
    width: 100%;
    padding: 5px 0;
    background: var(--primary-color);
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
}

    .main-header .logo {
        width: 120px;
    }

.navbar-expand-lg .navbar-nav {
    gap: 40px;
}

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 16px;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .navbar-expand-lg .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
        }

        .navbar-expand-lg .navbar-nav .nav-link.active {
            color: var(--secondary-color);
        }

.header-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .header-btns .headerbtn-1 {
        padding: 8px 25px;
        background: var(--white-color);
        color: var(--black-color);
        font-size: 16px;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
        border-radius: 10px;
        border: 2px solid var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .header-btns .headerbtn-1:hover {
            background: var(--black-color);
            border: 2px solid var(--black-color);
            color: var(--white-color);
        }

    .header-btns .headerbtn-2 {
        padding: 8px 25px;
        background: var(--secondary-color);
        color: var(--black-color);
        font-size: 16px;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
        border-radius: 10px;
        border: 2px solid var(--secondary-color);
        transition: all 0.3s ease-in-out;
    }

        .header-btns .headerbtn-2:hover {
            background: var(--black-color);
            color: var(--white-color);
            border: 2px solid var(--black-color);
        }

.header-sticky {
    width: 100%;
    position: relative;
    background: #00000000;
    transition: all 0.3s ease;
    z-index: 10;
    position: fixed;
    top: 0;
}

    .header-sticky.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        animation: fadeInDown 0.5s ease;
    }
/************************** Header css end **************************/
/************************** Hero Section CSS Start **************************/
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient( 0deg, rgba(50, 130, 56, 1) 0%, rgba(29, 55, 15, 1) 100% );
}

    .hero-section .hero-left-content {
        width: 100%;
        padding: 0 10px;
        margin-top: 40%;
    }

        .hero-section .hero-left-content h2 {
            font-size: 55px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .hero-section .hero-left-content p {
            font-size: 16px;
            color: #ffffff;
            margin-bottom: 10px;
        }

    .hero-section .hero-image-content {
        width: 46%;
        height: auto;
        position: absolute;
        top: 0;
        right: 0;
    }

        .hero-section .hero-image-content img {
            width: 100%;
            height: 100svh;
            object-fit: cover;
        }

.booking-form-engine {
    width: 100%;
    padding: 15px 45px 15px 30px;
    background: #ffffff;
    border-radius: 0 85px 0 0;
    position: relative;
    z-index: 1;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    top: 70px;
}

    .booking-form-engine h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #1d370f;
    }

    .booking-form-engine .custom-input-div {
        width: 100%;
        margin-bottom: 20px;
        position: relative;
    }

        .booking-form-engine .custom-input-div .custom-input {
            width: 100%;
            padding: 8px 48px 8px 10px;
            border: 1px solid #579d3d;
            border-radius: 5px;
            font-family: "Poppins", sans-serif;
            color: #000000;
            background: transparent;
            position: relative;
            z-index: 1;
        }

            .booking-form-engine .custom-input-div .custom-input:focus {
                border: 1px solid var(--secondary-color);
                outline: none;
                box-shadow: none;
            }

            .booking-form-engine .custom-input-div .custom-input::placeholder {
                color: #000000;
            }

            .booking-form-engine .custom-input-div .custom-input option {
                color: var(--black-color);
            }

        .booking-form-engine .custom-input-div i {
            width: 30px;
            height: 30px;
            background: #a6d548;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 20%;
            position: absolute;
            top: 6px;
            right: 6px;
            transform: translate(0px, 0px);
            font-size: 14px;
            color: #000;
        }

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    padding-right: 20px;
}

.hero-sectionbtn {
    width: 100%;
    padding: 10px;
    background: var(--secondary-color);
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease-in-out;
}

    .hero-sectionbtn:hover {
        background: var(--black-color);
        color: var(--white-color);
    }
/************************** Hero Section CSS End **************************/
/************************** About Section CSS Start **************************/
.about-section {
    width: 100%;
    padding: 60px 0;
}

    .about-section .about-image-content {
        width: 100%;
    }

    .about-section .about-image {
        border-radius: 15px;
        border: 5px solid var(--primary-color);
    }

    .about-section .about-text-content {
        width: 100%;
        padding: 0 20px;
    }

        .about-section .about-text-content h2 {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-color);
            border-bottom: 2px solid var(--primary-color);
            width: fit-content;
            margin-bottom: 10px;
        }

        .about-section .about-text-content p {
            color: var(--black-color);
            font-size: 16px;
            margin-bottom: 10px;
        }

        .about-section .about-text-content .about-btn {
            padding: 10px 25px;
            background: var(--primary-color);
            color: var(--white-color);
            font-size: 16px;
            font-weight: 500;
            text-align: center;
            border-radius: 5px;
            font-family: "Poppins", sans-serif;
            transition: all 0.3s ease-in-out;
        }

            .about-section .about-text-content .about-btn:hover {
                background: var(--black-color);
            }
/************************** About Section CSS End **************************/
/************************** Philosophy Section CSS Start **************************/
.philosophy-section {
    width: 100%;
    padding: 60px 0;
    background: var(--primary-color);
    background: linear-gradient( 0deg, rgba(50, 130, 56, 1) 0%, rgba(29, 55, 15, 1) 100% );
}

    .philosophy-section .philosophy-main {
        width: 100%;
        text-align: center;
    }

        .philosophy-section .philosophy-main h2 {
            font-size: 42px;
            font-weight: 700;
            color: var(--white-color);
            margin-bottom: 10px;
        }

        .philosophy-section .philosophy-main p {
            font-size: 16px;
            color: var(--white-color);
        }
/************************** Philosophy Section CSS End **************************/
/************************** Services Section CSS Start **************************/
.services-section {
    width: 100%;
    padding: 60px 0;
}

.service-heading {
    width: 100%;
    text-align: center;
}

    .service-heading h2 {
        color: var(--primary-color);
        font-size: 42px;
        font-weight: 700;
        border-bottom: 2px solid var(--primary-color);
        width: fit-content;
        margin: 0 auto;
        margin-bottom: 40px;
    }

.service-main {
    width: 100%;
    padding: 15px;
    background: var(--white-color);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
}

    .service-main .service-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .service-main h2 {
        font-size: 20px;
        text-align: center;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--primary-color);
    }

    .service-main p {
        color: var(--black-color);
        font-size: 14px;
        text-align: center;
        margin-bottom: 10px;
        padding: 0 10px;
    }

.service-btn {
    width: 100%;
    padding: 8px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease-in-out;
}

    .service-btn:hover {
        background: var(--black-color);
        color: var(--white-color);
    }
/************************** Services Section CSS End **************************/
/************************** Fleets Section CSS Start **************************/
.fleets-section {
    width: 100%;
    padding: 60px 0;
    background: var(--primary-color);
}

    .fleets-section h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 40px;
        text-align: center;
        color: var(--white-color);
        border-bottom: 2px solid var(--white-color);
        width: fit-content;
        margin: 0 auto 40px auto;
    }

    .fleets-section .fleets-card-main {
        padding: 30px;
        border-radius: 15px;
        margin-top: 130px;
        background: var(--white-color);
        position: relative;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

        .fleets-section .fleets-card-main .fleet-top {
            width: 370px;
            height: 220px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 15px;
            position: absolute;
            top: 0%;
            left: 50%;
            transform: translate(-50%, -50%);
            overflow: hidden;
            background: #ddd;
        }

            .fleets-section .fleets-card-main .fleet-top img {
                object-fit: cover;
                border-radius: 15px;
                transform: scale(1);
                transition: all 0.3s ease-in-out;
            }

        .fleets-section .fleets-card-main:hover .fleet-top img {
            transform: scale(1.1);
        }

        .fleets-section .fleets-card-main .fleet-bottom {
            width: 100%;
            margin-top: 100px;
        }

            .fleets-section .fleets-card-main .fleet-bottom h3 {
                font-size: 26px;
                font-weight: 700;
                margin-bottom: 10px;
                color: var(--primary-color);
            }

            .fleets-section .fleets-card-main .fleet-bottom .fleet-para {
                font-size: 16px;
                font-family: "Poppins", sans-serif;
                margin-bottom: 10px;
                color: var(--black-color);
            }

            .fleets-section .fleets-card-main .fleet-bottom .fleet-features {
                width: 100%;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-bottom: 20px;
            }

                .fleets-section .fleets-card-main .fleet-bottom .fleet-features .fleet-item i {
                    width: 30px;
                    height: 30px;
                    background: var(--secondary-color);
                    border-radius: 5px;
                    color: var(--black-color);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 14px;
                }

                .fleets-section .fleets-card-main .fleet-bottom .fleet-features .fleet-item {
                    color: var(--black-color);
                    display: flex;
                    gap: 10px;
                    align-items: center;
                    font-size: 14px;
                }

            .fleets-section .fleets-card-main .fleet-bottom .fleet-btn {
                width: 100%;
                padding: 10px 40px;
                color: var(--white-color);
                background: var(--primary-color);
                text-align: center;
                font-weight: 600;
                font-family: "Poppins", sans-serif;
                border-radius: 10px;
                transition: all 0.3s ease-in-out;
            }

                .fleets-section .fleets-card-main .fleet-bottom .fleet-btn:hover {
                    color: var(--white-color);
                    background: var(--black-color);
                }
/************************** Fleets Section CSS End **************************/
/************************** Contact Us Section CSS Start **************************/
.contact-us {
    width: 100%;
    height: 100%;
    padding: 60px 0;
}

    .contact-us .topcontact-sec h2 {
        font-size: 42px;
        font-weight: 700;
        color: #1d370f;
        text-align: center;
        margin-bottom: 40px;
        border-bottom: 2px solid #1d370f;
        width: fit-content;
        margin: 0 auto 40px auto;
    }

    .contact-us .contact-info-box {
        background: var(--primary-color);
        border-radius: 20px;
        padding: 50px 40px;
        position: relative;
        z-index: 1;
    }

        .contact-us .contact-info-box h4 {
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--white-color);
        }

        .contact-us .contact-info-box .cont-inner-box {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 10px 0;
        }

            .contact-us .contact-info-box .cont-inner-box .icon-box i {
                width: 40px;
                height: 40px;
                background: var(--secondary-color);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #000000;
            }

            .contact-us .contact-info-box .cont-inner-box .text-box {
                padding-left: 20px;
            }

                .contact-us .contact-info-box .cont-inner-box .text-box h6 {
                    color: var(--white-color);
                    font-weight: 700;
                }

                .contact-us .contact-info-box .cont-inner-box .text-box .para a {
                    color: var(--white-color);
                }

                .contact-us .contact-info-box .cont-inner-box .text-box .para span {
                    color: var(--white-color);
                }

    .contact-us .main-Contact {
        width: 100%;
        height: auto;
        padding: 20px 50px;
        border: 5px solid #1d370f;
        border-radius: 20px;
    }

        .contact-us .main-Contact h3 {
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--black-color);
        }

    .contact-us .CfotmInp {
        width: 100%;
    }

        .contact-us .CfotmInp .ininput {
            width: 100%;
            padding: 8px 0px;
            border-top: none;
            border-left: none;
            border-right: none;
            border-bottom: 2px solid var(--black-color);
            background: transparent;
            border-radius: 0;
            margin-bottom: 20px;
            font-size: 16px;
            font-family: "Poppins", sans-serif;
            color: var(--black-color);
        }

            .contact-us .CfotmInp .ininput::placeholder {
                color: var(--black-color);
            }

            .contact-us .CfotmInp .ininput:focus {
                outline: none;
                border-top: none;
                border-left: none;
                border-right: none;
                border-bottom: 2px solid var(--primary-color);
            }

.contact-Btn {
    border: none;
    padding: 10px 40px !important;
    text-align: center;
    background: var(--secondary-color);
    color: #000000;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

    .contact-Btn:hover {
        color: var(--white-color);
        background: var(--black-color);
    }
/************************** Contact Us Section CSS End **************************/
/************************** Footer Section CSS Start **************************/
.footer {
    width: 100%;
    height: 100%;
    padding: 60px 0;
    background: var(--black-color);
}

    .footer .footer-logo {
        width: 280px;
    }

.left-footer-content {
    width: 100%;
    height: 100%;
}

    .left-footer-content a {
        color: var(--white-color);
        margin-bottom: 10px;
    }

        .left-footer-content a h1 {
            font-weight: 600;
        }

.center-footer-content {
    width: 100%;
}

    .center-footer-content h2 {
        font-weight: 600;
        font-size: 24px;
        color: var(--white-color);
    }

.footer_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 6px;
    margin-top: 10px;
}

    .footer_ul .footer_li a {
        color: var(--white-color);
        transform: translateX(0px);
        font-size: 16px;
        font-weight: 500;
        font-family: "Poppins";
        transition: all 0.3s ease-in-out;
    }

        .footer_ul .footer_li a:hover {
            transform: translateX(10px);
        }

        .footer_ul .footer_li a i {
            padding-right: 7px;
        }

.right-footer-content h2 {
    font-weight: 600;
    font-size: 24px;
    color: var(--white-color);
}

.right-footer-content .getin_touch {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top: 10px;
}

.getin_touch a {
    color: var(--white-color);
    font-weight: 500;
    font-size: 17px;
    font-family: "Poppins";
    transition: all 0.3s ease-in-out;
}

    .getin_touch a:hover {
        color: var(--secondary-color);
    }

    .getin_touch a i {
        padding-right: 7px;
    }

.getin_touch p {
    color: var(--primary-color);
}

.last-footer-content h2 {
    font-weight: 600;
    font-size: 24px;
    color: var(--white-color);
}

.social-icons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

.bootom-footer-section {
    width: 100%;
    background: var(--primary-color);
    padding: 10px;
    color: var(--white-color);
    text-align: center;
}

    .bootom-footer-section a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .bootom-footer-section a:hover {
            color: var(--secondary-color);
        }

.socil-links {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

    .socil-links a {
        background: var(--secondary-color);
        padding: 8px 15px;
        border-radius: 5px;
        color: var(--black-color);
        transition: all 0.3s ease-in-out;
    }

        .socil-links a:hover {
            background: var(--white-color);
            color: var(--black-color);
        }
/************************** Footer Section CSS End **************************/
/* inner pages banner css */
.banner-section {
    width: 100%;
    padding: 0px 0;
    height: 40vh;
    background: var(--primary-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* display: flex; */
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    bottom: 0;
}

    .banner-section h2 {
        font-size: 52px;
        font-weight: 600;
        color: var(--white-color);
        margin-top: 170px;
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: 700;
    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: 10px;
}

    .main-ner-image img {
        border: 5px solid var(--primary-color);
        width: 100%;
        border-radius: 15px;
        height: 420px;
        object-fit: cover;
    }

.main-ner-content {
    width: 100%;
    padding: 20px;
}

    .main-ner-content h1 {
        font-size: 42px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 10px;
    }

        .main-ner-content h1 span {
            color: var(--secondary-color);
        }

    .main-ner-content p {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .main-ner-content ul li {
        list-style: disc;
        margin-left: 20px;
        font-size: 16px;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
        color: var(--primary-color);
    }

.service-heading-inner h2 {
    margin-bottom: 10px;
}

.service-heading-inner p {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 40px;
}
/* inner services css */
/* why choose section css */
.why-choose-section {
    width: 100%;
    padding: 40px 0;
}

    .why-choose-section .why-choose-heading h2 {
        font-size: 42px;
        font-weight: 700;
        color: #1d370f;
        text-align: center;
        margin-bottom: 40px;
        border-bottom: 2px solid #1d370f;
        width: fit-content;
        margin: 0 auto 40px auto;
    }

.why-choose-card {
    width: 100%;
    height: 210px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 3px solid #b2de4a;
}

.choose-content-box h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
}
/* why choose section css */
/* highlighted section css */
.highlighted-section {
    width: 100%;
    padding: 20px 0;
    background: var(--secondary-color);
}

    .highlighted-section .highlighted-text-box {
        width: 100%;
        text-align: center;
    }

        .highlighted-section .highlighted-text-box p {
            font-size: 16px;
            font-weight: 500;
            color: var(--black-color);
        }
/* highlighted section css */
/* business section css */
.business-section {
    width: 100%;
    padding: 40px 0;
}

.business-content-box {
    width: 100%;
}

    .business-content-box h2 {
        font-size: 32px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 10px;
    }

    .business-content-box p {
        font-size: 16px;
        color: var(--black-color);
        margin-bottom: 10px;
    }

    .business-content-box .service-contact-btn {
        padding: 8px 25px;
        background: var(--secondary-color);
        color: var(--black-color);
        font-size: 16px;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
        border-radius: 10px;
        border: 2px solid var(--secondary-color);
        transition: all 0.3s ease-in-out;
    }

        .business-content-box .service-contact-btn:hover {
            background: var(--black-color);
            color: var(--white-color);
            border: 2px solid var(--black-color);
        }

.business-image-box {
    width: 100%;
}

    .business-image-box .clock-image {
        border: 3px solid var(--primary-color);
        border-radius: 15px;
    }
/* business section css */
/* inner fleet css */
.fleet-inner-section {
    background: var(--white-color);
}
/* inner fleet css */
/* mission vision section css */
.mission-vision-section {
    width: 100%;
    padding: 40px 0;
}

.mission-div {
    width: 100%;
    border: 5px solid var(--primary-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 307px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .mission-div h2 {
        font-size: 32px;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .mission-div p {
        color: var(--black-color);
        font-size: 16px;
    }

.vision-div {
    width: 100%;
    border: 5px solid var(--primary-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 307px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .vision-div h2 {
        font-size: 32px;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .vision-div p {
        color: var(--black-color);
        font-size: 16px;
    }
/* mission vision section css */
/* rout section css */
.rout-section {
    width: 100%;
    padding: 40px 0;
}

    .rout-section .rout-text-content {
        width: 100%;
    }

        .rout-section .rout-text-content h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--black-color);
            margin-bottom: 10px;
        }

        .rout-section .rout-text-content p {
            font-size: 16px;
            color: var(--black-color);
            margin-bottom: 10px;
        }

    .rout-section .rout-image-content {
        width: 100%;
    }

        .rout-section .rout-image-content .rout-image {
            width: 100%;
            object-fit: cover;
            border-radius: 15px;
            border: 3px solid var(--primary-color);
        }
/* rout section css */
.sec-result {
    padding: 60px 0;
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        background: #edf2fa;
        border-radius: 10px;
        border: 2px solid #1d370f;
    }

        .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: #acd647;
                        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: #1d370f !important;
        color: #ffffff !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #000000;
            position: absolute;
            width: 67%;
            height: 4px;
            top: 30%;
            border-radius: 10px;
            left: 70%;
        }

    .sec-result .cancellation-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        background-color: #000000bd;
    }

        .sec-result .cancellation-box .img-box {
            background-color: #fff;
            padding: 10px;
            border-radius: 10px;
        }

            .sec-result .cancellation-box .img-box .shield-img {
                width: 50px;
            }

        .sec-result .cancellation-box .text-box {
            padding-left: 10px;
        }

            .sec-result .cancellation-box .text-box p {
                line-height: 23px;
                color: #fff;
                font-size: 18px;
            }


.update-fleet-box {
    background: #edf2fa;
    margin: 20px 0;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid #1d370f;
    border-radius: 15px;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            object-fit: contain;
        }

    .update-fleet-box .car-text {
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 10px;
        font-weight: 700;
    }

    .update-fleet-box .private-text {
        font-size: 14px;
    }

    .update-fleet-box .star-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 7px 0 0;
    }

        .update-fleet-box .star-list li {
            padding: 0 1px;
        }

            .update-fleet-box .star-list li i {
                color: #000000;
                background-color: #FFEB3B;
                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 #b2de4a;
                margin: 6px 0;
                border-radius: 6px;
                font-size: 12px;
                background-color: #b2de4a;
                width: fit-content;
                color: #000000;
            }

                .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;
    border: 2px solid #1d370f;
    border-radius: 10px;
}

    .right-card .top-heading {
        display: flex;
        align-items: center;
        padding: 10px 0 15px;
    }

        .right-card .top-heading i {
            font-size: 24px;
            padding-right: 10px;
            color: #000000;
        }

        .right-card .top-heading h5 {
            font-size: 22px;
            color: #000000;
        }

    .right-card .distance-box {
        padding: 20px 0;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #000000;
    }

        .right-card .distance-box h6 {
            color: #000;
        }

        .right-card .distance-box ul {
            padding: 10px 0 0;
        }

            .right-card .distance-box ul li {
                font-size: 14px;
                padding: 5px 0px;
                color: #000;
            }

                .right-card .distance-box ul li i {
                    font-size: 16px;
                    color: #000000;
                    padding-right: 5px;
                }

    .right-card .cal-mile {
        padding: 10px 0 0;
    }

        .right-card .cal-mile li {
            font-size: 16px;
            padding: 5px 0;
            color: #000;
        }

            .right-card .cal-mile li i {
                padding-right: 5px;
                color: #000000;
            }

    .right-card .distance-box-2 ul li {
        font-size: 14px;
        padding: 5px 0;
        color: #000;
    }

        .right-card .distance-box-2 ul li i {
            font-size: 15px;
            color: #000000;
            padding-right: 3px;
        }

.ui-menu {
    height: 250px !important;
    overflow-y: scroll;
}

.Passenger-Information {
    background: #edf2fa;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 15px;
    border: 2px solid #1d370f;
    margin-bottom: 40px;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #000000;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: center;
            padding: 4px 0;
            font-size: 16px;
            font-weight: 600;
            line-height: 18px;
            color: #000;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ccc !important;
        }

        .Passenger-Information .input-box p {
            font-size: 13px;
            padding: 4px 0;
        }

    .Passenger-Information .input-box-extra {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Passenger-Information .input-box-extra input {
            margin: 0 !important;
        }

        .Passenger-Information .input-box-extra label {
            padding-left: 10px;
        }

#lkbtn_lgout {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-weight: 500;
    padding: 0;
    margin-right: 20px;
}

    #lkbtn_lgout i {
        margin-right: 5px;
    }
/*sec-privacy*/
.sec-privacy {
    padding: 60px 0 60px;
}

    .sec-privacy .content-box {
    }

        .sec-privacy .content-box h1 {
            text-transform: capitalize;
            position: relative;
            line-height: 25px;
            color: var(--white-color);
            font-weight: 700;
            font-size: 22px;
            padding: 10px 20px;
            margin: 0 auto 20px;
            text-align: center;
            background-color: var(--primary-color);
            width: fit-content;
            border-radius: 10px;
        }

        .sec-privacy .content-box h2 {
            text-transform: capitalize;
            position: relative;
            line-height: 25px;
            color: var(--black-color);
            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: var(--black-color);
            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: var(--primary-color);
                    font-size: 16px;
                    padding-right: 7px;
                }

                .sec-privacy .content-box ul li span {
                }

        .sec-privacy .content-box .para {
            color: var(--black-color);
            padding: 5px 0;
            margin: 0;
            font-size: 15px;
        }

        .sec-privacy .content-box h6 a {
            font-size: 16px;
            color: var(--primary-color);
            text-decoration: underline;
        }

        .sec-privacy .content-box h6 span {
            font-weight: 700;
            font-size: 15px;
            color: var(--black-color);
            padding-right: 5px;
        }
        /*sec-privacy*/
        /************************** 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) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .hero-section {
        height: 80vh;
    }

        .hero-section .hero-left-content {
            margin-top: 30%;
        }

            .hero-section .hero-left-content h2 {
                font-size: 46px;
                margin-bottom: 10px;
            }

        .hero-section .hero-image-content img {
            height: 80svh;
        }

    .booking-form-engine {
        top: 40px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .hero-section {
        height: 80vh;
    }

        .hero-section .hero-left-content {
            margin-top: 30%;
        }

            .hero-section .hero-left-content h2 {
                font-size: 46px;
                margin-bottom: 10px;
            }

        .hero-section .hero-image-content img {
            height: 80svh;
        }

    .booking-form-engine {
        top: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .logo {
        width: 100px;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 20px;
    }

        .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
        }

    .header-btns .headerbtn-1 {
        padding: 6px 15px;
        font-size: 14px;
    }

    .header-btns .headerbtn-2 {
        padding: 6px 15px;
        font-size: 14px;
    }

    .hero-section .hero-left-content h2 {
        font-size: 32px;
    }

    .hero-section .hero-left-content p {
        font-size: 14px;
    }

    .hero-section .hero-left-content {
        margin-top: 35%;
    }

    .hero-section {
        height: 70vh;
    }

        .hero-section .hero-image-content img {
            height: 70svh;
        }

    .booking-form-engine {
        top: 40px;
    }

        .booking-form-engine h2 {
            font-size: 26px;
        }

        .booking-form-engine .custom-input-div .custom-input {
            font-size: 14px;
        }

    .hero-sectionbtn {
        padding: 9px;
        font-size: 14px;
    }

    .about-section {
        padding: 40px 0;
    }

        .about-section .about-text-content {
            padding: 0 0px;
        }

            .about-section .about-text-content h2 {
                font-size: 32px;
            }

            .about-section .about-text-content p {
                font-size: 14px;
                margin-bottom: 5px;
            }

            .about-section .about-text-content .about-btn {
                padding: 8px 15px;
                font-size: 14px;
            }

    .philosophy-section .philosophy-main h2 {
        font-size: 32px;
    }

    .philosophy-section {
        padding: 40px 0;
    }

        .philosophy-section .philosophy-main p {
            font-size: 14px;
        }

    .services-section {
        padding: 40px 0;
    }

    .service-heading h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleets-section {
        padding: 40px 0;
    }

        .fleets-section h2 {
            font-size: 32px;
            margin: 0 auto 20px auto;
        }

        .fleets-section .fleets-card-main .fleet-bottom .fleet-para {
            font-size: 14px;
        }

    .contact-us {
        padding: 40px 0;
    }

        .contact-us .topcontact-sec h2 {
            font-size: 32px;
            margin: 0 auto 20px auto;
        }

        .contact-us .contact-info-box {
            padding: 20px 30px;
        }

            .contact-us .contact-info-box .cont-inner-box .text-box {
                padding-left: 10px;
            }

                .contact-us .contact-info-box .cont-inner-box .text-box .para span {
                    font-size: 14px;
                }

        .contact-us .main-Contact {
            padding: 20px 30px;
        }

        .contact-us .CfotmInp .ininput {
            font-size: 14px;
        }

    .contact-Btn {
        padding: 8px 15px !important;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 180px;
    }

    .center-footer-content h2 {
        font-size: 20px;
    }

    .footer_ul {
        gap: 5px;
        padding: 2px;
        margin-top: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .last-footer-content h2 {
        font-size: 20px;
    }

    .right-footer-content h2 {
        font-size: 20px;
    }

    .socil-links {
        gap: 5px;
        margin-top: 10px;
    }

        .socil-links a {
            padding: 5px 10px;
        }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        height: 30vh;
    }

        .banner-section h2 {
            font-size: 32px;
            margin-top: 130px;
        }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .breadcrumb {
        margin-top: 10px;
    }

    .mission-div h2 {
        font-size: 24px;
    }

    .mission-div p {
        font-size: 14px;
    }

    .vision-div h2 {
        font-size: 24px;
    }

    .vision-div p {
        font-size: 14px;
    }

    .rout-section .rout-text-content h2 {
        font-size: 24px;
    }

    .rout-section .rout-text-content p {
        font-size: 14px;
    }

    .service-heading-inner p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .main-ner-content {
        padding: 0px;
    }

        .main-ner-content h1 {
            font-size: 32px;
        }

        .main-ner-content p {
            font-size: 14px;
        }

        .main-ner-content ul li {
            font-size: 14px;
        }

    .main-ner-image img {
        height: 320px;
    }

    .why-choose-section .why-choose-heading h2 {
        font-size: 32px;
        margin: 0 auto 20px auto;
    }

    .why-choose-card {
        height: 160px;
        margin-bottom: 25px;
    }

    .choose-content-box h2 {
        font-size: 20px;
    }

    .choose-content-box p {
        font-size: 14px;
    }

    .highlighted-section {
        padding: 10px 0;
    }

        .highlighted-section .highlighted-text-box p {
            font-size: 14px;
        }

    .business-content-box p {
        font-size: 14px;
    }

    .business-content-box .service-contact-btn {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .logo {
        width: 100px;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 5px;
        padding: 10px 0;
    }

        .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
        }

    .header-btns .headerbtn-1 {
        padding: 6px 15px;
        font-size: 14px;
    }

    .header-btns .headerbtn-2 {
        padding: 6px 15px;
        font-size: 14px;
    }

    .hero-section .hero-left-content h2 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 10px;
    }

    .hero-section .hero-left-content p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 5px;
    }

    .hero-section .hero-left-content {
        margin-top: 0;
    }

    .hero-section {
        height: auto;
        padding: 17% 0 12%
    }

        .hero-section .hero-image-content img {
            height: 70svh;
        }

    .booking-form-engine {
        top: 20px;
    }

        .booking-form-engine h2 {
            font-size: 26px;
        }

        .booking-form-engine .custom-input-div .custom-input {
            font-size: 14px;
        }

    .hero-sectionbtn {
        padding: 9px;
        font-size: 14px;
    }

    .about-section {
        padding: 40px 0;
    }

        .about-section .about-text-content {
            padding: 0 0px;
            margin-top: 20px;
        }

            .about-section .about-text-content h2 {
                font-size: 32px;
            }

            .about-section .about-text-content p {
                font-size: 14px;
                margin-bottom: 5px;
            }

            .about-section .about-text-content .about-btn {
                padding: 8px 15px;
                font-size: 14px;
            }

    .philosophy-section .philosophy-main h2 {
        font-size: 32px;
    }

    .philosophy-section {
        padding: 40px 0;
    }

        .philosophy-section .philosophy-main p {
            font-size: 14px;
        }

    .services-section {
        padding: 40px 0;
    }

    .service-heading h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleets-section {
        padding: 40px 0;
    }

        .fleets-section h2 {
            font-size: 32px;
            margin: 0 auto 20px auto;
        }

        .fleets-section .fleets-card-main .fleet-bottom .fleet-para {
            font-size: 14px;
        }

    .contact-us {
        padding: 40px 0;
    }

        .contact-us .topcontact-sec h2 {
            font-size: 32px;
            margin: 0 auto 20px auto;
        }

        .contact-us .contact-info-box {
            padding: 20px 30px;
        }

            .contact-us .contact-info-box .cont-inner-box .text-box {
                padding-left: 10px;
            }

                .contact-us .contact-info-box .cont-inner-box .text-box .para span {
                    font-size: 14px;
                }

        .contact-us .main-Contact {
            padding: 20px 30px;
            margin-top: 20px;
        }

        .contact-us .CfotmInp .ininput {
            font-size: 14px;
        }

    .contact-Btn {
        padding: 8px 15px !important;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 180px;
    }

    .center-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .footer_ul {
        gap: 5px;
        padding: 2px;
        margin-top: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .last-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .right-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .socil-links {
        gap: 5px;
        margin-top: 10px;
    }

        .socil-links a {
            padding: 5px 10px;
        }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        height: 30vh;
    }

        .banner-section h2 {
            font-size: 32px;
            margin-top: 130px;
        }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .breadcrumb {
        margin-top: 10px;
    }

    .mission-div h2 {
        font-size: 24px;
    }

    .mission-div p {
        font-size: 14px;
    }

    .vision-div h2 {
        font-size: 24px;
    }

    .vision-div p {
        font-size: 14px;
    }

    .rout-section .rout-text-content h2 {
        font-size: 24px;
    }

    .rout-section .rout-text-content p {
        font-size: 14px;
    }

    .service-heading-inner p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .main-ner-content {
        padding: 0px;
    }

        .main-ner-content h1 {
            font-size: 24px;
            margin: 10px 0;
        }

        .main-ner-content p {
            font-size: 14px;
        }

        .main-ner-content ul li {
            font-size: 14px;
        }

    .main-ner-image img {
        height: auto;
    }

    .why-choose-section .why-choose-heading h2 {
        font-size: 32px;
        margin: 0 auto 20px auto;
    }

    .why-choose-card {
        height: auto;
        margin-bottom: 25px;
    }

    .choose-content-box h2 {
        font-size: 20px;
    }

    .choose-content-box p {
        font-size: 14px;
    }

    .highlighted-section {
        padding: 10px 0;
    }

        .highlighted-section .highlighted-text-box p {
            font-size: 14px;
        }

    .business-content-box p {
        font-size: 14px;
    }

    .business-content-box .service-contact-btn {
        font-size: 14px;
    }

    .navbar-light .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(232deg) brightness(103%) contrast(101%);
    }

    .hero-section .hero-image-content {
        display: none;
    }

    .booking-form-engine .custom-input-div i {
        top: 4px;
        right: 4px;
    }

    .header-sticky {
        background: #1d370f;
    }

    .navbar-collapse {
        padding: 10px 0 !important;
    }

    .service-main {
        margin-bottom: 25px;
    }

        .service-main .service-image {
            height: auto;
        }

    .fleets-section .fleets-card-main .fleet-top {
        width: 90%;
    }

    .mission-div {
        height: auto;
        margin-bottom: 25px;
    }

    .vision-div {
        height: auto;
    }
    .business-content-box{
        margin-bottom: 20px;
    }
    .main-ner-image {
        padding: 0px;
        margin-bottom: 10px;
    }
    .main-ner-content ul li{
        margin-bottom: 5px;
    }
    .main-ner-content ul{
        margin-bottom: 10px;
    }
    .header-btns {
        gap: 10px;
    }
    #lkbtn_lgout {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .logo {
        width: 100px;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 5px;
        padding: 10px 0;
    }

        .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
        }

    .header-btns .headerbtn-1 {
        padding: 6px 15px;
        font-size: 14px;
    }

    .header-btns .headerbtn-2 {
        padding: 6px 15px;
        font-size: 14px;
    }

    .hero-section .hero-left-content h2 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 10px;
    }

    .hero-section .hero-left-content p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 5px;
    }

    .hero-section .hero-left-content {
        margin-top: 0;
    }

    .hero-section {
        height: auto;
        padding: 17% 0 12%
    }

        .hero-section .hero-image-content img {
            height: 70svh;
        }

    .booking-form-engine {
        top: 20px;
    }

        .booking-form-engine h2 {
            font-size: 26px;
        }

        .booking-form-engine .custom-input-div .custom-input {
            font-size: 14px;
        }

    .hero-sectionbtn {
        padding: 9px;
        font-size: 14px;
    }

    .about-section {
        padding: 40px 0;
    }

        .about-section .about-text-content {
            padding: 0 0px;
            margin-top: 20px;
        }

            .about-section .about-text-content h2 {
                font-size: 32px;
            }

            .about-section .about-text-content p {
                font-size: 14px;
                margin-bottom: 5px;
            }

            .about-section .about-text-content .about-btn {
                padding: 8px 15px;
                font-size: 14px;
            }

    .philosophy-section .philosophy-main h2 {
        font-size: 32px;
    }

    .philosophy-section {
        padding: 40px 0;
    }

        .philosophy-section .philosophy-main p {
            font-size: 14px;
        }

    .services-section {
        padding: 40px 0;
    }

    .service-heading h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleets-section {
        padding: 40px 0;
    }

        .fleets-section h2 {
            font-size: 32px;
            margin: 0 auto 20px auto;
        }

        .fleets-section .fleets-card-main .fleet-bottom .fleet-para {
            font-size: 14px;
        }

    .contact-us {
        padding: 40px 0;
    }

        .contact-us .topcontact-sec h2 {
            font-size: 32px;
            margin: 0 auto 20px auto;
        }

        .contact-us .contact-info-box {
            padding: 20px 30px;
        }

            .contact-us .contact-info-box .cont-inner-box .text-box {
                padding-left: 10px;
            }

                .contact-us .contact-info-box .cont-inner-box .text-box .para span {
                    font-size: 14px;
                }

        .contact-us .main-Contact {
            padding: 20px 30px;
            margin-top: 20px;
        }

        .contact-us .CfotmInp .ininput {
            font-size: 14px;
        }

    .contact-Btn {
        padding: 8px 15px !important;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 180px;
    }

    .center-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .footer_ul {
        gap: 5px;
        padding: 2px;
        margin-top: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .last-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .right-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .socil-links {
        gap: 5px;
        margin-top: 10px;
    }

        .socil-links a {
            padding: 5px 10px;
        }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        height: 30vh;
    }

        .banner-section h2 {
            font-size: 32px;
            margin-top: 130px;
        }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .breadcrumb {
        margin-top: 10px;
    }

    .mission-div h2 {
        font-size: 24px;
    }

    .mission-div p {
        font-size: 14px;
    }

    .vision-div h2 {
        font-size: 24px;
    }

    .vision-div p {
        font-size: 14px;
    }

    .rout-section .rout-text-content h2 {
        font-size: 24px;
    }

    .rout-section .rout-text-content p {
        font-size: 14px;
    }

    .service-heading-inner p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .main-ner-content {
        padding: 0px;
    }

        .main-ner-content h1 {
            font-size: 24px;
            margin: 10px 0;
        }

        .main-ner-content p {
            font-size: 14px;
        }

        .main-ner-content ul li {
            font-size: 14px;
        }

    .main-ner-image img {
        height: auto;
    }

    .why-choose-section .why-choose-heading h2 {
        font-size: 32px;
        margin: 0 auto 20px auto;
    }

    .why-choose-card {
        height: auto;
        margin-bottom: 25px;
    }

    .choose-content-box h2 {
        font-size: 20px;
    }

    .choose-content-box p {
        font-size: 14px;
    }

    .highlighted-section {
        padding: 10px 0;
    }

        .highlighted-section .highlighted-text-box p {
            font-size: 14px;
        }

    .business-content-box p {
        font-size: 14px;
    }

    .business-content-box .service-contact-btn {
        font-size: 14px;
    }

    .navbar-light .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(232deg) brightness(103%) contrast(101%);
    }

    .hero-section .hero-image-content {
        display: none;
    }

    .booking-form-engine .custom-input-div i {
        top: 4px;
        right: 4px;
    }

    .header-sticky {
        background: #1d370f;
    }

    .navbar-collapse {
        padding: 10px 0 !important;
    }

    .service-main {
        margin-bottom: 25px;
    }

        .service-main .service-image {
            height: auto;
        }

    .fleets-section .fleets-card-main .fleet-top {
        width: 90%;
    }

    .mission-div {
        height: auto;
        margin-bottom: 25px;
    }

    .vision-div {
        height: auto;
    }

    .business-content-box {
        margin-bottom: 20px;
    }

    .main-ner-image {
        padding: 0px;
        margin-bottom: 10px;
    }

    .main-ner-content ul li {
        margin-bottom: 5px;
    }

    .main-ner-content ul {
        margin-bottom: 10px;
    }
    .header-btns {
        gap: 5px;
    }
    .sec-result .upper-list{
        display: none;
    }
    .sec-result .number-box {
        padding: 20px 0px;
    }
        .sec-result .number-box ul li .num-circle {
            position: relative;
        }
    .update-fleet-box .star-list {
        padding: 7px 0 7px;
    }

    .update-fleet-box .fleet-detail {
        border: none;
    }
    #lkbtn_lgout {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .logo {
        width: 100px;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 5px !important;
        padding: 10px 0;
    }

        .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
        }

    .header-btns .headerbtn-1 {
        padding: 6px 15px;
        font-size: 14px;
    }

    .header-btns .headerbtn-2 {
        padding: 6px 15px;
        font-size: 14px;
    }

    .hero-section .hero-left-content h2 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 10px;
    }

    .hero-section .hero-left-content p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 5px;
    }

    .hero-section .hero-left-content {
        margin-top: 12%;
    }

    .hero-section {
        height: auto;
        padding: 17% 0 12%
    }

        .hero-section .hero-image-content img {
            height: 70svh;
        }

    .booking-form-engine {
        top: 20px;
    }

        .booking-form-engine h2 {
            font-size: 26px;
        }

        .booking-form-engine .custom-input-div .custom-input {
            font-size: 14px;
        }

    .hero-sectionbtn {
        padding: 9px;
        font-size: 14px;
    }

    .about-section {
        padding: 40px 0;
    }

        .about-section .about-text-content {
            padding: 0 0px;
            margin-top: 20px;
        }

            .about-section .about-text-content h2 {
                font-size: 32px;
            }

            .about-section .about-text-content p {
                font-size: 14px;
                margin-bottom: 5px;
            }

            .about-section .about-text-content .about-btn {
                padding: 8px 15px;
                font-size: 14px;
            }

    .philosophy-section .philosophy-main h2 {
        font-size: 32px;
    }

    .philosophy-section {
        padding: 40px 0;
    }

        .philosophy-section .philosophy-main p {
            font-size: 14px;
        }

    .services-section {
        padding: 40px 0;
    }

    .service-heading h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .fleets-section {
        padding: 40px 0;
    }

        .fleets-section h2 {
            font-size: 32px;
            margin: 0 auto 20px auto;
        }

        .fleets-section .fleets-card-main .fleet-bottom .fleet-para {
            font-size: 14px;
        }

    .contact-us {
        padding: 40px 0;
    }

        .contact-us .topcontact-sec h2 {
            font-size: 32px;
            margin: 0 auto 20px auto;
        }

        .contact-us .contact-info-box {
            padding: 20px 30px;
        }

            .contact-us .contact-info-box .cont-inner-box .text-box {
                padding-left: 10px;
            }

                .contact-us .contact-info-box .cont-inner-box .text-box .para span {
                    font-size: 14px;
                }

        .contact-us .main-Contact {
            padding: 20px 30px;
            margin-top: 20px;
        }

        .contact-us .CfotmInp .ininput {
            font-size: 14px;
        }

    .contact-Btn {
        padding: 8px 15px !important;
        font-size: 14px;
    }

    .footer .footer-logo {
        width: 180px;
    }

    .center-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .footer_ul {
        gap: 5px;
        padding: 2px;
        margin-top: 5px;
    }

        .footer_ul .footer_li a {
            font-size: 14px;
        }

    .last-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .right-footer-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .socil-links {
        gap: 5px;
        margin-top: 10px;
    }

        .socil-links a {
            padding: 5px 10px;
        }

    .bottom-footer-content p {
        font-size: 14px;
    }

    .banner-section {
        height: 30vh;
    }

        .banner-section h2 {
            font-size: 32px;
            margin-top: 130px;
        }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .breadcrumb {
        margin-top: 10px;
    }

    .mission-div h2 {
        font-size: 24px;
    }

    .mission-div p {
        font-size: 14px;
    }

    .vision-div h2 {
        font-size: 24px;
    }

    .vision-div p {
        font-size: 14px;
    }

    .rout-section .rout-text-content h2 {
        font-size: 24px;
    }

    .rout-section .rout-text-content p {
        font-size: 14px;
    }

    .service-heading-inner p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .main-ner-content {
        padding: 0px;
    }

        .main-ner-content h1 {
            font-size: 24px;
            margin: 10px 0;
        }

        .main-ner-content p {
            font-size: 14px;
        }

        .main-ner-content ul li {
            font-size: 14px;
        }

    .main-ner-image img {
        height: auto;
    }

    .why-choose-section .why-choose-heading h2 {
        font-size: 32px;
        margin: 0 auto 20px auto;
    }

    .why-choose-card {
        height: auto;
        margin-bottom: 25px;
    }

    .choose-content-box h2 {
        font-size: 20px;
    }

    .choose-content-box p {
        font-size: 14px;
    }

    .highlighted-section {
        padding: 10px 0;
    }

        .highlighted-section .highlighted-text-box p {
            font-size: 14px;
        }

    .business-content-box p {
        font-size: 14px;
    }

    .business-content-box .service-contact-btn {
        font-size: 14px;
    }

    .navbar-light .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(232deg) brightness(103%) contrast(101%);
    }

    .hero-section .hero-image-content {
        display: none;
    }

    .booking-form-engine .custom-input-div i {
        top: 4px;
        right: 4px;
    }

    .header-sticky {
        background: #1d370f;
    }

    .navbar-collapse {
        padding: 10px 0 !important;
    }

    .service-main {
        margin-bottom: 25px;
    }

        .service-main .service-image {
            height: auto;
        }

    .fleets-section .fleets-card-main .fleet-top {
        width: 90%;
    }

    .mission-div {
        height: auto;
        margin-bottom: 25px;
    }

    .vision-div {
        height: auto;
    }

    .business-content-box {
        margin-bottom: 20px;
    }

    .main-ner-image {
        padding: 0px;
        margin-bottom: 10px;
    }

    .main-ner-content ul li {
        margin-bottom: 5px;
    }

    .main-ner-content ul {
        margin-bottom: 10px;
    }
    .header-btns {
        gap: 5px;
    }
    .sec-result .upper-list {
        display: none;
    }

    .sec-result .number-box {
        padding: 20px 0px;
    }

        .sec-result .number-box ul li .num-circle {
            position: relative;
        }
    .update-fleet-box .star-list {
        padding: 7px 0 7px;
    }
    .update-fleet-box .fleet-detail{
        border: none;
    }
    #lkbtn_lgout {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
