@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: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: Poppins, sans-serif;
}

html, body {
    scroll-behavior: auto;
}

.smooth-wrapper {
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(0, 0, 0);
}

::-webkit-scrollbar-thumb {
    background: #e0b864;
    border-radius: 20px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #b9964b;
    }

.custom-cursor {
    width: 30px;
    height: 30px;
    border: 1px solid #E0C06D;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.2s;
    z-index: 9999;
}

    .custom-cursor span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 4px;
        height: 4px;
        background-color: #E0C06D;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

a {
    text-decoration: none;
}

:root {
    --primary-dark: #1C183A;
    --primary-light: #462F75;
    --text-white: #ffffff;
    --text-black: #000000;
    --text-headingcolor: #462F75;
}

figure {
    margin: 0px;
    padding: 0px;
}

.btn:focus {
    outline: none;
}

ul, ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
    padding: 0px;
}

a, button {
    display: inline-block;
}

select {
    cursor: pointer;
    appearance: none;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

#scrollBtn {
    background: linear-gradient(135deg, #e1c46f, #e1be69);
    /* background: linear-gradient(135deg, rgb(227, 208, 122), rgb(224, 181, 96)) text; */
    color: #000000;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 15px;
    right: 15px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    cursor: pointer;
    z-index: 1000;
    transition: 0.3s ease-in-out;
    animation: 2s ease 0s infinite normal none running pulse-animation;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px var(--primary-dark);
    }

    100% {
        box-shadow: rgba(255, 255, 255, 0.267) 0px 0px 0px 20px;
    }
}

#MobileActionBtn {
    background: linear-gradient(135deg, #e1c46f, #e1be69);
    /* background: linear-gradient(135deg, rgb(227, 208, 122), rgb(224, 181, 96)) text; */
    color: #000000;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 15px;
    left: 15px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    cursor: pointer;
    z-index: 1000;
    transition: 0.3s ease-in-out;
    animation: 2s ease 0s infinite normal none running MobileActionBtnpulseanimation;
}

@keyframes MobileActionBtnpulseanimation {
    0% {
        box-shadow: 0 0 0 0px var(--primary-dark);
    }

    100% {
        box-shadow: rgba(255, 255, 255, 0.267) 0px 0px 0px 20px;
    }
}

.main-header {
    width: 100%;
}

    .main-header .mini-header {
        background: linear-gradient(135deg, rgb(235, 213, 122), rgb(224, 181, 96));
        padding: 10px 0px;
    }

        .main-header .mini-header .contact-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

            .main-header .mini-header .contact-info .mobile_number, .main-header .mini-header .contact-info .email_address {
                background: var(--text-white);
                padding: 3px 10px 3px 4px;
                border-radius: 25px;
            }

                .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
                    display: flex;
                    gap: 7px;
                    align-items: center;
                    color: var(--primary-dark);
                    font-size: 16px;
                    font-weight: 500;
                    transition: 0.4s ease-in-out;
                }

                    .main-header .mini-header .contact-info .mobile_number a:hover, .main-header .mini-header .contact-info .email_address a:hover {
                        color: #000000;
                    }

                    .main-header .mini-header .contact-info .mobile_number a i, .main-header .mini-header .contact-info .email_address a i {
                        background: linear-gradient(135deg, rgb(0, 0, 0), rgb(26, 26, 26), rgb(43, 43, 43));
                        border-radius: 50px;
                        width: 35px;
                        height: 35px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        color: var(--text-white);
                        border: 2px solid transparent;
                        transition: 0.4s ease-in-out;
                    }

                    .main-header .mini-header .contact-info .mobile_number a:hover i, .main-header .mini-header .contact-info .email_address a:hover i {
                        background: transparent;
                        border: 2px solid #000000;
                        color: #000000;
                    }

        .main-header .mini-header .social-icons {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            gap: 12px;
        }

            .main-header .mini-header .social-icons a {
                background: var(--text-white);
                border-radius: 50%;
                width: 35px;
                height: 35px;
                display: flex;
                justify-content: center;
                align-items: center;
                color: var(--primary-dark);
                border: 2px solid rgb(255, 255, 255);
                transition: 0.4s ease-in-out;
            }

                .main-header .mini-header .social-icons a:hover {
                    background: transparent;
                    color: var(--text-white);
                    border: 2px solid var(--text-white);
                }

    .main-header .navbar-expand-lg {
        padding: 15px 0px;
        background: linear-gradient(135deg, rgb(0, 0, 0), rgb(26, 26, 26), rgb(43, 43, 43));
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

        .main-header .navbar-expand-lg .header-logo {
            width: 150px;
            transition: 0.4s ease-in-out;
            border-radius: 8px;
        }

        .main-header .navbar-expand-lg .navbar-nav {
            gap: 30px;
        }

            .main-header .navbar-expand-lg .navbar-nav .nav-link {
                color: rgb(255, 255, 255);
                font-size: 16px;
                position: relative;
                overflow: hidden;
                font-weight: 500;
                transition: 0.4s ease-in-out;
            }

                .main-header .navbar-expand-lg .navbar-nav .nav-link::before {
                    content: "";
                    position: absolute;
                    height: 2px;
                    width: 0%;
                    bottom: 0px;
                    left: 0px;
                    background-color: #d8bc66;
                    transition: 0.4s ease-in-out;
                }

                .main-header .navbar-expand-lg .navbar-nav .nav-link:hover::before {
                    width: 100%;
                }

                .main-header .navbar-expand-lg .navbar-nav .nav-link::after {
                    content: "";
                    position: absolute;
                    height: 2px;
                    width: 0%;
                    top: 0px;
                    right: 0px;
                    background-color: #e5bc5b;
                    transition: 0.4s ease-in-out;
                }

                .main-header .navbar-expand-lg .navbar-nav .nav-link:hover::after {
                    width: 100%;
                }

                .main-header .navbar-expand-lg .navbar-nav .nav-link:hover {
                    color: #e5bc66;
                }

                .main-header .navbar-expand-lg .navbar-nav .nav-link.active {
                    color: rgb(229, 188, 102);
                }

.header_btn .custom-btn {
    color: var(--primary-light);
    text-transform: capitalize;
    text-decoration: none;
    border: 2px solid var(--primary-light);
    padding: 5px 5px 5px 12px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    background: transparent;
    position: relative;
    transition: 1s;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .header_btn .custom-btn:hover {
        color: var(--text-white);
    }

    .header_btn .custom-btn::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        top: 0px;
        left: -40px;
        transform: skewX(45deg);
        background-color: var(--primary-light);
        z-index: -1;
        transition: 1s;
    }

    .header_btn .custom-btn:hover::before {
        width: 160%;
    }

    .header_btn .custom-btn i {
        background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
        border-radius: 50px;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--text-white);
        border: 2px solid transparent;
        transition: 2s ease-in-out;
    }

    .header_btn .custom-btn:hover i {
        background: transparent;
        border: 2px solid var(--text-white);
        color: var(--text-white);
    }

.scroll {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 30;
    transition: 0.4s;
    left: 0px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(26, 26, 26), rgb(43, 43, 43));
    border-radius: 0px !important;
    border-width: medium !important;
    border-style: none !important;
    border-color: currentcolor !important;
    border-image: initial !important;
}

.button {
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: rgb(23, 23, 23);
    color: rgb(255, 255, 255);
    border-radius: 10rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem 0.75rem 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s;
    border: 1px solid rgb(255, 255, 255);
}

.button__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: rgb(159, 134, 58);
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.button:hover {
    background: linear-gradient(135deg, rgb(225, 193, 115), rgb(224, 181, 96));
    color: rgb(0, 0, 0);
}

    .button:hover .button__icon-wrapper {
        color: rgb(0, 0, 0);
    }

.button__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0px);
}

.hero-section {
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(26, 26, 26, 0.92), rgba(43, 43, 43, 0.95)), url("../images/heroBanner.jpg") center center / cover no-repeat fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    gap: 20px;
    min-height: 80vh;
    padding: 10rem 0px;
    height: auto;
}

    .hero-section::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, rgb(234 210 120 / 22%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(208 175 97 / 22%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .hero-section .hero-title {
        position: relative;
        width: 100%;
        margin-bottom: 70px;
    }

        .hero-section .hero-title h1 {
            font-size: 80px;
            font-weight: 700;
            color: rgb(255, 255, 255);
            position: relative;
            z-index: 1;
            /* text-align: center; */
        }

            .hero-section .hero-title h1 .textStrokes {
                color: rgb(226, 194, 108);
                display: inline-block;
            }

            .hero-section .hero-title h1 em {
                font-style: normal;
                background: linear-gradient(135deg, rgb(227, 208, 122), rgb(224, 181, 96)) text;
                -webkit-text-fill-color: transparent;
            }

    .hero-section .hero-image-content {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 35vh;
        border-radius: 250px;
        background: url("../images/heroBanner.jpg") center center / cover no-repeat;
        margin-top: 3rem;
    }

.cloud-divider {
    position: absolute;
    bottom: 1px;
    left: 0px;
    width: 100%;
    line-height: 0;
}

    .cloud-divider svg {
        display: block;
        width: 100%;
        height: 120px;
    }

.hero-section .hero-image-content .hero-car-image {
    width: 700px;
}

.heroBTN {
    display: flex;
    /* justify-content: center; */
    margin-top: 1.5rem;
}

    .heroBTN button {
        border: 1px solid white;
    }

.hero-bookingForm {
    width: 65%;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 35px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid rgb(213, 198, 123);
    margin-top: 60px;
    position: relative;
    top: -58px;
}

.tab-content {
    margin-top: 20px;
}

.component-title {
    width: 100%;
    position: absolute;
    z-index: 999;
    top: 30px;
    left: 0px;
    padding: 0px;
    margin: 0px;
    font-size: 1rem;
    font-weight: 700;
    color: rgb(136, 136, 136);
    text-align: center;
}

.tab-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 2px;
    background: linear-gradient(135deg, rgb(227, 208, 122), rgb(224, 181, 96));
    border-radius: 100px;
    width: fit-content;
    margin: 0px auto;
    color: black;
}

.indicator {
    content: "";
    width: 130px;
    height: 35px;
    background: rgb(23, 23, 23);
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 9;
    border: 1px solid rgb(226, 199, 112);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 3px 8px, rgba(0, 0, 0, 0.04) 0px 3px 1px;
    border-radius: 100px;
    transition: 0.2s ease-out;
}

.tab {
    width: 130px;
    height: 28px;
    position: absolute;
    z-index: 99;
    outline: none;
    opacity: 0;
}

.tab_label {
    width: 130px;
    height: 35px;
    position: relative;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px;
    font-size: 16px;
    cursor: pointer;
    color: rgb(255, 255, 255);
}

.tab--1:checked ~ .indicator {
    left: 2px;
}

.tab--2:checked ~ .indicator {
    left: calc(132px);
}

.input-container {
    position: relative;
    margin: 20px;
}

    .input-container i {
        width: 35px;
        height: 35px;
        font-size: 15px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, rgb(227, 208, 122), rgb(224, 181, 96));
        color: rgb(255, 255, 255);
        position: absolute;
        top: 3px;
        right: 5px;
    }

.input-field {
    display: block;
    width: 100%;
    padding: 10px 44px 10px 3px;
    font-size: 16px;
    border-width: medium medium 2px;
    border-style: none none solid;
    border-color: currentcolor currentcolor rgb(213, 198, 123);
    border-image: initial;
    outline: none;
    background-color: transparent;
}

.input-label {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 16px;
    color: rgba(140, 139, 139, 0);
    pointer-events: none;
    transition: 0.3s;
}

.input-highlight {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 2px;
    width: 0px;
    background-color: rgb(20, 20, 20);
    transition: 0.3s;
}

.input-field:focus + .input-label {
    top: -20px;
    font-size: 12px;
    color: rgb(0, 0, 0);
}

    .input-field:focus + .input-label + .input-highlight {
        width: 100%;
    }

.form_btn .custom-btn {
    color: var(--primary-light);
    text-transform: capitalize;
    text-decoration: none;
    border: 2px solid var(--primary-light);
    padding: 5px 5px 5px 12px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    background: transparent;
    position: relative;
    transition: 1s ease-in-out;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

    .form_btn .custom-btn:hover {
        color: var(--text-white);
    }

.form_btn .custom-btn {
    position: relative;
    z-index: 0;
}

    .form_btn .custom-btn::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        top: 0px;
        left: -40px;
        transform: skewX(45deg);
        background-color: var(--primary-light);
        transition: 1s ease-in-out;
        z-index: -1;
    }

    .form_btn .custom-btn > * {
        position: relative;
        z-index: 2;
    }

    .form_btn .custom-btn:hover::before {
        width: 160%;
    }

    .form_btn .custom-btn i {
        background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
        border-radius: 50px;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--text-white);
        border: 2px solid transparent;
        transition: 2s ease-in-out;
    }

    .form_btn .custom-btn:hover i {
        background: transparent;
        border: 2px solid var(--text-white);
        color: var(--text-white);
    }

.sec2-about {
    padding: 4rem;
    position: relative;
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(26, 26, 26), rgb(43, 43, 43));
    margin: 0rem;
}

    .sec2-about::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, rgb(234 210 120 / 22%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(208 175 97 / 22%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .sec2-about h2 {
        font-size: 100px;
        color: white;
        font-weight: 700;
    }

    .sec2-about em {
        font-style: normal;
        background: linear-gradient(135deg, rgb(227, 208, 122), rgb(224, 181, 96)) text;
        -webkit-text-fill-color: transparent;
    }

.aboutSp1 img {
    margin-left: 30px;
}

.sec2-about h2 img {
    max-width: 130px;
    border-radius: 20px;
}

.sec2-about .aboutContent p {
    color: var(--text-white);
    max-width: 900px;
    margin-top: 1rem;
}

.aboutBtn {
    margin-top: 1rem;
}

    .aboutBtn button {
        border: 1px solid white;
    }

.sectionSrv {
    position: relative;
    padding: 2rem 0px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgb(26, 26, 26), rgba(43, 43, 43, 0.72)) 0% 0% / cover, url("../images/serv-bg.jpg") center center no-repeat fixed;
    overflow: hidden;
}

    .sectionSrv::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, rgb(234 210 120 / 22%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(208 175 97 / 22%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

.topContentsrv h2 {
    font-size: 92px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

    .topContentsrv h2 img {
        max-width: 150px;
        border-radius: 25px;
    }

    .topContentsrv h2 em {
        font-style: normal;
        background: linear-gradient(135deg, rgb(227, 208, 122), rgb(224, 181, 96)) text;
        -webkit-text-fill-color: transparent;
    }

.topContentsrv p {
    max-width: 800px;
    text-align: center;
    margin: 0 auto 40px auto;
    color: white;
}

.sectionSrv .servCards {
    border: 1px solid rgb(203, 202, 202);
    border-radius: 35px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: white;
    margin: 12px 0px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(4px);
    transition: 0.3s ease-in-out;
}

    .sectionSrv .servCards:hover {
        transform: translateY(-10px);
    }

    .sectionSrv .servCards h3 {
        padding-bottom: 8px;
        font-weight: 600;
        font-size: 28px;
        color: #e1b761;
    }

    .sectionSrv .servCards p {
        font-size: 14px;
        color: #fff;
    }

    .sectionSrv .servCards img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 35px;
    }

.serbottomContent {
    padding: 0px 10px;
}

.secFleets {
    padding: 4rem 0px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(26, 26, 26, 0.92), rgba(43, 43, 43, 0.95)) 0% 0% / cover, 0% 0%, url("../images/fleetbg.jpeg") center center no-repeat fixed;
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(26, 26, 26), rgb(43, 43, 43));
    background-size: cover;
    position: relative;
}

    .secFleets::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, rgb(234 210 120 / 22%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(208 175 97 / 22%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .secFleets h2 {
        font-size: 92px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 22px;
        color: white;
    }

        .secFleets h2 img {
            max-width: 150px;
            border-radius: 25px;
        }

        .secFleets h2 em {
            font-style: normal;
            background: linear-gradient(135deg, rgb(200, 173, 255), rgb(227, 224, 255)) text;
            background: linear-gradient(135deg, rgb(227, 208, 122), rgb(224, 181, 96)) text;
            -webkit-text-fill-color: transparent;
        }

        .secFleets h2 span {
            /* color: transparent; */
            /* display: inline-block; */
            /* -webkit-text-stroke: 2px rgb(237, 227, 255); */
        }

.fleetTopContent p {
    max-width: 900px;
}

.fleetTopContent p {
    font-weight: 400;
    color: #fff;
}

.FleetsCard {
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgb(42, 26, 94) 0%, rgb(26, 15, 56) 60%, rgb(21, 13, 48) 100%);
    padding: 30px 20px;
    gap: 20px;
    border-radius: 20px;
    border-radius: 35px;
    align-items: center;
    border: 1px solid rgb(255 255 255);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(4px);
}

    .FleetsCard h3 {
        font-weight: 600;
        font-size: 28px;
    }

.fleetsRight {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.FleetsCard h3 {
    color: #e2c26d;
}

.FleetsCard p {
    color: var(--text-white);
}

.FleetsCard img {
    width: 370px;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, rgb(205 180 104 / 65%), rgb(0 0 0 / 90%), rgb(219 193 116 / 45%)) 0% 0% / cover, url(../images/serv-bg.jpg) center center no-repeat fixed;
    background-size: cover;
    border-radius: 20px;
    border-radius: 35px;
}

.fleetsRight .button {
    /* color: rgb(230, 218, 255);
    border: 0.15em solid rgb(226, 212, 255); */
}

.secFleets .swiper-wrapper {
    margin-top: 1rem;
}

.swiper-pagination-bullet {
    width: 16px !important;
    border-radius: 8px !important;
    transition: 0.4s ease-in-out !important;
    background: rgb(255, 255, 255) !important;
}

.swiper-pagination-bullet-active {
    background: rgb(217 181 106) !important;
    width: 35px !important;
}

.swiper-button-prev {
    right: 4% !important;
    left: unset !important;
    top: 6% !important;
}

.swiper-button-next {
    right: 0% !important;
    left: unset !important;
    top: 6% !important;
}

.swiper-button-next, .swiper-button-prev {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 42px;
    justify-content: center;
    position: absolute;
    width: 42px;
    z-index: 10;
    background: linear-gradient(160deg, rgb(229 188 102) 0%, rgb(212 196 127) 60%, rgb(222 182 99) 100%);
    padding: 12px;
    border-radius: 22px;
    border: 1px solid rgb(236, 226, 254);
    color: rgb(255, 255, 255) !important;
}

.sec6_contactform {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgb(26, 26, 26), rgba(43, 43, 43, 0.72)) 0% 0% / cover, url(../images/fleetbg.jpeg) center center no-repeat fixed;
    background-size: cover;
    padding: 3rem 0;
    position: relative;
}

    .sec6_contactform::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, rgb(234 210 120 / 22%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(208 175 97 / 22%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .sec6_contactform .contact-section {
        position: relative;
        z-index: 1;
        /*        max-width: 1280px;*/
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        gap: 0px;
        border-radius: 35px;
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.11) 0px 40px 100px;
        margin: 0rem auto;
        align-items: center;
        border: 2px solid rgb(199 164 90);
        backdrop-filter: blur(6px);
        /* background: linear-gradient(160deg, rgb(13, 11, 30) 0%, rgb(19, 15, 42) 45%, rgb(13, 11, 30) 100%); */
    }

@media (max-width: 860px) {
    .sec6_contactform .contact-section {
        grid-template-columns: 1fr;
    }

    .sec6_contactform .info-panel {
        order: -1;
    }
}

.sec6_contactform .info-panel {
    background: var(--surface);
    padding: 0px 10px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
    animation: 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.15s 1 normal forwards running slideL;
    border-right: 1px solid var(--border);
}

    .sec6_contactform .info-panel::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), var(--accent-hi), transparent);
    }

    .sec6_contactform .info-panel .bg-text {
        position: absolute;
        bottom: -20px;
        right: -10px;
        font-size: 180px;
        font-weight: 800;
        color: rgba(0, 229, 160, 0.024);
        line-height: 1;
        pointer-events: none;
        user-select: none;
        letter-spacing: -8px;
    }

.sec6_contactform .info-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

    .sec6_contactform .info-eyebrow::before {
        content: "";
        display: block;
        width: 20px;
        height: 1px;
        background: var(--accent);
        opacity: 0.5;
    }

.sec6_contactform .info-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text);
    margin-bottom: 16px;
}

    .sec6_contactform .info-title em {
        font-style: normal;
        color: var(--accent);
    }

.sec6_contactform .info-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted2);
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 320px;
}

.sec6_contactform .info-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 229, 160, 0.25), transparent);
    margin-bottom: 36px;
}

.sec6_contactform .info-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 44px;
}

.sec6_contactform .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sec6_contactform .info-icon-wrap {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 11px;
    background: rgba(0, 229, 160, 0.08);
    border: 1px solid rgba(0, 229, 160, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.sec6_contactform.info-item:hover .info-icon-wrap {
    background: rgba(0, 229, 160, 0.15);
    border-color: rgba(0, 229, 160, 0.4);
    transform: scale(1.06) rotate(-3deg);
}

.sec6_contactform .info-icon-wrap svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
}

.sec6_contactform .info-item-body {
    flex: 1 1 0%;
}

.sec6_contactform .info-item-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.sec6_contactform .info-item-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    transition: color 0.3s;
}

.sec6_contactform .info-item:hover .info-item-value {
    color: var(--accent-hi);
}

.sec6_contactform .social-row {
    display: flex;
    gap: 10px;
}

.sec6_contactform .social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

    .sec6_contactform .social-btn:hover {
        background: rgba(0, 229, 160, 0.1);
        border-color: rgba(0, 229, 160, 0.35);
        transform: translateY(-3px);
    }

    .sec6_contactform .social-btn svg {
        width: 16px;
        height: 16px;
        fill: var(--muted2);
        transition: fill 0.3s;
    }

    .sec6_contactform .social-btn:hover svg {
        fill: var(--accent);
    }

.sec6_contactform .form-panel {
    background: var(--primary-dark);
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(26, 26, 26), rgb(43, 43, 43));
    padding: 44px 42px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
    animation: 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.3s 1 normal forwards running slideR;
}

    .sec6_contactform .form-panel::after {
        content: "";
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgb(214 193 114 / 15%), #00000000 70%);
        pointer-events: none;
    }

.sec6_contactform .form-heading {
    font-size: 36px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 6px;
}

.sec6_contactform .form-sub {
    font-size: 13.5px;
    font-weight: 300;
    color: rgb(255, 255, 255);
    margin-bottom: 36px;
    line-height: 1.6;
}

.sec6_contactform .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
    margin-bottom: 18px;
}

.sec6_contactform .form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .sec6_contactform .form-group.full {
        grid-column: 1 / -1;
    }

.sec6_contactform .form-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    padding-left: 2px;
    transition: color 0.3s;
}

.sec6_contactform .input-wrap {
    position: relative;
}

.sec6_contactform .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    fill: rgb(17, 14, 38);
    transition: fill 0.3s;
    pointer-events: none;
}

.sec6_contactform .textarea-icon {
    top: 16px;
    transform: none;
}

.sec6_contactform .form-input, .sec6_contactform .form-textarea {
    width: 100%;
    background: rgb(255, 255, 255);
    border: 1px solid white;
    border-radius: 11px;
    color: rgb(0 0 0);
    font-size: 14px;
    font-weight: 300;
    padding: 13px 14px 13px 40px;
    outline: none;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    appearance: none;
}

.sec6_contactform .form-textarea {
    resize: none;
    height: 130px;
    padding-top: 14px;
    line-height: 1.6;
}

    .sec6_contactform .form-input::placeholder, .sec6_contactform .form-textarea::placeholder {
        color: var(--muted);
        font-weight: 300;
    }

    .sec6_contactform .form-input:focus, .sec6_contactform .form-textarea:focus {
        background: rgb(0 0 0);
        color: white;
        border-color: white !important;
    }

.sec6_contactform .form-group:focus-within .form-label {
    color: white;
}

.sec6_contactform .form-group:focus-within .input-icon {
    fill: white;
}

.sec6_contactform .form-select {
    width: 100%;
    background: var(--elevated);
    border: 1px solid var(--border);
    border-radius: 11px;
    color: var(--muted2);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 13px 14px 13px 40px;
    outline: none;
    cursor: pointer;
    appearance: none;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

    .sec6_contactform .form-select:focus {
        border-color: var(--border-focus);
        background: rgb(37, 37, 37);
        box-shadow: rgba(0, 229, 160, 0.08) 0px 0px 0px 3px;
    }

.sec6_contactform .select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    fill: var(--muted);
    pointer-events: none;
}

.sec6_contactform .char-count {
    text-align: right;
    font-size: 11px;
    color: var(--muted);
    padding-right: 2px;
    margin-top: -14px;
    margin-bottom: 6px;
}

.sec6_contactform .submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.sec6_contactform .privacy-note {
    font-size: 11.5px;
    font-weight: 300;
    color: white;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .sec6_contactform .privacy-note svg {
        width: 13px;
        height: 13px;
        fill: white;
        opacity: 0.7;
        flex-shrink: 0;
    }

.sec6_contactform .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-dark);
    color: rgb(255, 255, 255);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 14px 28px;
    border-radius: 12px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, transform 0.3s, gap 0.3s, box-shadow 0.3s;
}

    .sec6_contactform .submit-btn::before {
        content: "";
        position: absolute;
        inset: 0px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .sec6_contactform .submit-btn:hover {
        background: var(--accent-hi);
        transform: translateY(-2px);
        gap: 14px;
        box-shadow: rgba(0, 229, 160, 0.3) 0px 10px 28px;
    }

        .sec6_contactform .submit-btn:hover::before {
            opacity: 1;
        }

    .sec6_contactform .submit-btn:active {
        transform: translateY(0px);
        box-shadow: none;
    }

    .sec6_contactform .submit-btn svg {
        width: 15px;
        height: 15px;
        transition: transform 0.3s;
    }

    .sec6_contactform .submit-btn:hover svg {
        transform: translateX(3px);
    }

.sec6_contactform .success-msg {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(0, 229, 160, 0.08);
    border: 1px solid rgba(0, 229, 160, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 13.5px;
    color: var(--accent);
    margin-top: 16px;
}

    .sec6_contactform .success-msg svg {
        width: 18px;
        height: 18px;
        fill: var(--accent);
        flex-shrink: 0;
    }

.leftPanelBG {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 620px;
    border-radius: 0 35px 35px 0;
    background: url("../images/fleetbg.jpeg") center center / cover no-repeat;
}

    .leftPanelBG > div {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .leftPanelBG > div img {
            width: 70%;
            display: none;
            position: relative;
            bottom: -83px;
        }

/* .submit-row .button {
    border: 0.15em solid rgb(226, 205, 249);
    color: rgb(255, 255, 255);
} */

@keyframes slideL {
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes slideR {
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

footer {
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(26, 26, 26), rgb(43, 43, 43));
    padding: 2rem 0px;
    position: relative;
}

    footer::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, rgb(234 210 120 / 22%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(208 175 97 / 22%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

.footerLogo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footerLogo .social-icons {
        display: flex;
        gap: 12px;
    }

footer .footerLogo img {
    width: 100%;
    /* background-color: white; */
    /* padding: 0px 0px; */
    border-radius: 20px;
}

.footerLogo p {
    color: white;
    padding-top: 1rem;
}

.footerLinks {
    display: flex;
    justify-content: center;
}

    .footerLinks ul li a {
        color: white;
        padding: 4px 0px;
        display: flex;
        gap: 10px;
        align-items: center;
        transition: 0.3s ease-in-out;
    }

        .footerLinks ul li a i {
            background: rgb(223 193 109);
            height: 35px;
            width: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            border: 1px solid #ffffff00;
            color: rgb(0 0 0);
            transition: 0.3s ease-in-out;
        }

    .footerLinks .fa-house {
        width: 44px;
    }

    .footerLinks ul li a:hover {
        color: #ebcb6e;
    }

        .footerLinks ul li a:hover i {
            color: white;
            background: transparent !important;
            border: 1px solid #ffffff;
        }

    .footerLinks ul h3 {
        color: white;
        font-weight: 600;
        padding-bottom: 1rem;
    }

footer .social-icons a {
    background: #dfc16d;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    color: rgb(0 0 0);
    border: 1px solid #ffffff00;
    transition: 0.3s ease-in-out;
}

.addresUN i {
    width: 40px !important;
}

footer .social-icons a:hover {
    background: transparent;
    color: white;
}

footer .social-icons a:hover {
    border: 1px solid #ffffff;
}

.bottomFooter {
    display: flex;
    justify-content: space-between;
    color: white;
    border-top: 2px solid white;
    margin-top: 2.5rem;
    padding-top: 2rem;
}

    .bottomFooter a {
        color: white;
        transition: 0.3s ease-in-out;
    }

        .bottomFooter a:hover {
            color: rgb(223 193 109);
        }
/* inner pages banner css */
.banner-section {
    width: 100%;
    padding: 80px;
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(26, 26, 26), rgb(43, 43, 43));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .banner-section::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, rgb(234 210 120 / 22%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(208 175 97 / 22%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .banner-section h2 {
        font-size: 72px;
        font-weight: 700;
        color: #fff;
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.aboutSpan {
    color: transparent;
    display: inline-block;
    -webkit-text-stroke: 2px rgb(228 192 105);
}
/* inner pages banner css */
/* innerabout_section css */
.innerabout_section {
    width: 100%;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(26, 26, 26), rgb(43, 43, 43));
}

    .innerabout_section::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, rgb(234 210 120 / 22%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(208 175 97 / 22%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

.innerabout_content {
    width: 100%;
    padding: 0px 10px;
}

    .innerabout_content p {
        color: var(--text-white);
        margin-bottom: 1rem;
        font-size: 16px;
    }

.innerabout_image {
    width: 100%;
    border: 2px dashed rgb(228 192 105);
    border-radius: 20px;
    padding: 20px;
}

    .innerabout_image img {
        width: 100%;
        border-radius: 20px;
    }
/* innerabout_section css */
/* servicesInner */
.servicesInner {
    width: 100%;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(26, 26, 26), rgb(43, 43, 43));
}

    .servicesInner::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, rgb(234 210 120 / 22%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(208 175 97 / 22%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .servicesInner .aboutTopHeading h2 {
        font-size: 52px;
        letter-spacing: unset;
        margin-bottom: 1rem;
        color: #fff;
        font-weight: 700;
    }

.aboutSpan2 {
    color: transparent;
    display: inline-block;
    -webkit-text-stroke: 2px rgb(228 192 105);
}

.rightContent p {
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 16px;
}

.servicesInner .aboutTopHeading h2 .fillSpanBg {
    color: #efce55;
    -webkit-text-stroke: 0px #eecb4a;
}

.servicesInner .rightImg {
    right: 0px;
    max-width: unset;
}

    .servicesInner .rightImg img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

.servInnerCircle img {
    width: 40%;
    position: absolute;
    bottom: -80px;
    /* border: 7px solid #6095a8; */
    box-shadow: rgb(99 99 99 / 24%) 0px 2px 8px 0px;
    border-radius: 500px;
}

/* .servicesInner .secAbout {
    padding-bottom: 7rem;
} */

.rightImg img {
    border-radius: 50px;
    width: 100%;
    box-shadow: rgb(99 99 99 / 24%) 0px 2px 8px 0px;
    border: 2px dashed rgb(228 192 105);
    padding: 10px;
}

.endrightimage {
    display: flex;
    justify-content: flex-end;
}

.sectionFleets {
    background: none;
}

    .sectionFleets .FleetsCard {
        border: 2px solid #99979d;
    }

.rightContent {
    margin-bottom: 5rem;
}

.aboutleftIMGDiv {
    margin-bottom: 5rem;
}
/* servicesInner */
.sec-result {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    /*    margin-top: 140px;*/
}

    .sec-result::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, rgb(226 189 102 / 65%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(225 186 100 / 50%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(43 35 84 / 5%) 0%, transparent 70%);
    }

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        background: linear-gradient(135deg, rgb(235, 213, 122), rgb(224, 181, 96));
        border-radius: 100px;
    }

        .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: 62px;
                    height: 60px;
                    object-fit: contain;
                    background: #fff;
                    border-radius: 50%;
                    padding: 7px;
                }

            .sec-result .upper-list li .text-box {
                padding: 0 10px;
            }

                .sec-result .upper-list li .text-box h6 {
                    font-size: 16px;
                    font-weight: 600;
                    color: #000000;
                }

                .sec-result .upper-list li .text-box p {
                    font-size: 14px;
                    color: #000000;
                }

    .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: #edf2fa00;
                        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;
                        border: 2px solid #e7ca71;
                    }

                    .sec-result .number-box ul li .num-circle p {
                        font-size: 14px;
                        margin-top: 15px;
                        text-transform: uppercase;
                        color: #000;
                    }

    .sec-result .completed {
        background: linear-gradient(135deg, rgb(235, 213, 122), rgb(224, 181, 96));
        color: #000000 !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: #edf2fa00;
    margin: 20px 0;
    padding: 30px 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 15px;
    border: 2px solid #32245a;
}

    .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: #ffc107;
                padding: 4px;
                border-radius: 5px;
                width: 28px;
            }

    .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: 5px 10px;
                border: none;
                margin: 5px 0;
                border-radius: 6px;
                font-size: 12px;
                background: linear-gradient(135deg, rgb(235, 213, 122), rgb(224, 181, 96));
                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: #edf2fa00;
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 15px;
    border: 2px solid #3a2864;
}

    .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 {
    width: 400px !important;
    height: 250px !important;
    overflow-y: scroll;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
}

    .ui-menu .ui-menu-item-wrapper:hover {
        background: linear-gradient(135deg, rgb(235, 213, 122), rgb(224, 181, 96)) !important;
        color: #fff !important;
    }

.Passenger-Information {
    background: #edf2fa00;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 15px;
    border: 2px solid #3a2864;
}

    .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%;
}

/*.extra-sec-padding {
    margin-top: 150px;
}*/

/*#lkbtn_lgout {
    padding: 0;
}*/

.section-padding {
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .section-padding::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, rgb(226 187 101 / 42%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(226 188 101 / 50%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(43 35 84 / 5%) 0%, transparent 70%);
    }

.form-label sup {
    color: red;
    font-size: 20px;
    margin-left: 3px;
}

sup {
    top: -0.1em !important;
}

@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
        font-size: 14px;
    }

        .main-header .mini-header .contact-info .mobile_number a i, .main-header .mini-header .contact-info .email_address a i {
            width: 30px;
            height: 30px;
            font-size: 13px;
        }

    .main-header .mini-header {
        padding: 5px 0px;
    }

        .main-header .mini-header .social-icons a {
            width: 30px;
            height: 30px;
            font-size: 13px;
        }

    .main-header .navbar-expand-lg .header-logo {
        width: 120px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 15px;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
        }

    .button {
        padding: 0.50rem 1.2rem 0.50rem 10px;
        font-size: 14px;
    }

    .hero-section {
        min-height: 68vh;
        padding: 0rem 0px;
    }

        .hero-section .hero-title {
            margin-bottom: 0;
        }

            .hero-section .hero-title h1 {
                font-size: 52px;
            }

        .hero-section .hero-image-content {
            height: 25vh;
            border-radius: 25px;
            margin-top: 0rem;
        }

    .hero-bookingForm {
        width: 75%;
        padding: 25px 10px;
        border-radius: 15px;
    }

    .input-container {
        margin: 15px 10px;
    }

    .input-field {
        padding: 8px 44px 8px 3px;
        font-size: 14px;
    }

    .input-container i {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .tab_label {
        font-size: 14px;
    }

    .sec2-about {
        padding: 2rem;
    }

        .sec2-about h2 img {
            max-width: 80px;
            border-radius: 10px;
        }

        .sec2-about h2 {
            font-size: 42px;
        }

        .sec2-about .aboutContent p {
            max-width: 100%;
            font-size: 14px;
        }

    .topContentsrv h2 img {
        max-width: 120px;
        border-radius: 10px;
    }

    .topContentsrv h2 {
        font-size: 42px;
    }

    .topContentsrv p {
        max-width: 550px;
        margin: 0 auto 20px auto;
        font-size: 14px;
    }

    .sectionSrv .servCards {
        border-radius: 15px;
        padding: 10px;
    }

        .sectionSrv .servCards img {
            height: 200px;
            border-radius: 15px;
        }

    .serbottomContent {
        padding: 0px 5px;
    }

    .sectionSrv .servCards p {
        font-size: 12px;
    }

    .sectionSrv .servCards h3 {
        font-size: 20px;
    }

    .secFleets h2 img {
        max-width: 120px;
        border-radius: 10px;
    }

    .secFleets h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .fleetTopContent p {
        font-size: 14px;
    }

    .FleetsCard {
        padding: 20px 12px;
        gap: 10px;
        border-radius: 15px;
    }

        .FleetsCard img {
            width: 100%;
            height: 180px;
            border-radius: 15px;
        }

    .fleetsRight {
        gap: 7px;
    }

    .FleetsCard h3 {
        font-size: 20px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform .contact-section {
        display: block;
    }

    .sec6_contactform .info-panel {
        display: none;
        padding: 30px 25px;
    }

    .sec6_contactform .form-heading {
        font-size: 28px;
    }

    .sec6_contactform .form-sub {
        font-size: 13.5px;
        margin-bottom: 20px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        padding: 10px 10px 10px 40px;
    }

    .footerLogo p {
        padding-top: 0.5rem;
        font-size: 14px;
    }

    .footerLogo .social-icons {
        gap: 6px;
    }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .footerLinks ul h3 {
        padding-bottom: 0.5rem;
        font-size: 24px;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px;
        font-size: 14px;
    }

    .footerLinks ul li a {
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1rem;
        padding-top: 1rem;
    }

        .bottomFooter p {
            font-size: 14px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    .banner-section {
        padding: 40px 0;
    }

        .banner-section h2 {
            font-size: 52px;
        }

    .cloud-divider svg {
        height: 60px;
    }

    .breadcrumb {
        margin-top: 10px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .innerabout_section {
        padding: 4rem 0;
    }

    .innerabout_image {
        border-radius: 10px;
        padding: 10px;
    }

        .innerabout_image img {
            border-radius: 10px;
        }

    .innerabout_content p {
        margin-bottom: 0.5rem;
        font-size: 14px;
    }

    .servicesInner {
        padding: 3rem 0;
    }

    .rightContent {
        margin-bottom: 2rem;
    }

    .aboutleftIMGDiv {
        margin-bottom: 2rem;
    }

    .servicesInner .aboutTopHeading h2 {
        font-size: 24px;
        margin-bottom: 0.5rem;
    }

    .rightContent p {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .rightImg img {
        border-radius: 25px;
    }

    .servicesInner .rightImg img {
        height: 350px;
    }

    .ui-menu {
        width: 358px !important;
        font-size: 13px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
        font-size: 14px;
    }

        .main-header .mini-header .contact-info .mobile_number a i, .main-header .mini-header .contact-info .email_address a i {
            width: 30px;
            height: 30px;
            font-size: 13px;
        }

    .main-header .mini-header {
        padding: 5px 0px;
    }

        .main-header .mini-header .social-icons a {
            width: 30px;
            height: 30px;
            font-size: 13px;
        }

    .main-header .navbar-expand-lg .header-logo {
        width: 120px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 0px;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
        }

    .button {
        padding: 0.50rem 1.2rem 0.50rem 10px;
        font-size: 14px;
    }

    .hero-section {
        min-height: 82vh;
        padding: 0rem 0px 100px;
    }

        .hero-section .hero-title {
            margin-bottom: 150px;
            text-align: center;
        }

            .hero-section .hero-title h1 {
                font-size: 52px;
            }

        .hero-section .hero-image-content {
            height: 25vh;
            border-radius: 25px;
            margin-top: 0rem;
        }

    .hero-bookingForm {
        width: 75%;
        padding: 25px 10px;
        border-radius: 15px;
    }

    .input-container {
        margin: 15px 10px;
    }

    .input-field {
        padding: 8px 44px 8px 3px;
        font-size: 14px;
    }

    .input-container i {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .tab_label {
        font-size: 14px;
    }

    .sec2-about {
        padding: 2rem;
    }

        .sec2-about h2 img {
            max-width: 80px;
            border-radius: 10px;
        }

        .sec2-about h2 {
            font-size: 42px;
        }

        .sec2-about .aboutContent p {
            max-width: 100%;
            font-size: 14px;
        }

    .topContentsrv h2 img {
        max-width: 120px;
        border-radius: 10px;
    }

    .topContentsrv h2 {
        font-size: 42px;
    }

    .topContentsrv p {
        max-width: 550px;
        margin: 0 auto 20px auto;
        font-size: 14px;
    }

    .sectionSrv .servCards {
        border-radius: 15px;
        padding: 10px;
    }

        .sectionSrv .servCards img {
            height: 200px;
            border-radius: 15px;
        }

    .serbottomContent {
        padding: 0px 5px;
    }

    .sectionSrv .servCards p {
        font-size: 12px;
    }

    .sectionSrv .servCards h3 {
        font-size: 20px;
    }

    .secFleets h2 img {
        max-width: 120px;
        border-radius: 10px;
    }

    .secFleets h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .fleetTopContent p {
        font-size: 14px;
    }

    .FleetsCard {
        padding: 20px 12px;
        gap: 10px;
        border-radius: 15px;
    }

        .FleetsCard img {
            width: 100%;
            height: 180px;
            border-radius: 15px;
        }

    .fleetsRight {
        gap: 7px;
    }

    .FleetsCard h3 {
        font-size: 20px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform .contact-section {
        display: block;
    }

    .sec6_contactform .info-panel {
        display: none;
        padding: 30px 25px;
    }

    .sec6_contactform .form-heading {
        font-size: 28px;
    }

    .sec6_contactform .form-sub {
        font-size: 13.5px;
        margin-bottom: 20px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        padding: 10px 10px 10px 40px;
    }

    .footerLogo p {
        padding-top: 0.5rem;
        font-size: 14px;
    }

    .footerLogo .social-icons {
        gap: 6px;
    }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .footerLinks ul h3 {
        padding-bottom: 0.5rem;
        font-size: 24px;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px;
        font-size: 14px;
    }

    .footerLinks ul li a {
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1rem;
        padding-top: 1rem;
    }

        .bottomFooter p {
            font-size: 14px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    .banner-section {
        padding: 40px 0;
    }

        .banner-section h2 {
            font-size: 52px;
        }

    .cloud-divider svg {
        height: 60px;
    }

    .breadcrumb {
        margin-top: 10px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .innerabout_section {
        padding: 4rem 0;
    }

    .innerabout_image {
        border-radius: 10px;
        padding: 10px;
    }

        .innerabout_image img {
            border-radius: 10px;
        }

    .innerabout_content p {
        margin-bottom: 0.5rem;
        font-size: 14px;
    }

    .servicesInner {
        padding: 3rem 0;
    }

    .rightContent {
        margin-bottom: 2rem;
    }

    .aboutleftIMGDiv {
        margin-bottom: 2rem;
    }

    .servicesInner .aboutTopHeading h2 {
        font-size: 24px;
        margin-bottom: 0.5rem;
    }

    .rightContent p {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .rightImg img {
        border-radius: 25px;
    }

    .servicesInner .rightImg img {
        height: 350px;
    }

    .ui-menu {
        width: 358px !important;
        font-size: 13px !important;
    }

    .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(0%) saturate(7481%) hue-rotate(100deg) brightness(107%) contrast(105%);
    }

    .main-header .mini-header .contact-info {
        justify-content: center;
        gap: 10px;
    }

    .main-header .mini-header .social-icons {
        justify-content: center;
        margin-top: 10px;
        gap: 8px;
    }

    .navbar-collapse {
        padding: 15px 0;
    }

    .heroBTN {
        justify-content: center;
    }

    .swiper-button-prev {
        right: 7% !important;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
        font-size: 14px;
    }

        .main-header .mini-header .contact-info .mobile_number a i, .main-header .mini-header .contact-info .email_address a i {
            width: 30px;
            height: 30px;
            font-size: 13px;
        }

    .main-header .mini-header {
        padding: 5px 0px;
    }

        .main-header .mini-header .social-icons a {
            width: 30px;
            height: 30px;
            font-size: 13px;
        }

    .main-header .navbar-expand-lg .header-logo {
        width: 120px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 0px;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
        }

    .button {
        padding: 0.50rem 1.2rem 0.50rem 10px;
        font-size: 14px;
    }

    .hero-section {
        min-height: 82vh;
        padding: 0rem 0px 100px;
    }

        .hero-section .hero-title {
            margin-bottom: 150px;
            text-align: center;
        }

            .hero-section .hero-title h1 {
                font-size: 52px;
            }

        .hero-section .hero-image-content {
            height: 25vh;
            border-radius: 25px;
            margin-top: 0rem;
        }

    .hero-bookingForm {
        width: 75%;
        padding: 25px 10px;
        border-radius: 15px;
    }

    .input-container {
        margin: 15px 10px;
    }

    .input-field {
        padding: 8px 44px 8px 3px;
        font-size: 14px;
    }

    .input-container i {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .tab_label {
        font-size: 14px;
    }

    .sec2-about {
        padding: 2rem;
    }

        .sec2-about h2 img {
            max-width: 80px;
            border-radius: 10px;
        }

        .sec2-about h2 {
            font-size: 42px;
        }

        .sec2-about .aboutContent p {
            max-width: 100%;
            font-size: 14px;
        }

    .topContentsrv h2 img {
        max-width: 120px;
        border-radius: 10px;
    }

    .topContentsrv h2 {
        font-size: 42px;
    }

    .topContentsrv p {
        max-width: 550px;
        margin: 0 auto 20px auto;
        font-size: 14px;
    }

    .sectionSrv .servCards {
        border-radius: 15px;
        padding: 10px;
    }

        .sectionSrv .servCards img {
            height: 200px;
            border-radius: 15px;
        }

    .serbottomContent {
        padding: 0px 5px;
    }

    .sectionSrv .servCards p {
        font-size: 12px;
    }

    .sectionSrv .servCards h3 {
        font-size: 20px;
    }

    .secFleets h2 img {
        max-width: 120px;
        border-radius: 10px;
    }

    .secFleets h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .fleetTopContent p {
        font-size: 14px;
    }

    .FleetsCard {
        padding: 20px 12px;
        gap: 10px;
        border-radius: 15px;
    }

        .FleetsCard img {
            width: 100%;
            height: 180px;
            border-radius: 15px;
        }

    .fleetsRight {
        gap: 7px;
    }

    .FleetsCard h3 {
        font-size: 20px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform .contact-section {
        display: block;
    }

    .sec6_contactform .info-panel {
        display: none;
        padding: 30px 25px;
    }

    .sec6_contactform .form-heading {
        font-size: 28px;
    }

    .sec6_contactform .form-sub {
        font-size: 13.5px;
        margin-bottom: 20px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        padding: 10px 10px 10px 40px;
    }

    .footerLogo p {
        padding-top: 0.5rem;
        font-size: 14px;
    }

    .footerLogo .social-icons {
        gap: 6px;
    }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .footerLinks ul h3 {
        padding-bottom: 0.5rem;
        font-size: 24px;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px;
        font-size: 14px;
    }

    .footerLinks ul li a {
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1rem;
        padding-top: 1rem;
    }

        .bottomFooter p {
            font-size: 14px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    .banner-section {
        padding: 40px 0;
    }

        .banner-section h2 {
            font-size: 52px;
        }

    .cloud-divider svg {
        height: 60px;
    }

    .breadcrumb {
        margin-top: 10px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .innerabout_section {
        padding: 4rem 0;
    }

    .innerabout_image {
        border-radius: 10px;
        padding: 10px;
    }

        .innerabout_image img {
            border-radius: 10px;
        }

    .innerabout_content p {
        margin-bottom: 0.5rem;
        font-size: 14px;
    }

    .servicesInner {
        padding: 3rem 0;
    }

    .rightContent {
        margin-bottom: 2rem;
    }

    .aboutleftIMGDiv {
        margin-bottom: 2rem;
    }

    .servicesInner .aboutTopHeading h2 {
        font-size: 24px;
        margin-bottom: 0.5rem;
    }

    .rightContent p {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .rightImg img {
        border-radius: 25px;
    }

    .servicesInner .rightImg img {
        height: 350px;
    }

    .ui-menu {
        width: 358px !important;
        font-size: 13px !important;
    }

    .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(0%) saturate(7481%) hue-rotate(100deg) brightness(107%) contrast(105%);
    }

    .main-header .mini-header .contact-info {
        justify-content: center;
        gap: 10px;
    }

    .main-header .mini-header .social-icons {
        justify-content: center;
        margin-top: 10px;
        gap: 8px;
    }

    .navbar-collapse {
        padding: 15px 0;
    }

    .heroBTN {
        justify-content: center;
    }

    .swiper-button-prev {
        right: 7% !important;
    }

    .sec6_contactform .form-grid {
        grid-template-columns: revert;
        gap: 14px 0;
        margin-bottom: 10px;
    }

    .sec6_contactform .form-panel {
        padding: 25px 20px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
        font-size: 14px;
    }

        .main-header .mini-header .contact-info .mobile_number a i, .main-header .mini-header .contact-info .email_address a i {
            width: 30px;
            height: 30px;
            font-size: 13px;
        }

    .main-header .mini-header {
        padding: 5px 0px;
    }

        .main-header .mini-header .social-icons a {
            width: 30px;
            height: 30px;
            font-size: 13px;
        }

    .main-header .navbar-expand-lg .header-logo {
        width: 120px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 0px;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
            width: f;
        }

    .button {
        padding: 0.50rem 1.2rem 0.50rem 10px;
        font-size: 14px;
    }

    .hero-section {
        min-height: 82vh;
        padding: 0rem 0px 100px;
    }

        .hero-section .hero-title {
            margin-bottom: 150px;
            text-align: center;
        }

            .hero-section .hero-title h1 {
                font-size: 36px;
            }

        .hero-section .hero-image-content {
            height: 25vh;
            border-radius: 25px;
            margin-top: 0rem;
        }

    .hero-bookingForm {
        width: 85%;
        padding: 25px 10px;
        border-radius: 15px;
    }

    .input-container {
        margin: 15px 10px;
    }

    .input-field {
        padding: 8px 44px 8px 3px;
        font-size: 14px;
    }

    .input-container i {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .tab_label {
        font-size: 14px;
    }

    .sec2-about {
        padding: 2rem;
    }

        .sec2-about h2 img {
            max-width: 60px;
            border-radius: 10px;
            margin-left: 0;
        }

        .sec2-about h2 {
            font-size: 36px;
        }

        .sec2-about .aboutContent p {
            max-width: 100%;
            font-size: 14px;
        }

    .topContentsrv h2 img {
        max-width: 120px;
        border-radius: 10px;
    }

    .topContentsrv h2 {
        font-size: 42px;
    }

    .topContentsrv p {
        max-width: 550px;
        margin: 0 auto 20px auto;
        font-size: 14px;
    }

    .sectionSrv .servCards {
        border-radius: 15px;
        padding: 10px;
    }

        .sectionSrv .servCards img {
            height: 200px;
            border-radius: 15px;
        }

    .serbottomContent {
        padding: 0px 5px;
    }

    .sectionSrv .servCards p {
        font-size: 12px;
    }

    .sectionSrv .servCards h3 {
        font-size: 20px;
    }

    .secFleets h2 img {
        max-width: 120px;
        border-radius: 10px;
    }

    .secFleets h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .fleetTopContent p {
        font-size: 14px;
    }

    .FleetsCard {
        padding: 20px 12px;
        gap: 10px;
        border-radius: 15px;
    }

        .FleetsCard img {
            width: 370px;
            height: 220px;
            border-radius: 15px;
        }

    .fleetsRight {
        gap: 7px;
    }

    .FleetsCard h3 {
        font-size: 20px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform .contact-section {
        display: block;
    }

    .sec6_contactform .info-panel {
        display: none;
        padding: 30px 25px;
    }

    .sec6_contactform .form-heading {
        font-size: 28px;
    }

    .sec6_contactform .form-sub {
        font-size: 13.5px;
        margin-bottom: 20px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        padding: 10px 10px 10px 40px;
    }

    .footerLogo p {
        padding-top: 0.5rem;
        font-size: 14px;
    }

    .footerLogo .social-icons {
        gap: 6px;
    }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .footerLinks ul h3 {
        padding-bottom: 0.5rem;
        font-size: 24px;
        margin-top: 20px;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px !important;
        font-size: 14px;
    }

    .footerLinks ul li a {
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1rem;
        padding-top: 1rem;
        flex-direction: column;
        align-items: center;
    }

        .bottomFooter p {
            font-size: 14px;
            margin-bottom: 6px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    .banner-section {
        padding: 40px 0;
    }

        .banner-section h2 {
            font-size: 52px;
        }

    .cloud-divider svg {
        height: 60px;
    }

    .breadcrumb {
        margin-top: 10px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .innerabout_section {
        padding: 4rem 0;
    }

    .innerabout_image {
        border-radius: 10px;
        padding: 10px;
    }

        .innerabout_image img {
            border-radius: 10px;
        }

    .innerabout_content p {
        margin-bottom: 0.5rem;
        font-size: 14px;
    }

    .servicesInner {
        padding: 3rem 0;
    }

    .rightContent {
        margin-bottom: 2rem;
    }

    .aboutleftIMGDiv {
        margin-bottom: 2rem;
    }

    .servicesInner .aboutTopHeading h2 {
        font-size: 24px;
        margin-bottom: 0.5rem;
    }

    .rightContent p {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .rightImg img {
        border-radius: 25px;
    }

    .servicesInner .rightImg img {
        height: 350px;
    }

    .ui-menu {
        width: 298px !important;
        font-size: 13px !important;
    }

    .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(0%) saturate(7481%) hue-rotate(100deg) brightness(107%) contrast(105%);
    }

    .main-header .mini-header .contact-info {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .main-header .mini-header .social-icons {
        justify-content: center;
        margin-top: 10px;
        gap: 8px;
    }

    .navbar-collapse {
        padding: 15px 0;
    }

    .heroBTN {
        justify-content: center;
        margin-top: 10px;
    }

    .swiper-button-prev {
        right: 13% !important;
    }

    .sec6_contactform .form-grid {
        grid-template-columns: revert;
        gap: 14px 0;
        margin-bottom: 10px;
    }

    .sec6_contactform .form-panel {
        padding: 25px 20px;
    }

    .footerLinks {
        justify-content: flex-start;
    }

    .sec-result .upper-list {
        display: none;
    }

    .sec-result .number-box {
        padding: 10px 0px;
    }

        .sec-result .number-box ul li .num-circle {
            position: relative;
        }

    .sec-result .for-line::before {
        width: 50%;
        left: 78%;
    }

    .update-fleet-box .fleet-detail {
        border-right: none;
        border-left: none;
    }

    .banner-section::before {
        background: radial-gradient(160px 150px at 90% -10%, rgb(234 210 120 / 22%) 0%, transparent 60%), radial-gradient(150px 150px at -5% 90%, rgb(208 175 97 / 22%) 0%, transparent 60%), radial-gradient(150px 150px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .section-padding::before {
        background: radial-gradient(150px 150px at 90% -10%, rgb(226 187 101 / 42%) 0%, transparent 60%), radial-gradient(150px 150px at -5% 90%, rgb(226 188 101 / 50%) 0%, transparent 60%), radial-gradient(150px 150px, rgb(43 35 84 / 5%) 0%, transparent 70%);
    }
}
