@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;
}

/* Width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #90d693;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #257aa8;
    border-radius: 20px;
}

/* Hover */
::-webkit-scrollbar-track {
    background: #ecfaff;
}

.custom-cursor {
    width: 30px;
    height: 30px;
    border: 1px solid #023e5e;
    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: #03344e;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

a {
    text-decoration: none;
}

:root {
    --sca-bg: #F5F9F6;
    --sca-bg-soft: #EAF3EE;
    --sca-surface: rgba(255, 255, 255, 0.62);
    --sca-surface-solid: #FFFFFF;
    --sca-border: rgba(15, 90, 55, 0.12);
    --sca-ink: #0D1F17;
    --sca-ink-muted: #5C6E65;
    --sca-green-700: #0B6B3C;
    --sca-green-600: #0E8F4D;
    --sca-green-500: #18A558;
    --sca-green-400: #3FC57E;
    --sca-green-glow: rgba(24, 165, 88, 0.32);
    --sca-radius: 20px;
    --sca-radius-sm: 14px;
    --sca-shadow-soft: 0 20px 50px -20px rgba(13, 31, 23, 0.18);
    --sca-shadow-lift: 0 28px 60px -18px rgba(14, 143, 77, 0.35);
    --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;
    color: #000;
}

select {
    cursor: pointer;
    appearance: none;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

#scrollBtn {
    background: #c5ffd4;
    /* background: linear-gradient(135deg, #7bc38e 0%, #0B5D1E 25%, #1A8F3A 60%, #204a00 100%); */
    color: #000;
    border: 2px solid #ffffff !important;
    background: linear-gradient(135deg, rgb(33, 63, 85), rgb(112, 204, 255));
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 15px;
    right: 15px;
    border: none;
    cursor: pointer;
    z-index: 1000;
    transition: all .3s ease-in-out;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px var(--primary-dark);
    }

    100% {
        box-shadow: 0 0 0 20px #ffffff44;
    }
}

#MobileActionBtn {
    background: linear-gradient(135deg, rgb(33, 63, 85), rgb(112, 204, 255));
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 15px;
    left: 15px;
    border: none;
    cursor: pointer;
    z-index: 1000;
    transition: all .3s ease-in-out;
    animation: MobileActionBtnpulseanimation 2s infinite;
}

@keyframes MobileActionBtnpulseanimation {
    0% {
        box-shadow: 0 0 0 0px var(--primary-dark);
    }

    100% {
        box-shadow: 0 0 0 20px #ffffff44;
    }
}

/************************** Header css **************************/
.main-header {
    width: 100%;
    position: relative;
    z-index: 99;
}

    .main-header .mini-header {
        /* background: linear-gradient(135deg, rgb(117 195 225) 0%, rgb(72 141 182) 25%, rgb(55 180 227) 60%, rgb(116 194 224) 100%); */
        background: linear-gradient(135deg, #75c3e1, #ecfaff, #9edbf3, #c5eaff) !important;
        /* background: linear-gradient(
    135deg,
    #000000 0%,
    #071B0A 30%,
    #0B5D1E 60%,
    #32CD32 100%
); */
        padding: 10px 0px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

        .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;
                box-shadow: 0 30px 70px rgba(20, 20, 40, 0.12), 0 4px 14px rgba(20, 20, 40, 0.05);
            }

                .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: #000000;
                    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: #3eb6e3;
                    }

                    .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(117 195 225) 0%, rgb(72 141 182) 25%, rgb(55 180 227) 60%, rgb(116 194 224) 100%);
                        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 #38b0df;
                        color: #3bb5e3;
                    }

        .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: #000000;
                border: 2px solid #ffffff;
                transition: 0.4s ease-in-out;
            }

                .main-header .mini-header .social-icons a:hover {
                    background: transparent;
                    color: var(--text-white);
                    border: 2px solid var(--text-white);
                }

    .main-header .navbar-expand-lg {
        padding: 5px 0px;
        /* background: #ffffff78; */
        /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    }

        .main-header .navbar-expand-lg .header-logo {
            width: 170px;
            border-radius: 50%;
            transition: 0.4s ease-in-out;
            border-radius: 15px;
        }

        .main-header .navbar-expand-lg .navbar-nav {
            gap: 30px;
            max-width: 900px;
            background: #ffffff;
            padding: 15px;
            border-radius: 25px;
            box-shadow: 0 30px 70px rgba(20, 20, 40, 0.12), 0 4px 14px rgba(20, 20, 40, 0.05);
        }

            .main-header .navbar-expand-lg .navbar-nav .nav-link {
                color: var(--text-black);
                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: 0;
                    left: 0;
                    background-color: #76c3e1;
                    transition: all 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: 0;
                    right: 0;
                    background-color: #76c3e1;
                    transition: all 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: #76c3e1;
                }

                .main-header .navbar-expand-lg .navbar-nav .nav-link.active {
                    color: #ffffff;
                    background: #361e57;
                    background: linear-gradient(135deg, #021F08 0%, #0B5D1E 25%, #1A8F3A 60%, #204a00 100%);
                    background: linear-gradient(135deg, rgb(117 195 225) 0%, rgb(72 141 182) 25%, rgb(55 180 227) 60%, rgb(116 194 224) 100%);
                    border-radius: 25px;
                    padding: 8px 16px;
                }

.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: all 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: 0;
        left: -40px;
        transform: skewX(45deg);
        background-color: var(--primary-light);
        z-index: -1;
        transition: all 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: all 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: 0;
    border-radius: 0px !important;
    border: none !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: var(--text-white) !important;
    background: linear-gradient(135deg, #ecfaff, #ecfaff, #9edbf3, #c5eaff) !important;
}

/************************** Header css end **************************/

.getParent .global_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    position: relative;
    padding: 0 20px;
    font-size: 18px;
    text-transform: uppercase;
    border: 0;
    box-shadow: hsl(0deg 0% 100%) 0px 7px 0px 0px;
    background-color: hsl(210deg 100% 44%);
    background: linear-gradient(135deg, rgb(117 195 225) 0%, rgb(97 196 255) 25%, rgb(55 180 227) 60%, rgb(135 222 255) 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: 31ms cubic-bezier(.5, .7, .4, 1);
    width: fit-content;
}

    .getParent .global_btn:before {
        content: attr(alt);
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        inset: 0;
        font-size: 15px;
        font-weight: bold;
        color: white;
        letter-spacing: 4px;
        opacity: 1;
    }

    .getParent .global_btn:active {
        box-shadow: none;
        transform: translateY(7px);
        transition: 35ms cubic-bezier(.5, .7, .4, 1);
    }

    .getParent .global_btn:hover:before {
        transition: all .0s;
        transform: translateY(100%);
        opacity: 0;
    }

    .getParent .global_btn i {
        color: white;
        font-size: 15px;
        font-weight: bold;
        letter-spacing: 4px;
        font-style: normal;
        transition: all 2s ease;
        transform: translateY(-20px);
        opacity: 0;
    }

    .getParent .global_btn:hover i {
        transition: all .2s ease;
        transform: translateY(0px);
        opacity: 1;
    }

        .getParent .global_btn:hover i:nth-child(1) {
            transition-delay: 0.045s;
        }

        .getParent .global_btn:hover i:nth-child(2) {
            transition-delay: calc(0.045s * 3);
        }

        .getParent .global_btn:hover i:nth-child(3) {
            transition-delay: calc(0.045s * 4);
        }

        .getParent .global_btn:hover i:nth-child(4) {
            transition-delay: calc(0.045s * 5);
        }

        .getParent .global_btn:hover i:nth-child(6) {
            transition-delay: calc(0.045s * 6);
        }

        .getParent .global_btn:hover i:nth-child(7) {
            transition-delay: calc(0.045s * 7);
        }

        .getParent .global_btn:hover i:nth-child(8) {
            transition-delay: calc(0.045s * 8);
        }

        .getParent .global_btn:hover i:nth-child(9) {
            transition-delay: calc(0.045s * 9);
        }

        .getParent .global_btn:hover i:nth-child(10) {
            transition-delay: calc(0.045s * 10);
        }

/*Logout BTN*/
.getParent .logoutBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    position: relative;
    padding: 0 20px;
    font-size: 18px;
    text-transform: uppercase;
    border: 0;
    box-shadow: hsl(0deg 0% 100%) 0px 7px 0px 0px;
    background-color: hsl(210deg 100% 44%);
    background: linear-gradient(135deg, rgb(117 195 225) 0%, rgb(97 196 255) 25%, rgb(55 180 227) 60%, rgb(135 222 255) 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: 31ms cubic-bezier(.5, .7, .4, 1);
}

    .getParent .logoutBtn:before {
        content: attr(alt);
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        inset: 0;
        font-size: 15px;
        font-weight: bold;
        color: white;
        letter-spacing: 4px;
        opacity: 1;
    }

    .getParent .logoutBtn:active {
        box-shadow: none;
        transform: translateY(7px);
        transition: 35ms cubic-bezier(.5, .7, .4, 1);
    }

    .getParent .logoutBtn:hover:before {
        transition: all .0s;
        transform: translateY(100%);
        opacity: 0;
    }

    .getParent .logoutBtn i {
        color: white;
        font-size: 15px;
        font-weight: bold;
        letter-spacing: 4px;
        font-style: normal;
        transition: all 2s ease;
        transform: translateY(-20px);
        opacity: 0;
    }

    .getParent .logoutBtn:hover i {
        transition: all .2s ease;
        transform: translateY(0px);
        opacity: 1;
    }

        .getParent .logoutBtn:hover i:nth-child(1) {
            transition-delay: 0.045s;
        }

        .getParent .logoutBtn:hover i:nth-child(2) {
            transition-delay: calc(0.045s * 3);
        }

        .getParent .logoutBtn:hover i:nth-child(3) {
            transition-delay: calc(0.045s * 4);
        }

        .getParent .logoutBtn:hover i:nth-child(4) {
            transition-delay: calc(0.045s * 5);
        }

        .getParent .logoutBtn:hover i:nth-child(6) {
            transition-delay: calc(0.045s * 6);
        }

        .getParent .logoutBtn:hover i:nth-child(7) {
            transition-delay: calc(0.045s * 7);
        }

        .getParent .logoutBtn:hover i:nth-child(8) {
            transition-delay: calc(0.045s * 8);
        }

        .getParent .logoutBtn:hover i:nth-child(9) {
            transition-delay: calc(0.045s * 9);
        }

        .getParent .logoutBtn:hover i:nth-child(10) {
            transition-delay: calc(0.045s * 10);
        }

/************************** Hero Section css **************************/
.hero-section {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0 / 36%), rgb(255 255 255 / 21%)), url(../images/Banner_image.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    gap: 20px;
    padding: 5rem 0;
    margin-top: -195px;
}

    .hero-section::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, #bce6ff 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, #ffffff73 0%, transparent 60%), radial-gradient(800px 800px, rgb(255 255 255 / 0%) 0%, transparent 70%);
    }

.innerBanner {
    /* height: 55vh; */
    /* margin-top: -195px; */
    background-position-y: center;
    background: linear-gradient(135deg, #429bc6, #70bdd9, #9edbf3, #c5eaff) !important;
    background: linear-gradient(135deg, #75c3e1, #ecfaff, #9edbf3, #c5eaff) !important;
    border-radius: 60px;
    margin: 0 2rem 2rem;
}

    .innerBanner .row {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50vh;
    }

.innerContent {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

    .innerContent h2 {
        font-size: 70px;
        font-weight: 700;
        color: white;
        font-style: normal;
        background: linear-gradient(135deg, rgb(33 63 85), rgb(112 204 255)) text;
        -webkit-text-fill-color: transparent;
    }

.breadcrumbs a {
    font-style: normal;
    background: linear-gradient(135deg, rgb(33 63 85), rgb(112 204 255)) text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    font-weight: 600;
}

.hero-section .uniqueROW {
    position: relative;
    top: 200px;
}

.mainHeroContent {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    columns: var(--text-white);
    text-align: center;
}

.capsule {
    background: linear-gradient(135deg, rgb(117 195 225) 0%, rgb(145 212 252) 25%, rgb(12 149 201) 60%, rgb(116 194 224) 100%);
    padding: 8px 16px;
    border-radius: 25px;
    max-width: max-content;
    color: white;
    margin: 0 auto;
    box-shadow: 0 30px 70px rgba(20, 20, 40, 0.12), 0 4px 14px rgba(20, 20, 40, 0.05);
}

.mainHeroContent h1 {
    font-size: 60px;
    font-weight: 700;
    color: white;
}

.mainHeroContent p {
    color: white;
}


.bqr-root {
    position: relative;
}

    .bqr-root .bqr-card {
        width: 100%;
        /* max-width: 460px; */
        background: #ffffffc2;
        backdrop-filter: blur(8px);
        border-radius: 26px;
        padding: 30px 0;
        box-shadow: 0 30px 70px rgba(20, 20, 40, 0.12), 0 4px 14px rgba(20, 20, 40, 0.05);
        margin-bottom: 12rem;
        margin-top: 5rem;
        /* text-align: center; */
    }

.bqr-card .bqrrightParent {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

/* ---------- TABS ---------- */
.bqr-root .bqr-tabs {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0px;
    margin-bottom: 26px;
    justify-content: center;
    width: 30%;
}

.bqr-root .bqr-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #ffffff;
    border: 1.5px solid #f4f5f8;
    color: #8a8fa3;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 10px;
    /* border-radius: 12px; */
    cursor: pointer;
    transition: all 0.2s ease;
    height: 40px;
}

    .bqr-root .bqr-tab i {
        font-size: 13px;
    }

    .bqr-root .bqr-tab.bqr-active {
        background: #ecfaff;
        border-color: #429ac5;
        color: #4495c0;
    }

.bqrTAB1 {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.bqrTAB2 {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* ---------- EYEBROW + HEADING ---------- */
.bqr-root .bqr-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
    justify-content: center;
    background: #ffffff;
    max-width: max-content;
    /* margin: 10px auto; */
    padding: 3px 8px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgb(117 195 225) 0%, rgb(97 196 255) 25%, rgb(55 180 227) 60%, rgb(135 222 255) 100%);
}

    .bqr-root .bqr-eyebrow .bqr-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #ffffff;
        box-shadow: 0 0 0 0 rgba(239, 75, 106, 0.5);
        animation: bqrPulse 1.8s ease-out infinite;
    }

@keyframes bqrPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 75, 106, 0.45);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(239, 75, 106, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 75, 106, 0);
    }
}

.bqr-root .bqr-heading {
    font-size: 27px;
    font-weight: 800;
    color: #171a2b;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

    .bqr-root .bqr-heading span {
        background: linear-gradient(135deg, rgb(48 114 140) 0%, rgb(97 196 255) 25%, rgb(55 180 227) 60%, rgb(64 160 197) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.bqr-root .bqr-subtext {
    color: #8a8fa3;
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 26px;
}

/* ---------- FIELDS ---------- */
.bqr-root .bqr-field {
    margin-bottom: 18px;
}

.bqrFieldFlex {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
}

.bqr-root .bqr-field-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4495c0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.bqr-root .bqr-optional-tag {
    background: #ecfaff;
    color: #4495c0;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 1px 8px;
    border-radius: 20px;
}

.bqr-root .bqr-add-stop-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: none;
    color: #d98a12;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 2px 0;
    margin-bottom: 18px;
}

    .bqr-root .bqr-add-stop-link i {
        font-size: 11px;
    }

    .bqr-root .bqr-add-stop-link:hover {
        color: #b9760c;
    }

.bqr-root .bqr-input-shell {
    position: relative;
    display: flex;
    align-items: center;
    background: #f4f5f8;
    border: 1.5px solid #f4f5f8;
    border-radius: 13px;
    padding: 0 14px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

    .bqr-root .bqr-input-shell:focus-within {
        border-color: #4998c2;
        background: #fffdf9;
    }

    .bqr-root .bqr-input-shell .bqr-lead-icon {
        color: #a7abbd;
        font-size: 14.5px;
        width: 20px;
        flex-shrink: 0;
    }

    .bqr-root .bqr-input-shell input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        color: #171a2b;
        font-size: 14.5px;
        font-weight: 600;
        padding: 13.5px 8px;
        min-width: 0;
        position: relative;
    }

        .bqr-root .bqr-input-shell input::placeholder {
            color: #a7abbd;
            font-weight: 500;
        }

        .bqr-root .bqr-input-shell input[type="date"],
        .bqr-root .bqr-input-shell input[type="time"] {
            color-scheme: light;
            cursor: pointer;
        }

    .bqr-root .bqr-input-shell select {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        color: #171a2b;
        font-size: 14.5px;
        font-weight: 600;
        padding: 13.5px 8px;
        min-width: 0;
        position: relative;
    }

        .bqr-root .bqr-input-shell select::placeholder {
            color: #a7abbd;
            font-weight: 500;
        }

        .bqr-root .bqr-input-shell select[type="date"],
        .bqr-root .bqr-input-shell select[type="time"] {
            color-scheme: light;
            cursor: pointer;
        }

.bqr-root .bqr-badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #fff0d6;
    background: linear-gradient(135deg, rgb(138 222 255) 0%, rgb(97 196 255) 25%, rgb(55 180 227) 60%, rgb(64 160 197) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.bqr-root .bqr-input-shell:focus-within .bqr-badge-icon {
    background: #cfe8f1;
    color: #4998c2;
}

.bqr-root .bqr-close-stop {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: #eceef3;
    color: #8a8fa3;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 6px;
    transition: all 0.15s ease;
}

    .bqr-root .bqr-close-stop:hover {
        background: #ef4b6a;
        color: #ffffff;
    }

.bqr-root .bqr-row-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
}

.bqr-root .bqr-via-field,
.bqr-root .bqr-return-fields {
    display: none;
    overflow: hidden;
}

    .bqr-root .bqr-via-field.bqr-show,
    .bqr-root .bqr-return-fields.bqr-show {
        display: block;
        animation: bqrSlideDown 0.28s ease;
    }

@keyframes bqrSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bqr-root .bqr-error {
    border-color: #ef4b6a !important;
    background: #fff5f6 !important;
}

/* ---------- SUBMIT ---------- */
.bqr-root .bqr-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgb(117 195 225) 0%, rgb(97 196 255) 25%, rgb(55 180 227) 60%, rgb(135 222 255) 100%);
    color: #ffffff;
    border: none;
    font-size: 15.5px;
    font-weight: 600;
    padding: 10px 20px 10px 8px;
    max-width: max-content;
    border-radius: 16px;
    cursor: pointer;
    margin-top: 6px;
    transition: all 0.25s ease;
    /* box-shadow: 0 14px 30px rgba(239, 75, 106, 0.28); */
}

    .bqr-root .bqr-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 36px rgba(156, 237, 255, 0.36);
    }

    .bqr-root .bqr-submit:active {
        transform: translateY(0);
    }

    .bqr-root .bqr-submit .bqr-submit-icon {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        color: #4495c0;
        background: rgba(0, 0, 0, 0.18);
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
    }

.bqr-root .bqr-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #171a2b;
    color: #ffffff;
    font-weight: 700;
    font-size: 13.5px;
    padding: 13px 24px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
    white-space: nowrap;
}

    .bqr-root .bqr-toast.bqr-show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

@media (max-width: 380px) {
    .bqr-root .bqr-card {
        padding: 14px 0px 18px;
    }

    .bqr-root .bqr-heading {
        font-size: 23px;
    }
}

/************************** Hero Section css **************************/


/* secAbout */

.sec2-about {
    padding: 4rem 0 10rem 0;
    position: relative;
    /* background: linear-gradient(160deg, #90d693 0%, #005617 45%, #31563b 100%); */
    margin: 0rem;
    /* border-radius: 25px; */
}

    .sec2-about .capsule {
        margin: unset;
    }

.innerABOUT {
    background: linear-gradient(160deg, #ffffff 0%, #00561733 45%, #31563b36 100%);
}

.sec2-about .grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(120, 80, 200, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 80, 200, .07) 1px, transparent 1px);
    background-size: 70px 70px;
}

.sec2-about h2 {
    font-size: 72px;
    font-weight: 700;
    color: #247aa9;
    position: relative;
    z-index: 1;
    margin: 12px 0;
    /* text-align: center; */
}

.innerABOUT h2 {
    color: #005012;
}

.aboutSpan {
    color: transparent;
    display: inline-block;
    -webkit-text-stroke: 2px rgb(61 168 214);
}

.innerABOUT .aboutSpan {
    -webkit-text-stroke: 2px rgb(9 80 25);
}

.sec2-about .aboutContent p {
    color: #333333;
    padding: 6px 0;
    font-size: 16px;
}

.sec2-about .aboutContent h5 {
    margin: 12px 0;
    font-weight: 700;
}

.innerABOUT .aboutContent p {
    color: #004710;
}

.sec2-about .aboutImages .topIMG img {
    width: 35%;
    border-radius: 8px;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    z-index: 1;
    /* display: none; */
    position: absolute;
    left: 0;
    border-radius: 110px;
}

.sec2-about .aboutImages .bottomIMG {
    position: relative;
    /* top: -105px; */
    /* transform: translate(-50%, -50%); */
    /* left: 65px; */
    /* border: 2px dashed #c2f5cf; */
    max-width: 545px;
    padding: 8px;
    border-radius: 220px;
}

.innerABOUT .aboutImages .bottomIMG {
    border: 2px dashed #094d18;
}

.sec2-about .aboutImages .bottomIMG img {
    width: 100%;
    border-radius: 30px;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    /* border: 7px solid white; */
    /* padding: 10px; */
    position: relative;
    top: 110px;
    left: 50px;
}

.listTips {
    display: flex;
    gap: 15px;
    align-items: center;
    color: white;
    margin-top: 1rem;
}

.innerABOUT .listTips h3 {
    color: #135522;
}

.listTips lord-icon {
    width: 65px;
    height: 65px;
    background: #ffffff;
    border-radius: 8px;
}

.listTips h3 {
    font-size: 24px;
}

.sec2-about .aboutContent button p {
    font-size: unset;
    padding: unset;
}

.aboutContent .button {
    border: #ffffff solid 0.15em;
}

.innerABOUT .aboutContent .button {
    border: #135522 solid 0.15em;
}

.aboutContent .button::after,
.aboutContent .button::before {
    background: #8cc49b;
}

/* secAbout */


/* sec services */


.secServices {
    background-color: white;
    padding: 4rem 0;
    position: relative;
}

/* ── BG EFFECTS ── */
.srv-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .45
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: #c9eeff;
    top: -200px;
    left: -200px
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #afe9ff;
    bottom: 80px;
    right: -100px;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #b0e4ff;
    top: 40%;
    left: 55%;
    transform: translate(-50%, -50%)
}


.sectionSrv .blob-1,
.sectionSrv .blob-2,
.sectionSrv .blob-3 {
    background: #cfffdc;
}

.sectionSrv .corner-glow {
    background: radial-gradient(ellipse, rgb(207 255 220 / 64%) 0%, transparent 70%);
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(120, 80, 200, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 80, 200, .07) 1px, transparent 1px);
    background-size: 70px 70px;
}

.corner-glow {
    position: absolute;
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgb(217 245 255) 0%, transparent 70%);
    top: 0;
    right: 0;
}

.secServices .row {
    position: relative;
    z-index: 2;
}

.servicesTopContent h2 {
    font-size: 72px;
    font-weight: 700;
    color: #247aa9;
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 12px 0;
}

.servicesTopContent p {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.serCards {
    background: #ecfaff;
    padding: 15px;
    border-radius: 25px;
    border: 3px solid #87cef24f;
    transition: all .3s ease-in-out;
    background: linear-gradient( 135deg, #ecfaff, #ecfaff, #75c3e1, #559dc5 );
    background-size: 300% 300%;
    background-position: left;
    transition: background-position .5s ease;
    box-shadow: 0 30px 70px rgba(20, 20, 40, 0.12), 0 4px 14px rgba(20, 20, 40, 0.05);
}


.cardsheadIcon {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .cardsheadIcon lord-icon {
        width: 70px;
        height: 70px;
        background-color: white;
        border: 2px solid #247aa938;
        border-radius: 12px;
    }

.serCards h3 {
    color: #247aa9;
    font-weight: 700;
    letter-spacing: 0.2px;
    font-size: 32px;
}

.serCards p {
    padding: 13px 0;
}

.serCards:hover {
    background-position: right;
}

    .serCards:hover h3,
    .serCards:hover p {
        color: white;
    }

    .serCards:hover lord-icon {
        border: transparent;
    }

.secServices svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

.innerservCard .cardsheadIcon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

    .innerservCard .cardsheadIcon lord-icon {
        background-color: #f0fafd;
    }

.innerservCard h3 {
    font-size: 54px;
    font-weight: 700;
    font-style: normal;
    background: linear-gradient(135deg, rgb(33 63 85), rgb(112 204 255)) text;
    -webkit-text-fill-color: transparent;
}

.servIMG {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(20, 20, 40, 0.12), 0 4px 14px rgba(20, 20, 40, 0.05);
    /* border: 3px solid #a1dcf4; */
    background: #a1dcf3;
    background: linear-gradient(135deg, rgb(33 63 85), rgb(112 204 255));
}

    .servIMG img {
        width: 98%;
        border-radius: 20px;
        transition: all .3s ease-in-out;
        margin: 4px auto;
        display: flex;
        justify-content: center;
        /* background: beige; */
    }

        .servIMG img:hover {
            transform: scale(1.04);
        }
/* sec services */



/* secFleets */
.secFleets {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgb(255 255 255), rgb(215 241 255), rgb(255 255 255));
}

.innerFleets {
    background: linear-gradient(160deg, #ffffff 0%, #00561733 45%, #31563b36 100%) !important;
}

.secFleets .capsule {
    /* margin: unset; */
    margin-bottom: 1rem;
}

.secFleets h2 {
    font-size: clamp(38px, 5.5vw, 66px);
    font-weight: 800;
    line-height: 1.1;
    /* letter-spacing: -2px; */
    margin-bottom: 22px;
    color: #247aa9;
}

    .secFleets h2 em {
        font-style: normal;
        background: linear-gradient(135deg, rgb(33 63 85), rgb(112 204 255)) text;
        -webkit-text-fill-color: transparent;
    }

    .secFleets h2 span {
        color: transparent;
        display: inline-block;
        -webkit-text-stroke: 2px rgb(197 255 212);
    }

.fleetTopContent {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

    .fleetTopContent p {
        font-weight: 400;
        color: #333333;
    }

.FleetsCard {
    display: flex;
    flex-direction: column;
    background: antiquewhite;
    background: white;
    padding: 30px 20px;
    gap: 20px;
    border-radius: 40px;
    align-items: center;
    border: 2px solid #21719c45;
    box-shadow: 0 0px 4px rgba(20, 20, 40, 0.12), 0 4px 14px rgba(20, 20, 40, 0.05);
}

    .FleetsCard h3 {
        font-weight: 600;
        font-size: 34px;
    }

.fleetsRight {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.FleetsCard h3 {
    color: #247aa9;
}

.FleetsCard p {
    color: #000000;
}

.FleetsCard img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    /* background: #206b94; */
    background: linear-gradient(135deg, rgb(33 63 85), rgb(112 204 255));
    border-radius: 35px;
}

.fleetsRight .button {
    color: #ffffff;
    border: #125624 solid 0.15em;
}

    .fleetsRight .button:hover p {
        color: white;
    }

.secFleets .swiper-wrapper {
    margin-top: 1rem;
}

.swiper-pagination-bullet {
    width: 16px !important;
    border-radius: 8px !important;
    transition: all .4s ease-in-out !important;
    background: #000000 !important;
}

.swiper-pagination-bullet-active {
    /* background: #c5ffd4 !important; */
    background: linear-gradient(135deg, rgb(33 63 85), rgb(112 204 255)) !important;
    width: 35px !important;
}

.innerFleets .swiper-pagination-bullet-active {
    background: #006d19 !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;
}

.innerfleets .swiper-button-next, .innerfleets .swiper-button-prev {
    top: 28px !important;
}

.swiper-button-next,
.swiper-button-prev {
    align-items: center;
    color: #ffffff !important;
    cursor: pointer;
    display: flex;
    height: 42px;
    justify-content: center;
    position: absolute;
    width: 42px;
    z-index: 10;
    background: linear-gradient(135deg, rgb(33 63 85), rgb(85 157 197));
    padding: 12px;
    border-radius: 22px;
    border: 1px solid #ece2fe;
}

.innerFleets .swiper-pagination-bullet {
    background: #0b5c1e !important;
}

/* secFleets */

/* ══════════════════
     OUTER WRAPPER
  ══════════════════ */

.sec6_contactform .contact-section {
    position: relative;
    z-index: 1;
    /* max-width: 1280px; */
    width: 100%;
    display: grid;
    /* grid-template-columns: 1fr 1.15fr; */
    gap: 0;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px rgb(0 0 0 / 11%);
    margin: 3rem auto;
    align-items: center;
    border: 2px solid #cdedf9;
    background: linear-gradient(72deg, #0c0829 0%, #401e61 45%, #422979 100%);
    background: linear-gradient(160deg, #90d693 0%, #005617 45%, #31563b 100%);
    background: linear-gradient(135deg, #ecfaff, #ecfaff, #9edbf3, #c5eaff) !important;
}

@media (max-width: 860px) {
    .sec6_contactform .contact-section {
        grid-template-columns: 1fr;
    }

    .sec6_contactform .info-panel {
        order: -1;
    }
}

/* ══════════════════
     LEFT — INFO PANEL
  ══════════════════ */
.sec6_contactform .info-panel {
    padding: 0px 10px;
}

    /* top accent bar */

    /* decorative large number bg */
    .sec6_contactform .info-panel .bg-text {
        position: absolute;
        bottom: -20px;
        right: -10px;
        font-size: 180px;
        font-weight: 800;
        color: rgba(0, 229, 160, .025);
        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: .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;
}

/* divider */
.sec6_contactform .info-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 229, 160, .25), transparent);
    margin-bottom: 36px;
}

/* contact info items */
.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, .08);
    border: 1px solid rgba(0, 229, 160, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, border-color .3s, transform .3s;
}

.sec6_contactform.info-item:hover .info-icon-wrap {
    background: rgba(0, 229, 160, .15);
    border-color: rgba(0, 229, 160, .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;
}

.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 .3s;
}

.sec6_contactform .info-item:hover .info-item-value {
    color: var(--accent-hi);
}

/* social row */
.sec6_contactform .social-row {
    display: flex;
    gap: 10px;
}

.sec6_contactform .social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .3s, border-color .3s, transform .3s;
}

    .sec6_contactform .social-btn:hover {
        background: rgba(0, 229, 160, .1);
        border-color: rgba(0, 229, 160, .35);
        transform: translateY(-3px);
    }

    .sec6_contactform .social-btn svg {
        width: 16px;
        height: 16px;
        fill: var(--muted2);
        transition: fill .3s;
    }

    .sec6_contactform .social-btn:hover svg {
        fill: var(--accent);
    }

/* ══════════════════
     RIGHT — FORM
  ══════════════════ */
.sec6_contactform .form-panel {
    background: linear-gradient(160deg, #574ea1 0%, #2e1447 45%, #412d6e 100%);
    background: linear-gradient(160deg, #90d693 0%, #005617 45%, #31563b 100%);
    padding: 44px 42px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
    animation: slideR .9s cubic-bezier(.23, 1, .32, 1) .3s forwards;
    background: linear-gradient(135deg, #ecfaff, #ecfaff, #9edbf3, #c5eaff) !important;
}

    .sec6_contactform .form-panel::after {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(0, 229, 160, .05), transparent 70%);
        pointer-events: none;
    }

.sec6_contactform .form-heading {
    font-size: 36px;
    font-weight: 700;
    color: #247aa9;
    margin-bottom: 6px;
}

.sec6_contactform .form-sub {
    font-size: 13.5px;
    font-weight: 500;
    color: #247aa9;
    margin-bottom: 36px;
    line-height: 1.6;
}

/* form grid */
.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: 0px;
}

    .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: #247aa9;
    padding-left: 2px;
    transition: color .3s;
}

.sec6_contactform .input-wrap {
    position: relative;
    margin-bottom: 20px;
}

.sec6_contactform .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    fill: #247aa9;
    transition: fill .3s;
    pointer-events: none;
}

.sec6_contactform .textarea-icon {
    top: 16px;
    transform: none;
}

.sec6_contactform .form-input,
.sec6_contactform .form-textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid white;
    border-radius: 11px;
    color: #33255a;
    /* font-family: 'DM Sans', sans-serif; */
    font-size: 14px;
    font-weight: 300;
    padding: 13px 14px 13px 40px;
    outline: none;
    transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
    -webkit-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 {
        border-color: #247aa9 !important;
        background: #247aa9;
        /* box-shadow: 0 0 0 3px rgba(0, 229, 160, .08), 0 4px 16px rgba(0, 0, 0, .3); */
        color: white;
    }

.sec6_contactform .form-group:focus-within .form-label {
    color: #247aa9;
}

.sec6_contactform .form-group:focus-within .input-icon {
    fill: white;
}

/* select */
.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;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color .3s, background .3s, box-shadow .3s;
}

    .sec6_contactform .form-select:focus {
        border-color: var(--border-focus);
        background: #252525;
        box-shadow: 0 0 0 3px rgba(0, 229, 160, .08);
    }

.sec6_contactform .select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    fill: var(--muted);
    pointer-events: none;
}

/* char counter */
.sec6_contactform .char-count {
    text-align: right;
    font-size: 11px;
    color: var(--muted);
    padding-right: 2px;
    margin-top: -14px;
    margin-bottom: 6px;
}

.char-count span {
    margin-top: 6px;
    display: block;
    color: white;
}

/* submit row */
.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: #247aa8;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .sec6_contactform .privacy-note svg {
        width: 13px;
        height: 13px;
        fill: #247aa9;
        opacity: .7;
        flex-shrink: 0;
    }

.sec6_contactform .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-dark);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .3px;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .3s, transform .3s, gap .3s, box-shadow .3s;
}

    .sec6_contactform .submit-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
        opacity: 0;
        transition: opacity .3s;
    }

    .sec6_contactform .submit-btn:hover {
        background: var(--accent-hi);
        transform: translateY(-2px);
        gap: 14px;
        box-shadow: 0 10px 28px rgba(0, 229, 160, .3);
    }

        .sec6_contactform .submit-btn:hover::before {
            opacity: 1;
        }

    .sec6_contactform .submit-btn:active {
        transform: translateY(0);
        box-shadow: none;
    }

    .sec6_contactform .submit-btn svg {
        width: 15px;
        height: 15px;
        transition: transform .3s;
    }

    .sec6_contactform .submit-btn:hover svg {
        transform: translateX(3px);
    }

/* success msg (hidden by default) */
.sec6_contactform .success-msg {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(0, 229, 160, .08);
    border: 1px solid rgba(0, 229, 160, .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: 707px;
    border-radius: 10px;
    background: url(../images/Banner_image.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .leftPanelBG > div {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .leftPanelBG > div img {
            display: none;
        }

.submit-row .button {
    border: #c5ffd4 solid 0.15em;
    color: #ffffff;
}

    .submit-row .button::after,
    .submit-row .button::before {
        background: #c4fdd3;
    }

@keyframes slideL {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideR {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* footer */

footer {
    padding: 2rem 0;
    background: linear-gradient(135deg, #ffffff, #70bdd9, #9edbf3, #c5eaff) !important;
}

.footerLogo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footerLogo .social-icons {
        display: flex;
        gap: 12px;
    }

footer .footerLogo img {
    width: 60%;
    /* background-color: white; */
    /* padding: 15px 0; */
    border-radius: 20px;
}

.footerLogo p {
    color: white;
    padding-top: 1rem;
}

.footerLinks {
    display: flex;
    justify-content: center;
}

    .footerLinks ul li a {
        color: white;
        padding: 4px 0;
        display: flex;
        gap: 10px;
        align-items: center;
        transition: all .3s ease-in-out;
    }

        .footerLinks ul li a i {
            background: #ffffff;
            height: 35px;
            width: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            border: 2px solid white;
            color: #000000;
            transition: all .3s ease-in-out;
            box-shadow: 0 0px 4px rgba(20, 20, 40, 0.12), 0 4px 14px rgba(20, 20, 40, 0.05);
        }

        .footerLinks ul li a:hover {
            color: #116c9d;
        }

            .footerLinks ul li a:hover i {
                background: transparent !important;
                color: white;
            }

    .footerLinks ul h3 {
        color: white;
        font-weight: 600;
        padding-bottom: 1rem;
    }

footer .social-icons a {
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    color: #302356;
    border: 2px solid white;
    transition: all .3s ease-in-out;
    box-shadow: 0 0px 4px rgba(20, 20, 40, 0.12), 0 4px 14px rgba(20, 20, 40, 0.05);
}

.addresUN i {
    width: 46px !important;
}

footer .social-icons a:hover {
    background: transparent;
    color: white;
}

.bottomFooter {
    display: flex;
    justify-content: space-between;
    color: white;
    border-top: 2px solid white;
    margin-top: 2.5rem;
    padding-top: 2rem;
}

    .bottomFooter a {
        color: #fff;
        transition: all .3s ease-in-out;
    }

        .bottomFooter a:hover {
            color: #257aa8;
        }

/* footer */
/* inner pages banner css */
.banner-section {
    width: 100%;
    padding: 80px;
    background: linear-gradient(135deg, #021F08 0%, #0B5D1E 25%, #1A8F3A 60%, #204a00 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .banner-section h2 {
        font-size: 72px;
        font-weight: 700;
        color: #fff;
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.about_section_inner {
    background: none;
}

    .about_section_inner .aboutImages .bottomIMG {
        border: 2px dashed #39235e;
    }

    .about_section_inner .aboutContent p {
        color: var(--text-black);
    }

    .about_section_inner .listTips {
        color: var(--text-black);
    }

/* inner pages banner css */
/* servicesInner */

.servicesInner .aboutTopHeading h2 {
    font-size: 60px;
    letter-spacing: unset;
    margin-bottom: 1rem;
}

    .servicesInner .aboutTopHeading h2 .fillSpanBg {
        color: #efce55;
        -webkit-text-stroke: 0px #eecb4a;
    }

.servicesInner .rightImg {
    right: 0px;
    max-width: unset;
}

    .servicesInner .rightImg img {
        width: 80%;
    }

.servInnerCircle img {
    width: 40%;
    position: absolute;
    bottom: -80px;
    /* border: 7px solid #6095a8; */
    box-shadow: rgb(99 99 99 / 24%) 0px 2px 8px 0px;
    border-radius: 500px;
}

.servicesInner .secAbout {
    padding-bottom: 7rem;
}

.rightImg img {
    border-radius: 50px;
    width: 100%;
    box-shadow: rgb(99 99 99 / 24%) 0px 2px 8px 0px;
    border: 2px dashed #005012;
    padding: 10px;
}

.aboutTopHeading h2 {
    font-size: 100px;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1.0;
    letter-spacing: -.02em;
}

.aboutSpan2 {
    color: transparent;
    display: inline-block;
    -webkit-text-stroke: 2px rgb(80 8 159);
}

.aboutTopHeading h2 {
    color: #005012;
}

.servicesInner .aboutSpan2 {
    -webkit-text-stroke: 2px #005012;
}

.servicesInner .rightContent b {
    color: #005012;
}

.endrightimage {
    display: flex;
    justify-content: flex-end;
}

.sectionFleets {
    background: none;
}

    .sectionFleets .FleetsCard {
        border: 2px solid #99979d;
    }

/* servicesInner */
.sca-corporate {
    position: relative;
    background: radial-gradient(circle at 12% 18%, rgba(24, 165, 88, 0.10), transparent 45%), radial-gradient(circle at 88% 82%, rgba(24, 165, 88, 0.08), transparent 50%), var(--sca-bg);
    overflow: hidden;
    padding: 7rem 0;
    font-family: var(--sca-font-body);
    color: var(--sca-ink);
}

/* ---------- ambient glow blobs ---------- */
.sca-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.sca-bg-glow--1 {
    width: 480px;
    height: 480px;
    top: -180px;
    left: -160px;
    background: radial-gradient(circle, var(--sca-green-glow), transparent 70%);
    animation: sca-pulse 9s ease-in-out infinite;
}

.sca-bg-glow--2 {
    width: 420px;
    height: 420px;
    bottom: -160px;
    right: -140px;
    background: radial-gradient(circle, rgba(24, 165, 88, 0.22), transparent 70%);
    animation: sca-pulse 11s ease-in-out infinite reverse;
}

@keyframes sca-pulse {

    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.sca-corporate .container {
    position: relative;
    z-index: 1;
}

/* ===========================================================
     LEFT — VISUAL
  =========================================================== */
.sca-visual {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.sca-frame {
    position: relative;
    padding: 14px;
}

/* animated rotating gradient ring — signature element */
.sca-frame-ring {
    position: absolute;
    inset: 0;
    border-radius: calc(var(--sca-radius) + 14px);
    background: conic-gradient(from 0deg, var(--sca-green-400), var(--sca-green-700), var(--sca-green-500), var(--sca-green-400) 100%);
    animation: sca-spin 12s linear infinite;
    z-index: 0;
}

    .sca-frame-ring::after {
        content: "";
        position: absolute;
        inset: 3px;
        border-radius: calc(var(--sca-radius) + 11px);
        background: var(--sca-bg);
    }

@keyframes sca-spin {
    to {
        transform: rotate(360deg);
    }
}

.sca-image-panel {
    position: relative;
    z-index: 1;
    border-radius: var(--sca-radius);
    aspect-ratio: 4/5;
    overflow: hidden;
    background: linear-gradient(155deg, #1039231c 0%, #0b6b3c00 42%, #18a55885 100%), url(../images/Airport-Transfers-2.png) center / cover no-repeat;
    box-shadow: var(--sca-shadow-soft);
    display: flex;
    align-items: flex-end;
}

    /* subtle dot-grid texture */
    .sca-image-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.4px, transparent 1.4px);
        background-size: 22px 22px;
        opacity: 0.5;
    }

    .sca-image-panel::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 30%, rgba(7, 28, 17, 0.78) 100%);
    }

.sca-image-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 1.75rem 1.9rem;
    color: #fff;
}

.sca-car-icon {
    position: absolute;
    top: -220%;
    right: 6%;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.16);
    transform: rotate(-8deg);
}

.sca-image-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--sca-font-display);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: .5rem;
}

    .sca-image-kicker i {
        color: var(--sca-green-400);
    }

.sca-image-caption {
    display: block;
    font-family: var(--sca-font-serif);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.25;
}

/* floating glass chips */
.sca-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .7rem;
    background: var(--sca-surface);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--sca-radius-sm);
    padding: .7rem 1rem;
    box-shadow: 0 16px 36px -14px rgba(13, 31, 23, 0.22);
    z-index: 3;
    animation: sca-float 5s ease-in-out infinite;
}

    .sca-chip i {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 11px;
        background: linear-gradient(145deg, var(--sca-green-500), var(--sca-green-700));
        color: #fff;
        font-size: .95rem;
        flex-shrink: 0;
    }

    .sca-chip strong {
        display: block;
        font-family: var(--sca-font-display);
        font-size: .82rem;
        font-weight: 700;
        color: var(--sca-ink);
        line-height: 1.2;
    }

    .sca-chip span {
        display: block;
        font-size: .72rem;
        color: var(--sca-ink-muted);
    }

.sca-chip--top {
    top: 8%;
    right: -8%;
    animation-delay: .3s;
}

.sca-chip--bottom {
    bottom: 9%;
    left: -10%;
    animation-delay: 1s;
}

@keyframes sca-float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===========================================================
     RIGHT — CONTENT
  =========================================================== */
.sca-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--sca-font-display);
    font-weight: 700;
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--sca-green-700);
    background: var(--sca-bg-soft);
    border: 1px solid var(--sca-border);
    border-radius: 50px;
    padding: .45rem 1rem;
    margin-bottom: 1.4rem;
}

    .sca-eyebrow i {
        font-size: .8rem;
    }

.sca-heading {
    font-family: var(--sca-font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3.4vw, 2.85rem);
    line-height: 1.14;
    letter-spacing: -0.01em;
    margin-bottom: 1.1rem;
    color: var(--sca-ink);
}

    .sca-heading span {
        font-weight: 700;
        background: linear-gradient(100deg, var(--sca-green-700), var(--sca-green-400));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.sca-desc {
    font-size: 1.04rem;
    line-height: 1.75;
    color: var(--sca-ink-muted);
    max-width: 540px;
    margin-bottom: 2.1rem;
}

/* ---------- benefits grid ---------- */
.sca-benefits {
    margin-bottom: 2.2rem;
}

.sca-benefit {
    height: 100%;
    display: flex;
    align-items: center;
    gap: .85rem;
    background: var(--sca-surface);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--sca-border);
    border-radius: var(--sca-radius-sm);
    padding: .95rem 1rem;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

    .sca-benefit:hover {
        transform: translateY(-6px);
        box-shadow: var(--sca-shadow-lift);
        border-color: rgba(24, 165, 88, 0.35);
    }

.sca-benefit-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--sca-green-500), var(--sca-green-700));
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 10px 20px -8px rgba(14, 143, 77, 0.55);
}

.sca-benefit-label {
    font-family: var(--sca-font-display);
    font-weight: 600;
    font-size: .92rem;
    line-height: 1.25;
    color: var(--sca-ink);
}

/* ---------- stats ---------- */
.sca-stats {
    display: flex;
    background: var(--sca-surface-solid);
    border: 1px solid var(--sca-border);
    border-radius: var(--sca-radius);
    box-shadow: var(--sca-shadow-soft);
    padding: 1.5rem .5rem;
    margin-bottom: 2.4rem;
}

.sca-stat {
    flex: 1;
    text-align: center;
    padding: 0 .5rem;
    position: relative;
}

    .sca-stat + .sca-stat::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8%;
        bottom: 8%;
        width: 1px;
        background: var(--sca-border);
    }

.sca-stat-number {
    display: block;
    font-family: var(--sca-font-serif);
    font-weight: 600;
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    background: linear-gradient(120deg, var(--sca-green-700), var(--sca-green-400));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.sca-stat-label {
    display: block;
    margin-top: .3rem;
    font-size: .78rem;
    font-weight: 500;
    color: var(--sca-ink-muted);
}

/* ---------- CTAs ---------- */
.sca-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.sca-btn-primary {
    font-family: var(--sca-font-display);
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    background: linear-gradient(120deg, var(--sca-green-600), var(--sca-green-400));
    border: none;
    border-radius: 50px;
    padding: .95rem 1.9rem;
    box-shadow: 0 16px 34px -12px rgba(14, 143, 77, 0.55);
    transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

    .sca-btn-primary:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 22px 42px -12px rgba(14, 143, 77, 0.65);
        filter: brightness(1.05);
    }

.sca-btn-secondary {
    font-family: var(--sca-font-display);
    font-weight: 700;
    font-size: .95rem;
    color: var(--sca-green-700);
    background: var(--sca-surface);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(15, 90, 55, 0.25);
    border-radius: 50px;
    padding: .95rem 1.9rem;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

    .sca-btn-secondary:hover {
        color: var(--sca-green-700);
        transform: translateY(-3px);
        background: #fff;
        border-color: var(--sca-green-500);
    }

    .sca-btn-primary:focus-visible,
    .sca-btn-secondary:focus-visible {
        outline: 3px solid var(--sca-green-400);
        outline-offset: 2px;
    }

/* ===========================================================
     RESPONSIVE
  =========================================================== */
@media (max-width: 991.98px) {
    .sca-corporate {
        padding: 5rem 0;
    }

    .sca-visual {
        margin-bottom: 1rem;
    }

    .sca-chip--top {
        right: 2%;
    }

    .sca-chip--bottom {
        left: 2%;
    }
}

@media (max-width: 575.98px) {
    .sca-corporate {
        padding: 4rem 0;
    }

    .sca-chip {
        padding: .55rem .8rem;
    }

        .sca-chip strong {
            font-size: .74rem;
        }

        .sca-chip span {
            font-size: .66rem;
        }

    .sca-stats {
        padding: 1.2rem .25rem;
    }

    .sca-stat-number {
        font-size: 1.3rem;
    }

    .sca-stat-label {
        font-size: .68rem;
    }

    .sca-cta {
        flex-direction: column;
    }

        .sca-cta .btn {
            width: 100%;
            text-align: center;
        }
}

@media (prefers-reduced-motion: reduce) {

    .sca-frame-ring,
    .sca-bg-glow,
    .sca-chip {
        animation: none !important;
    }
}

/*Booking Inner Pages CSS*/
.sec-result {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        background: linear-gradient(135deg, #75c3e1, #ecfaff, #9edbf3, #c5eaff) !important;
        position: relative;
        z-index: 2;
        border-radius: 50px;
        border: 2px solid #2d536e;
    }

        .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: 70px;
                    height: 100%;
                    object-fit: contain;
                    background: #fff;
                    border-radius: 50%;
                    padding: 8px;
                    border: 2px solid #53bff6;
                }

            .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: #2d536e;
                }

                .sec-result .upper-list li .text-box p {
                    font-size: 14px;
                }

    .sec-result .number-box {
        padding: 30px 40px;
    }

        .sec-result .number-box ul {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .number-box ul li {
                width: 24%;
                position: relative;
            }

                .sec-result .number-box ul li .num-circle {
                    text-align: center;
                }

                    .sec-result .number-box ul li .num-circle h6 {
                        background-color: #ededed;
                        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: 1px solid #2d536e;
                    }

                    .sec-result .number-box ul li .num-circle p {
                        font-size: 14px;
                        margin-top: 15px;
                        text-transform: uppercase;
                        color: #000;
                    }

    .sec-result .completed {
        color: #2d536e !important;
        background: linear-gradient(135deg, #75c3e1, #ecfaff, #9edbf3, #c5eaff) !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: #ffffff;
    margin: 20px 0;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    z-index: 2;
    border: 2px solid #2d536e;
    border-radius: 25px;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            object-fit: contain;
            background: linear-gradient(135deg, #75c3e1, #ecfaff, #9edbf3, #c5eaff) !important;
            border: 1px solid #2d536e;
            border-radius: 15px;
        }

    .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: #ffbf00;
                padding: 4px;
                border-radius: 5px;
                width: 26px;
            }

    .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;
            gap: 5px;
        }

            .update-fleet-box .fleet-detail .passenger-list li {
                font-size: 12px;
                padding: 0 0px 0 0;
                font-weight: 600;
                color: #242526;
            }

                .update-fleet-box .fleet-detail .passenger-list li i {
                    font-size: 16px;
                }

        .update-fleet-box .fleet-detail .passenger-list-2 {
            padding: 10px 0;
        }

            .update-fleet-box .fleet-detail .passenger-list-2 li {
                font-size: 15px;
                padding: 3px 10px;
                border: 1px solid #2d536e;
                margin: 6px 0;
                border-radius: 6px;
                font-size: 12px;
                width: fit-content;
                color: #2d536e;
                background: linear-gradient(135deg, #75c3e1, #ecfaff, #9edbf3, #c5eaff) !important;
                font-weight: 600;
            }

                .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 {
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: linear-gradient(135deg, #75c3e1, #ecfaff, #9edbf3, #c5eaff) !important;
    position: relative;
    z-index: 2;
    border: 2px solid #2d536e;
    border-radius: 25px;
}

    .right-card .top-heading {
        display: flex;
        align-items: center;
        padding: 10px 0 15px;
    }

        .right-card .top-heading i {
            font-size: 24px;
            padding-right: 10px;
            color: #000000;
        }

        .right-card .top-heading h5 {
            font-size: 22px;
            color: #000000;
        }

    .right-card .distance-box {
        padding: 20px 0;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #000000;
    }

        .right-card .distance-box h6 {
            color: #000;
        }

        .right-card .distance-box ul {
            padding: 10px 0 0;
        }

            .right-card .distance-box ul li {
                font-size: 14px;
                padding: 5px 0px;
                color: #000;
            }

                .right-card .distance-box ul li i {
                    font-size: 16px;
                    color: #000000;
                    padding-right: 5px;
                }

    .right-card .cal-mile {
        padding: 10px 0 0;
    }

        .right-card .cal-mile li {
            font-size: 16px;
            padding: 5px 0;
            color: #000;
        }

            .right-card .cal-mile li i {
                padding-right: 5px;
                color: #000000;
            }

    .right-card .distance-box-2 ul li {
        font-size: 14px;
        padding: 5px 0;
        color: #000;
    }

        .right-card .distance-box-2 ul li i {
            font-size: 15px;
            color: #000000;
            padding-right: 3px;
        }

.ui-menu {
    width: 400px !important;
    height: 250px !important;
    overflow-y: scroll;
    overflow-x: hidden;
}

.Passenger-Information {
    background: #ffffff;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid #345772;
    border-radius: 25px;
    position: relative;
    z-index: 2;
}

    .Passenger-Information h3 {
        font-size: 32px;
        font-weight: 700;
        padding-bottom: 15px;
        color: #355973;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: center;
            padding: 4px 0;
            font-size: 14px;
            font-weight: 600;
            line-height: 18px;
            color: #166995;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #355973 !important;
            font-size: 16px !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-wrapper:hover {
    background: linear-gradient(135deg, rgb(117 195 225) 0%, rgb(97 196 255) 25%, rgb(55 180 227) 60%, rgb(135 222 255) 100%) !important;
    color: #fff !important;
}
/*.ui-menu .ui-menu-item {
    width: 350px !important;
}*/
/*Booking Inner Pages CSS*/
/************************** media-query **************************/
@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
        gap: 4px;
        font-size: 14px;
    }

        .main-header .mini-header .contact-info .mobile_number a i, .main-header .mini-header .contact-info .email_address a i {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }

    .main-header .mini-header .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .main-header .mini-header .contact-info {
        gap: 7px;
    }

    .main-header .mini-header .social-icons {
        gap: 7px;
    }

    .main-header .mini-header {
        padding: 7px 0px;
    }

    .main-header .navbar-expand-lg .header-logo {
        width: 140px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        padding: 7px;
        gap: 10px;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
        }

    .getParent .global_btn {
        height: 36px;
        padding: 0 12px;
        font-size: 14px;
        border-radius: 10px;
    }

        .getParent .global_btn:before {
            font-size: 14px;
        }

        .getParent .global_btn i {
            font-size: 14px;
        }

    .hero-section .uniqueROW {
        top: 160px;
    }

    .mainHeroContent {
        gap: 10px;
    }

    .capsule {
        padding: 6px 12px;
    }

        .capsule h4 {
            font-size: 14px;
        }

    .mainHeroContent h1 {
        font-size: 32px;
    }

    .mainHeroContent p {
        font-size: 14px;
    }

    .bqr-root .bqr-card {
        margin-bottom: 7rem;
        margin-top: 2rem;
    }

    .bqr-root .bqr-eyebrow {
        gap: 5px;
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .bqr-root .bqr-heading {
        font-size: 32px;
    }

    .bqr-root .bqr-subtext {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .bqr-root .bqr-tab {
        gap: 5px;
        font-size: 12px;
        padding: 8px 16px;
        height: 35px;
    }

    .bqr-root .bqr-field {
        margin-bottom: 10px;
    }

    .bqr-root .bqr-field-label {
        font-size: 10px;
        margin-bottom: 7px;
    }

    .bqr-root .bqr-input-shell {
        padding: 0 8px;
    }

        .bqr-root .bqr-input-shell input {
            font-size: 14px;
            padding: 10px 4px;
        }

        .bqr-root .bqr-input-shell select {
            font-size: 14px;
            padding: 10px 4px;
        }

    .sec2-about {
        padding: 2rem 0 7rem 0;
    }

        .sec2-about h2 {
            font-size: 52px;
            margin: 8px 0;
        }

        .sec2-about .aboutContent h5 {
            margin: 8px 0;
            font-size: 16px;
        }

        .sec2-about .aboutContent p {
            padding: 3px 0;
            font-size: 14px;
        }

        .sec2-about .aboutImages .bottomIMG {
            max-width: 430px;
        }

            .sec2-about .aboutImages .bottomIMG img {
                top: 80px;
                left: 35px;
            }

        .sec2-about .aboutImages .topIMG img {
            width: 30%;
            left: -20px;
        }

    .secServices {
        padding: 2rem 0;
    }

    .servicesTopContent h2 {
        font-size: 42px;
        margin: 8px 0;
    }

    .servicesTopContent p {
        font-size: 14px;
    }

    .serCards h3 {
        font-size: 22px;
    }

    .cardsheadIcon lord-icon {
        width: 50px;
        height: 50px;
    }

    .serCards p {
        padding: 8px 0;
        font-size: 14px;
    }

    .secFleets {
        padding: 2rem 0;
    }

        .secFleets h2 {
            font-size: 42px;
            margin-bottom: 10px;
        }

    .fleetTopContent p {
        font-size: 14px;
    }

    .swiper-button-prev {
        right: 5% !important;
    }

    .FleetsCard {
        padding: 15px 10px;
        gap: 10px;
        border-radius: 25px;
    }

        .FleetsCard img {
            height: 150px;
            border-radius: 15px;
        }

    .imagehandler {
        width: 100%;
    }

    .fleetsRight {
        gap: 5px;
    }

    .FleetsCard h3 {
        font-size: 24px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform .form-panel {
        padding: 30px 25px;
    }

    .sec6_contactform .form-heading {
        font-size: 32px;
    }

    .sec6_contactform .form-sub {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .sec6_contactform .form-label {
        font-size: 10px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        font-weight: 400;
        padding: 10px 10px 10px 35px;
    }

    .footerLogo {
        gap: 5px;
    }

        .footerLogo p {
            font-size: 14px;
            padding-top: 0.5rem;
        }

        .footerLogo .social-icons {
            gap: 8px;
        }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footerLinks ul h3 {
        font-size: 24px;
        padding-bottom: 0.5rem;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px;
        font-size: 14px;
    }

    .footerLinks ul li a {
        padding: 3px 0;
        gap: 7px;
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1.2rem;
        padding-top: 1.2rem;
    }

        .bottomFooter p {
            font-size: 14px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    #MobileActionBtn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    #scrollBtn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .sec6_contactform .contact-section {
        margin: 2rem auto;
    }

    footer .footerLogo img {
        width: 70%;
    }

    .innerBanner {
        border-radius: 25px;
        margin: 0 1rem 1rem;
    }

    .innerContent {
        gap: 5px;
    }

        .innerContent h2 {
            font-size: 52px;
        }

    .breadcrumbs a {
        font-size: 14px;
    }

    .innerBanner .row {
        height: 35vh;
    }

    .innerservCard .cardsheadIcon {
        gap: 15px;
        margin-bottom: 10px;
    }

    .innerservCard h3 {
        font-size: 42px;
    }

    .innerservCard p {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
        gap: 4px;
        font-size: 14px;
    }

        .main-header .mini-header .contact-info .mobile_number a i, .main-header .mini-header .contact-info .email_address a i {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }

    .main-header .mini-header .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .main-header .mini-header .contact-info {
        gap: 7px;
    }

    .main-header .mini-header .social-icons {
        gap: 7px;
    }

    .main-header .mini-header {
        padding: 7px 0px;
    }

    .main-header .navbar-expand-lg .header-logo {
        width: 140px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        padding: 7px;
        gap: 0px;
        margin-bottom: 10px;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
        }

    .getParent .global_btn {
        height: 36px;
        padding: 0 12px;
        font-size: 14px;
        border-radius: 10px;
    }

        .getParent .global_btn:before {
            font-size: 14px;
        }

        .getParent .global_btn i {
            font-size: 14px;
        }

    .hero-section .uniqueROW {
        top: 160px;
    }

    .mainHeroContent {
        gap: 10px;
    }

    .capsule {
        padding: 6px 12px;
    }

        .capsule h4 {
            font-size: 14px;
        }

    .mainHeroContent h1 {
        font-size: 32px;
    }

    .mainHeroContent p {
        font-size: 14px;
    }

    .bqr-root .bqr-card {
        margin-bottom: 7rem;
        margin-top: 2rem;
    }

    .bqr-root .bqr-eyebrow {
        gap: 5px;
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .bqr-root .bqr-heading {
        font-size: 32px;
    }

    .bqr-root .bqr-subtext {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .bqr-root .bqr-tab {
        gap: 5px;
        font-size: 12px;
        padding: 8px 16px;
        height: 35px;
    }

    .bqr-root .bqr-field {
        margin-bottom: 10px;
    }

    .bqr-root .bqr-field-label {
        font-size: 10px;
        margin-bottom: 7px;
    }

    .bqr-root .bqr-input-shell {
        padding: 0 8px;
    }

        .bqr-root .bqr-input-shell input {
            font-size: 14px;
            padding: 10px 4px;
        }

        .bqr-root .bqr-input-shell select {
            font-size: 14px;
            padding: 10px 4px;
        }

    .sec2-about {
        padding: 2rem 0 7rem 0;
    }

        .sec2-about h2 {
            font-size: 52px;
            margin: 8px 0;
        }

        .sec2-about .aboutContent h5 {
            margin: 8px 0;
            font-size: 16px;
        }

        .sec2-about .aboutContent p {
            padding: 3px 0;
            font-size: 14px;
        }

        .sec2-about .aboutImages .bottomIMG {
            max-width: 430px;
        }

            .sec2-about .aboutImages .bottomIMG img {
                top: 80px;
                left: 35px;
            }

        .sec2-about .aboutImages .topIMG img {
            width: 30%;
            left: -20px;
        }

    .secServices {
        padding: 2rem 0;
    }

    .servicesTopContent h2 {
        font-size: 42px;
        margin: 8px 0;
    }

    .servicesTopContent p {
        font-size: 14px;
    }

    .serCards h3 {
        font-size: 22px;
    }

    .cardsheadIcon lord-icon {
        width: 50px;
        height: 50px;
    }

    .serCards p {
        padding: 8px 0;
        font-size: 14px;
    }

    .secFleets {
        padding: 2rem 0;
    }

        .secFleets h2 {
            font-size: 42px;
            margin-bottom: 10px;
        }

    .fleetTopContent p {
        font-size: 14px;
    }

    .swiper-button-prev {
        right: 5% !important;
    }

    .FleetsCard {
        padding: 15px 10px;
        gap: 10px;
        border-radius: 25px;
    }

        .FleetsCard img {
            height: 150px;
            border-radius: 15px;
        }

    .imagehandler {
        width: 100%;
    }

    .fleetsRight {
        gap: 5px;
    }

    .FleetsCard h3 {
        font-size: 24px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform .form-panel {
        padding: 30px 25px;
    }

    .sec6_contactform .form-heading {
        font-size: 32px;
    }

    .sec6_contactform .form-sub {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .sec6_contactform .form-label {
        font-size: 10px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        font-weight: 400;
        padding: 10px 10px 10px 35px;
    }

    .footerLogo {
        gap: 5px;
    }

        .footerLogo p {
            font-size: 14px;
            padding-top: 0.5rem;
        }

        .footerLogo .social-icons {
            gap: 8px;
        }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footerLinks ul h3 {
        font-size: 24px;
        padding-bottom: 0.5rem;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px;
        font-size: 14px;
    }

    .footerLinks ul li a {
        padding: 3px 0;
        gap: 7px;
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1.2rem;
        padding-top: 1.2rem;
    }

        .bottomFooter p {
            font-size: 14px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    #MobileActionBtn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    #scrollBtn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .sec6_contactform .contact-section {
        margin: 2rem auto;
    }

    footer .footerLogo img {
        width: 70%;
    }

    .navbar-light .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
        background: #60bdea;
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7480%) hue-rotate(316deg) brightness(105%) contrast(109%);
    }

    .bqr-root .bqr-tabs {
        width: 40%;
    }

    .main-header .navbar-expand-lg .navbar-nav .nav-link.active {
        width: fit-content;
    }

    .innerBanner {
        border-radius: 25px;
        margin: 0 1rem 1rem;
    }

    .innerContent {
        gap: 5px;
    }

        .innerContent h2 {
            font-size: 52px;
        }

    .breadcrumbs a {
        font-size: 14px;
    }

    .innerBanner .row {
        height: 25vh;
    }

    .innerservCard .cardsheadIcon {
        gap: 15px;
        margin-bottom: 10px;
    }

    .innerservCard h3 {
        font-size: 42px;
    }

    .innerservCard p {
        font-size: 14px;
    }
    .bqr-card .bqrrightParent{
       flex-direction: column-reverse;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
        gap: 4px;
        font-size: 14px;
    }

        .main-header .mini-header .contact-info .mobile_number a i, .main-header .mini-header .contact-info .email_address a i {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }

    .main-header .mini-header .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .main-header .mini-header .contact-info {
        gap: 7px;
    }

    .main-header .mini-header .social-icons {
        gap: 7px;
        justify-content: center;
        margin-top: 10px;
    }

    .main-header .mini-header {
        padding: 7px 0px;
    }

    .main-header .navbar-expand-lg .header-logo {
        width: 140px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        padding: 7px;
        gap: 0px;
        margin-bottom: 10px;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
        }

    .getParent .global_btn {
        height: 36px;
        padding: 0 12px;
        font-size: 14px;
        border-radius: 10px;
    }

        .getParent .global_btn:before {
            font-size: 14px;
        }

        .getParent .global_btn i {
            font-size: 14px;
        }

    .hero-section .uniqueROW {
        top: 160px;
    }

    .mainHeroContent {
        gap: 10px;
    }

    .capsule {
        padding: 6px 12px;
    }

        .capsule h4 {
            font-size: 14px;
        }

    .mainHeroContent h1 {
        font-size: 32px;
    }

    .mainHeroContent p {
        font-size: 14px;
    }

    .bqr-root .bqr-card {
        margin-bottom: 7rem;
        margin-top: 2rem;
    }

    .bqr-root .bqr-eyebrow {
        gap: 5px;
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .bqr-root .bqr-heading {
        font-size: 32px;
    }

    .bqr-root .bqr-subtext {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .bqr-root .bqr-tab {
        gap: 5px;
        font-size: 12px;
        padding: 8px 16px;
        height: 35px;
    }

    .bqr-root .bqr-field {
        margin-bottom: 10px;
    }

    .bqr-root .bqr-field-label {
        font-size: 10px;
        margin-bottom: 7px;
    }

    .bqr-root .bqr-input-shell {
        padding: 0 8px;
    }

        .bqr-root .bqr-input-shell input {
            font-size: 14px;
            padding: 10px 4px;
        }

        .bqr-root .bqr-input-shell select {
            font-size: 14px;
            padding: 10px 4px;
        }

    .sec2-about {
        padding: 2rem 0 7rem 0;
    }

        .sec2-about h2 {
            font-size: 52px;
            margin: 8px 0;
        }

        .sec2-about .aboutContent h5 {
            margin: 8px 0;
            font-size: 16px;
        }

        .sec2-about .aboutContent p {
            padding: 3px 0;
            font-size: 14px;
        }

        .sec2-about .aboutImages .bottomIMG {
            max-width: 340px;
        }

            .sec2-about .aboutImages .bottomIMG img {
                top: 80px;
                left: 25px;
            }

        .sec2-about .aboutImages .topIMG img {
            width: 25%;
            left: 0px;
            top: 20px;
        }

    .secServices {
        padding: 2rem 0;
    }

    .servicesTopContent h2 {
        font-size: 42px;
        margin: 8px 0;
    }

    .servicesTopContent p {
        font-size: 14px;
    }

    .serCards h3 {
        font-size: 22px;
    }

    .cardsheadIcon lord-icon {
        width: 50px;
        height: 50px;
    }

    .serCards p {
        padding: 8px 0;
        font-size: 14px;
    }

    .secFleets {
        padding: 2rem 0;
    }

        .secFleets h2 {
            font-size: 42px;
            margin-bottom: 10px;
        }

    .fleetTopContent p {
        font-size: 14px;
    }

    .swiper-button-prev {
        right: 12% !important;
    }

    .FleetsCard {
        padding: 15px 10px;
        gap: 10px;
        border-radius: 25px;
    }

        .FleetsCard img {
            height: auto;
            border-radius: 15px;
        }

    .imagehandler {
        width: 100%;
    }

    .fleetsRight {
        gap: 5px;
    }

    .FleetsCard h3 {
        font-size: 24px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform .form-panel {
        padding: 30px 25px;
    }

    .sec6_contactform .form-heading {
        font-size: 32px;
    }

    .sec6_contactform .form-sub {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .sec6_contactform .form-label {
        font-size: 10px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        font-weight: 400;
        padding: 10px 10px 10px 35px;
    }

    .footerLogo {
        gap: 5px;
    }

        .footerLogo p {
            font-size: 14px;
            padding-top: 0.5rem;
        }

        .footerLogo .social-icons {
            gap: 8px;
        }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footerLinks ul h3 {
        font-size: 24px;
        padding-bottom: 0.5rem;
        margin-top: 20px;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px !important;
        font-size: 14px;
    }

    .footerLinks ul li a {
        padding: 3px 0;
        gap: 7px;
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1.2rem;
        padding-top: 1.2rem;
        flex-direction: column;
        align-items: center;
    }

        .bottomFooter p {
            font-size: 14px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    #MobileActionBtn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    #scrollBtn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .sec6_contactform .contact-section {
        margin: 2rem auto;
    }

    footer .footerLogo img {
        width: 70%;
    }

    .navbar-light .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
        background: #60bdea;
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7480%) hue-rotate(316deg) brightness(105%) contrast(109%);
    }

    .bqr-root .bqr-tabs {
        width: 100%;
    }

    .main-header .navbar-expand-lg .navbar-nav .nav-link.active {
        width: fit-content;
    }

    .main-header .mini-header .contact-info {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .serCards {
        margin-bottom: 20px;
    }

    .footerLinks {
        justify-content: flex-start;
    }

    .innerBanner {
        border-radius: 25px;
        margin: 0 1rem 1rem;
    }

    .innerContent {
        gap: 5px;
    }

        .innerContent h2 {
            font-size: 52px;
        }

    .breadcrumbs a {
        font-size: 14px;
    }

    .innerBanner .row {
        height: 35vh;
    }

    .innerservCard .cardsheadIcon {
        gap: 15px;
        margin-bottom: 10px;
    }

    .innerservCard h3 {
        font-size: 42px;
    }

    .innerservCard p {
        font-size: 14px;
    }
    .bqr-card .bqrrightParent{
       flex-direction: column-reverse;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
        gap: 4px;
        font-size: 14px;
    }

        .main-header .mini-header .contact-info .mobile_number a i, .main-header .mini-header .contact-info .email_address a i {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }

    .main-header .mini-header .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .main-header .mini-header .contact-info {
        gap: 7px;
    }

    .main-header .mini-header .social-icons {
        gap: 7px;
        justify-content: center;
        margin-top: 10px;
    }

    .main-header .mini-header {
        padding: 7px 0px;
    }

    .main-header .navbar-expand-lg .header-logo {
        width: 140px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        padding: 7px;
        gap: 0px;
        margin-bottom: 10px;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
        }

    .getParent .global_btn {
        height: 36px;
        padding: 0 12px;
        font-size: 14px;
        border-radius: 10px;
    }

        .getParent .global_btn:before {
            font-size: 14px;
        }

        .getParent .global_btn i {
            font-size: 14px;
        }

    .hero-section .uniqueROW {
        top: 160px;
    }

    .mainHeroContent {
        gap: 10px;
    }

    .capsule {
        padding: 6px 12px;
    }

        .capsule h4 {
            font-size: 14px;
        }

    .mainHeroContent h1 {
        font-size: 32px;
    }

    .mainHeroContent p {
        font-size: 14px;
    }

    .bqr-root .bqr-card {
        margin-bottom: 7rem;
        margin-top: 2rem;
    }

    .bqr-root .bqr-eyebrow {
        gap: 5px;
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .bqr-root .bqr-heading {
        font-size: 32px;
    }

    .bqr-root .bqr-subtext {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .bqr-root .bqr-tab {
        gap: 5px;
        font-size: 12px;
        padding: 8px 16px;
        height: 35px;
    }

    .bqr-root .bqr-field {
        margin-bottom: 10px;
    }

    .bqr-root .bqr-field-label {
        font-size: 10px;
        margin-bottom: 7px;
    }

    .bqr-root .bqr-input-shell {
        padding: 0 8px;
    }

        .bqr-root .bqr-input-shell input {
            font-size: 14px;
            padding: 10px 4px;
        }

        .bqr-root .bqr-input-shell select {
            font-size: 14px;
            padding: 10px 4px;
        }

    .sec2-about {
        padding: 2rem 0 7rem 0;
    }

        .sec2-about h2 {
            font-size: 52px;
            margin: 8px 0;
        }

        .sec2-about .aboutContent h5 {
            margin: 8px 0;
            font-size: 16px;
        }

        .sec2-about .aboutContent p {
            padding: 3px 0;
            font-size: 14px;
        }

        .sec2-about .aboutImages .bottomIMG {
            max-width: 340px;
        }

            .sec2-about .aboutImages .bottomIMG img {
                top: 80px;
                left: 25px;
            }

        .sec2-about .aboutImages .topIMG img {
            width: 25%;
            left: 0px;
            top: 20px;
        }

    .secServices {
        padding: 2rem 0;
    }

    .servicesTopContent h2 {
        font-size: 42px;
        margin: 8px 0;
    }

    .servicesTopContent p {
        font-size: 14px;
    }

    .serCards h3 {
        font-size: 22px;
    }

    .cardsheadIcon lord-icon {
        width: 50px;
        height: 50px;
    }

    .serCards p {
        padding: 8px 0;
        font-size: 14px;
    }

    .secFleets {
        padding: 2rem 0;
    }

        .secFleets h2 {
            font-size: 42px;
            margin-bottom: 10px;
        }

    .fleetTopContent p {
        font-size: 14px;
    }

    .swiper-button-prev {
        right: 12% !important;
    }

    .FleetsCard {
        padding: 15px 10px;
        gap: 10px;
        border-radius: 25px;
    }

        .FleetsCard img {
            height: auto;
            border-radius: 15px;
        }

    .imagehandler {
        width: 100%;
    }

    .fleetsRight {
        gap: 5px;
    }

    .FleetsCard h3 {
        font-size: 24px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform .form-panel {
        padding: 30px 25px;
    }

    .sec6_contactform .form-heading {
        font-size: 32px;
    }

    .sec6_contactform .form-sub {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .sec6_contactform .form-label {
        font-size: 10px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        font-weight: 400;
        padding: 10px 10px 10px 35px;
    }

    .footerLogo {
        gap: 5px;
    }

        .footerLogo p {
            font-size: 14px;
            padding-top: 0.5rem;
        }

        .footerLogo .social-icons {
            gap: 8px;
        }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footerLinks ul h3 {
        font-size: 24px;
        padding-bottom: 0.5rem;
        margin-top: 20px;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px !important;
        font-size: 14px;
    }

    .footerLinks ul li a {
        padding: 3px 0;
        gap: 7px;
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1.2rem;
        padding-top: 1.2rem;
        flex-direction: column;
        align-items: center;
    }

        .bottomFooter p {
            font-size: 14px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    #MobileActionBtn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    #scrollBtn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .sec6_contactform .contact-section {
        margin: 2rem auto;
    }

    footer .footerLogo img {
        width: 70%;
    }

    .navbar-light .navbar-toggler {
        color: rgb(255 255 255);
        border-color: rgb(255 255 255);
        background: #60bdea;
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7480%) hue-rotate(316deg) brightness(105%) contrast(109%);
    }

    .bqr-root .bqr-tabs {
        width: 100%;
    }

    .main-header .navbar-expand-lg .navbar-nav .nav-link.active {
        width: fit-content;
    }

    .main-header .mini-header .contact-info {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .serCards {
        margin-bottom: 20px;
    }

    .footerLinks {
        justify-content: flex-start;
    }

    .innerBanner {
        border-radius: 25px;
        margin: 0 1rem 1rem;
    }

    .innerContent {
        gap: 5px;
    }

        .innerContent h2 {
            font-size: 52px;
        }

    .breadcrumbs a {
        font-size: 14px;
    }

    .innerBanner .row {
        height: 22vh;
    }

    .innerservCard .cardsheadIcon {
        gap: 15px;
        margin-bottom: 10px;
    }

    .innerservCard h3 {
        font-size: 42px;
    }

    .innerservCard p {
        font-size: 14px;
    }

    .ui-menu {
        width: 350px !important;
        height: 110px !important;
        font-size: 14px;
        left: 38px !important;
    }

    .sec-result .upper-list {
        display: none;
    }

    .sec-result .number-box {
        padding: 20px 0px;
    }

    .sec-result .for-line::before {
        width: 45%;
        left: 80%;
    }

    .update-fleet-box .fleet-detail {
        border: none;
    }

    .Passenger-Information h3 {
        font-size: 24px;
        text-align: center;
    }
    .bqr-card .bqrrightParent{
       flex-direction: column-reverse;
    }
}
