@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: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

html, body {
    scroll-behavior: auto; /* disable default */
}

.smooth-wrapper {
    overflow: hidden;
}

.custom-cursor {
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none; /* so it doesn’t block clicks */
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
    z-index: 9999;
}

    .custom-cursor span {
        position: absolute; /* Important */
        top: 50%;
        left: 50%;
        width: 4px; /* slightly bigger so it’s visible */
        height: 4px;
        background-color: #00c6ff;
        border-radius: 50%; /* make it a dot */
        transform: translate(-50%, -50%); /* center inside parent */
    }

a {
    text-decoration: none;
    color: var(--text-color);
}

:root {
    --color-dark: #000;
    --text-color: #fff;
    --gradient-one: #0f0f0f;
    --gradient-two: #2c2c2c;
    --gradient-three: #00e5a0;
    --gradient-four: #00ff99;
    --gradient-five: #00bcd4;
    --theme-light: #00daad;
    --bg-deep: #0f0f0f;
    --bg-card: #2c2c2c;
    --accent: #00e5a0;
    --accent-bright: #00ff99;
    --text-primary: #ffffff;
    --text-muted: #a0a0a0;
    --border-glow: rgba(0, 229, 160, 0.35);
    --bg: #0f0f0f;
    --card-bg: #161616;
    --surface: #2c2c2c;
    /* --accent:    #00e5a0; */
    --accent-hi: #00ff99;
    --text: #ffffff;
    --muted: #c4c4c4;
    --border: rgba(255, 255, 255, 0.07);
    --card: #1a1a1a;
    --elevated: #202020;
    --muted2: #888;
    --border-focus: rgba(0,229,160,0.5);
}

figure {
    margin: 0;
    padding: 0;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

a,
button {
    display: inline-block;
}

    button:focus {
        outline: none;
        box-shadow: none;
    }

select {
    cursor: pointer;
    appearance: none;
    -moz-appearance: none;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

/************************** Header css **************************/

header .top_nav {
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
    border-bottom: 1px dashed #424242;
    padding: 12px 0px;
}



header.scroll {
    background: rgba(0, 0, 0, 0.7);
    /* padding: 10px 0; */
}

    header.scroll .top_nav {
        display: none;
    }

    header.scroll .navbar {
        border: none;
    }

header.scroll {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
    transition: all 0.4s ease;
}

.topNav_left {
    display: flex;
    gap: 15px;
}

    .topNav_left i {
        /* background-color: aqua; */
        background: linear-gradient(135deg, var(--gradient-five), var(--gradient-three), var(--gradient-four));
        border-radius: 50px;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--color-dark);
        border: 2px solid transparent;
        transition: all .4s ease-in-out;
    }

    .topNav_left a:hover i {
        background: linear-gradient(135deg, var(--gradient-three), var(--gradient-five), var(--gradient-four));
        border: 2px solid var(--text-color);
    }

    .topNav_left a {
        display: flex;
        gap: 7px;
        align-items: center;
        transition: all .4s ease-in-out;
    }

        .topNav_left a:hover i,
        .topNav_left a:hover {
            color: var(--text-color);
        }

.socials-icons {
    display: flex;
    justify-content: end;
    gap: 12px;
}

    .socials-icons a {
        /* background-color: aqua; */
        background: linear-gradient(135deg, var(--gradient-five), var(--gradient-three), var(--gradient-four));
        border-radius: 50px;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--color-dark);
        border: 2px solid transparent;
        transition: all .4s ease-in-out;
    }

        .socials-icons a:hover {
            background: linear-gradient(135deg, var(--gradient-three), var(--gradient-five), var(--gradient-four));
            border: 2px solid var(--text-color);
            color: var(--text-color);
        }

.mainNavbar .navbar-brand img {
    width: 120px;
    mix-blend-mode: lighten;
}

.navbar {
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
    border-radius: 0 0 12px 12px;
    border: 2px dashed var(--theme-light);
    border-top: 0px;
    padding: 10px 10px;
}

.mainNavbar .navbar-nav {
    gap: 15px;
}

    .mainNavbar .navbar-nav .nav-link {
        color: var(--text-color);
        transition: all .3s ease-in-out;
        font-weight: 500;
    }

        .mainNavbar .navbar-nav .nav-link:hover {
            color: var(--theme-light);
        }

    .mainNavbar .navbar-nav .show > .nav-link,
    .mainNavbar .navbar-nav .nav-item .nav-link.active {
        color: var(--theme-light);
    }

.navbar-light .navbar-toggler {
    color: rgb(0 210 183);
    border-color: rgb(0 196 202);
}

.navbar-light .navbar-toggler-icon {
    filter: invert(1);
}

.mainNavbar .navbar-collapse {
    justify-content: center;
}

.global_btn {
    width: fit-content;
    background: linear-gradient(135deg, var(--gradient-three), var(--gradient-five), var(--gradient-four));
    border: 2px solid var(--text-color);
    color: var(--text);
    border-radius: 25px;
    font-weight: 600;
    padding: 4px 5px 4px 15px;
    display: flex !important;
    gap: 10px;
    align-items: center;
    /* ✅ ADD THIS */
    transition: all 0.4s ease;
}

.button-center {
    margin: 0 auto;
}

.global_btn i {
    background: var(--color-dark);
    width: 34px;
    height: 34px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    /* ✅ ADD THIS */
    transition: all 0.4s ease;
}

.global_btn:hover {
    background: linear-gradient(135deg, var(--gradient-two), var(--gradient-two), var(--gradient-two));
    color: var(--text-color);
    /* padding: 6px 10px; */
    /* optional micro interaction */
    transform: translateY(-2px);
}

    .global_btn:hover i {
        background: linear-gradient(135deg, var(--gradient-three), var(--gradient-five), var(--gradient-four));
        /* optional effect */
        transform: rotate(10deg) scale(1.1);
    }

/************************** Header css end **************************/


/* sec1_hero */
.slogan {
    padding-bottom: 12px;
}

    .slogan h4 {
        /* background: linear-gradient(135deg, var(--gradient-five), var(--gradient-three), var(--gradient-four)); */
        max-width: max-content;
        text-align: center;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 18px;
        font-weight: 700;
        color: white;
    }

        .slogan h4 i {
            background: linear-gradient(135deg, var(--gradient-five), var(--gradient-three), var(--gradient-four));
            border-radius: 50px;
            width: 35px;
            height: 35px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #000000;
            border: 2px solid #ffffff00;
            transition: all .4s ease-in-out;
        }

.sec1_hero {
    background: linear-gradient(rgb(0 0 0 / 80%), rgb(0 0 0 / 80%)), url(../images/aboutbg.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.innerBanner {
    background: linear-gradient(rgb(0 0 0 / 76%), rgb(0 0 0 / 76%)), url(../images/innerBanner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .innerBanner p {
        max-width: 700px;
    }

    .innerBanner .breadcrumbs {
        font-size: 18px;
        color: white;
        font-weight: 600;
    }

        .innerBanner .breadcrumbs a {
            transition: all .3s ease-in-out;
        }

            .innerBanner .breadcrumbs a:hover {
                color: #00c7c6;
            }

    .innerBanner .innerMainContent {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.mainNavbar {
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
}

.sec1_hero {
    padding: 7rem 0;
    /* height: 80vh; */
}

    .sec1_hero h1 {
        font-weight: 700;
        font-size: 52px;
    }

    .sec1_hero h1 {
        color: var(--text-color);
    }

    .sec1_hero p {
        color: var(--muted);
    }


.gradient-animated {
    background: linear-gradient(270deg, #00c6ff, #00ff88, #00c6ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.right-hero-content {
    background: var(--gradient-two);
    border-radius: 0px;
    max-width: 500px;
    padding: 20px;
    /* box-shadow: rgb(255 255 255 / 8%) 0px 2px 8px 0px; */
    border-top: 2px dashed #00e4a1;
    border-bottom: 2px dashed #00f09c;
}

    .right-hero-content h2 {
        color: var(--text-color);
        font-weight: 700;
    }

    .right-hero-content input,
    .right-hero-content select {
        background-color: var(--gradient-two);
        border: none;
        border-bottom: 1px solid var(--theme-light);
        /* border-radius: 4px; */
        margin: 12px 0;
        width: 100%;
        color: var(--text-color);
        padding: 0 42px 12px 0;
    }

        .right-hero-content input:focus-visible,
        .right-hero-content select:focus-visible {
            outline: 0px !important;
        }

        .right-hero-content input::placeholder {
            color: white;
        }

    .right-hero-content .custom-input-div {
        position: relative;
    }

        .right-hero-content .custom-input-div i {
            width: 35px;
            height: 35px;
            font-size: 16px;
            /* border-radius: 50%; */
            background: linear-gradient(135deg, var(--gradient-five), var(--gradient-three), var(--gradient-four));
            color: #000000;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50px;
            position: absolute;
            top: 3px;
            right: 2px;
            z-index: 0;
        }

    .right-hero-content input:focus-visible,
    .right-hero-content select:focus-visible {
        border-bottom: 2px dashed var(--theme-light);
    }

/* sec1_hero */

/* sec2_about */

.sec2_about {
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

    .sec2_about::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgb(0 218 173 / 20%) 0%, transparent 70%);
        top: -200px;
        left: -200px;
        pointer-events: none;
        transform: translateY(0px);
        animation: aboutamination 5s infinite ease-in-out;
    }

@keyframes aboutamination {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(300px);
    }

    100% {
        transform: translateY(0px);
    }
}

.aboutIMGparent {
    border: 2px dashed var(--theme-light);
    border-radius: 1000px;
    padding: 10px;
}

.sec2_about img {
    width: 100%;
    border-radius: 1000px;
    transition: all .5s ease-in-out;
}

    .sec2_about img:hover {
        transform: scale(1.02);
    }

.sec2_about h2 {
    color: var(--text-color);
    font-size: 28px;
}

.sec2_about p {
    color: var(--muted);
    padding-top: 20px;
}

.sec2_about .slogan {
    padding-bottom: 4rem;
    position: relative;
}

    .sec2_about .slogan h4 {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 22px;
        letter-spacing: 2px;
        font-weight: 600;
        color: var(--text-color);
        position: relative;
    }

    /* .sec2_about .slogan h4 {
    font-size: 18px;
} */
    .sec2_about .slogan i {
        background: linear-gradient(135deg, var(--gradient-three), var(--gradient-five));
        /* width: 28px;
    height: 28px; */
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 14px;
    }

/* Clean center line */
.sec2_about .lineUNAbout {
    position: absolute;
    bottom: 15px;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gradient-three), transparent);
    margin: 12px auto 0;
}

/* sec2_about */


/* sec3_services */

.sec3_sevciescards {
    position: relative;
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
    padding: 3rem 0;
    overflow: hidden;
}

    .sec3_sevciescards::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgb(0 218 173 / 20%) 0%, transparent 70%);
        top: -200px;
        left: -200px;
        pointer-events: none;
        transform: translateY(0px);
        animation: aboutamination 5s infinite ease-in-out;
    }

@keyframes aboutamination {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(300px);
    }

    100% {
        transform: translateY(0px);
    }
}
/* .services_child::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,229,160,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,229,160,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  } */

.sec3_sevciescards {
    position: relative;
    z-index: 1;
    /* max-width: 1200px; */
    width: 100%;
}

    /* Section Header */
    .sec3_sevciescards .section-header {
        text-align: center;
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.8s ease forwards;
    }

    .sec3_sevciescards .section-label {
        /* font-family: 'DM Sans', sans-serif; */
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 14px;
        display: block;
    }

    .sec3_sevciescards .section-title {
        font-size: clamp(36px, 5vw, 58px);
        font-weight: 700;
        color: var(--text-primary);
        /* line-height: 1.1; */
    }

        .sec3_sevciescards .section-title span {
            color: var(--accent);
            position: relative;
            background: linear-gradient(135deg, var(--gradient-three), var(--gradient-five), var(--gradient-four));
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientMove 6s ease infinite;
        }

    /* Cards Grid */
    .sec3_sevciescards .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 24px;
    }

    /* Individual Card */
    .sec3_sevciescards .service-card {
        position: relative;
        background: var(--bg-card);
        border-radius: 20px;
        padding: 40px 32px 36px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        overflow: hidden;
        cursor: pointer;
        min-height: 410px;
        opacity: 0;
        transform: translateY(40px);
        transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    }

        .sec3_sevciescards .service-card:nth-child(1) {
            animation: fadeUp 0.7s ease 0.2s forwards;
        }

        .sec3_sevciescards .service-card:nth-child(2) {
            animation: fadeUp 0.7s ease 0.38s forwards;
        }

        .sec3_sevciescards .service-card:nth-child(3) {
            animation: fadeUp 0.7s ease 0.56s forwards;
        }

        .sec3_sevciescards .service-card:nth-child(4) {
            animation: fadeUp 0.7s ease 0.72s forwards;
        }

        /* Glowing top border line on hover */
        .sec3_sevciescards .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 0 0 4px 4px;
        }

        /* Radial glow on hover */
        .sec3_sevciescards .service-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 160, 0.07) 0%, transparent 65%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            border-radius: 20px;
        }

        .sec3_sevciescards .service-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 229, 160, 0.4);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 229, 160, 0.15), 0 0 40px rgba(0, 229, 160, 0.08);
        }

            .sec3_sevciescards .service-card:hover::before {
                opacity: 1;
            }

            .sec3_sevciescards .service-card:hover::after {
                opacity: 1;
            }

    /* Icon */
    .sec3_sevciescards .icon-wrap {
        width: 60px;
        height: 60px;
        border-radius: 14px;
        background: rgba(0, 229, 160, 0.1);
        border: 1px solid rgba(0, 229, 160, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 28px;
        position: relative;
        transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
    }

    .sec3_sevciescards .service-card:hover .icon-wrap {
        background: rgba(0, 229, 160, 0.18);
        border-color: rgba(0, 229, 160, 0.5);
        transform: scale(1.05) rotate(-2deg);
    }

    .sec3_sevciescards .icon-wrap svg {
        width: 26px;
        height: 26px;
        fill: var(--accent);
        transition: fill 0.3s ease;
    }

    .sec3_sevciescards .service-card:hover .icon-wrap svg {
        fill: var(--accent-bright);
    }

    /* Card Number */
    .sec3_sevciescards .card-number {
        position: absolute;
        top: 28px;
        right: 32px;
        font-size: 54px;
        font-weight: 700;
        color: rgba(0, 229, 160, 0.25);
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }

    .sec3_sevciescards .service-card:hover .card-number {
        color: rgba(0, 229, 160, 0.55);
    }

    /* Card Content */
    .sec3_sevciescards .card-title {
        font-size: 22px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 14px;
        line-height: 1.2;
        transition: color 0.3s ease;
    }

    .sec3_sevciescards .service-card:hover .card-title {
        color: var(--accent-bright);
    }

    .sec3_sevciescards .card-desc {
        font-size: 14.5px;
        font-weight: 300;
        color: var(--muted);
        line-height: 1.75;
        margin-bottom: 32px;
    }

    /* CTA Button */
    .sec3_sevciescards .card-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 500;
        color: var(--accent);
        text-decoration: none;
        letter-spacing: 0.5px;
        padding: 10px 22px;
        border-radius: 8px;
        border: 1px solid rgba(0, 229, 160, 0.3);
        background: rgba(0, 229, 160, 0.05);
        transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, gap 0.3s ease;
        position: relative;
        overflow: hidden;
    }

        .sec3_sevciescards .card-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 0;
        }

        .sec3_sevciescards .card-btn span,
        .sec3_sevciescards .card-btn svg {
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .sec3_sevciescards .card-btn:hover::before {
            transform: scaleX(1);
        }

        .sec3_sevciescards .card-btn:hover {
            color: #0f0f0f;
            border-color: var(--accent);
            gap: 14px;
        }

            .sec3_sevciescards .card-btn:hover span {
                color: #0f0f0f;
            }

    .sec3_sevciescards .btn-arrow {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
    }

    .sec3_sevciescards .card-btn:hover .btn-arrow {
        transform: translateX(3px);
    }

    /* Bottom separator line */
    .sec3_sevciescards .card-line {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
        transform: scaleX(0);
        transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        border-radius: 0 0 20px 20px;
    }

    .sec3_sevciescards .service-card:hover .card-line {
        transform: scaleX(1);
    }

    /* Tags */
    .sec3_sevciescards .card-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 24px;
    }

    .sec3_sevciescards .tag {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: rgba(0, 229, 160, 0.7);
        background: rgba(0, 229, 160, 0.08);
        border: 1px solid rgba(0, 229, 160, 0.15);
        border-radius: 4px;
        padding: 3px 9px;
        transition: background 0.3s ease, border-color 0.3s ease;
    }

    .sec3_sevciescards .service-card:hover .tag {
        background: rgba(0, 229, 160, 0.13);
        border-color: rgba(0, 229, 160, 0.3);
    }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .sec3_sevciescards .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* sec3_services */


/* section fleets css */

.fleet-section {
    position: relative;
    background: linear-gradient(rgb(29 29 29 / 80%), rgb(0 0 0 / 80%)), url(../images/fleets-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    /* max-width: 1220px; */
    width: 100%;
    padding: 3rem 0;
    overflow: hidden;
}

    .fleet-section::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgb(0 218 173 / 20%) 0%, transparent 70%);
        top: -200px;
        right: -200px;
        pointer-events: none;
        transform: translateY(0px);
        animation: aboutamination 5s infinite ease-in-out;
    }

@keyframes aboutamination {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(300px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ════════════════════════
     HEADER
  ════════════════════════ */
.fleet-section .fleet-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(28px);
    animation: riseUp .9s cubic-bezier(.23, 1, .32, 1) .1s forwards;
}

.fleet-section .fleet-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

    .fleet-section .fleet-eyebrow::before,
    .fleet-section .fleet-eyebrow::after {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: var(--accent);
        opacity: .5;
    }

.fleet-section .fleet-title {
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.08;
    /*  */
}

    .fleet-section .fleet-title em {
        font-style: normal;
        color: var(--accent);
    }

.fleet-section .fleet-sub {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    max-width: 460px;
    margin-inline: auto;
    line-height: 1.7;
}

/* ════════════════════════
     CARDS GRID
  ════════════════════════ */
.fleet-section .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 900px) {
    .fleet-section .cards-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
}

/* ════════════════════════
     SINGLE CARD
  ════════════════════════ */
.fleet-section .fleet-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border);
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px) scale(.97);
    transition: transform .5s cubic-bezier(.23, 1, .32, 1), box-shadow .5s ease, border-color .4s ease;
}

    .fleet-section .fleet-card:nth-child(1) {
        animation: riseUp .8s cubic-bezier(.23, 1, .32, 1) .25s forwards;
    }

    .fleet-section .fleet-card:nth-child(2) {
        animation: riseUp .8s cubic-bezier(.23, 1, .32, 1) .42s forwards;
    }

    .fleet-section .fleet-card:nth-child(3) {
        animation: riseUp .8s cubic-bezier(.23, 1, .32, 1) .59s forwards;
    }

    .fleet-section .fleet-card:hover {
        transform: translateY(-10px) scale(1.01);
        border-color: rgba(0, 229, 160, .4);
        box-shadow: 0 30px 70px rgba(0, 0, 0, .6), 0 0 0 1px rgba(0, 229, 160, .12), 0 0 55px rgba(0, 229, 160, .09);
    }

    /* ── corner accent lines ── */
    .fleet-section .fleet-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 50px;
        height: 50px;
        border-top: 2px solid var(--accent);
        border-left: 2px solid var(--accent);
        border-radius: 22px 0 0 0;
        opacity: 0;
        transition: opacity .4s ease, width .4s ease, height .4s ease;
        z-index: 10;
    }

    .fleet-section .fleet-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 50px;
        border-bottom: 2px solid var(--accent);
        border-right: 2px solid var(--accent);
        border-radius: 0 0 22px 0;
        opacity: 0;
        transition: opacity .4s ease, width .4s ease, height .4s ease;
        z-index: 10;
    }

    .fleet-section .fleet-card:hover::before,
    .fleet-section .fleet-card:hover::after {
        opacity: 1;
        width: 70px;
        height: 70px;
    }

/* ════════════════════════
     IMAGE ZONE
  ════════════════════════ */
.fleet-section .card-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

    .fleet-section .card-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 60%;
        transition: transform .8s cubic-bezier(.23, 1, .32, 1), filter .5s ease;
        filter: brightness(.88) saturate(1.05);
    }

.fleet-section .fleet-card:hover .card-image-wrap img {
    transform: scale(1.07);
    filter: brightness(.98) saturate(1.15);
}

/* gradient overlay on image bottom */
.fleet-section .card-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(22, 22, 22, .9) 100%);
    pointer-events: none;
}

/* floating badge */
.fleet-section .fleet-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 5;
    background: var(--bg-card);
    border: 1px solid rgba(0, 229, 160, .35);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
}

/* book now button in image */
.fleet-section .book-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    /* background: var(--accent); */
    color: #fffefe;
    font-size: 14px;
    /* font-weight: 700; */
    letter-spacing: .5px;
    /* padding: 9px 18px; */
    /* border-radius: 10px; */
    text-decoration: none;
    transition: background .3s ease, transform .3s ease, gap .3s ease;
    white-space: nowrap;
}

    .fleet-section .book-btn:hover {
        /* background: var(--accent-hi); */
        transform: scale(1.04);
        gap: 10px;
    }

    .fleet-section .book-btn svg {
        width: 13px;
        height: 13px;
        transition: transform .3s ease;
    }

    .fleet-section .book-btn:hover svg {
        transform: translateX(2px);
    }

/* car spec overlay at image bottom */
.fleet-section .spec-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 10px 16px;
}

.fleet-section .spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, .75);
    padding: 0 12px;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

    .fleet-section .spec-item:first-child {
        padding-left: 0;
    }

    .fleet-section .spec-item:last-child {
        border-right: none;
    }

    .fleet-section .spec-item svg {
        width: 12px;
        height: 12px;
        fill: var(--accent);
        opacity: .9;
        flex-shrink: 0;
    }

/* ════════════════════════
     CARD BODY
  ════════════════════════ */
.fleet-section .card-body {
    padding: 24px 26px 28px;
    position: relative;
}

    /* thin accent top line */
    .fleet-section .card-body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 26px;
        right: 26px;
        height: 1px;
        background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
        opacity: .2;
        transition: opacity .4s ease;
    }

.fleet-section .fleet-card:hover .card-body::before {
    opacity: .6;
}

.fleet-section .car-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -.3px;
    transition: color .3s ease;
}

.fleet-section .fleet-card:hover .car-name {
    color: var(--accent-hi);
}

.fleet-section .car-desc {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
/*    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;*/
}

/* capacity row */
.fleet-section .capacity-row {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .4s ease;
    margin-bottom: 22px;
}

.fleet-section .fleet-card:hover .capacity-row {
    border-color: rgba(0, 229, 160, .25);
}

.fleet-section .cap-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 8px;
    border-right: 1px solid var(--border);
    transition: background .3s ease;
}

    .fleet-section .cap-item:last-child {
        border-right: none;
    }

.fleet-section .fleet-card:hover .cap-item {
    background: rgba(0, 229, 160, .04);
}

.fleet-section .cap-icon {
    width: 18px;
    height: 18px;
    fill: var(--accent);
}

.fleet-section .cap-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.fleet-section .cap-label {
    font-size: 10px;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: .5px;
    text-transform: uppercase;
    text-align: center;
}

/* features chips */
.fleet-section .features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.fleet-section .feat-chip {
    font-size: 11px;
    color: rgba(0, 229, 160, .75);
    background: rgba(0, 229, 160, .07);
    border: 1px solid rgba(0, 229, 160, .15);
    border-radius: 5px;
    padding: 4px 10px;
    transition: background .3s ease, border-color .3s ease;
}

.fleet-section .fleet-card:hover .feat-chip {
    background: rgba(0, 229, 160, .13);
    border-color: rgba(0, 229, 160, .3);
}

@keyframes riseUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* section fleets css */


/* swiper css global */

.swiper {
    width: 100%;
    height: 100%;
    padding: 4rem 0 !important;
}

.swiper-slide {
    /* text-align: center; */
    /* font-size: 18px; */
    /* background: #444; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
    }

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background: #ffffff !important;
    width: 18px !important;
    transition: all .4s ease-in-out;
    border-radius: 20px !important;
}

.swiper-pagination-bullet-active {
    background: #00e5a0 !important;
    width: 35px !important;
}

.swiper-button-prev {
    right: 65px !important;
    top: 25px !important;
    left: auto !important;
}

.swiper-button-next {
    left: auto !important;
    top: 25px !important;
}

.swiper-button-prev, .swiper-button-next {
    background: #00c7c6;
    border-radius: 25px;
    border: 2px solid white;
    color: #ffffff !important;
}

    .swiper-button-prev svg, .swiper-button-next svg {
        height: 60% !important;
    }
/* swiper css global */


/* app section */
.sec5_appSec {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
    position: relative;
    overflow: hidden;
}

    .sec5_appSec::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgb(0 218 173 / 20%) 0%, transparent 70%);
        top: -200px;
        left: -200px;
        pointer-events: none;
        transform: translateY(0px);
        animation: aboutamination 5s infinite ease-in-out;
    }

@keyframes aboutamination {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(300px);
    }

    100% {
        transform: translateY(0px);
    }
}

.app-section {
    position: relative;
    z-index: 1;
    /* max-width: 1180px; */
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
}

@media (max-width: 860px) {
    .app-section {
        grid-template-columns: 1fr;
        gap: 56px;
    }

        .app-section .phone-col {
            order: -1;
        }
}

/* ══════════════════════════
     LEFT — PHONE MOCKUP
  ══════════════════════════ */
.app-section .phone-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
    animation: slideInL .9s cubic-bezier(.23,1,.32,1) .2s forwards;
}

    /* glow behind phone */
    .app-section .phone-col::before {
        content: '';
        position: absolute;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(0,229,160,.13), transparent 65%);
        border-radius: 50%;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
        animation: pulse 4s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: .8;
    }

    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 1;
    }
}

/* car image bottom */
.app-section .car-img {
    position: absolute;
    bottom: -10px;
    left: -20px;
    width: 260px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInL .9s cubic-bezier(.23, 1, .32, 1) .55s forwards;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .7));
    z-index: 2;
    border-radius: 12px;
    border: 2px dashed var(--accent);
    padding: 8px;
}

/* phone shell */
.app-section .phone-shell {
    position: relative;
    z-index: 3;
    width: 240px;
    animation: phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.app-section .phone-frame {
    width: 240px;
    background: #111;
    border-radius: 36px;
    border: 2px solid rgba(255,255,255,.12);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.8), 0 0 0 1px rgba(0,229,160,.12), inset 0 1px 0 rgba(255,255,255,.1);
    position: relative;
}

/* notch */
.app-section .notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: #111;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

/* status bar */
.app-section .phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 16px 8px;
    font-size: 10px;
    color: rgba(255,255,255,.5);
}

/* app screen */
.app-section .phone-screen {
    padding: 0 12px 16px;
}

/* map area */
.app-section .map-area {
    height: 130px;
    background: #1a1a1a;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
}

    .app-section .map-area img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .55;
        filter: saturate(.4) brightness(.6);
    }

    /* route line overlay */
    .app-section .map-area::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,229,160,.08), transparent 60%);
    }

/* pin dot */
.app-section .map-pin {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%,-50%);
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0,229,160,.25);
    z-index: 2;
    animation: pingPulse 2s ease-in-out infinite;
}

@keyframes pingPulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(0,229,160,.25);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0,229,160,.08);
    }
}

/* input rows */
.app-section .input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #232323;
    border-radius: 9px;
    padding: 8px 10px;
    margin-bottom: 7px;
    border: 1px solid rgba(255,255,255,.05);
}

.app-section .input-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.app-section .dot-green {
    background: var(--accent);
}

.app-section .dot-red {
    background: #ff4b4b;
}

.app-section .input-text {
    font-size: 10px;
    color: rgba(255,255,255,.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* car option cards */
.app-section .car-option {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 9px;
    margin-bottom: 6px;
    border: 1px solid rgba(255,255,255,.05);
    background: #1c1c1c;
    transition: border-color .3s;
}

    .app-section .car-option.active {
        background: rgba(0,229,160,.08);
        border-color: rgba(0,229,160,.35);
    }

.app-section .car-option-img {
    width: 36px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.app-section .car-option-info {
    flex: 1;
    min-width: 0;
}

.app-section .car-option-name {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
}

.app-section .car-option-meta {
    font-size: 9px;
    color: var(--muted);
}

.app-section .car-option-price {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

/* confirm btn */
.app-section .confirm-btn {
    display: block;
    width: 100%;
    background: var(--accent);
    color: #0f0f0f;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    padding: 11px;
    border-radius: 10px;
    margin-top: 10px;
    letter-spacing: .5px;
}

/* ══════════════════════════
     RIGHT — CONTENT
  ══════════════════════════ */
.app-section .content-col {
    opacity: 0;
    transform: translateX(40px);
    animation: slideInR .9s cubic-bezier(.23,1,.32,1) .35s forwards;
}

.app-section .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

    .app-section .eyebrow::before {
        content: '';
        display: block;
        width: 24px;
        height: 1px;
        background: var(--accent);
        opacity: .5;
    }

.app-section .headline {
    font-size: 52px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    text-transform: capitalize;
    margin-bottom: 20px;
}

    .app-section .headline em {
        font-style: normal;
        color: var(--accent);
    }

.app-section .body-copy {
    font-size: 15px;
    font-weight: 300;
    color: #c4c4c4;
    line-height: 1.8;
    margin-bottom: 16px;
    /* max-width: 100%; */
}

/* feature grid */
.app-section .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 40px;
}

.app-section .feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--surface);
    border: 1px dashed rgb(255 255 255 / 23%);
    border-radius: 13px;
    padding: 16px 14px;
    position: relative;
    overflow: hidden;
    transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}

    .app-section .feat-item:hover {
        border-color: rgba(0,229,160,.35);
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0,0,0,.4), 0 0 20px rgba(0,229,160,.05);
    }

    /* glow shine on hover */
    .app-section .feat-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 0% 0%, rgba(0,229,160,.06), transparent 60%);
        opacity: 0;
        transition: opacity .4s ease;
    }

    .app-section .feat-item:hover::before {
        opacity: 1;
    }

.app-section .feat-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    opacity: .5;
    min-width: 20px;
    margin-top: 1px;
    transition: opacity .3s;
}

.app-section .feat-item:hover .feat-num {
    opacity: 1;
}

.app-section .feat-text {
    flex: 1;
}

.app-section .feat-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
    transition: color .3s;
}

.app-section .feat-item:hover .feat-title {
    color: var(--accent-hi);
}

.app-section .feat-desc {
    font-size: 12.5px;
    font-weight: 300;
    color: #c4c4c4;
    line-height: 1.5;
}

/* divider */
.app-section .divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0,229,160,.3) 0%, rgba(0,229,160,.05) 60%, transparent 100%);
    margin-bottom: 32px;
}

/* app store row */
.app-section .store-label {
    font-size: 12px;
    font-weight: 400;
    color: #c4c4c4;
    margin-bottom: 14px;
    letter-spacing: .5px;
}

.sec5_appSec .phoneMockup {
    display: flex;
    justify-content: center;
}

    .sec5_appSec .phoneMockup img {
        width: 50%;
        position: relative;
        z-index: 2;
        animation: phoneFloat 5s ease-in-out infinite;
    }

.app-section .store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-section .store-btn {
    display: flex;
    align-items: center;
    gap: 11px;
    background: #181818;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 11px 20px;
    text-decoration: none;
    color: var(--text);
    transition: border-color .3s, transform .3s, background .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}

    .app-section .store-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,229,160,.06), transparent);
        opacity: 0;
        transition: opacity .4s;
    }

    .app-section .store-btn:hover {
        border-color: rgba(0,229,160,.4);
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(0,0,0,.4), 0 0 18px rgba(0,229,160,.07);
    }

        .app-section .store-btn:hover::before {
            opacity: 1;
        }

.app-section .store-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.app-section .store-btn-text {
    position: relative;
    z-index: 1;
}

.app-section .store-small {
    display: block;
    font-size: 9px;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.app-section .store-big {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

@keyframes slideInL {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInR {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* app section */


/* sec contact us */

/* ══════════════════
     OUTER WRAPPER
  ══════════════════ */

.sec6_contactform {
    padding: 3rem 0;
    background: linear-gradient(rgb(29 29 29 / 78%), rgb(0 0 0 / 86%)), url(../images/contactbg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

    .sec6_contactform::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgb(0 218 173 / 20%) 0%, transparent 70%);
        top: -200px;
        right: -200px;
        pointer-events: none;
        transform: translateY(0px);
        animation: aboutamination 5s infinite ease-in-out;
    }

@keyframes aboutamination {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(300px);
    }

    100% {
        transform: translateY(0px);
    }
}

.sec6_contactform .contact-section {
    position: relative;
    z-index: 1;
    /* max-width: 1160px; */
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 0;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px rgba(0,0,0,.7);
}

@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: 60px 48px;
    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;
    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(--muted);
    line-height: 1.8;
    margin-bottom: 34px;
    /* 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-value a {
        transition: all 0.3s ease-in-out;
    }

        .sec6_contactform .info-item-value a:hover {
            color: var(--accent);
        }

.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(--muted);
        transition: fill .3s;
    }

    .sec6_contactform .social-btn:hover svg {
        fill: var(--accent);
    }

/* ══════════════════
     RIGHT — FORM
  ══════════════════ */
.sec6_contactform .form-panel {
    background: var(--card);
    padding: 60px 52px;
    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: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.sec6_contactform .form-sub {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    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: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    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: var(--muted);
    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: var(--elevated);
    border: 1px solid var(--border);
    border-radius: 11px;
    color: var(--text);
    /* 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 .slogan h4 {
    padding: 6px 10px 6px 0;
}

.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: var(--border-focus);
        background: #252525;
        box-shadow: 0 0 0 3px rgba(0,229,160,.08), 0 4px 16px rgba(0,0,0,.3);
    }

.sec6_contactform .form-group:focus-within .form-label {
    color: var(--accent);
}

.sec6_contactform .form-group:focus-within .input-icon {
    fill: var(--accent);
}

/* select */
.sec6_contactform .form-select {
    width: 100%;
    background: var(--elevated);
    border: 1px solid var(--border);
    border-radius: 11px;
    color: var(--muted);
    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: var(--muted);
    display: flex;
    align-items: center;
    gap: 7px;
}

    .sec6_contactform .privacy-note svg {
        width: 13px;
        height: 13px;
        fill: var(--accent);
        opacity: .7;
        flex-shrink: 0;
    }

.sec6_contactform .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #0f0f0f;
    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;
    }

@keyframes slideL {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideR {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* sec contact us */


/* footer */

footer {
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
    padding: 3rem 0;
}

    footer .footer_logo_content img {
        width: 160px;
        mix-blend-mode: lighten;
    }

    footer .footer_logo_content p {
        padding-top: 16px;
        color: var(--muted);
    }

    footer h2 {
        color: var(--accent);
        font-weight: 700;
    }

    footer .footer_ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 20px;
    }

.footer_li i {
    border: 2px solid var(--accent);
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 12px;
    transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease;
}

.footer_li a:hover i {
    background: linear-gradient(135deg, var(--gradient-five), var(--gradient-three), var(--gradient-four));
    color: white;
    transform: scale(1.1);
}

footer .footer_ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease-in-out;
}

    footer .footer_ul li a:hover {
        padding-left: 5px;
        color: var(--accent);
    }

.bottomBar {
    border-top: 2px solid var(--accent);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
}

    .bottomBar p {
        color: var(--muted);
    }

    .bottomBar ul {
        display: flex;
        gap: 10px;
    }

        .bottomBar ul li a {
            transition: all .4s ease-in-out;
        }

            .bottomBar ul li a:hover {
                color: var(--accent);
            }

/* footer */
.wcu {
    background: var(--bg-deep);
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}

    .wcu::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgb(0 218 173 / 20%) 0%, transparent 70%);
        top: -200px;
        right: -200px;
        pointer-events: none;
        transform: translateY(0px);
        animation: aboutamination 5s infinite ease-in-out;
    }

@keyframes aboutamination {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(300px);
    }

    100% {
        transform: translateY(0px);
    }
}

.wcu__bg-ring {
    position: absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(0,229,160,0.06);
    pointer-events: none;
}

    .wcu__bg-ring::after {
        content: '';
        position: absolute;
        inset: 60px;
        border-radius: 50%;
        border: 1px solid rgba(0,229,160,0.04);
    }

.wcu__glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(0,229,160,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.wcu__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

.wcu__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,229,160,0.08);
    border: 1px solid rgba(0,229,160,0.2);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.wcu__tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.wcu__heading {
    /* font-family: 'Syne', sans-serif; */
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

    .wcu__heading span {
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 60%, var(--gradient-five) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.wcu__sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
    /* max-width: 480px; */
    margin: 0 auto;
    margin-bottom: 40px;
}

.wcu__sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 36px auto 0;
}

.wcu__sep-line {
    height: 1px;
    width: 70px;
    background: linear-gradient(90deg, transparent, rgba(0,229,160,0.4));
}

    .wcu__sep-line:last-child {
        background: linear-gradient(90deg, rgba(0,229,160,0.4), transparent);
    }

.wcu__sep-diamond {
    width: 7px;
    height: 7px;
    border: 1px solid var(--accent);
    transform: rotate(45deg);
    background: rgba(0,229,160,0.2);
}

.wcu__stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 60px 0 70px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    background: var(--card);
    overflow: hidden;
}

.wcu__stat {
    flex: 1;
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s ease;
}

    .wcu__stat:last-child {
        border-right: none;
    }

    .wcu__stat:hover {
        background: rgba(0,229,160,0.04);
    }

.wcu__stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.wcu__stat-label {
    font-size: 12px;
    color: var(--muted2);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.wcu__card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px 25px 32px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s cubic-bezier(.22,.68,0,1.2), border-color 0.35s ease, background 0.35s ease;
    cursor: default;
}

    .wcu__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        right: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--accent), var(--accent-bright), transparent);
        transition: left 0.5s ease, right 0.5s ease;
    }

    .wcu__card::after {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,229,160,0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .wcu__card:hover {
        transform: translateY(-10px);
        border-color: rgba(0,229,160,0.22);
        background: #1e1e1e;
    }

        .wcu__card:hover::before {
            left: 0;
            right: 0;
        }

        .wcu__card:hover::after {
            opacity: 1;
        }

.wcu__num {
    position: absolute;
    top: 22px;
    right: 24px;
    /* font-family: 'Syne', sans-serif; */
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: rgba(0,229,160,0.07);
    transition: color 0.35s ease;
    user-select: none;
}

.wcu__card:hover .wcu__num {
    color: rgba(0,229,160,0.14);
}

.wcu__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0,229,160,0.08);
    border: 1px solid rgba(0,229,160,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.wcu__card:hover .wcu__icon {
    background: rgba(0,229,160,0.15);
    border-color: rgba(0,229,160,0.35);
    transform: scale(1.1) rotate(-4deg);
}

.wcu__icon svg {
    width: 22px;
    height: 22px;
}

.wcu__card-title {
    /* font-family: 'Syne', sans-serif; */
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.wcu__card-body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
}

.wcu__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.wcu__card:hover .wcu__card-link {
    opacity: 1;
    transform: translateX(0);
    color: var(--accent-hi);
}

.wcu__card-link svg {
    transition: transform 0.25s ease;
}

.wcu__card:hover .wcu__card-link svg {
    transform: translateX(4px);
}

.wcu__cta {
    margin-top: 72px;
    text-align: center;
}

.wcu__cta-text {
    font-size: 15px;
    color: var(--muted2);
    margin-bottom: 28px;
    font-weight: 300;
}

.wcu__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 42px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    color: #000;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .wcu__btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.15);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .wcu__btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(0,229,160,0.35);
        color: #000;
    }

        .wcu__btn:hover::before {
            opacity: 1;
        }

    .wcu__btn svg {
        width: 16px;
        height: 16px;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wcu__header-wrap {
    animation: fadeUp 0.65s ease both;
}

.wcu__stats {
    animation: fadeUp 0.65s 0.1s ease both;
}

.wcu__card {
    animation: fadeUp 0.55s ease both;
}

    .wcu__card:nth-child(1) {
        animation-delay: 0.10s;
    }

    .wcu__card:nth-child(2) {
        animation-delay: 0.18s;
    }

    .wcu__card:nth-child(3) {
        animation-delay: 0.26s;
    }

    .wcu__card:nth-child(4) {
        animation-delay: 0.34s;
    }

    .wcu__card:nth-child(5) {
        animation-delay: 0.42s;
    }

    .wcu__card:nth-child(6) {
        animation-delay: 0.50s;
    }

.wcu__cta {
    animation: fadeUp 0.65s 0.52s ease both;
}

.sec-result {
    padding: 60px 0;
    /* margin-top: 140px; */
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
    position: relative;
    overflow: hidden;
}

    .sec-result::after {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgb(0 218 173 / 20%) 0%, transparent 70%);
        top: -200px;
        left: -200px;
        pointer-events: none;
        transform: translateY(0px);
        animation: aboutamination 5s infinite ease-in-out;
    }

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 24px;
        background: #ffffff00;
        border: 2px solid #fff;
        border-radius: 50px;
    }

        .sec-result .upper-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .upper-list li .icon-box {
                background: #fff;
                border-radius: 50%;
                padding: 5px;
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    object-fit: contain;
                }

            .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;
                }

    .sec-result .number-box {
        padding: 40px 0px 30px;
    }

        .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;
                        border: 2px solid #fff;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 20px;
                        margin: 0 auto;
                        color: #ffffff;
                        font-weight: 600;
                    }

                    .sec-result .number-box ul li .num-circle p {
                        font-size: 14px;
                        margin-top: 15px;
                        text-transform: uppercase;
                        color: #ffffff;
                    }

    .sec-result .completed {
        background: linear-gradient(135deg, var(--gradient-three), var(--gradient-five), var(--gradient-four));
        color: #ffffff !important;
        border: none !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background: linear-gradient(135deg, var(--gradient-three), var(--gradient-five), var(--gradient-four));
            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: #ffffff00;
    margin: 20px 0;
    padding: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    border: 2px solid #fff;
    box-shadow: 0px 0px 4px 5px #3ee66c;
    box-shadow: rgb(0 212 181 / 30%) 0px 8px 24px;
}

    .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;
        color: #fff;
    }

    .update-fleet-box .private-text {
        font-size: 14px;
        color: #fff;
    }

        .update-fleet-box .private-text i {
            padding-right: 5px;
        }

    .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: #ffffff;
                background: linear-gradient(135deg, var(--gradient-three), var(--gradient-five), var(--gradient-four));
                padding: 4px;
                border-radius: 5px;
            }

    .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: 12px;
                padding: 0 4px 0 0;
                font-weight: 400;
                color: #fff;
            }

                .update-fleet-box .fleet-detail .passenger-list li i {
                    font-size: 12px;
                    padding-right: 3px;
                }

        .update-fleet-box .fleet-detail .passenger-list-2 {
            padding: 10px 0;
        }

            .update-fleet-box .fleet-detail .passenger-list-2 li {
                font-size: 15px;
                padding: 3px 10px;
                /* border: 2px solid #ffffff; */
                margin: 7px 0;
                border-radius: 6px;
                font-size: 12px;
                background: linear-gradient(135deg, var(--gradient-three), var(--gradient-five), var(--gradient-four));
                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: #edf2fa; */
    /* padding: 20px; */
    /* margin-top: 15px; */
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    background: #ffffff00;
    margin: 20px 0;
    padding: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    border: 2px solid #fff;
    box-shadow: 0px 0px 4px 5px #3ee66c;
    box-shadow: rgb(0 212 181 / 30%) 0px 8px 24px;
}

    .right-card .top-heading {
        display: flex;
        align-items: center;
        padding: 10px 0 15px;
        color: #fff;
    }

        .right-card .top-heading i {
            font-size: 24px;
            padding-right: 10px;
            color: #ffffff;
        }

        .right-card .top-heading h5 {
            font-size: 22px;
            color: #ffffff;
        }

    .right-card .distance-box {
        padding: 20px 0;
        border-top: 1px solid #ffffff;
        border-bottom: 1px solid #ffffff;
    }

        .right-card .distance-box h6 {
            color: #ffffff;
        }

        .right-card .distance-box ul {
            padding: 10px 0 0;
        }

            .right-card .distance-box ul li {
                font-size: 14px;
                padding: 5px 0px;
                color: #ffffff;
            }

                .right-card .distance-box ul li i {
                    font-size: 16px;
                    color: #ffffff;
                    padding-right: 5px;
                }

    .right-card .cal-mile {
        padding: 10px 0 0;
    }

        .right-card .cal-mile li {
            font-size: 16px;
            padding: 5px 0;
            color: #ffffff;
        }

            .right-card .cal-mile li i {
                padding-right: 5px;
                color: #ffffff;
            }

    .right-card .distance-box-2 ul li {
        font-size: 14px;
        padding: 5px 0;
        color: #ffffff;
    }

        .right-card .distance-box-2 ul li i {
            font-size: 15px;
            color: #ffffff;
            padding-right: 3px;
        }

.ui-menu {
    height: 250px !important;
    overflow-y: scroll;
}

.Passenger-Information {
    background: #edf2fa;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #ffffff00;
    margin: 20px 0;
    padding: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    border: 2px solid #fff;
    box-shadow: 0px 0px 4px 5px #3ee66c;
    box-shadow: rgb(0 212 181 / 30%) 0px 8px 24px;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #ffffff;
    }

    .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: #ffffff;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ffffff !important;
            background: transparent !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;
}*/
.Passenger-Information .input-box .b-field option {
    color: #000;
}

.navButton {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Terms and Conditions Css */
.terms-conditions {
    width: 100%;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
    position: relative;
    overflow: hidden;
}
    .terms-conditions::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgb(0 218 173 / 20%) 0%, transparent 70%);
        top: -200px;
        left: -200px;
        pointer-events: none;
        transform: translateY(0px);
        animation: aboutamination 5s infinite ease-in-out;
    }
.terms_div{
    width: 100%;
}
    .terms_div h1 {
        font-size: clamp(38px, 5.5vw, 62px);
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -0.02em;
        color: var(--text-primary);
        margin-bottom: 20px;
    }
        .terms_div h1 span {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 60%, var(--gradient-five) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .terms_div p{
            font-size: 16px;
            color: #fff;
            margin-bottom: 10px;
        }
            .terms_div p span {
                background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 60%, var(--gradient-five) 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                font-weight: 800;
            }
    .terms_div h4 {
        font-size: 24px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 20px;
    }
        .terms_div h4 span {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 60%, var(--gradient-five) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .terms_div ul li{
            font-size: 16px;
            color: #fff;
            margin-bottom: 5px;
            list-style: disc;
            margin-left: 40px;
        }
            .terms_div ul li::marker {
                color: #00e5a0;
            }
    .terms_div .topscpa{
        margin-top: 20px;
    }
    .terms_div .unnerline {
        width: 100%;
        height: 3px;
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 60%, var(--gradient-five) 100%);
        margin: 20px 0;
    }
    .terms_div h2 {
        font-size: 32px;
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -0.02em;
        color: var(--text-primary);
        margin-bottom: 20px;
    }
        .terms_div h2 span {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 60%, var(--gradient-five) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        /* Terms and Conditions Css */
/* Privacy Policy Css */
.privacy_section {
    width: 100%;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
    position: relative;
    overflow: hidden;
}

    .privacy_section::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgb(0 218 173 / 20%) 0%, transparent 70%);
        top: -200px;
        left: -200px;
        pointer-events: none;
        transform: translateY(0px);
        animation: aboutamination 5s infinite ease-in-out;
    }

.privacy_div {
    width: 100%;
}

    .privacy_div h1 {
        font-size: clamp(38px, 5.5vw, 62px);
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -0.02em;
        color: var(--text-primary);
        margin-bottom: 20px;
    }

        .privacy_div h1 span {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 60%, var(--gradient-five) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    .privacy_div p {
        font-size: 16px;
        color: #fff;
        margin-bottom: 10px;
    }

        .privacy_div p span {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 60%, var(--gradient-five) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        .privacy_div p a{
            transition: all 0.3s ease-in-out;
        }

            .privacy_div p a:hover{
                color: #00e5a0;
            }

            .privacy_div h4 {
                font-size: 24px;
                font-weight: 700;
                color: var(--text-primary);
                margin-bottom: 20px;
            }

        .privacy_div h4 span {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 60%, var(--gradient-five) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    .privacy_div ul li {
        font-size: 16px;
        color: #fff;
        margin-bottom: 5px;
        list-style: disc;
        margin-left: 40px;
    }

        .privacy_div ul li::marker {
            color: #00e5a0;
        }

    .privacy_div .topscpa {
        margin-top: 20px;
    }

    .privacy_div .unnerline {
        width: 100%;
        height: 3px;
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 60%, var(--gradient-five) 100%);
        margin: 20px 0;
    }

    .privacy_div h2 {
        font-size: 32px;
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -0.02em;
        color: var(--text-primary);
        margin-bottom: 20px;
    }

        .privacy_div h2 span {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 60%, var(--gradient-five) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
/* Privacy Policy Css */
        /************************** media-query **************************/
        @media only screen and (min-width: 1921px) and (max-width: 7368px) {
        }

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    body {
        overflow-x: hidden !important;
    }

    html {
        overflow-x: hidden !important;
    }

    .topNav_left {
        gap: 6px;
    }

        .topNav_left a {
            font-size: 14px;
        }

        .topNav_left i {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }

    .socials-icons a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .mainNavbar .navbar-brand img {
        width: 100px;
    }

    .mainNavbar .navbar-nav {
        gap: 10px;
    }

        .mainNavbar .navbar-nav .nav-link {
            font-size: 14px;
        }

    .global_btn {
        font-size: 14px;
    }

        .global_btn i {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }

    .slogan h4 {
        font-size: 14px;
    }

        .slogan h4 i {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }

    .right-hero-content h2 {
        font-size: 24px;
    }

    .right-hero-content input, .right-hero-content select {
        font-size: 14px;
    }

    .right-hero-content .custom-input-div i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .sec1_hero h1 {
        font-size: 32px;
    }

    .sec1_hero p {
        font-size: 14px;
    }

    .sec1_hero {
        padding: 7rem 0;
    }

    .sec2_about h2 {
        font-size: 24px;
    }

    .sec2_about p {
        padding-top: 10px;
        font-size: 14px;
    }

    .wcu__heading {
        font-size: clamp(38px, 4.5vw, 62px);
    }

    .wcu__sub {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .wcu__card-title {
        font-size: 16px;
    }

    .wcu__icon {
        width: 42px;
        height: 42px;
    }

        .wcu__icon svg {
            width: 18px;
            height: 18px;
        }

    .wcu__card-body {
        line-height: 1.5;
        font-size: 12px;
    }

    .wcu__num {
        font-size: 42px;
    }

    .wcu__cta-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .sec3_sevciescards .section-title {
        font-size: clamp(36px, 4vw, 58px);
    }

    .sec3_sevciescards .service-card {
        padding: 30px 22px 26px;
    }

    .sec3_sevciescards .icon-wrap {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
    }

        .sec3_sevciescards .icon-wrap svg {
            width: 22px;
            height: 22px;
        }

    .sec3_sevciescards .card-number {
        font-size: 42px;
    }

    .sec3_sevciescards .card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .sec3_sevciescards .card-desc {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .fleet-section .fleet-title {
        font-size: clamp(38px, 4.5vw, 62px);
    }

    .fleet-section .fleet-sub {
        font-size: 14px;
    }

    .app-section .headline {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .app-section .body-copy {
        font-size: 14px;
    }

    .sec6_contactform .form-panel {
        padding: 40px 22px;
    }

    footer .footer_logo_content img {
        width: 120px;
    }

    footer .footer_logo_content p {
        padding-top: 10px;
        font-size: 14px;
    }

    footer h2 {
        font-size: 24px;
    }

    footer .footer_ul {
        gap: 5px;
        padding-top: 10px;
    }

    .footer_li i {
        height: 25px;
        width: 25px;
    }

    footer .footer_ul li a {
        gap: 5px;
        word-break: break-all;
        font-size: 14px;
    }

    .footer_li a .fa-envelope {
        width: 32px;
        height: 26px;
    }

    .bottomBar {
        padding-top: 1rem;
    }

        .bottomBar p {
            font-size: 14px;
        }

        .bottomBar ul li a {
            font-size: 14px;
        }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    body {
        overflow-x: hidden !important;
    }

    html {
        overflow-x: hidden !important;
    }

    .topNav_left {
        gap: 6px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .socials-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .topNav_left a {
        font-size: 14px;
    }

    .topNav_left i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .socials-icons a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .mainNavbar .navbar-brand img {
        width: 100px;
    }

    .mainNavbar .navbar-nav {
        gap: 10px;
    }

        .mainNavbar .navbar-nav .nav-link {
            font-size: 14px;
        }

    .global_btn {
        font-size: 14px;
    }

        .global_btn i {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }

    .slogan h4 {
        font-size: 14px;
    }

        .slogan h4 i {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }

    .right-hero-content h2 {
        font-size: 24px;
    }

    .right-hero-content input, .right-hero-content select {
        font-size: 14px;
    }

    .right-hero-content .custom-input-div i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .sec1_hero h1 {
        font-size: 32px;
    }

    .sec1_hero p {
        font-size: 14px;
    }

    .sec1_hero {
        padding: 7rem 0;
    }

    .sec2_about h2 {
        font-size: 24px;
    }

    .sec2_about p {
        padding-top: 10px;
        font-size: 14px;
    }

    .wcu__heading {
        font-size: clamp(38px, 4.5vw, 62px);
    }

    .wcu__sub {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .wcu__card-title {
        font-size: 16px;
    }

    .wcu__icon {
        width: 42px;
        height: 42px;
    }

        .wcu__icon svg {
            width: 18px;
            height: 18px;
        }

    .wcu__card-body {
        line-height: 1.5;
        font-size: 12px;
    }

    .wcu__num {
        font-size: 42px;
    }

    .wcu__cta-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .sec3_sevciescards .section-title {
        font-size: clamp(36px, 4vw, 58px);
    }

    .sec3_sevciescards .service-card {
        padding: 30px 22px 26px;
    }

    .sec3_sevciescards .icon-wrap {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
    }

        .sec3_sevciescards .icon-wrap svg {
            width: 22px;
            height: 22px;
        }

    .sec3_sevciescards .card-number {
        font-size: 42px;
    }

    .sec3_sevciescards .card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .sec3_sevciescards .card-desc {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .fleet-section .fleet-title {
        font-size: clamp(38px, 4.5vw, 62px);
    }

    .fleet-section .fleet-sub {
        font-size: 14px;
    }

    .app-section .headline {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .app-section .body-copy {
        font-size: 14px;
    }

    .sec6_contactform .form-panel {
        padding: 40px 22px;
    }

    footer .footer_logo_content img {
        width: 120px;
    }

    footer .footer_logo_content p {
        padding-top: 10px;
        font-size: 14px;
    }

    footer h2 {
        font-size: 24px;
        margin-top: 20px;
    }

    footer .footer_ul {
        gap: 5px;
        padding-top: 10px;
    }

    .footer_li i {
        height: 25px;
        width: 25px;
    }

    footer .footer_ul li a {
        gap: 5px;
        word-break: break-all;
        font-size: 14px;
    }

    .footer_li a .fa-envelope {
        width: 32px;
        height: 26px;
    }

    .bottomBar {
        padding-top: 1rem;
    }

        .bottomBar p {
            font-size: 14px;
        }

        .bottomBar ul li a {
            font-size: 14px;
        }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    body {
        overflow-x: hidden !important;
    }

    html {
        overflow-x: hidden !important;
    }

    .topNav_left {
        gap: 6px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .socials-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .topNav_left a {
        font-size: 14px;
    }

    .topNav_left i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .socials-icons a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .mainNavbar .navbar-brand img {
        width: 100px;
    }

    .mainNavbar .navbar-nav {
        gap: 10px;
    }

        .mainNavbar .navbar-nav .nav-link {
            font-size: 14px;
        }

    .global_btn {
        font-size: 14px;
    }

        .global_btn i {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }

    .slogan h4 {
        font-size: 14px;
    }

        .slogan h4 i {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }

    .right-hero-content h2 {
        font-size: 24px;
    }

    .right-hero-content input, .right-hero-content select {
        font-size: 14px;
    }

    .right-hero-content .custom-input-div i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .sec1_hero h1 {
        font-size: 32px;
    }

    .sec1_hero p {
        font-size: 14px;
    }

    .sec1_hero {
        padding: 7rem 0;
    }

    .sec2_about h2 {
        font-size: 24px;
    }

    .sec2_about p {
        padding-top: 10px;
        font-size: 14px;
    }

    .wcu__heading {
        font-size: clamp(38px, 4.5vw, 62px);
    }

    .wcu__sub {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .wcu__card-title {
        font-size: 16px;
    }

    .wcu__icon {
        width: 42px;
        height: 42px;
    }

        .wcu__icon svg {
            width: 18px;
            height: 18px;
        }

    .wcu__card-body {
        line-height: 1.5;
        font-size: 12px;
    }

    .wcu__num {
        font-size: 42px;
    }

    .wcu__cta-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .sec3_sevciescards .section-title {
        font-size: clamp(36px, 4vw, 58px);
    }

    .sec3_sevciescards .service-card {
        padding: 30px 22px 26px;
    }

    .sec3_sevciescards .icon-wrap {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
    }

        .sec3_sevciescards .icon-wrap svg {
            width: 22px;
            height: 22px;
        }

    .sec3_sevciescards .card-number {
        font-size: 42px;
    }

    .sec3_sevciescards .card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .sec3_sevciescards .card-desc {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .fleet-section .fleet-title {
        font-size: clamp(38px, 4.5vw, 62px);
    }

    .fleet-section .fleet-sub {
        font-size: 14px;
    }

    .app-section .headline {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .app-section .body-copy {
        font-size: 14px;
    }

    .sec6_contactform .form-panel {
        padding: 40px 22px;
    }

    footer .footer_logo_content img {
        width: 120px;
    }

    footer .footer_logo_content p {
        padding-top: 10px;
        font-size: 14px;
    }

    footer h2 {
        font-size: 24px;
        margin-top: 20px;
    }

    footer .footer_ul {
        gap: 5px;
        padding-top: 10px;
    }

    .footer_li i {
        height: 25px;
        width: 25px;
    }

    footer .footer_ul li a {
        gap: 5px;
        word-break: break-all;
        font-size: 14px;
    }

    .footer_li a .fa-envelope {
        width: 32px;
        height: 26px;
    }

    .bottomBar {
        padding-top: 1rem;
    }

        .bottomBar p {
            font-size: 14px;
        }

        .bottomBar ul li a {
            font-size: 14px;
        }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    body {
        overflow-x: hidden !important;
    }

    html {
        overflow-x: hidden !important;
    }

    .topNav_left {
        gap: 6px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .socials-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .topNav_left a {
        font-size: 14px;
    }

    .topNav_left i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .socials-icons a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .mainNavbar .navbar-brand img {
        width: 100px;
    }

    .mainNavbar .navbar-nav {
        gap: 10px;
    }

        .mainNavbar .navbar-nav .nav-link {
            font-size: 14px;
        }

    .global_btn {
        font-size: 14px;
    }

        .global_btn i {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }

    .slogan h4 {
        font-size: 14px;
    }

        .slogan h4 i {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }

    .right-hero-content h2 {
        font-size: 24px;
    }

    .right-hero-content input, .right-hero-content select {
        font-size: 14px;
    }

    .right-hero-content .custom-input-div i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .sec1_hero h1 {
        font-size: 32px;
    }

    .sec1_hero p {
        font-size: 14px;
    }

    .sec1_hero {
        padding: 3rem 0;
    }

    .sec2_about h2 {
        font-size: 24px;
        margin-top: 20px;
    }

    .app-section .car-img {
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .sec2_about p {
        padding-top: 10px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .wcu__heading {
        font-size: clamp(38px, 4.5vw, 62px);
    }

    .wcu__sub {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .wcu__card-title {
        font-size: 16px;
    }

    .wcu__icon {
        width: 42px;
        height: 42px;
    }

        .wcu__icon svg {
            width: 18px;
            height: 18px;
        }

    .wcu__card-body {
        line-height: 1.5;
        font-size: 12px;
    }

    .wcu__num {
        font-size: 42px;
    }

    .wcu__cta-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .sec3_sevciescards .section-title {
        font-size: clamp(36px, 4vw, 58px);
    }

    .sec3_sevciescards .service-card {
        padding: 30px 22px 26px;
    }

    .sec3_sevciescards .icon-wrap {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
    }

        .sec3_sevciescards .icon-wrap svg {
            width: 22px;
            height: 22px;
        }

    .sec3_sevciescards .card-number {
        font-size: 42px;
    }

    .sec3_sevciescards .card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .sec3_sevciescards .card-desc {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .fleet-section .fleet-title {
        font-size: clamp(38px, 4.5vw, 62px);
    }

    .fleet-section .fleet-sub {
        font-size: 14px;
    }

    .app-section .headline {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .app-section .body-copy {
        font-size: 14px;
    }

    .sec6_contactform .form-panel {
        padding: 40px 12px;
    }

    footer .footer_logo_content img {
        width: 120px;
    }

    footer .footer_logo_content p {
        padding-top: 10px;
        font-size: 14px;
    }

    footer h2 {
        font-size: 24px;
        margin-top: 20px;
    }

    footer .footer_ul {
        gap: 5px;
        padding-top: 10px;
    }

    .footer_li i {
        height: 25px;
        width: 25px;
    }

    footer .footer_ul li a {
        gap: 5px;
        word-break: break-all;
        font-size: 14px;
    }

    .footer_li a .fa-envelope {
        width: 25px;
        height: 26px;
    }

    .bottomBar {
        padding-top: 1rem;
        flex-direction: column;
        align-items: center;
    }

        .bottomBar p {
            font-size: 14px;
        }

        .bottomBar ul li a {
            font-size: 14px;
        }

    .innerBanner .innerMainContent {
        flex-direction: column;
    }

    .sec6_contactform .form-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .sec-result .upper-list {
        display: none;
    }

    .update-fleet-box .fleet-detail {
        border: none;
    }

    .section-padding {
        padding: 40px 10px;
    }
}
