@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 #e1c773;
    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: #e1c773;
        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, rgb(251 199 151), rgb(230 161 3));
    /* 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(251 199 151), rgb(230 161 3)); /* 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%;
    /* background: linear-gradient(135deg, rgb(177 199 213 / 85%), rgb(176 198 212 / 80%), rgb(173 197 213 / 93%)), url(../images/heroBanner.jpg) center center / cover no-repeat fixed; */
    /* background: linear-gradient(135deg, rgb(255 255 255 / 44%), rgb(176 198 212 / 37%), rgb(255 255 255 / 47%)), url(../images/heroBanner2.jpg) center center / cover no-repeat fixed; */
    position: relative;
    z-index: 22;
}

    .main-header .mini-header {
        background: linear-gradient(135deg, rgb(139 188 220), rgb(210 208 206));
        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(6 78 119), rgb(6 78 119), rgb(6 78 119));
                        background: linear-gradient(135deg, rgb(251 199 151), rgb(230 161 3));
                        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 #064e77;
                        color: #064e77;
                    }

        .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: #edae37;
                border: 2px solid rgb(255, 255, 255);
                transition: 0.4s ease-in-out;
            }

                .main-header .mini-header .social-icons a:hover {
                    background: #064e77;
                    color: #ffffff;
                    border: 2px solid var(--text-white);
                }

    .main-header .navbar-expand-lg {
        padding: 15px 15px;
        background: linear-gradient(135deg, rgb(255 255 255), rgb(215 241 255), rgb(255 255 255));
        backdrop-filter: blur(10px);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        border-radius: 75px;
        margin: 1rem 0;
    }

        .main-header .navbar-expand-lg .header-logo {
            width: 150px;
            transition: 0.4s ease-in-out;
            border-radius: 25px;
        }

        .main-header .navbar-expand-lg .navbar-nav {
            gap: 30px;
        }

            .main-header .navbar-expand-lg .navbar-nav .nav-link {
                color: rgb(0 0 0);
                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: #397ca9;
                    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: #397ca9;
                    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: #397ca9;
                }

                .main-header .navbar-expand-lg .navbar-nav .nav-link.active {
                    color: #397ca9;
                }

.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;
    margin: 0 !important;
    border-image: initial !important;
}

button {
    background: #064e77;
    border: none;
    padding: 8px 13px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all .3s ease-in-out;
    display: flex;
    gap: 10px;
}

    button:hover {
        background-color: #ffffff;
        color: #064e77;
        border: 2px solid #064e77;
    }

    button i {
        background: white;
        height: 25px;
        width: 25px !IMPORTANT;
        color: black;
        transition: all .3s ease-in-out;
        display: flex !important;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        transform: rotate(270deg);
    }

    button:hover i {
        background-color: #064e77;
        color: white;
    }

.form_btn .button {
    background: #064e77;
    border: none;
    padding: 8px 13px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all .3s ease-in-out;
    display: flex;
    gap: 10px;
    margin: 0 10px;
    width: fit-content;
}

    .form_btn .button:hover {
        background-color: #ffffff;
        color: #064e77;
        border: 2px solid #064e77;
    }

    .form_btn .button i {
        background: white;
        height: 25px;
        width: 25px !IMPORTANT;
        color: black;
        transition: all .3s ease-in-out;
        display: flex !important;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        transform: rotate(270deg);
    }

    .form_btn .button:hover i {
        background-color: #064e77;
        color: white;
    }

.submit-row .button {
    background: #064e77;
    border: none;
    padding: 8px 13px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all .3s ease-in-out;
    display: flex;
    gap: 10px;
    margin: 0 10px;
    width: fit-content;
}

    .submit-row .button:hover {
        background-color: #ffffff;
        color: #064e77;
        border: 2px solid #064e77;
    }

    .submit-row .button i {
        background: white;
        height: 25px;
        width: 25px !IMPORTANT;
        color: black;
        transition: all .3s ease-in-out;
        display: flex !important;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        transform: rotate(270deg);
    }

    .submit-row .button:hover i {
        background-color: #064e77;
        color: white;
    }

.loginButton {
    background: #064e77;
    border: none;
    padding: 8px 13px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all .3s ease-in-out;
    display: flex;
    gap: 10px;
    margin: 0 10px;
    width: fit-content;
}

    .loginButton:hover {
        background-color: #ffffff;
        color: #064e77;
        border: 2px solid #064e77;
    }

    .loginButton i {
        background: white;
        height: 25px;
        width: 25px !IMPORTANT;
        color: black;
        transition: all .3s ease-in-out;
        display: flex !important;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        transform: rotate(270deg);
    }

    .loginButton:hover i {
        background-color: #064e77;
        color: white;
    }

.hero-section {
    width: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / 61%), rgb(0 0 0 / 66%), rgb(0 0 0 / 48%)), url(../images/heroBanner2.jpg) center center / cover no-repeat fixed;
    /* background: linear-gradient(135deg, rgb(255 255 255 / 0%), rgb(215 241 255 / 51%), rgb(255 255 255 / 69%)), url(../images/heroBanner2.jpg) center center / cover no-repeat fixed; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    gap: 20px;
    min-height: 95vh;
    padding: 10rem 0px;
    height: auto;
    margin-top: -154px;
}


.innerBanner {
    background: linear-gradient(135deg, rgb(0 40 63), rgb(3 62 95 / 95%), rgb(0 39 61)) 0% 0% / cover, url(../images/fleetbg.jpeg) center center no-repeat fixed;
    min-height: 46vh;
    margin-top: -154px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .innerBanner h2 {
        font-size: 65px;
        font-weight: 700;
        color: white;
    }

    .innerBanner ul {
        display: flex;
        gap: 5px;
        color: white;
    }

.innerbannerContent {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 90px;
}

    .innerbannerContent ul li a {
        color: white;
    }

.hero-section::before {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    inset: 0px;
    background: radial-gradient(800px 500px at 90% -10%, rgb(246 195 152 / 75%) 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: 0;
}

    .hero-section .hero-title h1 {
        font-size: 70px;
        font-weight: 700;
        color: rgb(255 255 255);
        position: relative;
        z-index: 1;
        /* text-align: center; */
    }

        .hero-section .hero-title h1 .textStrokes {
            display: inline-block;
            font-style: normal;
            background: linear-gradient(135deg, rgb(251 199 151), rgb(230 161 3)) text;
            -webkit-text-fill-color: transparent;
        }

        .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;
            display: inline-block;
            font-style: normal;
            background: linear-gradient(135deg, rgb(121 194 231), rgb(255 255 255)) text;
            -webkit-text-fill-color: transparent;
        }

    .hero-section .hero-title p {
        color: white;
        font-size: 18px;
    }

.hero-section .hero-image-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
    /* border-radius: 250px; */
    /* background: url("../images/heroBanner.jpg") center center / cover no-repeat; */
    /* margin-top: 3rem; */
}

.cloud-divider {
    position: absolute;
    bottom: 0px;
    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: 80%;
    background: linear-gradient(135deg, rgb(223 242 255), rgb(255 255 255));
    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: 0px;
    position: relative;
    /* top: -58px; */
}

    .hero-bookingForm button {
        margin-left: 20px;
    }

.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));
    background: linear-gradient(135deg, rgb(168 196 214), rgb(136 194 231));
    border-radius: 12px;
    width: fit-content;
    margin: 0px auto;
    color: black;
}

.indicator {
    content: "";
    width: 130px;
    height: 35px;
    background: rgb(6 78 119);
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 9;
    border: 1px solid rgb(255 255 255);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 3px 8px, rgba(0, 0, 0, 0.04) 0px 3px 1px;
    border-radius: 12px;
    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 10px;
}

    .input-container i {
        width: 35px;
        height: 35px;
        font-size: 15px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, rgb(251 199 151), rgb(230 161 3));
        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(6 78 119);
    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(255 255 255), rgb(215 241 255), rgb(255 255 255));
    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(241 210 177 / 81%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(251 209 153 / 45%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .sec2-about h2 {
        font-size: 85px;
        color: #064e77;
        text-align: center;
        margin-bottom: 20px;
        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;
}

.aboutContent h3 {
    color: #0a5077;
    font-weight: 600;
    font-size: 32px;
}

.sec2-about .aboutContent p {
    color: #000000;
    max-width: 900px;
    margin-top: 1rem;
}

.sec2-about a {
    margin-top: 1rem;
}

.imgSECAbout {
    display: flex;
    justify-content: unset;
    border: 2px dashed #064e77;
    padding: 8px 0;
    border-radius: 60px;
}

    .imgSECAbout img {
        width: 100%;
        border-radius: 53px;
    }

.aboutBtn {
    margin-top: 1rem;
}

    .aboutBtn button {
        border: 1px solid white;
    }

.sectionSrv {
    position: relative;
    padding: 2rem 0px;
    background: linear-gradient(135deg, rgb(6 78 119 / 89%), rgb(6 78 119 / 95%), rgb(6 78 119)) 0% 0% / cover, url(../images/serv-bg.jpg);
    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%);
    }


.innerServ {
    background: linear-gradient(135deg, rgb(255 255 255), rgb(215 241 255), rgb(255 255 255));
}

.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(223 242 255), rgb(125 206 252)) text;
        -webkit-text-fill-color: transparent;
    }

.topContentsrv p {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    color: white;
}

.sectionSrv .servCards {
    /* border: 1.5px solid rgb(255 255 255); */
    border-radius: 35px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: white;
    margin: 3.5rem 0px;
    background: rgb(255 255 255 / 78%);
    backdrop-filter: blur(4px);
    transition: 0.3s ease-in-out;
}

.servCards button {
    margin-left: 10px;
}

.iconsHeading {
    padding: 5px;
    border: 2.5px dashed #064e77;
    border-radius: 35px;
}

.sectionSrv .servCards:hover {
    transform: translateY(-10px);
}

.sectionSrv .servCards h3 {
    padding-bottom: 8px;
    font-weight: 600;
    color: #064e77;
}

.sectionSrv .servCards img {
    width: 100%;
    border-radius: 35px;
}

.innerServ .servCards {
    border: 1.5px solid rgb(6 78 119 / 19%);
}

.serbottomContent {
    padding: 0px 10px;
}

    .serbottomContent p {
        color: #393939;
        ;
    }

.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(255 255 255), rgb(215 241 255), rgb(255 255 255));
    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: #064e77;
    }

        .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(39 65 83), rgb(125 206 252)) 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: #393939;
}

.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(156 197 220);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(4px);
}

    .FleetsCard h3 {
        font-weight: 600;
        font-size: 34px;
        color: #064e77 !important;
    }

.fleetsRight {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.FleetsCard h3, .FleetsCard p {
    color: #323232;
}

.FleetsCard img {
    width: 370px;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, rgb(204 236 255 / 86%), rgb(0 0 0 / 90%), rgb(215 242 255 / 63%)) 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(0 0 0) !important;
}

.swiper-pagination-bullet-active {
    background: #064e77 !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(6 78 119) 0%, rgb(47 130 178) 60%, rgb(1 71 111) 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, rgb(6 78 119 / 89%), rgb(6 78 119 / 95%), rgb(6 78 119)) 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%);
    }

.innerContact {
    background: linear-gradient(135deg, rgb(255 255 255), rgb(215 241 255), rgb(255 255 255));
}

.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 0px;
    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));
    background: linear-gradient(135deg, rgb(255 255 255), rgb(215 241 255), rgb(255 255 255));
    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(0 0 0);
    margin-bottom: 6px;
    background: linear-gradient(135deg, rgb(39 65 83), rgb(125 206 252)) text;
    -webkit-text-fill-color: transparent;
}

.sec6_contactform .form-sub {
    font-size: 13.5px;
    font-weight: 300;
    color: rgb(73 73 73);
    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: #064e77;
    padding-left: 2px;
    transition: color 0.3s;
}

.sec6_contactform .input-wrap {
    position: relative;
}

.input-wrap span {
    display: none !important;
}

.full span {
    display: none !important;
}

.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(6 78 119);
        color: white;
        border-color: white !important;
    }

.sec6_contactform .form-group:focus-within .form-label {
    color: #064e77;
}

.sec6_contactform .form-group:focus-within .input-icon {
    fill: #ffffff;
}

.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: 600;
    color: #064e77;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .sec6_contactform .privacy-note svg {
        width: 13px;
        height: 13px;
        fill: #064e77;
        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: 713px;
    border-radius: 0 35px 35px 0;
    background: url("../images/serv-bg.jpg") center center / cover no-repeat;
}

    .leftPanelBG > div {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .leftPanelBG > div img {
            width: 95%;
            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));
    background: linear-gradient(135deg, rgb(255 255 255), rgb(215 241 255), rgb(255 255 255));
    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: #064b73;
    padding-top: 1rem;
}

.footerLinks {
    display: flex;
    justify-content: center;
}

    .footerLinks ul li a {
        color: #064a71;
        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);
            background: linear-gradient(135deg, rgb(251 199 151), rgb(230 161 3));
            height: 35px;
            width: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            border: 1px solid #ffffff00;
            color: #000;
            transition: 0.3s ease-in-out;
        }

    .footerLinks .fa-house {
        width: 64px;
    }

    .footerLinks ul li a:hover {
        color: #efb141;
    }

        .footerLinks ul li a:hover i {
            color: #064e76;
            background: transparent !important;
            border: 1px solid #064e77;
        }

    .footerLinks ul h3 {
        color: #06496f;
        font-weight: 600;
        padding-bottom: 1rem;
    }

footer .social-icons a {
    background: #dfc16d;
    background: linear-gradient(135deg, rgb(251 199 151), rgb(230 161 3));
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    color: #000;
    border: 1px solid #ffffff00;
    transition: 0.3s ease-in-out;
}

.addresUN i {
    width: 40px !important;
}

footer .social-icons a:hover {
    background: transparent;
    color: #074e77;
}

footer .social-icons a:hover {
    border: 1px solid #074e77;
}

.bottomFooter {
    display: flex;
    justify-content: space-between;
    color: #064b72;
    border-top: 2px solid #074e77;
    margin-top: 2.5rem;
    padding-top: 2rem;
}

    .bottomFooter a {
        color: #064b73;
        transition: 0.3s ease-in-out;
    }

        .bottomFooter a:hover {
            color: #efb141;
        }

.form-label sup {
    color: red;
    font-size: 20px;
    margin-left: 3px;
}

sup {
    top: -0.1em !important;
}

.ui-menu .ui-menu-item-wrapper:hover {
    background: #064e77 !important;
    color: #fff !important;
}

.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(6 78 119 / 31%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(6 78 119 / 40%) 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(255 255 255), rgb(215 241 255), rgb(255 255 255));
        border: 2px solid #064e77;
        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: 60px;
                    height: 100%;
                    object-fit: contain;
                    background: #b9def3;
                    border-radius: 50%;
                    padding: 10px;
                }

            .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 #0a4973;
                    }

                    .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(255 255 255), rgb(215 241 255), rgb(255 255 255));
        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 #094a74;
}

    .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: 1px solid #074d76;
                margin: 5px 0;
                border-radius: 6px;
                font-size: 12px;
                background: linear-gradient(135deg, rgb(255 255 255), rgb(215 241 255), rgb(255 255 255));
                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 #0a4973;
}

    .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: #edf2fa00;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 15px;
    border: 2px solid #064e77;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #000000;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: center;
            padding: 4px 0;
            font-size: 16px;
            font-weight: 600;
            line-height: 18px;
            color: #000;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ccc !important;
        }

        .Passenger-Information .input-box p {
            font-size: 13px;
            padding: 4px 0;
        }

    .Passenger-Information .input-box-extra {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Passenger-Information .input-box-extra input {
            margin: 0 !important;
        }

        .Passenger-Information .input-box-extra label {
            padding-left: 10px;
        }

.ui-dialog .ui-dialog-content {
    overflow-y: hidden !important;
}

.ui-dialog .ui-dialog-buttonpane button {
    background: #000 !important;
    padding: 7px 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    border-radius: 7px !important;
}

/*.ui-menu .ui-menu-item {
    width: 350px !important;
}*/
/*sec-privacy*/
.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(--black-color);
            font-weight: 700;
            font-size: 22px;
            padding: 10px 20px;
            margin: 0 auto 20px;
            text-align: center;
            background-color: #eca400;
            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: #064e77;
                    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: #064e77;
            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 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 {
        padding: 5px 0px;
    }

        .main-header .mini-header .contact-info {
            gap: 5px;
        }

            .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 .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
                font-size: 14px;
            }

        .main-header .mini-header .social-icons {
            gap: 5px;
        }

            .main-header .mini-header .social-icons a {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }

    .main-header .navbar-expand-lg {
        padding: 10px 10px;
    }

        .main-header .navbar-expand-lg .header-logo {
            width: 120px;
        }

        .main-header .navbar-expand-lg .navbar-nav {
            gap: 10px;
        }

            .main-header .navbar-expand-lg .navbar-nav .nav-link {
                font-size: 14px;
            }

    button {
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        button i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }

    .hero-section {
        min-height: 80vh;
        padding: 6rem 0px;
    }

        .hero-section .hero-title h1 {
            font-size: 42px;
        }

        .hero-section .hero-title p {
            font-size: 14px;
        }

    .hero-bookingForm {
        width: 90%;
        padding: 20px;
        border-radius: 15px;
    }

    .tab-content {
        margin-top: 0px;
    }

    .tab_label {
        height: 30px;
        font-size: 14px;
    }

    .indicator {
        height: 30px;
    }

    .input-container {
        margin: 12px 10px;
    }

    .input-field {
        padding: 8px 44px 8px 3px;
        font-size: 14px;
    }

    .input-container i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .form_btn .button {
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        .form_btn .button i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }

    .input-field:focus + .input-label {
        top: -12px;
        font-size: 10px;
    }

    .sec2-about {
        padding: 2rem 0px;
    }

        .sec2-about h2 {
            font-size: 50px;
            margin-bottom: 10px;
        }

    .aboutContent h3 {
        font-size: 24px;
    }

    .sec2-about .aboutContent p {
        margin-top: 0.5rem;
        font-size: 13px;
    }

    .imgSECAbout {
        border-radius: 25px;
    }

        .imgSECAbout img {
            border-radius: 20px;
        }

    .topContentsrv h2 {
        font-size: 50px;
        margin-bottom: 0.5rem;
    }

    .topContentsrv p {
        font-size: 14px;
        max-width: 100%;
    }

    .sectionSrv .servCards {
        margin: 1.5rem 0px;
        border-radius: 20px;
        padding: 10px;
        gap: 8px;
    }

    .iconsHeading {
        padding: 3px;
        border-radius: 15px;
    }

    .sectionSrv .servCards img {
        border-radius: 10px;
    }

    .serbottomContent {
        padding: 0px 0px;
    }

    .sectionSrv .servCards h3 {
        padding-bottom: 3px;
        font-size: 24px;
    }

    .serbottomContent p {
        font-size: 14px;
    }

    .servCards button {
        margin-left: 0px;
    }

    .secFleets {
        padding: 2rem 0px;
    }

        .secFleets h2 {
            font-size: 52px;
            margin-bottom: 10px;
        }

    .fleetTopContent p {
        font-size: 14px;
    }

    .swiper-button-prev {
        right: 5% !important;
    }

    .FleetsCard {
        padding: 10px;
        gap: 8px;
        border-radius: 15px;
    }

        .FleetsCard img {
            width: 320px;
            height: 150px;
            border-radius: 10px;
        }

    .fleetsRight {
        gap: 5px;
    }

    .FleetsCard h3 {
        font-size: 24px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform {
        padding: 2rem 0;
    }

        .sec6_contactform .form-panel {
            padding: 15px;
        }

        .sec6_contactform .form-heading {
            font-size: 24px;
        }

        .sec6_contactform .form-sub {
            margin-bottom: 15px;
        }

        .sec6_contactform .form-group {
            gap: 0px;
        }

        .sec6_contactform .form-grid {
            gap: 10px 10px;
            margin-bottom: 10px;
        }

        .sec6_contactform .form-input, .sec6_contactform .form-textarea {
            padding: 10px 10px 10px 34px;
        }

    .submit-row .button {
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        .submit-row .button i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }

    .sec6_contactform .form-textarea {
        height: 100px;
    }

    .sec6_contactform .contact-section {
        border-radius: 15px;
    }

    .leftPanelBG {
        min-height: 541px;
        border-radius: 0 15px 15px 0;
    }

    .footerLogo {
        gap: 5px;
    }

        .footerLogo p {
            padding-top: 0.5rem;
            font-size: 14px;
        }

        .footerLogo .social-icons {
            gap: 5px;
        }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .bottomFooter {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .footerLinks ul h3 {
        font-size: 24px;
        padding-bottom: 0.5rem;
    }

    .footerLinks ul li a {
        gap: 5px;
        font-size: 14px;
        font-weight: 500;
    }

        .footerLinks ul li a i {
            height: 30px;
            width: 30px;
            font-size: 14px;
        }

    .bottomFooter p {
        font-size: 14px;
    }

    .bottomFooter a {
        font-size: 14px;
    }

    .innerBanner {
        min-height: 35vh;
        margin-top: -130px;
    }

        .innerBanner h2 {
            font-size: 52px;
        }

    .innerbannerContent ul li a {
        font-size: 14px;
    }

    .sec2-about::before {
        background: radial-gradient(800px 500px at 90% -10%, rgb(241 210 177 / 40%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(251 209 153 / 30%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .sec6_contactform::before {
        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 / 13%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }
}

@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 {
        padding: 5px 0px;
    }

        .main-header .mini-header .contact-info {
            gap: 5px;
        }

            .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 .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
                font-size: 14px;
            }

        .main-header .mini-header .social-icons {
            gap: 5px;
        }

            .main-header .mini-header .social-icons a {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }

    .main-header .navbar-expand-lg {
        padding: 5px 0px;
        border-radius: 15px;
    }

        .main-header .navbar-expand-lg .header-logo {
            width: 120px;
            border-radius: 10px;
        }

        .main-header .navbar-expand-lg .navbar-nav {
            gap: 0;
        }

            .main-header .navbar-expand-lg .navbar-nav .nav-link {
                font-size: 14px;
            }

    button {
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        button i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }

    .hero-section {
        min-height: 95vh;
        padding: 10rem 0px;
    }

        .hero-section .hero-title h1 {
            font-size: 42px;
            text-align: center;
        }

        .hero-section .hero-title p {
            font-size: 14px;
            text-align: center;
        }

    .hero-bookingForm {
        width: 100%;
        padding: 20px;
        border-radius: 15px;
    }

    .tab-content {
        margin-top: 0px;
    }

    .tab_label {
        height: 30px;
        font-size: 14px;
    }

    .indicator {
        height: 30px;
    }

    .input-container {
        margin: 12px 10px;
    }

    .input-field {
        padding: 8px 44px 8px 3px;
        font-size: 14px;
    }

    .input-container i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .form_btn .button {
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        .form_btn .button i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }

    .input-field:focus + .input-label {
        top: -12px;
        font-size: 10px;
    }

    .sec2-about {
        padding: 2rem 0px;
    }

        .sec2-about h2 {
            font-size: 50px;
            margin-bottom: 10px;
        }

    .aboutContent h3 {
        font-size: 24px;
        margin-top: 1rem;
    }

    .sec2-about .aboutContent p {
        margin-top: 0.5rem;
        font-size: 13px;
        margin-bottom: 1rem;
    }

    .imgSECAbout {
        border-radius: 25px;
        padding: 10px;
    }

        .imgSECAbout img {
            width: 100%;
            border-radius: 20px;
        }

    .topContentsrv h2 {
        font-size: 50px;
        margin-bottom: 0.5rem;
    }

    .topContentsrv p {
        font-size: 14px;
        max-width: 100%;
    }

    .sectionSrv .servCards {
        margin: 1.5rem 0px;
        border-radius: 20px;
        padding: 10px;
        gap: 8px;
    }

    .iconsHeading {
        padding: 3px;
        border-radius: 15px;
    }

    .sectionSrv .servCards img {
        border-radius: 10px;
    }

    .serbottomContent {
        padding: 0px 0px;
    }

    .sectionSrv .servCards h3 {
        padding-bottom: 3px;
        font-size: 24px;
    }

    .serbottomContent p {
        font-size: 14px;
    }

    .servCards button {
        margin-left: 0px;
    }

    .secFleets {
        padding: 2rem 0px;
    }

        .secFleets h2 {
            font-size: 52px;
            margin-bottom: 10px;
        }

    .fleetTopContent p {
        font-size: 14px;
    }

    .swiper-button-prev {
        right: 7% !important;
    }

    .FleetsCard {
        padding: 10px;
        gap: 8px;
        border-radius: 15px;
    }

        .FleetsCard img {
            width: 320px;
            height: 150px;
            border-radius: 10px;
        }

    .fleetsRight {
        gap: 5px;
    }

    .FleetsCard h3 {
        font-size: 24px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform {
        padding: 2rem 0;
    }

        .sec6_contactform .form-panel {
            padding: 15px;
        }

        .sec6_contactform .form-heading {
            font-size: 24px;
        }

        .sec6_contactform .form-sub {
            margin-bottom: 15px;
        }

        .sec6_contactform .form-group {
            gap: 0px;
        }

        .sec6_contactform .form-grid {
            gap: 10px 10px;
            margin-bottom: 10px;
        }

        .sec6_contactform .form-input, .sec6_contactform .form-textarea {
            padding: 10px 10px 10px 34px;
        }

    .submit-row .button {
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        .submit-row .button i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }

    .sec6_contactform .form-textarea {
        height: 100px;
    }

    .sec6_contactform .contact-section {
        border-radius: 15px;
    }

    .leftPanelBG {
        min-height: 350px;
        border-radius: 0 15px 15px 0;
    }

    .footerLogo {
        gap: 5px;
    }

        .footerLogo p {
            padding-top: 0.5rem;
            font-size: 14px;
        }

        .footerLogo .social-icons {
            gap: 5px;
        }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .bottomFooter {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .footerLinks ul h3 {
        font-size: 24px;
        padding-bottom: 0.5rem;
    }

    .footerLinks ul li a {
        gap: 5px;
        font-size: 14px;
        font-weight: 500;
    }

        .footerLinks ul li a i {
            height: 30px;
            width: 30px;
            font-size: 14px;
        }

    .bottomFooter p {
        font-size: 14px;
    }

    .bottomFooter a {
        font-size: 14px;
    }

    .innerBanner {
        min-height: 35vh;
        margin-top: -130px;
    }

        .innerBanner h2 {
            font-size: 52px;
        }

    .innerbannerContent ul li a {
        font-size: 14px;
    }

    .sec2-about::before {
        background: radial-gradient(800px 500px at 90% -10%, rgb(241 210 177 / 40%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(251 209 153 / 30%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .sec6_contactform::before {
        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 / 13%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .heroBTN {
        margin: 0.5rem auto 1.5rem auto;
        width: fit-content;
    }

    .sec-result {
        padding: 40px 0;
    }

        .sec-result .upper-list {
            display: none;
        }

        .sec-result .number-box {
            padding: 0px 0px;
        }

    .update-fleet-box .fleet-detail {
        border-right: none;
        border-left: none;
    }

    .sec-result::before {
        background: radial-gradient(350px 350px at 90% -10%, rgb(6 78 119 / 31%) 0%, transparent 60%), radial-gradient(350px 350px at -5% 90%, rgb(6 78 119 / 40%) 0%, transparent 60%), radial-gradient(350px 350px, rgb(43 35 84 / 5%) 0%, transparent 70%);
    }

    .loginButton {
        margin: 0 0px;
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        .loginButton i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }
}

@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 {
        padding: 5px 0px;
    }

        .main-header .mini-header .contact-info {
            gap: 5px;
        }

            .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 .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
                font-size: 14px;
            }

        .main-header .mini-header .social-icons {
            gap: 5px;
        }

            .main-header .mini-header .social-icons a {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }

    .main-header .navbar-expand-lg {
        padding: 5px 0px;
        border-radius: 15px;
    }

        .main-header .navbar-expand-lg .header-logo {
            width: 120px;
            border-radius: 10px;
        }

        .main-header .navbar-expand-lg .navbar-nav {
            gap: 0;
        }

            .main-header .navbar-expand-lg .navbar-nav .nav-link {
                font-size: 14px;
            }

    button {
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        button i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }

    .hero-section {
        min-height: 95vh;
        padding: 10rem 0px;
    }

        .hero-section .hero-title h1 {
            font-size: 42px;
            text-align: center;
        }

        .hero-section .hero-title p {
            font-size: 14px;
            text-align: center;
        }

    .hero-bookingForm {
        width: 100%;
        padding: 20px;
        border-radius: 15px;
    }

    .tab-content {
        margin-top: 0px;
    }

    .tab_label {
        height: 30px;
        font-size: 14px;
    }

    .indicator {
        height: 30px;
    }

    .input-container {
        margin: 12px 10px;
    }

    .input-field {
        padding: 8px 44px 8px 3px;
        font-size: 14px;
    }

    .input-container i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .form_btn .button {
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        .form_btn .button i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }

    .input-field:focus + .input-label {
        top: -12px;
        font-size: 10px;
    }

    .sec2-about {
        padding: 2rem 0px;
    }

        .sec2-about h2 {
            font-size: 50px;
            margin-bottom: 10px;
        }

    .aboutContent h3 {
        font-size: 24px;
        margin-top: 1rem;
    }

    .sec2-about .aboutContent p {
        margin-top: 0.5rem;
        font-size: 13px;
        margin-bottom: 1rem;
    }

    .imgSECAbout {
        border-radius: 25px;
        padding: 10px;
    }

        .imgSECAbout img {
            width: 100%;
            border-radius: 20px;
        }

    .topContentsrv h2 {
        font-size: 50px;
        margin-bottom: 0.5rem;
    }

    .topContentsrv p {
        font-size: 14px;
        max-width: 100%;
    }

    .sectionSrv .servCards {
        margin: 1.5rem 0px;
        border-radius: 20px;
        padding: 10px;
        gap: 8px;
    }

    .iconsHeading {
        padding: 3px;
        border-radius: 15px;
    }

    .sectionSrv .servCards img {
        border-radius: 10px;
    }

    .serbottomContent {
        padding: 0px 0px;
    }

    .sectionSrv .servCards h3 {
        padding-bottom: 3px;
        font-size: 24px;
    }

    .serbottomContent p {
        font-size: 14px;
    }

    .servCards button {
        margin-left: 0px;
    }

    .secFleets {
        padding: 2rem 0px;
    }

        .secFleets h2 {
            font-size: 52px;
            margin-bottom: 10px;
        }

    .fleetTopContent p {
        font-size: 14px;
    }

    .swiper-button-prev {
        right: 7% !important;
    }

    .FleetsCard {
        padding: 10px;
        gap: 8px;
        border-radius: 15px;
    }

        .FleetsCard img {
            width: 320px;
            height: 150px;
            border-radius: 10px;
        }

    .fleetsRight {
        gap: 5px;
    }

    .FleetsCard h3 {
        font-size: 24px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform {
        padding: 2rem 0;
    }

        .sec6_contactform .form-panel {
            padding: 15px;
        }

        .sec6_contactform .form-heading {
            font-size: 24px;
        }

        .sec6_contactform .form-sub {
            margin-bottom: 15px;
        }

        .sec6_contactform .form-group {
            gap: 0px;
        }

        .sec6_contactform .form-grid {
            gap: 10px 10px;
            margin-bottom: 10px;
        }

        .sec6_contactform .form-input, .sec6_contactform .form-textarea {
            padding: 10px 10px 10px 34px;
        }

    .submit-row .button {
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        .submit-row .button i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }

    .sec6_contactform .form-textarea {
        height: 100px;
    }

    .sec6_contactform .contact-section {
        border-radius: 15px;
    }

    .leftPanelBG {
        min-height: 350px;
        border-radius: 0 15px 15px 0;
    }

    .footerLogo {
        gap: 5px;
    }

        .footerLogo p {
            padding-top: 0.5rem;
            font-size: 14px;
        }

        .footerLogo .social-icons {
            gap: 5px;
        }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .bottomFooter {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .footerLinks ul h3 {
        font-size: 24px;
        padding-bottom: 0.5rem;
    }

    .footerLinks ul li a {
        gap: 5px;
        font-size: 14px;
        font-weight: 500;
    }

        .footerLinks ul li a i {
            height: 30px;
            width: 30px;
            font-size: 14px;
        }

    .bottomFooter p {
        font-size: 14px;
    }

    .bottomFooter a {
        font-size: 14px;
    }

    .innerBanner {
        min-height: 35vh;
        margin-top: -130px;
    }

        .innerBanner h2 {
            font-size: 52px;
        }

    .innerbannerContent ul li a {
        font-size: 14px;
    }

    .sec2-about::before {
        background: radial-gradient(800px 500px at 90% -10%, rgb(241 210 177 / 40%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(251 209 153 / 30%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .sec6_contactform::before {
        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 / 13%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .heroBTN {
        margin: 0.5rem auto 1.5rem auto;
        width: fit-content;
    }

    .sec-result {
        padding: 40px 0;
    }

        .sec-result .upper-list {
            display: none;
        }

        .sec-result .number-box {
            padding: 0px 0px;
        }

    .update-fleet-box .fleet-detail {
        border-right: none;
        border-left: none;
    }

    .sec-result::before {
        background: radial-gradient(350px 350px at 90% -10%, rgb(6 78 119 / 31%) 0%, transparent 60%), radial-gradient(350px 350px at -5% 90%, rgb(6 78 119 / 40%) 0%, transparent 60%), radial-gradient(350px 350px, rgb(43 35 84 / 5%) 0%, transparent 70%);
    }

    .loginButton {
        margin: 0 0px;
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        .loginButton i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }
}

@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 {
        padding: 5px 0px;
    }

        .main-header .mini-header .contact-info {
            gap: 5px;
            flex-wrap: wrap;
            justify-content: center;
        }

            .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 .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
                font-size: 14px;
            }

        .main-header .mini-header .social-icons {
            gap: 5px;
            justify-content: center;
            margin-top: 10px;
        }

            .main-header .mini-header .social-icons a {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }

    .main-header .navbar-expand-lg {
        padding: 5px 0px;
        border-radius: 15px;
    }

        .main-header .navbar-expand-lg .header-logo {
            width: 120px;
            border-radius: 10px;
        }

        .main-header .navbar-expand-lg .navbar-nav {
            gap: 0;
        }

            .main-header .navbar-expand-lg .navbar-nav .nav-link {
                font-size: 14px;
            }

    button {
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        button i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }

    .hero-section {
        min-height: 95vh;
        padding: 10rem 0px;
    }

        .hero-section .hero-title h1 {
            font-size: 42px;
            text-align: center;
        }

        .hero-section .hero-title p {
            font-size: 14px;
            text-align: center;
        }

    .hero-bookingForm {
        width: 100%;
        padding: 20px;
        border-radius: 15px;
    }

    .tab-content {
        margin-top: 0px;
    }

    .tab_label {
        height: 30px;
        font-size: 14px;
    }

    .indicator {
        height: 30px;
    }

    .input-container {
        margin: 12px 10px;
    }

    .input-field {
        padding: 8px 44px 8px 3px;
        font-size: 14px;
    }

    .input-container i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .form_btn .button {
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        .form_btn .button i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }

    .input-field:focus + .input-label {
        top: -12px;
        font-size: 10px;
    }

    .sec2-about {
        padding: 2rem 0px;
    }

        .sec2-about h2 {
            font-size: 42px;
            margin-bottom: 10px;
        }

    .aboutContent h3 {
        font-size: 24px;
        margin-top: 1rem;
    }

    .sec2-about .aboutContent p {
        margin-top: 0.5rem;
        font-size: 13px;
        margin-bottom: 1rem;
    }

    .imgSECAbout {
        border-radius: 25px;
        padding: 10px;
    }

        .imgSECAbout img {
            width: 100%;
            border-radius: 20px;
        }

    .topContentsrv h2 {
        font-size: 50px;
        margin-bottom: 0.5rem;
    }

    .topContentsrv p {
        font-size: 14px;
        max-width: 100%;
    }

    .sectionSrv .servCards {
        margin: 1.5rem 0px;
        border-radius: 20px;
        padding: 10px;
        gap: 8px;
    }

    .iconsHeading {
        padding: 3px;
        border-radius: 15px;
    }

    .sectionSrv .servCards img {
        border-radius: 10px;
    }

    .serbottomContent {
        padding: 0px 0px;
    }

    .sectionSrv .servCards h3 {
        padding-bottom: 3px;
        font-size: 24px;
    }

    .serbottomContent p {
        font-size: 14px;
    }

    .servCards button {
        margin-left: 0px;
    }

    .secFleets {
        padding: 2rem 0px;
    }

        .secFleets h2 {
            font-size: 42px;
            margin-bottom: 10px;
        }

    .fleetTopContent p {
        font-size: 14px;
    }

    .swiper-button-prev {
        right: 14% !important;
    }

    .FleetsCard {
        padding: 10px;
        gap: 8px;
        border-radius: 15px;
    }

        .FleetsCard img {
            width: 320px;
            height: 150px;
            border-radius: 10px;
        }

    .fleetsRight {
        gap: 5px;
    }

    .FleetsCard h3 {
        font-size: 24px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform {
        padding: 2rem 0;
    }

        .sec6_contactform .form-panel {
            padding: 15px;
        }

        .sec6_contactform .form-heading {
            font-size: 24px;
        }

        .sec6_contactform .form-sub {
            margin-bottom: 15px;
        }

        .sec6_contactform .form-group {
            gap: 0px;
        }

        .sec6_contactform .form-grid {
            gap: 10px 10px;
            margin-bottom: 10px;
            grid-template-columns: 1fr;
        }

        .sec6_contactform .form-input, .sec6_contactform .form-textarea {
            padding: 10px 10px 10px 34px;
        }

    .submit-row .button {
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        .submit-row .button i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }

    .sec6_contactform .form-textarea {
        height: 100px;
    }

    .sec6_contactform .contact-section {
        border-radius: 15px;
    }

    .leftPanelBG {
        min-height: 350px;
        border-radius: 0 15px 15px 0;
    }

    .footerLogo {
        gap: 5px;
    }

        .footerLogo p {
            padding-top: 0.5rem;
            font-size: 14px;
        }

        .footerLogo .social-icons {
            gap: 5px;
        }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .bottomFooter {
        margin-top: 1.5rem;
        padding-top: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .footerLinks ul h3 {
        font-size: 24px;
        padding-bottom: 0.5rem;
        margin-top: 20px;
    }

    .footerLinks ul li a {
        gap: 5px;
        font-size: 14px;
        font-weight: 500;
    }

        .footerLinks ul li a i {
            height: 30px;
            width: 30px;
            font-size: 14px;
        }

    .bottomFooter p {
        font-size: 14px;
    }

    .bottomFooter a {
        font-size: 14px;
    }

    .innerBanner {
        min-height: 35vh;
        margin-top: -130px;
    }

        .innerBanner h2 {
            font-size: 52px;
        }

    .innerbannerContent ul li a {
        font-size: 14px;
    }

    .sec2-about::before {
        background: radial-gradient(800px 500px at 90% -10%, rgb(241 210 177 / 40%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(251 209 153 / 30%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .sec6_contactform::before {
        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 / 13%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(229 194 106 / 3%) 0%, transparent 70%);
    }

    .heroBTN {
        margin: 0.5rem auto 1.5rem auto;
        width: fit-content;
    }

    .sec-result {
        padding: 40px 0;
    }

        .sec-result .upper-list {
            display: none;
        }

        .sec-result .number-box {
            padding: 0px 0px;
        }

    .update-fleet-box .fleet-detail {
        border-right: none;
        border-left: none;
    }

    .sec-result::before {
        background: radial-gradient(350px 350px at 90% -10%, rgb(6 78 119 / 31%) 0%, transparent 60%), radial-gradient(350px 350px at -5% 90%, rgb(6 78 119 / 40%) 0%, transparent 60%), radial-gradient(350px 350px, rgb(43 35 84 / 5%) 0%, transparent 70%);
    }

    .loginButton {
        margin: 0 0px;
        padding: 7px 10px;
        gap: 5px;
        font-size: 14px;
    }

        .loginButton i {
            height: 20px;
            width: 20px !IMPORTANT;
            font-size: 10px;
        }

    .footerLinks {
        justify-content: flex-start;
    }

        .footerLinks .fa-house {
            width: 40px;
        }

    .sec-result .for-line::before {
        width: 40%;
        left: 82%;
    }
}
