@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: #000000;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 20px;
}

/* Hover */
::-webkit-scrollbar-track {
    background: #ecfaff;
}

.custom-cursor {
    width: 30px;
    height: 30px;
    border: 1px solid #f8c607;
    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: #f8c607;
        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;
    --rz-black-deep: #0a0a0a;
    --rz-black: #151312;
    --rz-black-soft: #1e1a17;
    --rz-brown: #c9a574;
    --rz-brown-light: #e8cba0;
    --rz-text-dim: #cfc9c1;
}

figure {
    margin: 0px;
    padding: 0px;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0px;
    padding: 0px;
}

a,
button {
    display: inline-block;
}

select {
    cursor: pointer;
    appearance: none;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

#scrollBtn {
    background: #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(0 0 0) 0%, rgb(0 0 0) 25%, rgb(0 0 0) 60%, rgb(0 0 0) 100%);
    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(0 0 0) 0%, rgb(0 0 0) 25%, rgb(0 0 0) 60%, rgb(0 0 0) 100%);
    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;
    }
}


/* From Uiverse.io by satyamchaudharydev */
.lineParent .loader {
    display: block;
    --height-of-loader: 4px;
    --loader-color: #000000;
    width: 130px;
    height: var(--height-of-loader);
    border-radius: 30px;
    background-color: rgba(0,0,0,0.2);
    position: relative;
}

    .lineParent .loader::before {
        content: "";
        position: absolute;
        background: var(--loader-color);
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        border-radius: 30px;
        animation: moving 1s ease-in-out infinite;
        ;
    }

@keyframes moving {
    50% {
        width: 100%;
    }

    100% {
        width: 0;
        right: 0;
        left: unset;
    }
}

/************************** Header css **************************/
.main-header {
    width: 100%;
    position: relative;
    z-index: 99;
}

    .main-header .mini-header {
        background: #000000;
        padding: 5px 35px;
        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: #000000;
                    }

                    .main-header .mini-header .contact-info .mobile_number a i,
                    .main-header .mini-header .contact-info .email_address a i {
                        background: #f7c300;
                        border-radius: 50px;
                        width: 35px;
                        height: 35px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        color: var(--text-white);
                        /* border: 2px solid transparent; */
                        transition: 0.4s ease-in-out;
                    }

                    .main-header .mini-header .contact-info .mobile_number a:hover i,
                    .main-header .mini-header .contact-info .email_address a:hover i {
                        background: transparent;
                        border: 2px solid #000000;
                        color: #000000;
                    }

        .main-header .mini-header .social-icons {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            gap: 8px;
        }

            .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 35px 0 35px;
        /* background: #ffffff78; */
        /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
        margin-top: 0px;
    }

        .main-header .navbar-expand-lg .header-logo {
            width: 120px;
            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: #000000;
            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: #ffffff;
                font-size: 16px;
                position: relative;
                overflow: hidden;
                font-weight: 500;
                transition: 0.4s ease-in-out;
                text-transform: uppercase;
            }

                .main-header .navbar-expand-lg .navbar-nav .nav-link::before {
                    content: "";
                    position: absolute;
                    height: 2px;
                    width: 0%;
                    bottom: 0;
                    left: 0;
                    background-color: #f8c607;
                    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: #f9c708;
                    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: #f8c607;
                }

                .main-header .navbar-expand-lg .navbar-nav .nav-link.active {
                    color: #000000;
                    background: #f8c607;
                    border-radius: 25px;
                    padding: 8px 16px;
                }

/* From Uiverse.io by himanshu9682 */
.getParent .type--A {
    --line_color: #555555;
    --back_color: #ffecf6;
}

.getParent .type--B {
    --line_color: #1b1919;
    --back_color: #e9ecff;
}

.getParent .type--C {
    --line_color: #000000;
    --back_color: #defffa;
}

.getParent .button {
    position: relative;
    z-index: 0;
    width: 240px;
    height: 56px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.getParent .button__text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

    .getParent .button::before,
    .getParent .button::after,
    .getParent .button__text::before,
    .getParent .button__text::after {
        content: "";
        position: absolute;
        height: 3px;
        border-radius: 2px;
        background: #000000;
        transition: all 0.5s ease;
    }

.getParent .button::before {
    top: 0;
    left: 54px;
    width: calc(100% - 56px * 2 - 16px);
}

.getParent .button::after {
    top: 0;
    right: 54px;
    width: 8px;
}

.getParent .button__text::before {
    bottom: 0;
    right: 54px;
    width: calc(100% - 56px * 2 - 16px);
}

.getParent .button__text::after {
    bottom: 0;
    left: 54px;
    width: 8px;
}

.getParent .button__line {
    position: absolute;
    top: 0;
    width: 56px;
    height: 100%;
    overflow: hidden;
}

    .getParent .button__line::before {
        content: "";
        position: absolute;
        top: 0;
        width: 150%;
        height: 100%;
        box-sizing: border-box;
        border-radius: 300px;
        border: solid 3px var(--line_color);
    }

    .getParent .button__line:nth-child(1),
    .getParent .button__line:nth-child(1)::before {
        left: 0;
    }

    .getParent .button__line:nth-child(2),
    .getParent .button__line:nth-child(2)::before {
        right: 0;
    }

.getParent .button:hover {
    letter-spacing: 6px;
}

    .getParent .button:hover::before,
    .getParent .button:hover .button__text::before {
        width: 8px;
    }

    .getParent .button:hover::after,
    .getParent .button:hover .button__text::after {
        width: calc(100% - 56px * 2 - 16px);
    }

.getParent .button__drow1,
.getParent .button__drow2 {
    position: absolute;
    z-index: -1;
    border-radius: 16px;
    transform-origin: 16px 16px;
}

.getParent .button__drow1 {
    top: -16px;
    left: 40px;
    width: 32px;
    height: 0;
    transform: rotate(30deg);
}

.getParent .button__drow2 {
    top: 44px;
    left: 77px;
    width: 32px;
    height: 0;
    transform: rotate(-127deg);
}

    .getParent .button__drow1::before,
    .getParent .button__drow1::after,
    .getParent .button__drow2::before,
    .getParent .button__drow2::after {
        content: "";
        position: absolute;
    }

.getParent .button__drow1::before {
    bottom: 0;
    left: 0;
    width: 0;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(-60deg);
}

.getParent .button__drow1::after {
    top: -10px;
    left: 45px;
    width: 0;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(69deg);
}

.getParent .button__drow2::before {
    bottom: 0;
    left: 0;
    width: 0;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(-146deg);
}

.getParent .button__drow2::after {
    bottom: 26px;
    left: -40px;
    width: 0;
    height: 32px;
    border-radius: 16px;
    transform-origin: 16px 16px;
    transform: rotate(-262deg);
}

.getParent .button__drow1,
.getParent .button__drow1::before,
.getParent .button__drow1::after,
.getParent .button__drow2,
.getParent .button__drow2::before,
.getParent .button__drow2::after {
    background: #c7ab75;
}

.getParent .button:hover .button__drow1 {
    animation: drow1 ease-in 0.06s;
    animation-fill-mode: forwards;
}

    .getParent .button:hover .button__drow1::before {
        animation: drow2 linear 0.08s 0.06s;
        animation-fill-mode: forwards;
    }

    .getParent .button:hover .button__drow1::after {
        animation: drow3 linear 0.03s 0.14s;
        animation-fill-mode: forwards;
    }

.getParent .button:hover .button__drow2 {
    animation: drow4 linear 0.06s 0.2s;
    animation-fill-mode: forwards;
}

    .getParent .button:hover .button__drow2::before {
        animation: drow3 linear 0.03s 0.26s;
        animation-fill-mode: forwards;
    }

    .getParent .button:hover .button__drow2::after {
        animation: drow5 linear 0.06s 0.32s;
        animation-fill-mode: forwards;
    }

@keyframes drow1 {
    0% {
        height: 0;
    }

    100% {
        height: 100px;
    }
}

@keyframes drow2 {
    0% {
        width: 0;
        opacity: 0;
    }

    10% {
        opacity: 0;
    }

    11% {
        opacity: 1;
    }

    100% {
        width: 120px;
    }
}

@keyframes drow3 {
    0% {
        width: 0;
    }

    100% {
        width: 80px;
    }
}

@keyframes drow4 {
    0% {
        height: 0;
    }

    100% {
        height: 120px;
    }
}

@keyframes drow5 {
    0% {
        width: 0;
    }

    100% {
        width: 124px;
    }
}

.getParent .container {
    width: 100%;
    height: auto;
    /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}

.getParent .button:not(:last-child) {
    margin-bottom: 64px;
}


.mainHeroContent .getParent .button {
    color: #ffffff;
}

.mainHeroContent .getParent .button__line::before {
    border: solid 3px #ffffff;
}

.mainHeroContent .getParent .button::before, .mainHeroContent .getParent .button::after, .mainHeroContent .getParent .button__text::before, .mainHeroContent .getParent .button__text::after {
    background: #ffffff;
}

.rz-cta-section .getParent .button::before, .rz-cta-section .getParent .button::after, .rz-cta-section .getParent .button__text::before, .rz-cta-section .getParent .button__text::after {
    background: #ffffff;
}

.rz-cta-section .getParent .button__line::before {
    border: solid 3px #ffffff;
}

.rz-cta-section .getParent .button {
    color: #ffffff;
}

.scroll {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 30;
    margin-top: 0px !important;
    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;
    padding: 12px 0 !important;
}

/************************** Header css end **************************/

/* From Uiverse.io by SujitAdroja */
.getParent .btn {
    color: #000000;
    text-transform: capitalize;
    text-decoration: none;
    border: 2px solid #000000;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
    border-radius: 45px;
    letter-spacing: 1.1px;
    font-weight: 600;
}

    .getParent .btn:hover {
        color: #000000;
    }

    .getParent .btn::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        top: 0;
        left: -40px;
        transform: skewX(45deg);
        background-color: #f8c607;
        z-index: -1;
        transition: all 1s;
    }

    .getParent .btn:hover::before {
        width: 160%;
    }


/************************** Hero Section css **************************/
.hero-section {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0 / 60%), rgb(0 0 0 / 87%)), url(../images/hero-banner.jpg);
    min-height: 80vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 20px;
    max-width: 100%;
    margin: 0rem auto;
    /* border-radius: 50px; */
    overflow: hidden;
}

    .hero-section::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, #efdaaf 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, #f8c607, #000000, #000000, #f8c607) !important;
    border-radius: 60px;
    margin: 0 2rem 2rem;
}

    .innerBanner .row {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40vh;
    }

.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(255 255 255), rgb(255 255 255)) text;
        -webkit-text-fill-color: transparent;
    }

.breadcrumbs a {
    font-size: 18px;
    font-weight: 600;
    color: white;
    transition: all .3s ease-in-out;
}

    .breadcrumbs a:hover {
        color: #f8c607;
    }

.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; */
    width: 85%;
    margin: 0 0;
    padding-left: 5rem;
    text-align: center;
    align-items: center;
    margin-top: 2rem;
}

    .mainHeroContent .getParent .btn {
        color: #ffffff;
        border: 2px solid #ffffff;
    }

.capsule {
    background: #f8c607;
    padding: 8px 16px;
    border-radius: 25px;
    max-width: max-content;
    color: #000000;
    margin: 0 auto;
    box-shadow: 0 30px 70px rgba(20, 20, 40, 0.12), 0 4px 14px rgba(20, 20, 40, 0.05);
}

.mainHeroContent .capsule {
    margin: 0;
}

.mainHeroContent h1 {
    font-size: 55px;
    font-weight: 700;
    color: white;
}

.mainHeroContent p {
    color: white;
}


.bqr-root {
    position: relative;
    padding: 3rem 0;
}

    .bqr-root .bqr-card {
        width: 60%;
        margin: 0 auto;
        /* max-width: 460px; */
        background: #fffffffc;
        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);
    }

.bqr-card .bqrrightParent {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

/* ---------- TABS ---------- */
.bqr-root .bqr-tabs {
    display: grid;
    grid-template-columns: 100%;
    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 #e2e2e2;
    color: #6f6f6f;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 10px;
    /* border-radius: 12px; */
    cursor: pointer;
    transition: all 0.2s ease;
    height: 40px;
    border-radius: 8px;
}

    .bqr-root .bqr-tab i {
        font-size: 13px;
    }

    .bqr-root .bqr-tab.bqr-active {
        background: #f8c607;
        border-color: #000000;
        color: #000000;
    }

.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: #000000;
    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: #f8c607;
}

    .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(49, 49, 49, 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: #f8c607;
        -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: #000000;
    font-size: 11px;
    font-weight: 600;
    /* letter-spacing: 1.1px; */
    text-transform: uppercase;
    margin-bottom: 9px;
}

.bqr-root .bqr-optional-tag {
    background: #f8c607;
    color: #000000;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 3px 8px 1px;
    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: #191a1a;
        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;
    }

    .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;
    }

    .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-badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #fff0d6;
    background: #f8c607;
    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: #000000;
    color: #fff;
}

.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: 1fr 1fr;
    gap: 14px;
}

.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 10px 10px 20px;
    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: 24px 20px 28px;
    }

    .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 .aboutTOP {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .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: #000000;
    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); */
    background: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(4 4 2) 25%, rgb(0 0 0) 60%, rgb(248 198 7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sec2-about .aboutCenter img {
    width: 90%;
    margin: 0 auto;
    display: flex;
    border-radius: 160px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.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-size: 22px;
    font-weight: 600;
}

.innerABOUT .aboutContent p {
    color: #004710;
}

.topIMG {
    position: relative;
}

.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: 0px;
    background: white;
    padding: 20px;
}

.topIMG .imgInnerDiv {
    /* display: block; */
    position: absolute;
    z-index: 2222;
    top: 200px;
    /* transform: translate(-50%, -50%); */
    left: 33px;
    background: #ffffff;
    display: flex;
    align-items: end;
    justify-content: center;
    width: fit-content;
    padding: 10px 14px;
}

    .topIMG .imgInnerDiv span {
        font-weight: 600;
        color: #a3864f;
    }

.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: 0px;
    /* 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;
}

.lineTop {
    position: absolute;
    right: 105px;
    top: 100px;
}

.lineright {
    position: absolute;
    right: -35px;
    transform: rotate(90deg);
    top: 223px;
}

.circleLoader {
    position: absolute;
    right: 0;
    top: 53px;
    right: -8px;
}

    .circleLoader .loader {
        width: 44.8px;
        height: 44.8px;
        color: #000000;
        position: relative;
        background: radial-gradient(11.2px,currentColor 94%,#0000);
    }

        .circleLoader .loader:before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: radial-gradient(10.08px at bottom right, #0000 94%, rgb(166 138 74)) top left, radial-gradient(10.08px at bottom left, #0000 94%, currentColor) top right, radial-gradient(10.08px at top right, #0000 94%, rgb(0 0 0)) bottom left, radial-gradient(10.08px at top left, #0000 94%, rgb(191 155 83)) bottom right;
            background-size: 22.4px 22.4px;
            background-repeat: no-repeat;
            animation: loader 1.5s infinite cubic-bezier(0.3,1,0,1);
        }

@keyframes loader {
    33% {
        inset: -11.2px;
        transform: rotate(0deg);
    }

    66% {
        inset: -11.2px;
        transform: rotate(90deg);
    }

    100% {
        inset: 0;
        transform: rotate(90deg);
    }
}

.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 */


/* sec3_services */

.sec3_sevciescards {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f9c708);
    padding: 3rem 0;
    overflow: hidden;
}

    .sec3_sevciescards::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgb(255 255 255) 0%, transparent 70%);
        top: -200px;
        left: -200px;
        pointer-events: none;
        transform: translateY(0px);
        animation: aboutamination 5s infinite ease-in-out;
    }

.innerServSection {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: black;
}

@keyframes aboutamination {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(300px);
    }

    100% {
        transform: translateY(0px);
    }
}


.sec3_sevciescards {
    position: relative;
    z-index: 1;
    /* max-width: 1200px; */
    width: 100%;
}

.innerServContent img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgb(0 0 0 / 10%), 0 0 0 1px rgb(0 0 0 / 15%), 0 0 40px rgb(2 2 2 / 8%);
}

.innerServSection::before {
    background: radial-gradient(circle, rgb(248 198 7 / 9%) 0%, transparent 70%);
}
/* Section Header */
.sec3_sevciescards .section-header {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.innerServSection .card-desc, .innerServSection h3 {
    color: black !important;
}

.innerServSection .card-desc {
    font-weight: 400 !important;
    margin-bottom: 10px !important;
}

.innerServSection h3 {
    font-size: 50px !important;
}

.sec3_sevciescards .section-label {
    /* font-family: 'DM Sans', sans-serif; */
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}

.sec3_sevciescards .section-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    color: var(--text-primary);
    /* line-height: 1.1; */
    margin-top: 1.5rem;
}

    .sec3_sevciescards .section-title span {
        color: var(--accent);
        position: relative;
        background: linear-gradient(135deg, #000000, #000000, #000000);
        background-size: 400% 400%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientMove 6s ease infinite;
        background: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(4 4 2) 25%, rgb(0 0 0) 60%, rgb(248 198 7) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

/* Cards Grid */
.sec3_sevciescards .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Individual Card */
.sec3_sevciescards .service-card {
    position: relative;
    background: black;
    border-radius: 20px;
    padding: 40px 32px 36px;
    height: stretch;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

    .sec3_sevciescards .service-card:nth-child(1) {
        animation: fadeUp 0.7s ease 0.2s forwards;
    }

    .sec3_sevciescards .service-card:nth-child(2) {
        animation: fadeUp 0.7s ease 0.38s forwards;
    }

    .sec3_sevciescards .service-card:nth-child(3) {
        animation: fadeUp 0.7s ease 0.56s forwards;
    }

    .sec3_sevciescards .service-card:nth-child(4) {
        animation: fadeUp 0.7s ease 0.72s forwards;
    }

    /* Glowing top border line on hover */
    .sec3_sevciescards .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        border-radius: 0 0 4px 4px;
    }

    /* Radial glow on hover */
    .sec3_sevciescards .service-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 160, 0.07) 0%, transparent 65%);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
        border-radius: 20px;
    }

    .sec3_sevciescards .service-card:hover {
        transform: translateY(-8px);
        border-color: rgb(251 212 65);
        /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgb(0 0 0 / 15%), 0 0 40px rgb(2 2 2 / 8%); */
    }

        .sec3_sevciescards .service-card:hover::before {
            opacity: 1;
        }

        .sec3_sevciescards .service-card:hover::after {
            opacity: 1;
        }

/* Icon */
.sec3_sevciescards .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgb(248 198 7);
    border: 1px solid rgb(248 197 7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.sec3_sevciescards .service-card:hover .icon-wrap {
    background: rgb(250 249 253);
    border-color: rgb(250 249 253);
    transform: scale(1.05) rotate(-2deg);
}

.sec3_sevciescards .icon-wrap svg {
    width: 26px;
    height: 26px;
    fill: var(--accent);
    transition: fill 0.3s ease;
}

.sec3_sevciescards .service-card:hover .icon-wrap svg {
    fill: var(--accent-bright);
}

/* Card Number */
.sec3_sevciescards .card-number {
    position: absolute;
    top: 28px;
    right: 32px;
    font-size: 54px;
    font-weight: 700;
    color: rgb(248 198 7);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.sec3_sevciescards .service-card:hover .card-number {
    color: rgb(255 255 255);
}

/* Card Content */
.sec3_sevciescards .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.sec3_sevciescards .service-card:hover .card-title {
    color: #ffffff;
}

.sec3_sevciescards .card-desc {
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.75;
    margin-bottom: 32px;
}

.sec3_sevciescards .getParent .btn {
    color: #ffffff;
    border: 2px solid #ffffff;
}

    .sec3_sevciescards .getParent .btn:hover {
        color: black;
    }

.sec3_sevciescards .capsule {
    background: #000000;
    color: #ffffff;
}

/* CTA Button */
.sec3_sevciescards .card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid rgba(0, 229, 160, 0.3);
    background: rgba(0, 229, 160, 0.05);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, gap 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .sec3_sevciescards .card-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 0;
    }

    .sec3_sevciescards .card-btn span,
    .sec3_sevciescards .card-btn svg {
        position: relative;
        z-index: 1;
        transition: color 0.3s ease;
    }

    .sec3_sevciescards .card-btn:hover::before {
        transform: scaleX(1);
    }

    .sec3_sevciescards .card-btn:hover {
        color: #0f0f0f;
        border-color: var(--accent);
        gap: 14px;
    }

        .sec3_sevciescards .card-btn:hover span {
            color: #0f0f0f;
        }

.sec3_sevciescards .btn-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.sec3_sevciescards .card-btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* Bottom separator line */
.sec3_sevciescards .card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 0 0 20px 20px;
}

.sec3_sevciescards .service-card:hover .card-line {
    transform: scaleX(1);
}

/* Tags */
.sec3_sevciescards .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.sec3_sevciescards .tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(0, 229, 160, 0.7);
    background: rgba(0, 229, 160, 0.08);
    border: 1px solid rgba(0, 229, 160, 0.15);
    border-radius: 4px;
    padding: 3px 9px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.sec3_sevciescards .service-card:hover .tag {
    background: rgba(0, 229, 160, 0.13);
    border-color: rgba(0, 229, 160, 0.3);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .sec3_sevciescards .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* sec3_services */
/* CTA section */

.rz-cta-section {
}

    .rz-cta-section .rz-cta-shell {
        position: relative;
        min-height: 300px;
        border-radius: 28px;
        overflow: hidden;
        background: linear-gradient(150deg, var(--rz-black-deep), var(--rz-black) 55%, var(--rz-black-soft));
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 50px 40px;
        box-shadow: 0 30px 70px -28px rgba(0,0,0,0.5);
        opacity: 0;
        animation: rz-fade-up 0.9s cubic-bezier(.22,.61,.36,1) forwards;
    }

    /* ---------- background blobs ---------- */
    .rz-cta-section .rz-blob {
        position: absolute;
        top: -90px;
        left: -80px;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, #0000002e, #695c46 70%);
        filter: blur(2px);
        opacity: 0.9;
        animation: rz-blob-float 9s ease-in-out infinite;
        z-index: 0;
    }

    .rz-cta-section .rz-blob-2 {
        top: auto;
        left: auto;
        bottom: -110px;
        right: -90px;
        width: 260px;
        height: 260px;
        background: radial-gradient(circle at 60% 40%, #ddc38e, #000000 75%);
        opacity: 0.5;
        animation-duration: 11s;
        animation-delay: -3s;
    }

@keyframes rz-blob-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(14px, -10px) scale(1.06);
    }
}

/* ---------- content ---------- */
.rz-cta-section .rz-cta-content {
    position: relative;
    z-index: 3;
    max-width: 560px;
    text-align: center;
}

.rz-cta-section .rz-badge {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 30px;
    background: rgba(232,203,160,0.12);
    border: 1px solid rgba(232,203,160,0.4);
    color: var(--rz-brown-light);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    opacity: 0;
    transform: translateY(10px);
    animation: rz-fade-up 0.7s cubic-bezier(.22,.61,.36,1) 0.15s forwards;
}

.rz-cta-section .rz-cta-heading {
    margin-top: 18px;
    font-weight: 700;
    font-size: clamp(28px, 4.2vw, 44px);
    line-height: 1.2;
    color: #fff;
    opacity: 0;
    transform: translateY(14px);
    animation: rz-fade-up 0.8s cubic-bezier(.22,.61,.36,1) 0.28s forwards;
}

    .rz-cta-section .rz-cta-heading em {
        font-style: italic;
        background: linear-gradient(120deg, var(--rz-brown), var(--rz-brown-light));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.rz-cta-section .rz-cta-sub {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--rz-text-dim);
    opacity: 0;
    transform: translateY(14px);
    animation: rz-fade-up 0.8s cubic-bezier(.22,.61,.36,1) 0.4s forwards;
}

.rz-cta-section .rz-cta-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(14px);
    animation: rz-fade-up 0.8s cubic-bezier(.22,.61,.36,1) 0.52s forwards;
}

.rz-cta-section .rz-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.22,.61,.36,1), box-shadow 0.35s ease, filter 0.3s ease;
}

.rz-cta-actions .unCtaBtn {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .rz-cta-actions .unCtaBtn i {
        width: 35px;
        height: 35px;
        background: #b79f6b;
        color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 25px;
    }

.rz-cta-section .rz-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.35s cubic-bezier(.22,.61,.36,1);
}

.rz-cta-section .rz-btn-primary {
    background: linear-gradient(120deg, var(--rz-brown), var(--rz-brown-light));
    color: var(--rz-black-deep);
}

    .rz-cta-section .rz-btn-primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: -60%;
        width: 40%;
        height: 100%;
        background: rgba(255,255,255,0.55);
        transform: skewX(-20deg);
        transition: left 0.6s ease;
    }

    .rz-cta-section .rz-btn-primary:hover::before {
        left: 130%;
    }

    .rz-cta-section .rz-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px -10px rgba(201,165,116,0.6);
    }

        .rz-cta-section .rz-btn-primary:hover svg {
            transform: translateX(3px);
        }

.rz-cta-section .rz-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
}

    .rz-cta-section .rz-btn-ghost:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.6);
        transform: translateY(-3px);
    }

/* ---------- cars ---------- */
.rz-cta-section .rz-car {
    position: absolute;
    bottom: 0;
    width: 260px;
    z-index: 2;
    opacity: 0;
    animation: rz-fade-in 0.9s ease 0.3s forwards, rz-car-bob 5s ease-in-out infinite 1.1s;
}

    .rz-cta-section .rz-car img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 18px;
        box-shadow: 0 20px 40px -18px rgba(0,0,0,0.6);
    }

.rz-cta-section .rz-car-left {
    left: -20px;
    bottom: -10px;
    transform: translateX(-30px);
}

.rz-cta-section .rz-car-right {
    right: -20px;
    bottom: -10px;
    transform: translateX(30px) scaleX(-1);
}

@keyframes rz-car-bob {
    0%, 100% {
        transform: translateY(0) translateX(-30px);
    }

    50% {
        transform: translateY(-8px) translateX(-30px);
    }
}

.rz-cta-section .rz-car-right {
    animation-name: rz-fade-in, rz-car-bob-r;
}

@keyframes rz-car-bob-r {
    0%, 100% {
        transform: translateY(0) translateX(30px) scaleX(-1);
    }

    50% {
        transform: translateY(-8px) translateX(30px) scaleX(-1);
    }
}

@keyframes rz-fade-in {
    to {
        opacity: 1;
    }
}

@keyframes rz-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
    .rz-cta-section .rz-car {
        width: 190px;
    }
}

@media (max-width: 720px) {
    .rz-cta-section .rz-car {
        display: none; /* keep content clean & centered on small screens */
    }

    .rz-cta-section .rz-cta-shell {
        padding: 46px 26px;
        min-height: unset;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rz-cta-section * {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* CTA section */



/* sec services new */

.newServCard img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.6);
    transition: all .3s ease-in-out;
}

/* sec services new */

.newServicesSec {
    margin: 5rem 0 0 0;
}

.servTopContent h2 {
    font-size: 72px;
    font-weight: 700;
    /* -webkit-text-stroke: 2px rgb(61 168 214); */
    background: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(0 0 0) 25%, rgb(170 135 66) 60%, rgb(0 0 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
    margin: 12px 0 2rem 0;
    text-align: center;
}

.newServicesSec .container-fluid {
    padding: 0;
}

    .newServicesSec .container-fluid .row > * {
        padding: 0px !important;
    }

    .newServicesSec .container-fluid .row {
        width: 100%;
        margin: 0 auto;
    }

.newServCard {
    position: relative;
    transition: all .3s ease-in-out;
}

    .newServCard:hover img {
        filter: brightness(0.8);
    }

    .newServCard:hover {
        transform: scale(1.07);
        z-index: 2;
    }

.innerContentServ {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #0000003d;
    position: absolute;
    top: 0;
    height: 500px;
}

    .innerContentServ h2 {
        color: white;
    }

    .innerContentServ p {
        color: white;
    }

    .innerContentServ .getParent .button__line::before {
        border: solid 3px #ffffff;
    }

    .innerContentServ .getParent .button {
        color: white;
    }

        .innerContentServ .getParent .button::before, .innerContentServ .getParent .button::after, .innerContentServ .getParent .button__text::before, .innerContentServ .getParent .button__text::after {
            background-color: white;
        }




/* secFleets */
.secFleets {
    padding: 4rem 0;
    /* background: linear-gradient(135deg, rgb(190 154 83), rgb(0 0 0), rgb(102 89 44)); */
    /* background: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(0 0 0) 25%, rgb(0 0 0) 60%, rgb(197 162 95) 100%); */
}

.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: #000000;
}

    .secFleets h2 em {
        font-style: normal;
        background: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(4 4 2) 25%, rgb(0 0 0) 60%, rgb(248 198 7) 100%)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: #000000;
    }

.FleetsCard {
    display: flex;
    flex-direction: column;
    background: antiquewhite;
    background: white;
    padding: 30px 20px;
    gap: 20px;
    border-radius: 40px;
    align-items: center;
    border: 2px solid #000000;
    box-shadow: 0 0px 4px rgba(20, 20, 40, 0.12), 0 4px 14px rgba(20, 20, 40, 0.05);
    position: relative;
    z-index: 2;
}

    .FleetsCard h3 {
        font-weight: 600;
        font-size: 34px;
    }

.fleetsRight {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.FleetsCard h3 {
    background: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(0 0 0) 25%, rgb(242 199 29) 60%, rgb(0 0 0) 100%);
    /* -webkit-text-stroke: 2px rgb(61 168 214); */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.FleetsCard p {
    color: #000000;
}

.FleetsCard img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    /* background: #206b94; */
    background: linear-gradient(135deg, rgb(243 207 64) 0%, rgb(255 202 0) 25%, rgb(245 199 22) 60%, rgb(241 198 31) 100%);
    border-radius: 35px;
}



.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(255 202 0), rgb(149 120 6)) !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(0 0 0), rgb(0 0 0));
    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: 30% 70%;
    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 #fefefe;
}

@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 {
    /* background: var(--surface); */
    padding: 0px 0px;
    /* position: relative; */
    /* overflow: hidden; */
    /* opacity: 0; */
    /* transform: translateX(-30px); */
    /* animation: slideL .9s cubic-bezier(.23, 1, .32, 1) .15s forwards; */
    /* border-right: 1px solid var(--border); */
}

    /* top accent bar */
    .sec6_contactform .info-panel::before {
        /* content: ''; */
        /* position: absolute; */
        /* top: 0; */
        /* left: 0; */
        /* right: 0; */
        /* height: 3px; */
        /* background: linear-gradient(90deg, var(--accent), var(--accent-hi), transparent); */
    }

    /* 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;
    }

.contact-section .getParent .btn {
    color: #ffffff;
    border: 2px solid #ffffff;
}

    .contact-section .getParent .btn:hover {
        color: black;
    }

.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;
    }

.contact-section .getParent .button {
    color: #ffffff;
}

.contact-section .getParent .button__line::before {
    border: solid 3px #ffffff;
}

.contact-section .getParent .button::before, .contact-section .getParent .button::after, .contact-section .getParent .button__text::before, .contact-section .getParent .button__text::after {
    background: #ffffff;
}

.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 {
    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; */
    background: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(0 0 0) 25%, rgb(0 0 0) 60%, rgb(0 0 0) 100%);
    height: 100%;
}

    .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: #ffffff;
    margin-bottom: 6px;
}

.sec6_contactform .form-sub {
    font-size: 13.5px;
    font-weight: 500;
    color: #ffffff;
    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: #f8c607;
    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: #f8c607;
    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 .input-wrap span, .sec6_contactform .input-wrap span {
    display: 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: #f8c607 !important;
        background: #f8c607;
        /* 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: #c09c54;
}

.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: #f8c607;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .sec6_contactform .privacy-note svg {
        width: 13px;
        height: 13px;
        fill: #f8c607;
        /* 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: 755px;
    /* border-radius: 10px; */
    background: url(../images/contactNew.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .leftPanelBG > div {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .leftPanelBG > div img {
            /* width: 70%; */
            display: none;
            /* position: relative; */
            /* bottom: -83px; */
        }

.submit-row .button {
    /* border: #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; */
    background: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(0 0 0) 25%, rgb(0 0 0) 60%, rgb(0 0 0) 100%);
}

.footerLogo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footerLogo .social-icons {
        display: flex;
        gap: 12px;
    }

footer .footerLogo img {
    width: 60%;
    background-color: white;
    padding: 4px 6px;
    border-radius: 20px;
}

.footerLogo p {
    color: white;
    padding-top: 1rem;
}

.footerLinks {
    display: flex;
    justify-content: flex-start;
}

    .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 !important;
            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: #f8c607;
        }

            .footerLinks ul li a:hover i {
                background: transparent !important;
                color: white;
            }

    .footerLinks ul h3 {
        color: #f8c607;
        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: #f8c508;
        }

/* 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;
    }
}

.sec-result {
    padding: 60px 0;
    /*    margin-top: 140px;*/
    position: relative;
    overflow: hidden;
}

    .sec-result::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgb(215 171 6 / 20%) 0%, transparent 70%);
        top: -200px;
        left: -200px;
        pointer-events: none;
        transform: translateY(0px);
        animation: resultamination 5s infinite ease-in-out;
    }

@keyframes resultamination {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(300px);
    }

    100% {
        transform: translateY(0px);
    }
}

.sec-result .upper-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f8c607, #000000, #000000, #f8c607) !important;
    border-radius: 50px;
    border: 2px solid #000;
}

    .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: 65px;
                height: 100%;
                object-fit: contain;
                background: #fff;
                border-radius: 50%;
                padding: 8px;
            }

        .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: #ffffff;
            }

            .sec-result .upper-list li .text-box p {
                font-size: 14px;
                color: #fff;
            }

.sec-result .number-box {
    padding: 50px 0px 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: #ffffff;
                    border: 1px solid #000;
                    width: 50px;
                    height: 50px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 50%;
                    font-size: 20px;
                    margin: 0 auto;
                    color: #000;
                    font-weight: 600;
                }

                .sec-result .number-box ul li .num-circle p {
                    font-size: 14px;
                    margin-top: 15px;
                    text-transform: uppercase;
                    color: #000;
                }

.sec-result .completed {
    background: #f8c607 !important;
    color: #000000 !important;
    border: 1px solid #f8c607 !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;
    border: 2px solid #000;
    border-radius: 20px;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            object-fit: contain;
            background: #f8c60736;
            border-radius: 15px;
            border: 1px solid #f8c607;
        }

    .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: #f8c607;
                padding: 4px;
                border-radius: 5px;
                width: 25px;
            }

    .update-fleet-box .fleet-detail {
        padding: 0px 13px;
        border-right: 1px solid #bbbbbb;
        border-left: 1px solid #bbbbbb;
    }

        .update-fleet-box .fleet-detail h4 {
            font-size: 22px;
            font-weight: 600;
            padding-bottom: 5px;
            color: #000000;
        }

        .update-fleet-box .fleet-detail .passenger-list {
            display: flex;
            align-items: center;
        }

            .update-fleet-box .fleet-detail .passenger-list li {
                font-size: 13px;
                padding: 0 8px 0 0;
                font-weight: 600;
            }

                .update-fleet-box .fleet-detail .passenger-list li i {
                    font-size: 16px;
                }

        .update-fleet-box .fleet-detail .passenger-list-2 {
            padding: 10px 0;
        }

            .update-fleet-box .fleet-detail .passenger-list-2 li {
                font-size: 15px;
                padding: 3px 10px;
                border: 1px solid #000000;
                margin: 3px 0;
                border-radius: 6px;
                font-size: 12px;
                background-color: #000000;
                width: fit-content;
                color: #ffffff;
            }

                .update-fleet-box .fleet-detail .passenger-list-2 li i {
                    font-size: 16px;
                    padding-right: 5px;
                }

        .update-fleet-box .fleet-detail .info-btn {
            color: #f9b442;
            text-decoration: underline;
            font-weight: 500;
        }

    .update-fleet-box .rate-box {
        margin-top: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }

    .update-fleet-box .reserve-btn {
        display: flex;
        justify-content: center;
    }

        .update-fleet-box .reserve-btn input.btnbooknow {
            color: #000000;
            text-transform: capitalize;
            text-decoration: none;
            border: 2px solid #000000;
            padding: 10px 20px;
            font-size: 17px;
            cursor: pointer;
            font-weight: bold;
            background: transparent;
            position: relative;
            transition: all 1s;
            overflow: hidden;
            border-radius: 45px;
            letter-spacing: 1.1px;
            font-weight: 600;
            transition: all 0.3s ease-in-out;
        }

            .update-fleet-box .reserve-btn input.btnbooknow:hover {
                color: #000000;
                background: #f8c607;
            }

    .update-fleet-box .rate-box h6 {
        font-size: 15px;
        margin-top: 4px;
    }

    .update-fleet-box .rate-box .prize-box {
        text-align: center;
        padding: 4px 0;
        font-size: 20px;
        line-height: 29px;
        color: #000;
        font-weight: 600;
    }

    .update-fleet-box .rate-box .done-btn {
        padding: 0px;
        border-radius: 5px;
        text-align: center;
        color: #000000;
        font-weight: 600;
    }

.right-card {
    background-color: #ffffff;
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid #000;
    border-radius: 20px;
}

    .right-card .top-heading {
        display: flex;
        align-items: center;
        padding: 10px 0 15px;
    }

        .right-card .top-heading i {
            font-size: 24px;
            padding-right: 10px;
            color: #000000;
        }

        .right-card .top-heading h5 {
            font-size: 22px;
            color: #000000;
        }

    .right-card .distance-box {
        padding: 20px 0;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #000000;
    }

        .right-card .distance-box h6 {
            color: #000;
        }

        .right-card .distance-box ul {
            padding: 10px 0 0;
        }

            .right-card .distance-box ul li {
                font-size: 14px;
                padding: 5px 0px;
                color: #000;
            }

                .right-card .distance-box ul li i {
                    font-size: 16px;
                    color: #000000;
                    padding-right: 5px;
                }

    .right-card .cal-mile {
        padding: 10px 0 0;
    }

        .right-card .cal-mile li {
            font-size: 16px;
            padding: 5px 0;
            color: #000;
        }

            .right-card .cal-mile li i {
                padding-right: 5px;
                color: #000000;
            }

    .right-card .distance-box-2 ul li {
        font-size: 14px;
        padding: 5px 0;
        color: #000;
    }

        .right-card .distance-box-2 ul li i {
            font-size: 15px;
            color: #000000;
            padding-right: 3px;
        }

.ui-menu {
    height: 250px !important;
    overflow-y: scroll;
}

.Passenger-Information {
    background: #ffffff;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid #000;
    border-radius: 20px;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #000000;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: center;
            padding: 4px 0;
            font-size: 16px;
            font-weight: 600;
            line-height: 18px;
            color: #000;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ccc !important;
        }

        .Passenger-Information .input-box p {
            font-size: 13px;
            padding: 4px 0;
        }

    .Passenger-Information .input-box-extra {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Passenger-Information .input-box-extra input {
            margin: 0 !important;
        }

        .Passenger-Information .input-box-extra label {
            padding-left: 10px;
        }

.ui-dialog .ui-dialog-content {
    overflow-y: hidden !important;
}

.ui-dialog .ui-dialog-buttonpane button {
    background: #000 !important;
    padding: 7px 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    border-radius: 7px !important;
}

/*.ui-menu .ui-menu-item {
    width: 350px !important;
}*/

.loadingDiv {
    text-align: center;
    background: rgba(0,0,0,0.5) url(images/ajax-loader.gif) no-repeat right center;
    position: fixed;
    display: none;
    z-index: 99999999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

.breadcrumbs {
    color: #fff;
}

#lkbtn_lgout {
    background: #fff;
    padding: 7px 20px;
    border-radius: 50px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

    #lkbtn_lgout:hover {
        background: #f8c607;
        color: #000;
    }
/************************** media-query **************************/
@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .mainHeroContent {
        width: 100%;
        padding-left: 0rem;
    }

        .mainHeroContent h1 {
            font-size: 48px;
        }
}

@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 {
        gap: 10px;
    }

        .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: 12px;
        }

        .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
            font-size: 14px;
        }

    .main-header .mini-header .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 10px;
        max-width: 550px;
        padding: 10px;
        border-radius: 15px;
        align-items: center;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link.active {
            padding: 5px 10px;
            border-radius: 7px;
        }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
        }

    .getParent .btn {
        padding: 7px 14px;
        font-size: 14px;
    }

    .main-header .navbar-expand-lg .header-logo {
        width: 100px;
    }

    .hero-section {
        min-height: unset;
    }

    .mainHeroContent {
        gap: 10px;
        width: 100%;
        max-width: 660px;
        margin: 2rem auto 0 auto;
        padding-left: 0rem;
    }

        .mainHeroContent h1 {
            font-size: 32px;
        }

        .mainHeroContent p {
            font-size: 14px;
        }

    .bqr-root {
        padding: 1rem 0 3rem;
    }

        .bqr-root .bqr-card {
            width: 92%;
            border-radius: 15px;
            padding: 20px 0;
        }

        .bqr-root .bqr-eyebrow {
            font-size: 10px;
            letter-spacing: 0.6px;
            margin-bottom: 8px;
        }

        .bqr-root .bqr-heading {
            font-size: 24px;
            margin-bottom: 2px;
        }

        .bqr-root .bqr-subtext {
            font-size: 12px;
            margin-bottom: 15px;
        }

        .bqr-root .bqr-field-label {
            font-size: 10px;
            margin-bottom: 5px;
        }

        .bqr-root .bqr-field {
            margin-bottom: 10px;
        }

        .bqr-root .bqr-input-shell {
            padding: 0 7px;
        }

            .bqr-root .bqr-input-shell input {
                font-size: 13px;
                padding: 10px 5px;
            }

            .bqr-root .bqr-input-shell select {
                font-size: 13px;
                padding: 10px 5px;
            }

        .bqr-root .bqr-badge-icon {
            width: 25px;
            height: 25px;
            border-radius: 5px;
            font-size: 10px;
        }

        .bqr-root .bqr-tabs {
            margin-bottom: 10px;
            width: 16%;
        }

        .bqr-root .bqr-tab {
            gap: 5px;
            font-size: 12px;
            padding: 8px 10px;
            height: 35px;
            border-radius: 5px;
        }

    .sec2-about {
        padding: 2rem 0 2rem 0;
    }

    .capsule {
        padding: 5px 10px;
    }

        .capsule h4 {
            font-size: 14px;
        }

    .sec2-about h2 {
        font-size: 42px;
        margin: 5px 0;
    }

    .sec2-about .aboutContent h5 {
        margin: 5px 0;
        font-size: 18px;
    }

    .sec2-about .aboutContent p {
        color: #333333;
        padding: 3px 0;
        font-size: 14px;
    }

    .sec2-about .aboutCenter img {
        width: 100%;
    }

    .sec3_sevciescards {
        padding: 2rem 0;
    }

        .sec3_sevciescards .section-title {
            font-size: 42px;
            margin-top: 0.5rem;
        }

        .sec3_sevciescards .service-card {
            border-radius: 15px;
            padding: 20px 20px 20px;
        }

        .sec3_sevciescards .card-number {
            top: 10px;
            right: 20px;
            font-size: 42px;
        }

        .sec3_sevciescards .icon-wrap {
            width: 40px;
            height: 40px;
            border-radius: 7px;
            margin-bottom: 12px;
        }

            .sec3_sevciescards .icon-wrap svg {
                width: 20px;
                height: 20px;
            }

        .sec3_sevciescards .card-title {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .sec3_sevciescards .card-desc {
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
            margin-bottom: 15px;
        }

    .secFleets {
        padding: 2rem 0;
    }

    .fleetTopContent {
        max-width: 600px;
    }

    .secFleets .capsule {
        margin-bottom: 0.5rem;
    }

    .secFleets h2 {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .fleetTopContent p {
        font-size: 14px;
    }

    .FleetsCard {
        padding: 20px 12px;
        gap: 10px;
        border-radius: 15px;
    }

        .FleetsCard img {
            height: 170px;
            border-radius: 10px;
        }

    .fleetsRight {
        gap: 7px;
    }

    .FleetsCard h3 {
        font-size: 24px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform .contact-section {
        margin: 1rem auto;
    }

    .sec6_contactform .form-panel {
        padding: 20px 20px;
    }

    .sec6_contactform .form-heading {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .sec6_contactform .form-sub {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .sec6_contactform .form-label {
        font-size: 10px;
    }

    .sec6_contactform .input-wrap {
        margin-bottom: 12px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        border-radius: 6px;
        font-size: 13px;
        font-weight: 400;
        padding: 10px 5px 10px 36px;
    }

    .leftPanelBG {
        min-height: 600px;
    }

    .footerLinks ul h3 {
        font-size: 24px;
        padding-bottom: 0.5rem;
    }

    .footerLogo {
        gap: 5px;
    }

    footer .footerLogo img {
        width: 80%;
        border-radius: 10px;
    }

    .footerLogo p {
        padding-top: 0.3rem;
        font-size: 14px;
    }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px !important;
        font-size: 14px;
    }

    .footerLinks ul li a {
        padding: 3px 0;
        gap: 8px;
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1rem;
        padding-top: 1rem;
    }

        .bottomFooter p {
            font-size: 14px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    .innerBanner {
        border-radius: 15px;
        margin: 0 1rem 1rem;
    }

        .innerBanner .row {
            height: 25vh;
        }

    .innerContent {
        gap: 0px;
    }

        .innerContent h2 {
            font-size: 42px;
        }

    .breadcrumbs a {
        font-size: 14px;
    }

    .sec-result .upper-list li .icon-box .img-icon {
        width: 55px;
        padding: 5px;
    }

    .sec-result .upper-list {
        padding: 7px 12px;
    }

    #lkbtn_lgout {
        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 {
        gap: 10px;
        justify-content: center;
    }

        .main-header .mini-header .contact-info .mobile_number a i, .main-header .mini-header .contact-info .email_address a i {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }

        .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
            font-size: 14px;
        }

    .main-header .mini-header .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 10px;
        max-width: 100%;
        padding: 10px;
        border-radius: 15px;
        align-items: start;
        background: #fdfdfd;
        box-shadow: none;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link.active {
            padding: 5px 10px;
            border-radius: 7px;
        }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
            color: #000;
            padding: 0;
        }

    .getParent .btn {
        padding: 7px 14px;
        font-size: 14px;
    }

    .main-header .navbar-expand-lg .header-logo {
        width: 100px;
    }

    .hero-section {
        min-height: unset;
    }

    .mainHeroContent {
        gap: 10px;
        width: 100%;
        max-width: 660px;
        margin: 2rem auto 0 auto;
        padding-left: 0rem;
    }

        .mainHeroContent h1 {
            font-size: 32px;
        }

        .mainHeroContent p {
            font-size: 14px;
        }

    .bqr-root {
        padding: 1rem 0 3rem;
    }

        .bqr-root .bqr-card {
            width: 92%;
            border-radius: 15px;
            padding: 20px 0;
        }

        .bqr-root .bqr-eyebrow {
            font-size: 10px;
            letter-spacing: 0.6px;
            margin-bottom: 8px;
        }

        .bqr-root .bqr-heading {
            font-size: 24px;
            margin-bottom: 2px;
        }

        .bqr-root .bqr-subtext {
            font-size: 12px;
            margin-bottom: 15px;
        }

        .bqr-root .bqr-field-label {
            font-size: 10px;
            margin-bottom: 5px;
        }

        .bqr-root .bqr-field {
            margin-bottom: 10px;
        }

        .bqr-root .bqr-input-shell {
            padding: 0 7px;
        }

            .bqr-root .bqr-input-shell input {
                font-size: 13px;
                padding: 10px 5px;
            }

            .bqr-root .bqr-input-shell select {
                font-size: 13px;
                padding: 10px 5px;
            }

        .bqr-root .bqr-badge-icon {
            width: 25px;
            height: 25px;
            border-radius: 5px;
            font-size: 10px;
        }

        .bqr-root .bqr-tabs {
            margin-bottom: 10px;
            width: 16%;
        }

        .bqr-root .bqr-tab {
            gap: 5px;
            font-size: 12px;
            padding: 8px 10px;
            height: 35px;
            border-radius: 5px;
        }

    .sec2-about {
        padding: 2rem 0 2rem 0;
    }

    .capsule {
        padding: 5px 10px;
    }

        .capsule h4 {
            font-size: 14px;
        }

    .sec2-about h2 {
        font-size: 42px;
        margin: 5px 0;
    }

    .sec2-about .aboutContent h5 {
        margin: 5px 0;
        font-size: 18px;
    }

    .sec2-about .aboutContent p {
        color: #333333;
        padding: 3px 0;
        font-size: 14px;
    }

    .sec2-about .aboutCenter img {
        width: 50%;
        border-radius: 20px;
        margin: 0;
    }

    .sec3_sevciescards {
        padding: 2rem 0;
    }

        .sec3_sevciescards .section-title {
            font-size: 42px;
            margin-top: 0.5rem;
        }

        .sec3_sevciescards .service-card {
            border-radius: 15px;
            padding: 20px 20px 20px;
        }

        .sec3_sevciescards .card-number {
            top: 10px;
            right: 20px;
            font-size: 42px;
        }

        .sec3_sevciescards .icon-wrap {
            width: 40px;
            height: 40px;
            border-radius: 7px;
            margin-bottom: 12px;
        }

            .sec3_sevciescards .icon-wrap svg {
                width: 20px;
                height: 20px;
            }

        .sec3_sevciescards .card-title {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .sec3_sevciescards .card-desc {
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
            margin-bottom: 15px;
        }

    .secFleets {
        padding: 2rem 0;
    }

    .fleetTopContent {
        max-width: 600px;
    }

    .secFleets .capsule {
        margin-bottom: 0.5rem;
    }

    .secFleets h2 {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .fleetTopContent p {
        font-size: 14px;
    }

    .FleetsCard {
        padding: 20px 12px;
        gap: 10px;
        border-radius: 15px;
    }

        .FleetsCard img {
            height: 170px;
            border-radius: 10px;
        }

    .fleetsRight {
        gap: 7px;
    }

    .FleetsCard h3 {
        font-size: 24px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform .contact-section {
        margin: 1rem auto;
    }

    .sec6_contactform .form-panel {
        padding: 20px 20px;
    }

    .sec6_contactform .form-heading {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .sec6_contactform .form-sub {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .sec6_contactform .form-label {
        font-size: 10px;
    }

    .sec6_contactform .input-wrap {
        margin-bottom: 12px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        border-radius: 6px;
        font-size: 13px;
        font-weight: 400;
        padding: 10px 5px 10px 36px;
    }

    .leftPanelBG {
        min-height: 600px;
    }

    .footerLinks ul h3 {
        font-size: 24px;
        padding-bottom: 0.5rem;
    }

    .footerLogo {
        gap: 5px;
    }

    footer .footerLogo img {
        width: 80%;
        border-radius: 10px;
    }

    .footerLogo p {
        padding-top: 0.3rem;
        font-size: 14px;
    }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px !important;
        font-size: 14px;
    }

    .footerLinks ul li a {
        padding: 3px 0;
        gap: 8px;
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1rem;
        padding-top: 1rem;
    }

        .bottomFooter p {
            font-size: 14px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    .main-header .mini-header {
        padding: 5px 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .main-header .navbar-expand-lg {
        padding: 5px 0px 10px 0px;
    }

    .aboutCenter {
        margin: 20px 0;
    }

    .aboutContent {
        text-align: start !important;
    }

    .swiper-button-prev {
        right: 7% !important;
    }

    .innerBanner {
        border-radius: 15px;
        margin: 0 1rem 1rem;
    }

        .innerBanner .row {
            height: 25vh;
        }

    .innerContent {
        gap: 0px;
    }

        .innerContent h2 {
            font-size: 42px;
        }

    .breadcrumbs a {
        font-size: 14px;
    }

    .sec-result .upper-list {
        display: none;
    }

    .sec-result .number-box {
        padding: 0px 0px 40px;
    }

        .sec-result .number-box ul li .num-circle {
            position: relative;
        }

    .update-fleet-box .fleet-detail {
        border: none;
    }

    .update-fleet-box .rate-box {
        justify-content: flex-start;
    }

    .update-fleet-box .reserve-btn {
        justify-content: flex-start;
    }

    #lkbtn_lgout {
        font-size: 14px;
    }
    .main-header .mini-header .social-icons {
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .main-header .mini-header .contact-info {
        gap: 10px;
    }

        .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: 12px;
        }

        .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
            font-size: 14px;
        }

    .main-header .mini-header .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 10px;
        max-width: 100%;
        padding: 10px;
        border-radius: 15px;
        align-items: start;
        background: #fdfdfd;
        box-shadow: none;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link.active {
            padding: 5px 10px;
            border-radius: 7px;
        }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
            color: #000;
            padding: 0;
        }

    .getParent .btn {
        padding: 7px 14px;
        font-size: 14px;
    }

    .main-header .navbar-expand-lg .header-logo {
        width: 100px;
    }

    .hero-section {
        min-height: unset;
    }

    .mainHeroContent {
        gap: 10px;
        width: 100%;
        max-width: 660px;
        margin: 2rem auto 0 auto;
        padding-left: 0rem;
    }

        .mainHeroContent h1 {
            font-size: 32px;
        }

        .mainHeroContent p {
            font-size: 14px;
        }

    .bqr-root {
        padding: 1rem 0 3rem;
    }

        .bqr-root .bqr-card {
            width: 92%;
            border-radius: 15px;
            padding: 20px 0;
        }

        .bqr-root .bqr-eyebrow {
            font-size: 10px;
            letter-spacing: 0.6px;
            margin-bottom: 8px;
        }

        .bqr-root .bqr-heading {
            font-size: 24px;
            margin-bottom: 2px;
        }

        .bqr-root .bqr-subtext {
            font-size: 12px;
            margin-bottom: 15px;
        }

        .bqr-root .bqr-field-label {
            font-size: 10px;
            margin-bottom: 5px;
        }

        .bqr-root .bqr-field {
            margin-bottom: 10px;
        }

        .bqr-root .bqr-input-shell {
            padding: 0 7px;
        }

            .bqr-root .bqr-input-shell input {
                font-size: 13px;
                padding: 10px 5px;
            }

            .bqr-root .bqr-input-shell select {
                font-size: 13px;
                padding: 10px 5px;
            }

        .bqr-root .bqr-badge-icon {
            width: 25px;
            height: 25px;
            border-radius: 5px;
            font-size: 10px;
        }

        .bqr-root .bqr-tabs {
            margin-bottom: 10px;
            width: 16%;
        }

        .bqr-root .bqr-tab {
            gap: 5px;
            font-size: 12px;
            padding: 8px 10px;
            height: 35px;
            border-radius: 5px;
        }

    .sec2-about {
        padding: 2rem 0 2rem 0;
    }

    .capsule {
        padding: 5px 10px;
    }

        .capsule h4 {
            font-size: 14px;
        }

    .sec2-about h2 {
        font-size: 42px;
        margin: 5px 0;
    }

    .sec2-about .aboutContent h5 {
        margin: 5px 0;
        font-size: 18px;
    }

    .sec2-about .aboutContent p {
        color: #333333;
        padding: 3px 0;
        font-size: 14px;
    }

    .sec2-about .aboutCenter img {
        width: 50%;
        border-radius: 20px;
        margin: 0;
    }

    .sec3_sevciescards {
        padding: 2rem 0;
    }

        .sec3_sevciescards .section-title {
            font-size: 42px;
            margin-top: 0.5rem;
        }

        .sec3_sevciescards .service-card {
            border-radius: 15px;
            padding: 20px 20px 20px;
        }

        .sec3_sevciescards .card-number {
            top: 10px;
            right: 20px;
            font-size: 42px;
        }

        .sec3_sevciescards .icon-wrap {
            width: 40px;
            height: 40px;
            border-radius: 7px;
            margin-bottom: 12px;
        }

            .sec3_sevciescards .icon-wrap svg {
                width: 20px;
                height: 20px;
            }

        .sec3_sevciescards .card-title {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .sec3_sevciescards .card-desc {
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
            margin-bottom: 15px;
        }

    .secFleets {
        padding: 2rem 0;
    }

    .fleetTopContent {
        max-width: 600px;
    }

    .secFleets .capsule {
        margin-bottom: 0.5rem;
    }

    .secFleets h2 {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .fleetTopContent p {
        font-size: 14px;
    }

    .FleetsCard {
        padding: 20px 12px;
        gap: 10px;
        border-radius: 15px;
    }

        .FleetsCard img {
            height: 170px;
            border-radius: 10px;
        }

    .fleetsRight {
        gap: 7px;
    }

    .FleetsCard h3 {
        font-size: 24px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform .contact-section {
        margin: 1rem auto;
    }

    .sec6_contactform .form-panel {
        padding: 20px 20px;
    }

    .sec6_contactform .form-heading {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .sec6_contactform .form-sub {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .sec6_contactform .form-label {
        font-size: 10px;
    }

    .sec6_contactform .input-wrap {
        margin-bottom: 12px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        border-radius: 6px;
        font-size: 13px;
        font-weight: 400;
        padding: 10px 5px 10px 36px;
    }

    .leftPanelBG {
        min-height: 600px;
    }

    .footerLinks ul h3 {
        font-size: 24px;
        padding-bottom: 0.5rem;
    }

    .footerLogo {
        gap: 5px;
    }

    footer .footerLogo img {
        width: 80%;
        border-radius: 10px;
    }

    .footerLogo p {
        padding-top: 0.3rem;
        font-size: 14px;
    }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px !important;
        font-size: 14px;
    }

    .footerLinks ul li a {
        padding: 3px 0;
        gap: 8px;
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1rem;
        padding-top: 1rem;
    }

        .bottomFooter p {
            font-size: 14px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    .main-header .mini-header {
        padding: 5px 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .main-header .navbar-expand-lg {
        padding: 5px 0px 10px 0px;
    }

    .aboutCenter {
        margin: 20px 0;
    }

    .aboutContent {
        text-align: start !important;
    }

    .swiper-button-prev {
        right: 7% !important;
    }

    .bqr-root .bqr-row-2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .main-header .mini-header .social-icons {
        justify-content: center;
        gap: 5px;
        margin-top: 10px;
    }

    .innerBanner {
        border-radius: 15px;
        margin: 0 1rem 1rem;
    }

        .innerBanner .row {
            height: 25vh;
        }

    .innerContent {
        gap: 0px;
    }

        .innerContent h2 {
            font-size: 42px;
        }

    .breadcrumbs a {
        font-size: 14px;
    }

    .sec-result .upper-list {
        display: none;
    }

    .sec-result .number-box {
        padding: 0px 0px 40px;
    }

        .sec-result .number-box ul li .num-circle {
            position: relative;
        }

    .update-fleet-box .fleet-detail {
        border: none;
    }

    .update-fleet-box .rate-box {
        justify-content: flex-start;
    }

    .update-fleet-box .reserve-btn {
        justify-content: flex-start;
    }

    #lkbtn_lgout {
        font-size: 14px;
    }
}

@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 {
        gap: 10px;
        flex-direction: column;
    }

        .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: 12px;
        }

        .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
            font-size: 14px;
        }

    .main-header .mini-header .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 10px;
        max-width: 100%;
        padding: 10px;
        border-radius: 15px;
        align-items: start;
        background: #fdfdfd;
        box-shadow: none;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link.active {
            padding: 5px 10px;
            border-radius: 7px;
        }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
            color: #000;
            padding: 0;
        }

    .getParent .btn {
        padding: 7px 14px;
        font-size: 14px;
    }

    .main-header .navbar-expand-lg .header-logo {
        width: 100px;
    }

    .hero-section {
        min-height: unset;
    }

    .mainHeroContent {
        gap: 10px;
        width: 100%;
        max-width: 660px;
        margin: 2rem auto 0 auto;
        padding-left: 0rem;
    }

        .mainHeroContent h1 {
            font-size: 22px;
        }

        .mainHeroContent p {
            font-size: 14px;
        }

    .bqr-root {
        padding: 1rem 0 3rem;
    }

        .bqr-root .bqr-card {
            width: 92%;
            border-radius: 15px;
            padding: 20px 0;
        }

        .bqr-root .bqr-eyebrow {
            font-size: 10px;
            letter-spacing: 0.6px;
            margin-bottom: 8px;
        }

        .bqr-root .bqr-heading {
            font-size: 24px;
            margin-bottom: 2px;
        }

        .bqr-root .bqr-subtext {
            font-size: 12px;
            margin-bottom: 15px;
        }

        .bqr-root .bqr-field-label {
            font-size: 10px;
            margin-bottom: 5px;
        }

        .bqr-root .bqr-field {
            margin-bottom: 10px;
        }

        .bqr-root .bqr-input-shell {
            padding: 0 7px;
        }

            .bqr-root .bqr-input-shell input {
                font-size: 13px;
                padding: 10px 5px;
            }

            .bqr-root .bqr-input-shell select {
                font-size: 13px;
                padding: 10px 5px;
            }

        .bqr-root .bqr-badge-icon {
            width: 25px;
            height: 25px;
            border-radius: 5px;
            font-size: 10px;
        }

        .bqr-root .bqr-tabs {
            margin-bottom: 80px;
            width: 75%;
        }

        .bqr-root .bqr-tab {
            gap: 5px;
            font-size: 12px;
            padding: 8px 10px;
            height: 35px;
            border-radius: 5px;
        }

    .sec2-about {
        padding: 2rem 0 2rem 0;
    }

    .capsule {
        padding: 5px 10px;
    }

        .capsule h4 {
            font-size: 14px;
        }

    .sec2-about h2 {
        font-size: 42px;
        margin: 5px 0;
    }

    .sec2-about .aboutContent h5 {
        margin: 5px 0;
        font-size: 18px;
    }

    .sec2-about .aboutContent p {
        color: #333333;
        padding: 3px 0;
        font-size: 14px;
    }

    .sec2-about .aboutCenter img {
        width: 100%;
        border-radius: 20px;
        margin: 0;
    }

    .sec3_sevciescards {
        padding: 2rem 0;
    }

        .sec3_sevciescards .section-title {
            font-size: 42px;
            margin-top: 0.5rem;
        }

        .sec3_sevciescards .service-card {
            border-radius: 15px;
            padding: 20px 20px 20px;
        }

        .sec3_sevciescards .card-number {
            top: 10px;
            right: 20px;
            font-size: 42px;
        }

        .sec3_sevciescards .icon-wrap {
            width: 40px;
            height: 40px;
            border-radius: 7px;
            margin-bottom: 12px;
        }

            .sec3_sevciescards .icon-wrap svg {
                width: 20px;
                height: 20px;
            }

        .sec3_sevciescards .card-title {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .sec3_sevciescards .card-desc {
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
            margin-bottom: 15px;
        }

    .secFleets {
        padding: 2rem 0;
    }

    .fleetTopContent {
        max-width: 600px;
    }

    .secFleets .capsule {
        margin-bottom: 0.5rem;
    }

    .secFleets h2 {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .fleetTopContent p {
        font-size: 14px;
    }

    .FleetsCard {
        padding: 20px 12px;
        gap: 10px;
        border-radius: 15px;
    }

        .FleetsCard img {
            height: 210px;
            border-radius: 10px;
        }

    .fleetsRight {
        gap: 7px;
    }

    .FleetsCard h3 {
        font-size: 24px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .sec6_contactform .contact-section {
        margin: 1rem auto;
    }

    .sec6_contactform .form-panel {
        padding: 20px 20px;
    }

    .sec6_contactform .form-heading {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .sec6_contactform .form-sub {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .sec6_contactform .form-label {
        font-size: 10px;
    }

    .sec6_contactform .input-wrap {
        margin-bottom: 12px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        border-radius: 6px;
        font-size: 13px;
        font-weight: 400;
        padding: 10px 5px 10px 36px;
    }

    .leftPanelBG {
        min-height: 250px;
    }

    .footerLinks ul h3 {
        font-size: 24px;
        padding-bottom: 0.5rem;
        margin-top: 20px;
    }

    .footerLogo {
        gap: 5px;
    }

    footer .footerLogo img {
        width: 40%;
        border-radius: 10px;
    }

    .footerLogo p {
        padding-top: 0.3rem;
        font-size: 14px;
    }

    footer .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px !important;
        font-size: 14px;
    }

    .footerLinks ul li a {
        padding: 3px 0;
        gap: 8px;
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1rem;
        padding-top: 1rem;
        flex-direction: column;
        align-items: center;
    }

        .bottomFooter p {
            font-size: 14px;
            text-align: center;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    .main-header .mini-header {
        padding: 5px 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .main-header .navbar-expand-lg {
        padding: 5px 0px 10px 0px;
    }

    .aboutCenter {
        margin: 20px 0;
    }

    .aboutContent {
        text-align: start !important;
    }

    .swiper-button-prev {
        right: 14% !important;
    }

    .bqr-root .bqr-row-2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .main-header .mini-header .social-icons {
        justify-content: center;
        gap: 5px;
        margin-top: 10px;
    }

    .innerBanner {
        border-radius: 15px;
        margin: 0 1rem 1rem;
    }

        .innerBanner .row {
            height: 25vh;
        }

    .innerContent {
        gap: 0px;
    }

        .innerContent h2 {
            font-size: 42px;
        }

    .breadcrumbs a {
        font-size: 14px;
    }

    .sec-result .upper-list {
        display: none;
    }

    .sec-result .number-box {
        padding: 0px 0px 40px;
    }

        .sec-result .number-box ul li .num-circle {
            position: relative;
        }

    .update-fleet-box .fleet-detail {
        border: none;
    }

    .update-fleet-box .rate-box {
        justify-content: flex-start;
    }

    .update-fleet-box .reserve-btn {
        justify-content: flex-start;
    }

    #lkbtn_lgout {
        font-size: 14px;
    }
}
