@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: #1C183A;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #d9c6ff;
    border-radius: 20px;
}

    /* Hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #5d3d99;
    }

.custom-cursor {
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-light);
    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: var(--primary-dark);
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

a {
    text-decoration: none;
}

:root {
    --primary-dark: #1C183A;
    --primary-light: #462F75;
    --text-white: #ffffff;
    --text-black: #000000;
    --text-headingcolor: #462F75;
}

figure {
    margin: 0px;
    padding: 0px;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0px;
    padding: 0px;
}

a,
button {
    display: inline-block;
}

select {
    cursor: pointer;
    appearance: none;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

#scrollBtn {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: var(--text-white);
    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, var(--primary-light), var(--primary-dark));
    color: var(--text-white);
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 15px;
    left: 15px;
    border: none;
    cursor: pointer;
    z-index: 1000;
    transition: all .3s ease-in-out;
    animation: MobileActionBtnpulseanimation 2s infinite;
}

@keyframes MobileActionBtnpulseanimation {
    0% {
        box-shadow: 0 0 0 0px var(--primary-dark);
    }

    100% {
        box-shadow: 0 0 0 20px #ffffff44;
    }
}

/************************** Header css **************************/
.main-header {
    width: 100%;
}

    .main-header .mini-header {
        background: linear-gradient(160deg, #574ea1 0%, #2e1447 45%, #412d6e 100%);
        padding: 10px 0px;
    }

        .main-header .mini-header .contact-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

            .main-header .mini-header .contact-info .mobile_number,
            .main-header .mini-header .contact-info .email_address {
                background: var(--text-white);
                padding: 3px 10px 3px 4px;
                border-radius: 25px;
            }

                .main-header .mini-header .contact-info .mobile_number a,
                .main-header .mini-header .contact-info .email_address a {
                    display: flex;
                    gap: 7px;
                    align-items: center;
                    color: var(--primary-dark);
                    font-size: 16px;
                    font-weight: 500;
                    transition: 0.4s ease-in-out;
                }

                    .main-header .mini-header .contact-info .mobile_number a:hover,
                    .main-header .mini-header .contact-info .email_address a:hover {
                        color: var(--primary-light);
                    }

                    .main-header .mini-header .contact-info .mobile_number a i,
                    .main-header .mini-header .contact-info .email_address a i {
                        background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
                        border-radius: 50px;
                        width: 35px;
                        height: 35px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        color: var(--text-white);
                        border: 2px solid transparent;
                        transition: 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 var(--primary-light);
                        color: var(--primary-light);
                    }

        .main-header .mini-header .social-icons {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            gap: 12px;
        }

            .main-header .mini-header .social-icons a {
                background: var(--text-white);
                border-radius: 50%;
                width: 35px;
                height: 35px;
                display: flex;
                justify-content: center;
                align-items: center;
                color: var(--primary-dark);
                border: 2px solid var(--primary-light);
                transition: 0.4s ease-in-out;
            }

                .main-header .mini-header .social-icons a:hover {
                    background: transparent;
                    color: var(--text-white);
                    border: 2px solid var(--text-white);
                }

    .main-header .navbar-expand-lg {
        padding: 15px 0px;
        background: transparent;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

        .main-header .navbar-expand-lg .header-logo {
            width: 300px;
            transition: 0.4s ease-in-out;
        }

        .main-header .navbar-expand-lg .navbar-nav {
            gap: 30px;
        }

            .main-header .navbar-expand-lg .navbar-nav .nav-link {
                color: var(--text-black);
                font-size: 16px;
                position: relative;
                overflow: hidden;
                font-weight: 500;
                transition: 0.4s ease-in-out;
            }

                .main-header .navbar-expand-lg .navbar-nav .nav-link::before {
                    content: "";
                    position: absolute;
                    height: 2px;
                    width: 0%;
                    bottom: 0;
                    left: 0;
                    background-color: var(--primary-light);
                    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: var(--primary-light);
                    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: var(--primary-light);
                }

                .main-header .navbar-expand-lg .navbar-nav .nav-link.active {
                    color: #ffffff;
                    background: #361e57;
                    border-radius: 7px;
                    padding: 8px 16px;
                }

.header_btn .custom-btn {
    color: var(--primary-light);
    text-transform: capitalize;
    text-decoration: none;
    border: 2px solid var(--primary-light);
    padding: 5px 5px 5px 12px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .header_btn .custom-btn:hover {
        color: var(--text-white);
    }

    .header_btn .custom-btn::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        top: 0;
        left: -40px;
        transform: skewX(45deg);
        background-color: var(--primary-light);
        z-index: -1;
        transition: all 1s;
    }

    .header_btn .custom-btn:hover::before {
        width: 160%;
    }

    .header_btn .custom-btn i {
        background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
        border-radius: 50px;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--text-white);
        border: 2px solid transparent;
        transition: all 2s ease-in-out;
    }

    .header_btn .custom-btn:hover i {
        background: transparent;
        border: 2px solid var(--text-white);
        color: var(--text-white);
    }

.scroll {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 30;
    transition: 0.4s;
    left: 0;
    border-radius: 0px !important;
    border: none !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: var(--text-white) !important;
}

/************************** Header css end **************************/

.ui-menu .ui-menu-item-wrapper:hover {
    background: linear-gradient(160deg, #574ea1 0%, #2e1447 45%, #412d6e 100%) !important;
    color: #fff !important;
}
/* From Uiverse.io by Randdose */
.button {
    all: unset;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px 25px;
    border: #614380 solid 0.15em;
    border-radius: 25px;
    color: #211b41;
    /* font-size: 18px; */
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: border 300ms, color 300ms;
    user-select: none;
    width: fit-content;
}

    .button p {
        z-index: 1;
    }

    .button:hover {
        color: #212121;
    }

    .button:active {
        border-color: teal;
    }

    .button::after,
    .button::before {
        content: "";
        position: absolute;
        width: 9em;
        aspect-ratio: 1;
        background: #c69cf4;
        opacity: 50%;
        border-radius: 50%;
        transition: transform 500ms, background 300ms;
    }

    .button::before {
        left: 0;
        transform: translateX(-8em);
    }

    .button::after {
        right: 0;
        transform: translateX(8em);
    }

    .button:hover:before {
        transform: translateX(-1em);
    }

    .button:hover:after {
        transform: translateX(1em);
    }

    .button:active:before,
    .button:active:after {
        background: teal;
    }

.button_logout {
    all: unset;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px 25px;
    border: #614380 solid 0.15em;
    border-radius: 25px;
    color: #211b41;
    /* font-size: 18px; */
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: border 300ms, color 300ms;
    user-select: none;
    width: fit-content;
}

    .button_logout p {
        z-index: 1;
    }

    .button_logout:hover {
        color: #212121;
    }

    .button_logout:active {
        border-color: teal;
    }

    .button_logout::after,
    .button_logout::before {
        content: "";
        position: absolute;
        width: 9em;
        aspect-ratio: 1;
        background: #c69cf4;
        opacity: 50%;
        border-radius: 50%;
        transition: transform 500ms, background 300ms;
    }

    .button_logout::before {
        left: 0;
        transform: translateX(-8em);
    }

    .button_logout::after {
        right: 0;
        transform: translateX(8em);
    }

    .button_logout:hover:before {
        transform: translateX(-1em);
    }

    .button_logout:hover:after {
        transform: translateX(1em);
    }

    .button_logout:active:before,
    .button_logout:active:after {
        background: teal;
    }

/************************** Hero Section css **************************/
.hero-section {
    width: 100%;
    height: 100%;
    background: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    gap: 20px;
    padding: 5rem 0;
}

    .hero-section::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, rgb(46 36 87 / 31%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(47 38 91 / 40%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(43 35 84 / 30%) 0%, transparent 70%);
    }

    .hero-section .hero-title {
        position: relative;
        width: 100%;
        margin-bottom: 70px;
    }

        .hero-section .hero-title h1 {
            font-size: 72px;
            font-weight: 700;
            color: var(--text-black);
            position: relative;
            z-index: 1;
            text-align: center;
        }

            .hero-section .hero-title h1 .textStrokes {
                color: transparent;
                display: inline-block;
                -webkit-text-stroke: 2px rgb(76 51 117);
            }

            .hero-section .hero-title h1 em {
                font-style: normal;
                background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

    .hero-section .hero-image-content {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 35vh;
        border-radius: 250px;
        background: url(../images/Banner_image.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

        .hero-section .hero-image-content .hero-car-image {
            width: 700px;
        }

.hero-bookingForm {
    width: 100%;
    background: var(--text-white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 2px solid var(--primary-light);
    margin-top: 60px;
}

.tab-content {
    margin-top: 20px;
}

.component-title {
    width: 100%;
    position: absolute;
    z-index: 999;
    top: 30px;
    left: 0;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #888;
    text-align: center;
}

.tab-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 2px;
    background-color: #f3f3f3;
    border-radius: 100px;
    width: fit-content;
    margin: 0 auto;
}

.indicator {
    content: "";
    width: 130px;
    height: 35px;
    background: #ffffff;
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 9;
    border: 1px solid rgb(85 56 143);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.12), 0px 3px 1px rgba(0, 0, 0, 0.04);
    border-radius: 100px;
    transition: all 0.2s ease-out;
}

.tab {
    width: 130px;
    height: 28px;
    position: absolute;
    z-index: 99;
    outline: none;
    opacity: 0;
}

.tab_label {
    width: 130px;
    height: 35px;
    position: relative;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    font-size: 16px;
    cursor: pointer;
    color: #000000;
}

.tab--1:checked ~ .indicator {
    left: 2px;
}

.tab--2:checked ~ .indicator {
    left: calc(130px + 2px);
}

.input-container {
    position: relative;
    margin: 20px;
}

    .input-container i {
        width: 35px;
        height: 35px;
        font-size: 15px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
        color: #fff;
        position: absolute;
        top: 3px;
        right: 5px;
    }

.input-field {
    display: block;
    width: 100%;
    padding: 10px 44px 10px 3px;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    background-color: transparent;
}

.input-label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    color: rgba(204, 204, 204, 0);
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--primary-light);
    transition: all 0.3s ease;
}

.input-field:focus + .input-label {
    top: -20px;
    font-size: 12px;
    color: var(--primary-light);
}

    .input-field:focus + .input-label + .input-highlight {
        width: 100%;
    }

.form_btn .custom-btn {
    color: var(--primary-light);
    text-transform: capitalize;
    text-decoration: none;
    border: 2px solid var(--primary-light);
    padding: 5px 5px 5px 12px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    background: transparent;
    position: relative;
    transition: all 1s ease-in-out;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

    .form_btn .custom-btn:hover {
        color: var(--text-white);
    }

.form_btn .custom-btn {
    position: relative;
    z-index: 0;
}

    .form_btn .custom-btn::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        top: 0;
        left: -40px;
        transform: skewX(45deg);
        background-color: var(--primary-light);
        transition: all 1s ease-in-out;
        z-index: -1;
    }

    .form_btn .custom-btn > * {
        position: relative;
        z-index: 2;
    }

    .form_btn .custom-btn:hover::before {
        width: 160%;
    }

    .form_btn .custom-btn i {
        background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
        border-radius: 50px;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--text-white);
        border: 2px solid transparent;
        transition: all 2s ease-in-out;
    }

    .form_btn .custom-btn:hover i {
        background: transparent;
        border: 2px solid var(--text-white);
        color: var(--text-white);
    }

/************************** Hero Section css **************************/


/* secAbout */

.sec2-about {
    padding: 4rem;
    position: relative;
    background: linear-gradient(160deg, #574ea1 0%, #2e1447 45%, #412d6e 100%);
    margin: 0rem;
    /* border-radius: 25px; */
}

    .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: var(--text-white);
        position: relative;
        z-index: 1;
        /* text-align: center; */
    }

.aboutSpan {
    color: transparent;
    display: inline-block;
    -webkit-text-stroke: 2px rgb(226 205 249);
}

.sec2-about .aboutContent p {
    color: var(--text-white);
    padding: 6px 0;
    font-size: 18px;
}

.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;
}

.sec2-about .aboutImages .bottomIMG {
    position: relative;
    /* top: -105px; */
    /* transform: translate(-50%, -50%); */
    /* left: 65px; */
    border: 2px dashed #e2cdf9;
    max-width: 545px;
    padding: 8px;
    border-radius: 220px;
}

    .sec2-about .aboutImages .bottomIMG img {
        width: 100%;
        border-radius: 220px;
        /* 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; */
    }

.listTips {
    display: flex;
    gap: 15px;
    align-items: center;
    color: white;
    margin-top: 1rem;
}

    .listTips lord-icon {
        width: 65px;
        height: 65px;
        background: #e2cdf9;
        border-radius: 8px;
    }

    .listTips h3 {
        font-size: 24px;
    }

.sec2-about .aboutContent button p {
    font-size: unset;
    padding: unset;
}

.aboutContent .button {
    border: #e4c9ff solid 0.15em;
}

    .aboutContent .button::after,
    .aboutContent .button::before {
        background: #cc9eff;
    }

/* secAbout */


/* sec services */
/* â”€â”€ SECTION â”€â”€ */
.sectionSrv {
    position: relative;
    padding: 110px 0 130px;
    /* background: linear-gradient(160deg, #0d0b1e 0%, #130f2a 45%, #0d0b1e 100%); */
    overflow: hidden;
}

/* â”€â”€ BG EFFECTS â”€â”€ */
.srv-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .45
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: #3b1f6e;
    top: -200px;
    left: -200px
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #1e0e4a;
    bottom: -150px;
    right: -100px
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #5a2d9a;
    top: 40%;
    left: 55%;
    transform: translate(-50%, -50%)
}


.sectionSrv .blob-1,
.sectionSrv .blob-2,
.sectionSrv .blob-3 {
    background: #d1b8ff;
}

.sectionSrv .corner-glow {
    background: radial-gradient(ellipse, rgb(177 147 224 / 30%) 0%, transparent 70%);
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(120, 80, 200, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 80, 200, .07) 1px, transparent 1px);
    background-size: 70px 70px;
}

.corner-glow {
    position: absolute;
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(100, 50, 180, .3) 0%, transparent 70%);
    top: 0;
    right: 0;
}

/* â”€â”€ WRAPPER â”€â”€ */
.sectionSrv .wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2
}

/* â”€â”€ HEADER â”€â”€ */
.sectionSrv .srv-head {
    text-align: center;
    margin-bottom: 80px
}

.sectionSrv .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(130, 80, 220, .15);
    border: 1px solid rgba(160, 100, 255, .3);
    border-radius: 999px;
    padding: 9px 24px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b48fff;
    margin-bottom: 28px;
}

.sectionSrv .pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b48fff;
    box-shadow: 0 0 8px #b48fff;
    animation: blink 2s ease-in-out infinite
}

@keyframes blink {

    0%, 100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.sectionSrv .srv-title {
    font-size: clamp(38px, 5.5vw, 66px);
    font-weight: 800;
    line-height: 1.1;
    /* letter-spacing: -2px; */
    margin-bottom: 22px;
}

    .sectionSrv .srv-title em {
        font-style: normal;
        background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .sectionSrv .srv-title span {
        color: transparent;
        display: inline-block;
        -webkit-text-stroke: 2px rgb(76 51 117);
    }

.sectionSrv .srv-sub {
    /* font-size: 16.5px; */
    color: rgb(98 78 139);
    max-width: 520px;
    margin: 0 auto;
}

/* â”€â”€ GRID â”€â”€ */
.sectionSrv .srv-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
}

/* â”€â”€ BASE CARD â”€â”€ */
.sectionSrv .card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease;
}

    .sectionSrv .card:hover {
        transform: translateY(-8px)
    }

    /* glow border on hover via outline */
    .sectionSrv .card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(180, 120, 255, .5), rgba(80, 40, 160, .1), rgba(180, 120, 255, .3));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        padding: 1.5px;
        opacity: 0;
        transition: opacity .4s;
        pointer-events: none;
        z-index: 3;
    }

    .sectionSrv .card:hover::before {
        opacity: 1
    }

/* â”€â”€ HERO CARD (spans 2 rows left) â”€â”€ */
.sectionSrv .card-hero {
    grid-column: 1;
    grid-row: 1/3;
    background: linear-gradient(160deg, #2a1a5e 0%, #1a0f38 60%, #150d30 100%);
    border: 1px solid rgba(140, 80, 240, .2);
    padding: 0;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.airPortImg img {
    width: 55%;
    top: -20px;
    position: relative;
    border-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.card-hero .button {
    border: #e2cdf9 solid 0.15em;
    color: #ffffff;
}

.sectionSrv .card-hero:hover {
    box-shadow: 0 30px 80px rgba(100, 50, 200, .45), 0 0 0 1px rgba(180, 130, 255, .15);
}

/* hero interior img/decoration */
.sectionSrv .hero-deco {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #574ea1 0%, #2e1447 45%, #412d6e 100%);
}

.sectionSrv .hero-rings {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 260px;
    height: 260px;
}

.sectionSrv .ring {
    position: absolute;
    border-radius: 15px;
    border: 1px solid rgb(183 142 249 / 46%);
    animation: spin-slow 18s linear infinite;
}

.sectionSrv .ring-1 {
    inset: 0
}

.sectionSrv .ring-2 {
    inset: 35px;
    animation-direction: reverse;
    animation-duration: 14s;
    border-color: rgb(160 100 255 / 64%);
}

.sectionSrv .ring-3 {
    inset: 70px;
    animation-duration: 22s
}

@keyframes spin-slow {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.sectionSrv .hero-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 96px;
    font-weight: 800;
    letter-spacing: -6px;
    color: rgb(180 133 255 / 35%);
    line-height: 1;
    user-select: none;
    font-family: 'Outfit', sans-serif;
}

.sectionSrv .hero-body {
    position: relative;
    z-index: 2;
    padding: 44px 40px
}

.sectionSrv .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(160, 100, 255, .2);
    border: 1px solid rgba(180, 130, 255, .3);
    border-radius: 999px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a6ff;
    margin-bottom: 20px;
}

.sectionSrv .badge-star {
    color: #f9c74f;
    font-size: 10px
}

.sectionSrv .hero-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6f498b, #58397e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 24px;
    /* box-shadow: 0 0 40px rgba(124, 58, 237, .6), 0 0 80px rgba(91, 33, 182, .3); */
    transition: box-shadow .3s, transform .3s;
}

.sectionSrv .card-hero:hover .hero-icon {
    /* box-shadow: 0 0 60px rgba(180, 130, 255, .8), 0 0 100px rgba(124, 58, 237, .4); */
    transform: scale(1.05);
}

.sectionSrv .hero-title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.sectionSrv .hero-desc {
    font-size: 14.5px;
    color: rgb(255 255 255 / 71%);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 340px
}

.sectionSrv .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #7c3aed, #9d4edd);
    color: #fff;
    padding: 14px 30px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(124, 58, 237, .5);
    transition: all .3s ease;
}

    .sectionSrv .hero-btn:hover {
        box-shadow: 0 14px 40px rgba(157, 78, 221, .7);
        transform: translateY(-2px)
    }

    .sectionSrv .hero-btn i {
        transition: transform .3s
    }

    .sectionSrv .hero-btn:hover i {
        transform: translateX(5px)
    }

/* â”€â”€ REGULAR CARD â”€â”€ */
.sectionSrv .card-reg {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(140, 80, 240, .15);
    backdrop-filter: blur(12px);
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

    .sectionSrv .card-reg:hover {
        background: rgba(100, 50, 180, .12);
        box-shadow: 0 20px 60px rgba(80, 30, 160, .35), 0 0 0 1px rgba(160, 100, 255, .15);
    }

.sectionSrv .reg-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: box-shadow .3s, transform .3s;
}

.sectionSrv .card-reg:hover .reg-icon {
    transform: scale(1.08)
}

.sectionSrv .ic-purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, .3), rgba(91, 33, 182, .2));
    border: 1px solid rgba(160, 100, 255, .25);
    color: #c4a8ff;
    box-shadow: 0 0 18px rgba(124, 58, 237, .2);
}

.sectionSrv .card-reg:hover .ic-purple {
    box-shadow: 0 0 30px rgba(160, 100, 255, .5)
}

.sectionSrv .ic-indigo {
    background: linear-gradient(160deg, #0d0b1e 0%, #130f2a 45%, #0d0b1e 100%);
    border: 1px solid rgba(120, 120, 255, .25);
    color: #e2cdf9;
    box-shadow: 0 0 18px rgba(99, 102, 241, .2);
}

.sectionSrv .card-reg:hover .ic-indigo {
    box-shadow: 0 0 30px rgba(120, 120, 255, .5)
}

.sectionSrv .ic-violet {
    background: linear-gradient(160deg, #0d0b1e 0%, #130f2a 45%, #0d0b1e 100%);
    border: 1px solid rgba(167, 139, 250, .25);
    color: #e2cdf9;
    box-shadow: 0 0 18px rgba(139, 92, 246, .2);
}

.sectionSrv .card-reg:hover .ic-violet {
    box-shadow: 0 0 30px rgba(167, 139, 250, .5)
}

.sectionSrv .ic-fuchsia {
    background: linear-gradient(135deg, rgba(192, 38, 211, .3), rgba(134, 25, 143, .2));
    border: 1px solid rgba(232, 121, 249, .25);
    color: #f0abfc;
    box-shadow: 0 0 18px rgba(192, 38, 211, .2);
}

.sectionSrv .card-reg:hover .ic-fuchsia {
    box-shadow: 0 0 30px rgba(232, 121, 249, .5)
}

.sectionSrv .ic-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, .3), rgba(5, 150, 105, .2));
    border: 1px solid rgba(52, 211, 153, .25);
    color: #6ee7b7;
    box-shadow: 0 0 18px rgba(16, 185, 129, .2);
}

.sectionSrv .card-reg:hover .ic-green {
    box-shadow: 0 0 30px rgba(52, 211, 153, .5)
}

.sectionSrv .reg-title {
    font-size: 28px;
    font-weight: 700;
    /* letter-spacing: -.3px; */
    margin-bottom: 10px;
    color: var(--primary-light);
}

.sectionSrv .reg-desc {
    font-size: 13.5px;
    color: var(--primary-light);
    line-height: 1.7;
    flex: 1
}

.sectionSrv .reg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(140, 80, 240, .12);
}

.sectionSrv .reg-link {
    font-size: 12.5px;
    font-weight: 600;
    color: #a78bfa;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .25s, color .25s;
}

.sectionSrv .card-reg:hover .reg-link {
    gap: 10px;
    color: #c4a8ff
}

.sectionSrv .reg-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(160, 100, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    font-size: 13px;
    transition: all .3s;
}

.sectionSrv .card-reg:hover .reg-arrow {
    background: linear-gradient(135deg, #7c3aed, #9d4edd);
    border-color: transparent;
    color: #fff;
    transform: rotate(-45deg);
    box-shadow: 0 4px 16px rgba(124, 58, 237, .5);
}

/* live badge */
.sectionSrv .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, .12);
    border: 1px solid rgba(52, 211, 153, .25);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #6ee7b7;
}

.sectionSrv .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px #34d399;
    animation: blink 1.5s ease-in-out infinite
}

/* â”€â”€ BOTTOM WIDE CARD (corporate, spans cols 2+3) â”€â”€ */
.sectionSrv .card-wide {
    grid-column: 2/4;
    grid-row: 2;
    background: linear-gradient(120deg, rgba(91, 33, 182, .25) 0%, rgba(30, 15, 70, .6) 100%);
    border: 1px solid rgba(140, 80, 240, .2);
    backdrop-filter: blur(16px);
    padding: 34px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    border-radius: 24px;
}

    .sectionSrv .card-wide:hover {
        background: linear-gradient(120deg, rgba(100, 50, 200, .35) 0%, rgba(40, 20, 90, .7) 100%);
        box-shadow: 0 20px 60px rgba(80, 30, 160, .35);
        transform: translateY(-6px);
    }

.sectionSrv .wide-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 0 30px rgba(124, 58, 237, .55);
    transition: box-shadow .3s, transform .3s;
}

.sectionSrv .card-wide:hover .wide-icon {
    box-shadow: 0 0 50px rgba(180, 130, 255, .7);
    transform: scale(1.06)
}

.sectionSrv .wide-txt {
    flex: 1
}

.sectionSrv .wide-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.4px;
    margin-bottom: 8px
}

.sectionSrv .wide-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7
}

.sectionSrv .wide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.sectionSrv .wf-chip {
    background: rgba(124, 58, 237, .15);
    border: 1px solid rgba(160, 100, 255, .2);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 12px;
    color: #c4a8ff;
    font-weight: 500;
}

.sectionSrv .wide-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(124, 58, 237, .2);
    border: 1px solid rgba(160, 100, 255, .3);
    border-radius: 14px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #c4a8ff;
    white-space: nowrap;
    transition: all .3s;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.sectionSrv .card-wide:hover .wide-cta {
    background: linear-gradient(135deg, #7c3aed, #9d4edd);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px rgba(124, 58, 237, .5);
}

.sectionSrv .wide-cta i {
    transition: transform .3s
}

.sectionSrv .card-wide:hover .wide-cta i {
    transform: translateX(4px)
}

/* â”€â”€ STATS â”€â”€ */
.sectionSrv .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(160deg, #574ea1 0%, #2e1447 45%, #412d6e 100%);
    border: 1px solid rgba(140, 80, 240, .15);
    backdrop-filter: blur(16px);
}

.sectionSrv .stat {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(140, 80, 240, .1);
    transition: background .3s;
    position: relative;
}

    .sectionSrv .stat:last-child {
        border-right: none
    }

    .sectionSrv .stat:hover {
        background: rgba(100, 50, 180, .12)
    }

    .sectionSrv .stat::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 20%;
        right: 20%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(160, 100, 255, .5), transparent);
        opacity: 0;
        transition: opacity .3s;
        border-radius: 2px;
    }

    .sectionSrv .stat:hover::after {
        opacity: 1
    }

.sectionSrv .stat-n {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #c4a8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.sectionSrv .stat-l {
    font-size: 13px;
    color: rgb(255 255 255 / 71%);
    font-weight: 400;
    letter-spacing: .5px
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media(max-width:1000px) {
    .sectionSrv .srv-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .sectionSrv .card-hero {
        grid-column: 1/3;
        grid-row: auto;
        min-height: 380px
    }

    .sectionSrv .card-wide {
        grid-column: 1/3;
        grid-row: auto
    }

    .sectionSrv .stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .sectionSrv .stat:nth-child(2) {
        border-right: none
    }

    .sectionSrv .stat:nth-child(3) {
        border-top: 1px solid rgba(140, 80, 240, .1)
    }

    .sectionSrv .stat:nth-child(4) {
        border-top: 1px solid rgba(140, 80, 240, .1);
        border-right: none
    }
}

@media(max-width:640px) {
    .sectionSrv {
        padding: 70px 0 90px
    }

        .sectionSrv .srv-grid {
            grid-template-columns: 1fr
        }

        .sectionSrv .card-hero {
            grid-column: 1;
            min-height: 340px
        }

        .sectionSrv .card-wide {
            grid-column: 1;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px
        }

        .sectionSrv .wide-cta {
            width: 100%;
            justify-content: center
        }

        .sectionSrv .stats {
            grid-template-columns: 1fr 1fr
        }

        .sectionSrv .wrap {
            padding: 0 18px
        }

        .sectionSrv .hero-body {
            padding: 32px 28px
        }
}

/* sec services */



/* secFleets */
.secFleets {
    padding: 4rem 0;
    background: bisque;
    background: linear-gradient(160deg, #574ea1 0%, #2e1447 45%, #412d6e 100%);
    /* margin: 2rem; */
    /* border-radius: 25px; */
}

    .secFleets h2 {
        font-size: clamp(38px, 5.5vw, 66px);
        font-weight: 800;
        line-height: 1.1;
        /* letter-spacing: -2px; */
        margin-bottom: 22px;
        color: white;
    }

        .secFleets h2 em {
            font-style: normal;
            background: linear-gradient(135deg, #c8adff, #e3e0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .secFleets h2 span {
            color: transparent;
            display: inline-block;
            -webkit-text-stroke: 2px rgb(237 227 255);
        }

.fleetTopContent {
    max-width: 800px;
}

    .fleetTopContent p {
        font-weight: 400;
        color: #ece3ff;
    }

.FleetsCard {
    display: flex;
    background: antiquewhite;
    background: linear-gradient(160deg, #2a1a5e 0%, #1a0f38 60%, #150d30 100%);
    padding: 30px 20px;
    gap: 20px;
    border-radius: 20px;
    align-items: center;
    border: 2px solid #ede3ff;
}

    .FleetsCard h3 {
        font-weight: 600;
        font-size: 34px;
    }

.fleetsRight {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.FleetsCard h3, .FleetsCard p {
    color: var(--text-white);
}

.FleetsCard img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    background: #eee5ff;
    border-radius: 20px;
}

.fleetsRight .button {
    color: #e6daff;
    border: #e2d4ff solid 0.15em;
}

.secFleets .swiper-wrapper {
    margin-top: 1rem;
}

.swiper-pagination-bullet {
    width: 16px !important;
    border-radius: 8px !important;
    transition: all .4s ease-in-out !important;
    background: #ffffff !important;
}

.swiper-pagination-bullet-active {
    background: #eee5ff !important;
    width: 35px !important;
}

.swiper-button-prev {
    right: 4% !important;
    left: unset !important;
    top: 6% !important;
}

.swiper-button-next {
    right: 0% !important;
    left: unset !important;
    top: 6% !important;
}

.swiper-button-next, .swiper-button-prev {
    align-items: center;
    color: #ffffff !important;
    cursor: pointer;
    display: flex;
    height: 42px;
    justify-content: center;
    position: absolute;
    width: 42px;
    z-index: 10;
    background: linear-gradient(160deg, #2a1a5e 0%, #1a0f38 60%, #150d30 100%);
    padding: 12px;
    border-radius: 22px;
    border: 1px solid #ece2fe;
}
/* secFleets */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
     OUTER WRAPPER
  â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.sec6_contactform .contact-section {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 0;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px rgb(0 0 0 / 11%);
    margin: 3rem auto;
    align-items: center;
    border: 2px solid #36265f;
    background: linear-gradient( 72deg, #0c0829 0%, #401e61 45%, #422979 100%);
}

@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 10px;
    /* 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;
    }

.sec6_contactform .info-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

    .sec6_contactform .info-eyebrow::before {
        content: '';
        display: block;
        width: 20px;
        height: 1px;
        background: var(--accent);
        opacity: .5;
    }

.sec6_contactform .info-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text);
    margin-bottom: 16px;
}

    .sec6_contactform .info-title em {
        font-style: normal;
        color: var(--accent);
    }

.sec6_contactform .info-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted2);
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 320px;
}

/* divider */
.sec6_contactform .info-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 229, 160, .25), transparent);
    margin-bottom: 36px;
}

/* contact info items */
.sec6_contactform .info-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 44px;
}

.sec6_contactform .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sec6_contactform .info-icon-wrap {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 11px;
    background: rgba(0, 229, 160, .08);
    border: 1px solid rgba(0, 229, 160, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, border-color .3s, transform .3s;
}

.sec6_contactform.info-item:hover .info-icon-wrap {
    background: rgba(0, 229, 160, .15);
    border-color: rgba(0, 229, 160, .4);
    transform: scale(1.06) rotate(-3deg);
}

.sec6_contactform .info-icon-wrap svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
}

.sec6_contactform .info-item-body {
    flex: 1;
}

.sec6_contactform .info-item-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.sec6_contactform .info-item-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    transition: color .3s;
}

.sec6_contactform .info-item:hover .info-item-value {
    color: var(--accent-hi);
}

/* social row */
.sec6_contactform .social-row {
    display: flex;
    gap: 10px;
}

.sec6_contactform .social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .3s, border-color .3s, transform .3s;
}

    .sec6_contactform .social-btn:hover {
        background: rgba(0, 229, 160, .1);
        border-color: rgba(0, 229, 160, .35);
        transform: translateY(-3px);
    }

    .sec6_contactform .social-btn svg {
        width: 16px;
        height: 16px;
        fill: var(--muted2);
        transition: fill .3s;
    }

    .sec6_contactform .social-btn:hover svg {
        fill: var(--accent);
    }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
     RIGHT â€” FORM
  â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.sec6_contactform .form-panel {
    background: linear-gradient(160deg, #574ea1 0%, #2e1447 45%, #412d6e 100%);
    padding: 44px 42px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
    animation: slideR .9s cubic-bezier(.23, 1, .32, 1) .3s forwards;
}

    .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: 300;
    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: 7px;
}

    .sec6_contactform .form-group.full {
        grid-column: 1 / -1;
    }

.sec6_contactform .form-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    padding-left: 2px;
    transition: color .3s;
}

.sec6_contactform .input-wrap {
    position: relative;
}

    .sec6_contactform .input-wrap span {
        display: none;
    }

.sec6_contactform .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    fill: #110e26;
    transition: fill .3s;
    pointer-events: none;
}

.sec6_contactform .textarea-icon {
    top: 16px;
    transform: none;
}

.sec6_contactform .form-input,
.sec6_contactform .form-textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid white;
    border-radius: 11px;
    color: #33255a;
    /* font-family: 'DM Sans', sans-serif; */
    font-size: 14px;
    font-weight: 300;
    padding: 13px 14px 13px 40px;
    outline: none;
    transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
    -webkit-appearance: none;
}

.sec6_contactform .form-textarea {
    resize: none;
    height: 130px;
    padding-top: 14px;
    line-height: 1.6;
}

    .sec6_contactform .form-input::placeholder,
    .sec6_contactform .form-textarea::placeholder {
        color: var(--muted);
        font-weight: 300;
    }

    .sec6_contactform .form-input:focus,
    .sec6_contactform .form-textarea:focus {
        border-color: white !important;
        background: #1c183a;
        /* 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: white;
}

.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;
}

/* 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: 300;
    color: white;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .sec6_contactform .privacy-note svg {
        width: 13px;
        height: 13px;
        fill: white;
        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: 718px;
    border-radius: 10px;
    background: url(../images/Banner_image.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .leftPanelBG > div {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .leftPanelBG > div img {
            /* width: 70%; */
            display: none;
            /* position: relative; */
            /* bottom: -83px; */
        }

.submit-row .button {
    border: #e2cdf9 solid 0.15em;
    color: #ffffff;
}

@keyframes slideL {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideR {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* footer */

footer {
    background: linear-gradient(160deg, #574ea1 0%, #2e1447 45%, #412d6e 100%);
    padding: 2rem 0;
}

.footerLogo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footerLogo .social-icons {
        display: flex;
        gap: 12px;
    }

footer .footerLogo img {
    width: 100%;
    background-color: white;
    padding: 15px 0;
    border-radius: 20px;
    /* box-shadow: rgb(255 255 255) 0px 2px 8px 0px; */
}

.footerLogo p {
    color: white;
    padding-top: 1rem;
}

.footerLinks {
    display: flex;
    justify-content: center;
}

    .footerLinks ul li a {
        color: white;
        padding: 4px 0;
        display: flex;
        gap: 10px;
        align-items: center;
        transition: all .3s ease-in-out;
    }

        .footerLinks ul li a i {
            background: #ffffff;
            height: 35px;
            width: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            border: 2px solid white;
            color: #2e2253;
            transition: all .3s ease-in-out;
        }

        .footerLinks ul li a:hover {
            color: #e2cdf9;
        }

            .footerLinks ul li a:hover i {
                background: transparent !important;
                color: white;
            }

    .footerLinks ul h3 {
        color: white;
        font-weight: 600;
        padding-bottom: 1rem;
    }

footer .social-icons a {
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    color: #302356;
    border: 2px solid white;
    transition: all .3s ease-in-out;
}

.addresUN i {
    width: 40px !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: white;
        transition: all .3s ease-in-out;
    }

        .bottomFooter a:hover {
            color: #c9a6ff;
        }
/* footer */
/* inner pages banner css */
.banner-section {
    width: 100%;
    padding: 80px;
    background: linear-gradient(160deg, #574ea1 0%, #2e1447 45%, #412d6e 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 #39235e;
    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);
}

.endrightimage {
    display: flex;
    justify-content: flex-end;
}

.sectionFleets {
    background: none;
}

    .sectionFleets .FleetsCard {
        border: 2px solid #99979d;
    }
/* servicesInner */
.sec-result {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    /*    margin-top: 140px;*/
}

    .sec-result::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, rgb(46 36 87 / 31%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(47 38 91 / 40%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(43 35 84 / 5%) 0%, transparent 70%);
    }

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        background: linear-gradient(160deg, #574ea1 0%, #2e1447 45%, #412d6e 100%);
        border-radius: 100px;
    }

        .sec-result .upper-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .upper-list li .icon-box {
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                    height: 100%;
                    object-fit: contain;
                    background: #fff;
                    border-radius: 50%;
                    padding: 7px;
                }

            .sec-result .upper-list li .text-box {
                padding: 0 10px;
            }

                .sec-result .upper-list li .text-box h6 {
                    font-size: 16px;
                    font-weight: 600;
                    color: #ffffff;
                }

                .sec-result .upper-list li .text-box p {
                    font-size: 14px;
                    color: #fff;
                }

    .sec-result .number-box {
        padding: 30px 40px;
    }

        .sec-result .number-box ul {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .number-box ul li {
                width: 24%;
                position: relative;
            }

                .sec-result .number-box ul li .num-circle {
                    text-align: center;
                }

                    .sec-result .number-box ul li .num-circle h6 {
                        background-color: #edf2fa00;
                        width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 20px;
                        margin: 0 auto;
                        color: #000;
                        font-weight: 600;
                        border: 2px solid #322458;
                    }

                    .sec-result .number-box ul li .num-circle p {
                        font-size: 14px;
                        margin-top: 15px;
                        text-transform: uppercase;
                        color: #000;
                    }

    .sec-result .completed {
        background: linear-gradient(160deg, #574ea1 0%, #2e1447 45%, #412d6e 100%);
        color: #ffffff !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #000000;
            position: absolute;
            width: 67%;
            height: 4px;
            top: 30%;
            border-radius: 10px;
            left: 70%;
        }

    .sec-result .cancellation-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        background-color: #000000bd;
    }

        .sec-result .cancellation-box .img-box {
            background-color: #fff;
            padding: 10px;
            border-radius: 10px;
        }

            .sec-result .cancellation-box .img-box .shield-img {
                width: 50px;
            }

        .sec-result .cancellation-box .text-box {
            padding-left: 10px;
        }

            .sec-result .cancellation-box .text-box p {
                line-height: 23px;
                color: #fff;
                font-size: 18px;
            }


.update-fleet-box {
    background: #edf2fa00;
    margin: 20px 0;
    padding: 30px 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 15px;
    border: 2px solid #32245a;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            object-fit: contain;
        }

    .update-fleet-box .car-text {
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 10px;
        font-weight: 700;
    }

    .update-fleet-box .private-text {
        font-size: 14px;
    }

    .update-fleet-box .star-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 7px 0 0;
    }

        .update-fleet-box .star-list li {
            padding: 0 1px;
        }

            .update-fleet-box .star-list li i {
                color: #000000;
                background-color: #ffc107;
                padding: 4px;
                border-radius: 5px;
                width: 28px;
            }

    .update-fleet-box .fleet-detail {
        padding: 0px 13px;
        border-right: 1px solid #bbbbbb;
        border-left: 1px solid #bbbbbb;
    }

        .update-fleet-box .fleet-detail h4 {
            font-size: 22px;
            font-weight: 600;
            padding-bottom: 5px;
            color: #000000;
        }

        .update-fleet-box .fleet-detail .passenger-list {
            display: flex;
            align-items: center;
        }

            .update-fleet-box .fleet-detail .passenger-list li {
                font-size: 13px;
                padding: 0 8px 0 0;
                font-weight: 600;
            }

                .update-fleet-box .fleet-detail .passenger-list li i {
                    font-size: 16px;
                }

        .update-fleet-box .fleet-detail .passenger-list-2 {
            padding: 10px 0;
        }

            .update-fleet-box .fleet-detail .passenger-list-2 li {
                font-size: 15px;
                padding: 5px 10px;
                border: none;
                margin: 5px 0;
                border-radius: 6px;
                font-size: 12px;
                background: linear-gradient(160deg, #574ea1 0%, #2e1447 45%, #412d6e 100%);
                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%;
    }

        .update-fleet-box .rate-box h6 {
            font-size: 15px;
            margin-top: 4px;
        }

        .update-fleet-box .rate-box .prize-box {
            text-align: center;
            padding: 4px 0;
            font-size: 20px;
            line-height: 29px;
            color: #000;
            font-weight: 600;
        }

        .update-fleet-box .rate-box .done-btn {
            padding: 0px;
            border-radius: 5px;
            text-align: center;
            color: #000000;
            font-weight: 600;
        }

.right-card {
    background-color: #edf2fa00;
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 15px;
    border: 2px solid #3a2864;
}

    .right-card .top-heading {
        display: flex;
        align-items: center;
        padding: 10px 0 15px;
    }

        .right-card .top-heading i {
            font-size: 24px;
            padding-right: 10px;
            color: #000000;
        }

        .right-card .top-heading h5 {
            font-size: 22px;
            color: #000000;
        }

    .right-card .distance-box {
        padding: 20px 0;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #000000;
    }

        .right-card .distance-box h6 {
            color: #000;
        }

        .right-card .distance-box ul {
            padding: 10px 0 0;
        }

            .right-card .distance-box ul li {
                font-size: 14px;
                padding: 5px 0px;
                color: #000;
            }

                .right-card .distance-box ul li i {
                    font-size: 16px;
                    color: #000000;
                    padding-right: 5px;
                }

    .right-card .cal-mile {
        padding: 10px 0 0;
    }

        .right-card .cal-mile li {
            font-size: 16px;
            padding: 5px 0;
            color: #000;
        }

            .right-card .cal-mile li i {
                padding-right: 5px;
                color: #000000;
            }

    .right-card .distance-box-2 ul li {
        font-size: 14px;
        padding: 5px 0;
        color: #000;
    }

        .right-card .distance-box-2 ul li i {
            font-size: 15px;
            color: #000000;
            padding-right: 3px;
        }

.ui-menu {
    height: 250px !important;
    overflow-y: scroll;
}

.Passenger-Information {
    background: #edf2fa00;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 15px;
    border: 2px solid #3a2864;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #000000;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: center;
            padding: 4px 0;
            font-size: 16px;
            font-weight: 600;
            line-height: 18px;
            color: #000;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ccc !important;
        }

        .Passenger-Information .input-box p {
            font-size: 13px;
            padding: 4px 0;
        }

    .Passenger-Information .input-box-extra {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Passenger-Information .input-box-extra input {
            margin: 0 !important;
        }

        .Passenger-Information .input-box-extra label {
            padding-left: 10px;
        }

.ui-dialog .ui-dialog-content {
    overflow-y: hidden !important;
}

.ui-dialog .ui-dialog-buttonpane button {
    background: #000 !important;
    padding: 7px 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    border-radius: 7px !important;
}

/*.ui-menu .ui-menu-item {
    width: 350px !important;
}*/

.loadingDiv {
    text-align: center;
    background: rgba(0,0,0,0.5) url(images/ajax-loader.gif) no-repeat right center;
    position: fixed;
    display: none;
    z-index: 99999999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

/*.extra-sec-padding {
    margin-top: 150px;
}*/

/*#lkbtn_lgout {
    padding: 0;
}*/

.section-padding {
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .section-padding::before {
        content: "";
        position: absolute;
        pointer-events: none;
        z-index: 0;
        inset: 0px;
        background: radial-gradient(800px 500px at 90% -10%, rgb(46 36 87 / 31%) 0%, transparent 60%), radial-gradient(800px 800px at -5% 90%, rgb(47 38 91 / 40%) 0%, transparent 60%), radial-gradient(800px 800px, rgb(43 35 84 / 5%) 0%, transparent 70%);
    }

.form-label sup {
    color: red;
    font-size: 20px;
    margin-left: 3px;
}

sup {
    top: -0.1em !important;
}
/*sec-privacy*/
.sec-privacy {
    padding: 60px 0 60px;
}

    .sec-privacy .content-box {
    }

        .sec-privacy .content-box h1 {
            text-transform: capitalize;
            position: relative;
            line-height: 25px;
            color: #fff;
            font-weight: 700;
            font-size: 22px;
            padding: 10px 20px;
            margin: 0 auto 20px;
            text-align: center;
            background: linear-gradient(160deg, #574ea1 0%, #2e1447 45%, #412d6e 100%);
            width: fit-content;
            border-radius: 10px;
        }

        .sec-privacy .content-box h2 {
            text-transform: capitalize;
            position: relative;
            line-height: 25px;
            color: var(--black-color);
            font-weight: 700;
            font-size: 22px;
            padding: 10px 0;
            margin: 0;
        }

        .sec-privacy .content-box h3 {
            text-transform: capitalize;
            position: relative;
            padding-bottom: 0px;
            color: #412f71;
            font-weight: 700;
            font-size: 18px;
            margin: 0;
        }

        .sec-privacy .content-box ul {
            padding-left: 30px;
            padding-bottom: 10px;
            list-style: none;
        }

            .sec-privacy .content-box ul li {
                padding: 3px 0;
                font-size: 16px;
            }

                .sec-privacy .content-box ul li i {
                    color: #413c88;
                    font-size: 16px;
                    padding-right: 7px;
                }

                .sec-privacy .content-box ul li span {
                }

        .sec-privacy .content-box .para {
            color: var(--black-color);
            padding: 5px 0;
            margin: 0;
            font-size: 15px;
        }

        .sec-privacy .content-box h6 a {
            font-size: 16px;
            color: #413c88;
            text-decoration: underline;
        }

        .sec-privacy .content-box h6 span {
            font-weight: 700;
            font-size: 15px;
            color: var(--black-color);
            padding-right: 5px;
        }
/*sec-privacy*/
/************************** media-query **************************/
@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
}

@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, .main-header .mini-header .contact-info .email_address a {
            font-size: 14px;
        }

            .main-header .mini-header .contact-info .mobile_number a i, .main-header .mini-header .contact-info .email_address a i {
                width: 27px;
                height: 27px;
                font-size: 12px;
            }

    .main-header .mini-header .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .main-header .mini-header {
        padding: 5px 0px;
    }

    .main-header .navbar-expand-lg .header-logo {
        width: 220px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
        }

    .button {
        padding: 5px 15px;
        font-size: 14px;
    }

    .hero-section .hero-title h1 {
        font-size: 48px;
    }

    .hero-section .hero-image-content {
        height: 28vh;
    }

        .hero-section .hero-image-content .hero-car-image {
            width: 500px;
        }

    .input-container i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .tab_label {
        font-size: 14px;
    }

    .input-field {
        padding: 8px 44px 8px 3px;
        font-size: 14px;
    }

    .input-container {
        margin: 10px;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .sec2-about {
        padding: 2rem 1rem;
    }

        .sec2-about h2 {
            font-size: 48px;
        }

        .sec2-about .aboutContent p {
            font-size: 14px;
        }

    .listTips lord-icon {
        width: 50px;
        height: 50px;
    }

    .listTips h3 {
        font-size: 18px;
    }

    .sectionSrv {
        padding: 40px 0 40px;
    }

        .sectionSrv .srv-title {
            font-size: clamp(38px, 5vw, 66px);
            margin-bottom: 10px;
        }

        .sectionSrv .srv-sub {
            font-size: 14px;
        }

    .FleetsCard {
        gap: 10px;
        flex-direction: column;
    }

        .FleetsCard img {
            width: 410px;
            height: 250px;
        }

    .fleetsRight {
        gap: 7px;
    }

    .FleetsCard h3 {
        font-size: 26px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .swiper-button-prev {
        right: 6% !important;
    }

    .secFleets {
        padding: 2rem 0;
    }

        .secFleets h2 {
            font-size: clamp(38px, 5vw, 66px);
            margin-bottom: 10px;
        }

    .fleetTopContent p {
        font-size: 14px;
    }

    .sec6_contactform .form-panel {
        padding: 20px 12px;
    }

    .sec6_contactform .form-heading {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .sec6_contactform .form-sub {
        font-size: 13.5px;
        margin-bottom: 10px;
    }

    .sec6_contactform .form-grid {
        grid-template-columns: revert;
        gap: 10px 10px;
        margin-bottom: 5px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        font-size: 14px;
        padding: 10px 14px 10px 40px;
    }

    .leftPanelBG {
        min-height: 765px;
    }

    footer .footerLogo img {
        border-radius: 10px;
    }

    .footerLogo p {
        padding-top: 0.2rem;
        font-size: 14px;
    }

    .footerLogo .social-icons {
        gap: 7px;
    }

    footer .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footerLinks ul h3 {
        padding-bottom: 0.5rem;
        font-size: 24px;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px;
        font-size: 14px;
    }

    .footerLinks ul li a {
        gap: 5px;
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1rem;
        padding-top: 1rem;
    }

        .bottomFooter div p {
            font-size: 14px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    .banner-section {
        padding: 40px;
    }

        .banner-section h2 {
            font-size: 48px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .servicesInner .aboutTopHeading h2 {
        font-size: 48px;
        margin-bottom: 0.5rem;
    }

    .rightContent p {
        font-size: 14px;
    }

    .servicesInner .rightImg img {
        width: 100%;
    }

    .button_logout {
        padding: 5px 15px;
        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;
    }

        .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
            font-size: 14px;
        }

            .main-header .mini-header .contact-info .mobile_number a i, .main-header .mini-header .contact-info .email_address a i {
                width: 27px;
                height: 27px;
                font-size: 12px;
            }

    .main-header .mini-header .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .main-header .mini-header {
        padding: 5px 0px;
    }

    .main-header .navbar-expand-lg .header-logo {
        width: 220px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
            width: fit-content;
        }

    .button {
        padding: 5px 15px;
        font-size: 14px;
    }

    .hero-section .hero-title h1 {
        font-size: 48px;
    }

    .hero-section .hero-image-content {
        height: 28vh;
    }

        .hero-section .hero-image-content .hero-car-image {
            width: 500px;
        }

    .input-container i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .tab_label {
        font-size: 14px;
    }

    .input-field {
        padding: 8px 44px 8px 3px;
        font-size: 14px;
    }

    .input-container {
        margin: 10px;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .sec2-about {
        padding: 2rem 1rem;
    }

        .sec2-about h2 {
            font-size: 48px;
        }

        .sec2-about .aboutContent p {
            font-size: 14px;
        }

    .listTips lord-icon {
        width: 50px;
        height: 50px;
    }

    .listTips h3 {
        font-size: 18px;
    }

    .sectionSrv {
        padding: 40px 0 40px;
    }

        .sectionSrv .srv-title {
            font-size: clamp(38px, 5vw, 66px);
            margin-bottom: 10px;
        }

        .sectionSrv .srv-sub {
            font-size: 14px;
        }

    .FleetsCard {
        gap: 10px;
        /* flex-direction: column; */
    }

        .FleetsCard img {
            /* width: 410px; */
            /* height: 250px; */
        }

    .fleetsRight {
        gap: 7px;
    }

    .FleetsCard h3 {
        font-size: 26px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .swiper-button-prev {
        right: 8% !important;
    }

    .secFleets {
        padding: 2rem 0;
    }

        .secFleets h2 {
            font-size: clamp(38px, 5vw, 66px);
            margin-bottom: 10px;
        }

    .fleetTopContent p {
        font-size: 14px;
    }

    .sec6_contactform .form-panel {
        padding: 20px 12px;
    }

    .sec6_contactform .form-heading {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .sec6_contactform .form-sub {
        font-size: 13.5px;
        margin-bottom: 10px;
    }

    .sec6_contactform .form-grid {
        grid-template-columns: revert;
        gap: 10px 10px;
        margin-bottom: 5px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        font-size: 14px;
        padding: 10px 14px 10px 40px;
    }

    .leftPanelBG {
        min-height: 330px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    footer .footerLogo img {
        border-radius: 10px;
    }

    .footerLogo p {
        padding-top: 0.2rem;
        font-size: 14px;
    }

    .footerLogo .social-icons {
        gap: 7px;
    }

    footer .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footerLinks ul h3 {
        padding-bottom: 0.5rem;
        font-size: 24px;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px;
        font-size: 14px;
    }

    .footerLinks ul li a {
        gap: 5px;
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1rem;
        padding-top: 1rem;
    }

        .bottomFooter div p {
            font-size: 14px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    .banner-section {
        padding: 40px;
    }

        .banner-section h2 {
            font-size: 48px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .servicesInner .aboutTopHeading h2 {
        font-size: 48px;
        margin-bottom: 0.5rem;
    }

    .rightContent p {
        font-size: 14px;
    }

    .servicesInner .rightImg img {
        width: 100%;
        margin-top: 20px;
    }

    .button_logout {
        padding: 5px 15px;
        font-size: 14px;
    }

    .sec2-about .aboutImages .bottomIMG {
        max-width: 450px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .rightContent {
        margin-top: 20px;
    }

    .sec-result .upper-list {
        display: none;
    }

    .update-fleet-box .fleet-detail {
        border-right: none;
        border-left: none;
    }
}

@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, .main-header .mini-header .contact-info .email_address a {
            font-size: 14px;
        }

            .main-header .mini-header .contact-info .mobile_number a i, .main-header .mini-header .contact-info .email_address a i {
                width: 27px;
                height: 27px;
                font-size: 12px;
            }

    .main-header .mini-header .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .main-header .mini-header {
        padding: 5px 0px;
    }

    .main-header .navbar-expand-lg .header-logo {
        width: 220px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
            width: fit-content;
        }

    .button {
        padding: 5px 15px;
        font-size: 14px;
    }

    .hero-section .hero-title h1 {
        font-size: 48px;
    }

    .hero-section .hero-image-content {
        height: 28vh;
    }

        .hero-section .hero-image-content .hero-car-image {
            width: 500px;
        }

    .input-container i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .tab_label {
        font-size: 14px;
    }

    .input-field {
        padding: 8px 44px 8px 3px;
        font-size: 14px;
    }

    .input-container {
        margin: 10px;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .sec2-about {
        padding: 2rem 1rem;
    }

        .sec2-about h2 {
            font-size: 48px;
        }

        .sec2-about .aboutContent p {
            font-size: 14px;
        }

    .listTips lord-icon {
        width: 50px;
        height: 50px;
    }

    .listTips h3 {
        font-size: 18px;
    }

    .sectionSrv {
        padding: 40px 0 40px;
    }

        .sectionSrv .srv-title {
            font-size: clamp(38px, 5vw, 66px);
            margin-bottom: 10px;
        }

        .sectionSrv .srv-sub {
            font-size: 14px;
        }

    .FleetsCard {
        gap: 10px;
        /* flex-direction: column; */
    }

        .FleetsCard img {
            /* width: 410px; */
            /* height: 250px; */
        }

    .fleetsRight {
        gap: 7px;
    }

    .FleetsCard h3 {
        font-size: 26px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .swiper-button-prev {
        right: 8% !important;
    }

    .secFleets {
        padding: 2rem 0;
    }

        .secFleets h2 {
            font-size: clamp(38px, 5vw, 66px);
            margin-bottom: 10px;
        }

    .fleetTopContent p {
        font-size: 14px;
    }

    .sec6_contactform .form-panel {
        padding: 20px 12px;
    }

    .sec6_contactform .form-heading {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .sec6_contactform .form-sub {
        font-size: 13.5px;
        margin-bottom: 10px;
    }

    .sec6_contactform .form-grid {
        grid-template-columns: revert;
        gap: 10px 10px;
        margin-bottom: 5px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        font-size: 14px;
        padding: 10px 14px 10px 40px;
    }

    .leftPanelBG {
        min-height: 330px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    footer .footerLogo img {
        border-radius: 10px;
    }

    .footerLogo p {
        padding-top: 0.2rem;
        font-size: 14px;
    }

    .footerLogo .social-icons {
        gap: 7px;
    }

    footer .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footerLinks ul h3 {
        padding-bottom: 0.5rem;
        font-size: 24px;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px;
        font-size: 14px;
    }

    .footerLinks ul li a {
        gap: 5px;
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1rem;
        padding-top: 1rem;
    }

        .bottomFooter div p {
            font-size: 14px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    .banner-section {
        padding: 40px;
    }

        .banner-section h2 {
            font-size: 48px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .servicesInner .aboutTopHeading h2 {
        font-size: 48px;
        margin-bottom: 0.5rem;
    }

    .rightContent p {
        font-size: 14px;
    }

    .servicesInner .rightImg img {
        width: 100%;
        margin-top: 20px;
    }

    .button_logout {
        padding: 5px 15px;
        font-size: 14px;
    }

    .sec2-about .aboutImages .bottomIMG {
        max-width: 450px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .rightContent {
        margin-top: 20px;
    }

    .sec-result .upper-list {
        display: none;
    }

    .update-fleet-box .fleet-detail {
        border-right: none;
        border-left: none;
    }

    .footerLinks {
        justify-content: flex-start;
    }

    .sec-result .number-box {
        padding: 20px 0px;
    }

    .sec-result .for-line::before {
        width: 50%;
        top: 30%;
        left: 78%;
    }
}

@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;
        justify-content: center;
    }

        .main-header .mini-header .contact-info .mobile_number a, .main-header .mini-header .contact-info .email_address a {
            font-size: 14px;
        }

            .main-header .mini-header .contact-info .mobile_number a i, .main-header .mini-header .contact-info .email_address a i {
                width: 27px;
                height: 27px;
                font-size: 12px;
            }

    .main-header .mini-header .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .main-header .mini-header {
        padding: 5px 0px;
    }

    .main-header .navbar-expand-lg .header-logo {
        width: 220px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

        .main-header .navbar-expand-lg .navbar-nav .nav-link {
            font-size: 14px;
            width: fit-content;
        }

    .button {
        padding: 5px 15px;
        font-size: 14px;
    }

    .hero-section .hero-title h1 {
        font-size: 40px;
    }

    .hero-section .hero-image-content {
        height: 28vh;
        border-radius: 25px;
    }

        .hero-section .hero-image-content .hero-car-image {
            width: 350px;
        }

    .input-container i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .tab_label {
        font-size: 14px;
    }

    .input-field {
        padding: 8px 44px 8px 3px;
        font-size: 14px;
    }

    .input-container {
        margin: 10px;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .sec2-about {
        padding: 2rem 1rem;
    }

        .sec2-about h2 {
            font-size: 48px;
        }

        .sec2-about .aboutContent p {
            font-size: 14px;
        }

    .listTips lord-icon {
        width: 50px;
        height: 50px;
    }

    .listTips h3 {
        font-size: 18px;
    }

    .sectionSrv {
        padding: 40px 0 40px;
    }

        .sectionSrv .srv-title {
            font-size: clamp(38px, 5vw, 66px);
            margin-bottom: 10px;
        }

        .sectionSrv .srv-sub {
            font-size: 14px;
        }

    .FleetsCard {
        gap: 10px;
        flex-direction: column;
    }

        .FleetsCard img {
            width: 360px;
            /* height: 200px; */
        }

    .fleetsRight {
        gap: 7px;
    }

    .FleetsCard h3 {
        font-size: 26px;
    }

    .FleetsCard p {
        font-size: 14px;
    }

    .swiper-button-prev {
        right: 14% !important;
    }

    .secFleets {
        padding: 2rem 0;
    }

        .secFleets h2 {
            font-size: clamp(38px, 5vw, 66px);
            margin-bottom: 10px;
        }

    .fleetTopContent p {
        font-size: 14px;
    }

    .sec6_contactform .form-panel {
        padding: 20px 12px;
    }

    .sec6_contactform .form-heading {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .sec6_contactform .form-sub {
        font-size: 13.5px;
        margin-bottom: 10px;
    }

    .sec6_contactform .form-grid {
        grid-template-columns: revert;
        gap: 10px 10px;
        margin-bottom: 5px;
    }

    .sec6_contactform .form-input, .sec6_contactform .form-textarea {
        font-size: 14px;
        padding: 10px 14px 10px 40px;
    }

    .leftPanelBG {
        min-height: 330px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    footer .footerLogo img {
        border-radius: 10px;
    }

    .footerLogo p {
        padding-top: 0.2rem;
        font-size: 14px;
    }

    .footerLogo .social-icons {
        gap: 7px;
    }

    footer .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footerLinks ul h3 {
        padding-bottom: 0.5rem;
        font-size: 24px;
        margin-top: 20px;
    }

    .footerLinks ul li a i {
        height: 30px;
        width: 30px;
        font-size: 14px;
    }

    .footerLinks ul li a {
        gap: 5px;
        font-size: 14px;
    }

    .bottomFooter {
        margin-top: 1rem;
        padding-top: 1rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .bottomFooter div p {
            font-size: 14px;
        }

        .bottomFooter a {
            font-size: 14px;
        }

    .banner-section {
        padding: 40px;
    }

        .banner-section h2 {
            font-size: 48px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .servicesInner .aboutTopHeading h2 {
        font-size: 48px;
        margin-bottom: 0.5rem;
    }

    .rightContent p {
        font-size: 14px;
    }

    .servicesInner .rightImg img {
        width: 100%;
        margin-top: 20px;
    }

    .button_logout {
        padding: 5px 15px;
        font-size: 14px;
    }

    .sec2-about .aboutImages .bottomIMG {
        max-width: 450px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .rightContent {
        margin-top: 20px;
    }

    .sec-result .upper-list {
        display: none;
    }

    .update-fleet-box .fleet-detail {
        border-right: none;
        border-left: none;
    }

    .footerLinks {
        justify-content: flex-start;
    }

    .main-header .mini-header .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .sec-result .number-box {
        padding: 20px 0px;
    }

    .sec-result .for-line::before {
        width: 50%;
        top: 30%;
        left: 78%;
    }

    .section-padding::before {
        background: radial-gradient(180px 180px at 90% -10%, rgb(46 36 87 / 31%) 0%, transparent 60%), radial-gradient(180px 180px at -5% 90%, rgb(47 38 91 / 40%) 0%, transparent 60%), radial-gradient(100px 100px, rgb(43 35 84 / 5%) 0%, transparent 70%);
    }
}
