/* ==========================================================================
   GIT Infosys — Ecommerce Website Development Company in Jaipur
   Landing Page Stylesheet
   --------------------------------------------------------------------------
   01. Design Tokens
   02. Base & Helpers
   03. Buttons
   04. Section Heading
   05. Header / Navigation / Mega Menu
   06. Hero
   07. Trusted-By Marquee
   08. Services
   09. Stats Odometer Band
   10. Process Accordion
   11. Why Choose Us
   12. Portfolio
   13. Industries Slider
   14. Impact
   15. Team
   16. Pricing
   17. Testimonials
   18. FAQ
   19. Contact
   20. Review Platforms
   21. Footer
   22. Floating Actions
   23. Reveal Animations
   24. Responsive
   ========================================================================== */

/* ==========================================================================
   01. Design Tokens
   ========================================================================== */
:root {
    --bg: #030706;
    --bg-2: #060d0b;
    --surface: #0b1512;
    --surface-2: #101d19;
    --surface-3: #16241f;

    --brand: #12b98d;
    --brand-2: #3fe0b0;
    --brand-3: #0a8f6c;
    --brand-soft: rgba(18, 185, 141, .12);
    --brand-line: rgba(18, 185, 141, .32);

    --text: #eef5f2;
    --heading: #ffffff;
    --muted: #9bb2ab;
    --line: rgba(255, 255, 255, .08);

    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 26px;

    --shadow: 0 24px 60px rgba(0, 0, 0, .55);

    --ff: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ==========================================================================
   02. Base & Helpers
   ========================================================================== */
* {
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--ff);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff);
    color: var(--heading);
    font-weight: 700;
    line-height: 1.22;
}

h1 {
    font-size: clamp(2rem, 4.2vw, 3rem);
    letter-spacing: -.02em;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    letter-spacing: -.02em;
}

h3 {
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
}

p {
    color: var(--muted);
    margin-bottom: 1rem;
}

a {
    color: var(--brand-2);
    text-decoration: none;
    transition: color .3s var(--ease);
}

a:hover {
    color: var(--brand);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* overflow-x: clip keeps the decorative blobs from widening the document
   (unlike overflow: hidden it does not break position: sticky inside) */
.section {
    position: relative;
    padding: 100px 0;
    overflow-x: clip;
}

.section-sm {
    padding: 70px 0;
}

.bg-soft {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}

.text-brand {
    color: var(--brand-2) !important;
}

.grad-text {
    background: linear-gradient(96deg, var(--brand-2) 0%, var(--brand) 55%, #7af0cc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* decorative background blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .35;
    pointer-events: none;
    z-index: 0;
}

.blob-a {
    width: 480px;
    height: 480px;
    background: rgba(18, 185, 141, .35);
    top: -160px;
    left: -180px;
}

.blob-b {
    width: 420px;
    height: 420px;
    background: rgba(10, 143, 108, .3);
    bottom: -180px;
    right: -160px;
}

.container-fluid {
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

.hr-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
    border: 0;
    margin: 0;
    opacity: 1;
}

/* custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #050a09;
}

::-webkit-scrollbar-thumb {
    background: #1c3830;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-3);
}

::selection {
    background: var(--brand);
    color: #01120d;
}

/* ==========================================================================
   03. Buttons
   ========================================================================== */
.btn {
    font-weight: 600;
    border-radius: 60px;
    padding: 13px 30px;
    font-size: 15px;
    transition: all .35s var(--ease);
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn:focus,
.btn:focus-visible {
    box-shadow: 0 0 0 .2rem rgba(18, 185, 141, .3);
    outline: 0;
}

.btn-brand {
    background: linear-gradient(96deg, var(--brand-2), var(--brand));
    color: #02120d;
    box-shadow: 0 14px 34px rgba(18, 185, 141, .3);
}

.btn-brand:hover {
    color: #02120d;
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(18, 185, 141, .45);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: rgba(255, 255, 255, .18);
}

.btn-ghost:hover {
    color: var(--brand-2);
    border-color: var(--brand-line);
    background: var(--brand-soft);
    transform: translateY(-3px);
}

.btn i {
    transition: transform .35s var(--ease);
}

.btn:hover i.fa-arrow-right {
    transform: translateX(4px);
}

/* ==========================================================================
   04. Section Heading
   ========================================================================== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brand-2);
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    padding: 7px 16px;
    border-radius: 60px;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-2);
    box-shadow: 0 0 10px var(--brand-2);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(.7);
    }
}

.section-head {
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head p {
    font-size: 17px;
    margin-bottom: 0;
}

.section-head-left {
    text-align: left;
    margin-left: 0;
}

/* ==========================================================================
   05. Header / Navigation / Mega Menu
   ========================================================================== */
.headerTop {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1030;
    padding: 14px 0;
    transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
    background: transparent;
}

.headerTop.sticky {
    padding: 6px 0;
    background: rgba(4, 10, 8, .9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}

.headerTop .navbar {
    padding: 0;
}

.headerTop .container-fluid {
    padding-inline: clamp(16px, 3vw, 46px);
}

.headerTop .navbar-brand {
    margin-right: 26px;
}

.headerTop .navbar-brand img {
    width: 190px;
    height: auto;
    transition: width .4s var(--ease);
}

.headerTop.sticky .navbar-brand img {
    width: 165px;
}

.headerTop .navbar-nav {
    gap: 2px;
    margin-left: auto;
    align-items: center;
}

.headerTop .nav-link {
    color: rgba(255, 255, 255, .82) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 13px !important;
    position: relative;
    transition: color .3s var(--ease);
}

.headerTop .nav-link:hover,
.headerTop .nav-item:hover>.nav-link {
    color: var(--brand-2) !important;
}

/* underline sweep (::before so ::after stays free) */
.headerTop .real-menu>.nav-item>.nav-link::before {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 3px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-2), var(--brand));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease);
    border-radius: 2px;
}

.headerTop .real-menu>.nav-item:hover>.nav-link::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* caret: real FA chevron, Bootstrap ka apna caret hataya */
.headerTop .dropdown-toggle::after {
    display: none !important;
}

.mm-caret {
    font-size: 10px;
    margin-left: 7px;
    display: inline-block;
    transition: transform .3s var(--ease);
}

.headerTop .nav-item.dropdown:hover>.nav-link .mm-caret,
.headerTop .nav-item.dropdown.show>.nav-link .mm-caret {
    transform: rotate(180deg);
}

/* positioning: mega poore header par, simple dropdown apne item ke neeche */
.headerTop .real-menu>.nav-item.dropdown {
    position: relative;
}

.headerTop .real-menu>.nav-item.has-mega {
    position: static;
}

/* ---------- Mega menu panel ---------- */
.headerTop .mega-menu {
    /* image wala blue chahiye to sirf ye 4 badlo: #1a73e8 / #0d2b45 / #e8f0fe */
    --mm-card: #f7faf9;
    --mm-ink: #0e2620;
    --mm-text: #4a615b;
    --mm-accent: #12b98d;
    --mm-tile: #e4f5ef;

    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    width: auto;
    max-width: min(1400px, calc(100vw - 30px));
    margin: 14px auto 0;
    padding: 20px;
    background: rgba(6, 13, 11, .98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 50px);
    overflow-y: auto;
}

.headerTop .mega-menu .container-fluid {
    max-width: 100%;
    padding: 0;
}

/* Bootstrap row/col ke gutters yahin se control honge */
.headerTop .mega-menu .mm-row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
}

/* taaki har column ki height barabar rahe */
.headerTop .mega-menu .mm-col {
    display: flex;
}

.mega-menu-column {
    width: 100%;
    /* col ke andar poori width le */
    background: var(--mm-card);
    border-radius: 16px;
    padding: 20px 22px 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.mega-menu-column:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .3);
}

.mega-menu-title {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 15px;
    margin-bottom: 13px;
    border-bottom: 1px solid rgba(14, 38, 32, .1);
}

.mm-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--mm-tile);
    color: var(--mm-accent);
    font-size: 19px;
    transition: background .35s var(--ease), color .35s var(--ease), transform .45s var(--ease);
}

.mega-menu-column:hover .mm-icon {
    background: var(--mm-accent);
    color: #fff;
    transform: rotateY(360deg);
}

.mega-menu-title .nav-link {
    color: var(--mm-ink) !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    line-height: 1.25;
    letter-spacing: .01em;
    text-transform: uppercase;
    padding: 0 !important;
}

.mega-menu-title .nav-link:hover {
    color: var(--mm-accent) !important;
}

.mm-list {
    columns: 2;
    column-gap: 16px;
}

.mm-list-1 {
    columns: 1;
}

.mm-list li {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

.mega-menu-column ul .nav-link {
    position: relative;
    display: block;
    color: var(--mm-text) !important;
    font-size: 13.5px !important;
    font-weight: 500;
    line-height: 1.45;
    padding: 6px 0 6px 20px !important;
    transition: color .28s var(--ease), transform .28s var(--ease);
}

.mega-menu-column ul .nav-link::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    color: var(--mm-accent);
    position: absolute;
    left: 2px;
    top: 8px;
    transition: transform .28s var(--ease);
}

.mega-menu-column ul .nav-link:hover {
    color: var(--mm-accent) !important;
    transform: translateX(3px);
}

/* ---------- Simple dropdown (Industries) ---------- */
.headerTop .dropdown-menu.mm-simple {
    --mm-card: #f7faf9;
    --mm-text: #4a615b;
    --mm-accent: #12b98d;
    --mm-tile: #e4f5ef;

    position: absolute;
    top: 30px;
    left: 0;
    min-width: 312px;
    margin-top: 14px;
    padding: 12px;
    background: var(--mm-card);
    border: 0;
    border-radius: 16px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .45);
}

.mm-simple .nav-link {
    position: relative;
    color: var(--mm-text) !important;
    font-size: 13.8px !important;
    font-weight: 500;
    padding: 9px 12px 9px 28px !important;
    border-radius: 10px;
    transition: background .28s var(--ease), color .28s var(--ease);
}

.mm-simple .nav-link::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    color: var(--mm-accent);
    position: absolute;
    left: 12px;
    top: 11px;
}

.mm-simple .nav-link:hover {
    background: var(--mm-tile);
    color: var(--mm-accent) !important;
}

/* ---------- Burger + close ---------- */
.headerTop .navbar-toggler {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px 12px;
    background: var(--surface);
    transition: opacity .3s var(--ease);
}

.headerTop .navbar-toggler:focus {
    box-shadow: none;
}

.headerTop .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233fe0b0' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.headerTop .navbar-toggler.mitem {
    padding: 7px 10px;
}

.headerTop .navbar-toggler.mitem svg {
    width: 17px;
    height: 17px;
    display: block;
}

/* ---------- Desktop ---------- */
@media (min-width: 992px) {
    .headerTop .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        animation: ddIn .28s var(--ease);
    }

    .headerTop .navbar-collapse .navbar-toggler.mitem {
        display: none;
    }
}

@keyframes ddIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
}

/* 992–1199 ke beech col-lg-2 se 6 columns bahut tight ho jaate — isliye 3 per row */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .headerTop .mega-menu .mm-col {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .headerTop .nav-link {
        font-size: 14px;
        padding: 10px 9px !important;
    }

    .headerTop .real-menu>.nav-item>.nav-link::before {
        left: 9px;
        right: 9px;
    }

    .headerTop .navbar-brand img {
        width: 165px;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .headerTop .nav-link {
        font-size: 14.5px;
        /* padding: 10px 11px !important; */
    }

    .headerTop .real-menu>.nav-item>.nav-link::before {
        left: 11px;
        right: 11px;
    }
}

/* ---------- Mobile / tablet ---------- */
@media (max-width: 991.98px) {

    /* lg se neeche backdrop-filter nahi: warna header hi fixed panel ka
       containing block ban jaata hai aur panel header ke box me sikud jaata hai */
    .headerTop,
    .headerTop.sticky {
        padding: 10px 0;
        background: rgba(4, 10, 8, .97);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .headerTop .navbar-brand img,
    .headerTop.sticky .navbar-brand img {
        width: 155px;
    }

    .headerTop .navbar-collapse {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(420px, 100%);
        background: #060d0b;
        border-left: 1px solid var(--line);
        padding: 70px 14px 40px;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        box-shadow: -20px 0 60px rgba(0, 0, 0, .6);
    }

    .headerTop .navbar-collapse.collapsing {
        height: 100% !important;
        transition: none;
    }

    .headerTop .navbar-collapse.show~.navbar-toggler,
    .headerTop .navbar-collapse.collapsing~.navbar-toggler {
        opacity: 0;
        pointer-events: none;
    }

    .headerTop .navbar-toggler.mitem {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 5;
    }

    /* ul .d-flex.w-100 ka flex item hai, warna max-content par sikud jaata hai */
    .headerTop .navbar-collapse .d-flex {
        display: block !important;
    }

    .headerTop .navbar-nav {
        gap: 0;
        margin-left: 0;
        align-items: stretch;
        width: 100%;
    }

    .headerTop .real-menu>.nav-item {
        border-bottom: 1px solid var(--line);
    }

    .headerTop .real-menu>.nav-item>.nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 4px !important;
        font-size: 16px;
    }

    .headerTop .real-menu>.nav-item>.nav-link::before {
        display: none;
    }

    .mm-caret {
        margin-left: auto;
        font-size: 12px;
    }

    /* Bootstrap/Popper inline styles ko harana zaroori hai */
    .headerTop .dropdown-menu {
        position: static !important;
        transform: none !important;
        inset: auto !important;
        float: none;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        max-height: none !important;
        margin: 0 0 14px !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        overflow: visible !important;
    }

    .headerTop .mega-menu .mm-row {
        --bs-gutter-y: 12px;
    }

    .mega-menu-column {
        padding: 16px 16px 18px;
        border-radius: 14px;
    }

    .mega-menu-column:hover {
        transform: none;
    }

    .mm-list,
    .mm-list-1 {
        columns: 1;
    }

    .mm-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
        border-radius: 11px;
    }

    .mega-menu-title {
        gap: 12px;
        padding-bottom: 12px;
        margin-bottom: 10px;
    }

    .mega-menu-title .nav-link {
        font-size: 14px !important;
    }

    .mega-menu-column ul .nav-link {
        font-size: 14px !important;
        /* padding: 8px 0 8px 20px !important; */
    }

    .headerTop .dropdown-menu.mm-simple {
        background: var(--mm-card) !important;
        border-radius: 14px !important;
        padding: 10px !important;
        margin: 0 0 14px !important;
    }

    .mm-simple .nav-link {
        font-size: 14px !important;
        padding: 10px 12px 10px 28px !important;
    }

    .mm-simple .nav-link::before {
        top: 13px;
    }
}

@media (max-width: 400px) {
    .headerTop .navbar-collapse {
        padding: 66px 12px 34px;
    }

    .headerTop .navbar-brand img,
    .headerTop.sticky .navbar-brand img {
        width: 138px;
    }
}

/* ==========================================================================
   06. Hero
   ========================================================================== */
.hero {
    position: relative;
    padding: 120px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(900px 460px at 78% 14%, rgba(18, 185, 141, .18), transparent 62%),
        radial-gradient(700px 420px at 8% 82%, rgba(10, 143, 108, .16), transparent 60%),
        var(--bg);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
    pointer-events: none;
}

.hero .container-fluid {
    z-index: 2;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 17.5px;
    max-width: 620px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 22px 0 30px;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14.5px;
    color: var(--text);
}

.hero-points i {
    color: var(--brand-2);
    font-size: 15px;
}



/* hero visual */
.hero-visual {
    position: relative;
    padding: 10px 30px;
}

.hero-card {
    position: relative;
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow);
}

.hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.hero-dots {
    display: flex;
    gap: 6px;
}

.hero-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2a3d37;
}

.hero-dots span:first-child {
    background: #ff5f57;
}

.hero-dots span:nth-child(2) {
    background: #febc2e;
}

.hero-dots span:nth-child(3) {
    background: var(--brand);
}

.hero-url {
    font-size: 12px;
    color: var(--muted);
    background: #071310;
    border: 1px solid var(--line);
    padding: 4px 14px;
    border-radius: 40px;
}

.hero-product {
    background: #071310;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    height: 100%;
}

.hero-thumb {
    height: 118px;
    border-radius: 14px;
    background: linear-gradient(140deg, rgba(18, 185, 141, .35), rgba(18, 185, 141, .06));
    border: 1px solid var(--brand-line);
    display: grid;
    place-items: center;
    font-size: 32px;
    color: var(--brand-2);
    overflow: hidden;
    margin-bottom: 14px;
}
.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-product h6 {
    font-size: 14.5px;
    margin-bottom: 4px;
}

.hero-product .price {
    color: var(--brand-2);
    font-weight: 700;
    font-size: 15px;
}

.hero-product .old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 12.5px;
    margin-left: 6px;
}

.hero-stars {
    color: #ffc107;
    font-size: 11px;
}

.hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    background: #071310;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 16px;
}

.hero-row small {
    color: var(--muted);
    font-size: 12px;
    display: block;
}

.hero-row b {
    font-size: 14px;
    color: #fff;
}

.hero-pill {
    background: linear-gradient(96deg, var(--brand-2), var(--brand));
    color: #02120d;
    font-weight: 700;
    font-size: 12.5px;
    padding: 8px 16px;
    border-radius: 40px;
    white-space: nowrap;
}

/* floating animated svg badges */
.float-badge {
    position: absolute;
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    background: rgba(9, 20, 17, .92);
    border: 1px solid var(--brand-line);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .5), 0 0 30px rgba(18, 185, 141, .18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3;
}

.float-badge svg {
    width: 80px;
    height: 80px;
}

/* robot -> continuous up & down | chip + bulb -> continuous flip */
.badge-robot {
    top: -15%;
    left: 0;
    animation: floatY 3.2s ease-in-out infinite;
}

.badge-chip {
    bottom: 12%;
    left: -75px;
    perspective: 600px;
}

.badge-bulb {
    top: 30%;
    right: -40px;
    perspective: 600px;
}

.badge-chip svg {
    animation: flipY 3.6s linear infinite;
    transform-style: preserve-3d;
}

.badge-bulb svg {
    animation: flipY 4.4s linear infinite .6s;
    transform-style: preserve-3d;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes flipY {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    margin-top: 46px;
}

.hero-scroll i {
    animation: floatY 2s ease-in-out infinite;
    color: var(--brand-2);
}

/* ==========================================================================
   07. Trusted-By Marquee
   ========================================================================== */
.marquee-section {
    padding: 56px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
}

.marquee-title {
    text-align: center;
    font-size: 20px;
    /* letter-spacing: .2em; */
    text-transform: uppercase;
    color: var(--bg);
    margin-bottom: 30px;
    font-weight: 700;
}

.marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 34s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    margin: 0 10px;
    border: 1px solid var(--line);
    border-radius: 60px;
    background: var(--surface);
    color: rgba(255, 255, 255, .62);
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    transition: all .35s var(--ease);
}

.marquee-item img {
    width: 135px;
    height: 70px;
    object-fit: contain;
    display: block;
    opacity: .7;
    /* filter: grayscale(0%); */
    transition: all .35s var(--ease);
}

.marquee-item:hover {
    color: #fff;
    border-color: var(--brand-line);
    background: var(--surface-2);
    box-shadow: 0 0 26px rgba(18, 185, 141, .18);
}

.marquee-item:hover img {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.12);
}

/* ==========================================================================
   08. Services
   ========================================================================== */
.service-card {
    position: relative;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    overflow: hidden;
    text-align: center;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, #4fdcb1 0%, var(--brand) 55%, #0e9a75 100%);
    opacity: 0;
    transition: opacity .45s var(--ease);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 26px 60px rgba(18, 185, 141, .35), 0 0 0 1px rgba(18, 185, 141, .5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-media {
    height: 148px;
    border-radius: var(--radius);
    background: linear-gradient(150deg, rgba(18, 185, 141, .22), rgba(18, 185, 141, .04));
    border: 1px solid var(--brand-line);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    transition: all .45s var(--ease);
}

.service-card:hover .service-media {
    background: rgba(3, 12, 9, .82);
    border-color: rgba(255, 255, 255, .5);
}

.s-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, var(--brand-2), var(--brand-3));
    color: #02120d;
    font-size: 25px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
    transition: transform .55s var(--ease), box-shadow .45s var(--ease);
    cursor: pointer;
}

.service-card:hover .s-icon {
    transform: rotateY(180deg);
}

.s-icon:hover {
    transform: rotateY(360deg) scale(1.12) !important;
    box-shadow: 0 0 0 7px rgba(18, 185, 141, .2), 0 12px 30px rgba(0, 0, 0, .45);
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
    transition: color .35s var(--ease);
}

.service-card p {
    font-size: 14.5px;
    margin-bottom: 18px;
    transition: color .35s var(--ease);
}

.service-card:hover h3 {
    color: #fff;
}

.service-card:hover p {
    color: rgba(255, 255, 255, .92);
}

.s-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--brand);
    font-size: 15px;
    margin: 0 auto;
    transition: all .4s var(--ease);
}

.s-arrow:hover {
    background: #02120d;
    color: var(--brand-2);
    transform: scale(1.14) rotate(-45deg);
}

.service-card:hover .s-arrow {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .3);
}

/* ==========================================================================
   09. Stats Odometer Band
   ========================================================================== */
.stats-band {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat-box {
    text-align: center;
    padding: 18px 10px;
    position: relative;    box-shadow: 0 26px 60px rgba(18, 185, 141, .35), 0 0 0 1px rgba(18, 185, 141, .5);

}


.stat-value {
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -.02em;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    margin-top: 12px;
    margin-bottom: 0;
}

.stat-box:hover .stat-value {
    position: relative;
    z-index: 1;
    transform: scale(1.06);
    text-shadow: none;
}

.stat-box:hover .stat-value::before {
    content: "";
    position: absolute;
    inset: 20% -10%;
    background: rgba(63, 224, 176, 0.35);
    filter: blur(25px);
    border-radius: 0px;
    z-index: -1;
    opacity: 0.8;
}

/* odometer digit roller */
.odometer {
    display: inline-flex;
    align-items: flex-start;
    line-height: 1;
}

.odo-d {
    display: inline-block;
    height: 1em;
    overflow: hidden;
}

.odo-strip {
    display: block;
    transition: transform 1.7s cubic-bezier(.22, .8, .28, 1);
}

.odo-strip span {
    display: block;
    height: 1em;
    line-height: 1;
}

.odo-static {
    display: inline-block;
}

/* ==========================================================================
   10. Process Accordion
   ========================================================================== */
.process-acc .accordion-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius) !important;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all .4s var(--ease);
}

.process-acc .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: var(--brand-line);
    box-shadow: 0 18px 44px rgba(18, 185, 141, .16);
    background: var(--surface-2);
}

.process-acc .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    padding: 20px 22px;
    box-shadow: none !important;
    gap: 16px;
}

.process-acc .accordion-button:not(.collapsed) {
    color: var(--brand-2);
}

.process-acc .accordion-button::after {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background: none;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--brand-2);
    font-size: 13px;
    transition: all .35s var(--ease);
    flex-shrink: 0;
}

.process-acc .accordion-button:not(.collapsed)::after {
    content: "\f068";
    transform: rotate(180deg);
    background: linear-gradient(96deg, var(--brand-2), var(--brand));
    border-color: transparent;
    color: #02120d;
}

.process-step-no {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--surface-3);
    border: 1px solid var(--line);
    color: var(--brand-2);
    font-size: 14px;
    font-weight: 800;
    transition: all .35s var(--ease);
}

.process-acc .accordion-button:not(.collapsed) .process-step-no {
    background: linear-gradient(140deg, var(--brand-2), var(--brand));
    color: #02120d;
    border-color: transparent;
}

.process-acc .accordion-body {
    padding: 0 22px 22px 80px;
    color: var(--muted);
    font-size: 15px;
}

.process-acc .accordion-body ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.process-acc .accordion-body ul li {
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 40px;
    background: var(--surface-3);
    border: 1px solid var(--line);
    color: var(--text);
}

/* ==========================================================================
   11. Why Choose Us — animated draw border
   ========================================================================== */
.wcu-card {
    position: relative;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px 28px 30px;
    overflow: hidden;
    transition: transform .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease);
}

.wcu-card:hover {
    transform: translateY(-8px);
    background: var(--surface-2);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .5), 0 0 40px rgba(18, 185, 141, .12);
}

/* the stroke draws in from the bottom-right corner and travels around */
.draw-border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform: rotate(180deg);
    z-index: 2;
}

.draw-border rect {
    fill: none;
    stroke: url(#drawGrad);
    stroke-width: 4;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.1s var(--ease);
}

.wcu-card:hover .draw-border rect {
    stroke-dashoffset: 0;
}

.wcu-card:hover .draw-border {
    filter: drop-shadow(0 0 6px rgba(18, 185, 141, .75));
}

.wcu-icon-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.wcu-icon-row::before,
.wcu-icon-row::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.wcu-icon {
    width: 66px;
    height: 66px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--surface-3);
    border: 1px solid var(--brand-line);
    color: var(--brand-2);
    font-size: 25px;
    transition: all .5s var(--ease);
}

.wcu-card:hover .wcu-icon {
    background: linear-gradient(140deg, var(--brand-2), var(--brand));
    color: #02120d;
    transform: rotateY(180deg);
    box-shadow: 0 0 0 8px rgba(18, 185, 141, .12);
}

.wcu-card h3 {
    font-size: 20px;
    margin-bottom: 18px;
}

.wcu-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14.5px;
    color: var(--muted);
    margin-bottom: 10px;
}

.wcu-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 8px rgba(18, 185, 141, .6);
}

.wcu-list li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   12. Portfolio
   ========================================================================== */
.folio-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    height: 100%;
}

.folio-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--surface-2);
}

.folio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .5s var(--ease);
    filter: grayscale(.4) brightness(.72);
}

.folio-card:hover .folio-thumb img {
    transform: scale(1.09);
    filter: grayscale(0) brightness(.85);
}

.folio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 12, 9, .1) 30%, rgba(3, 12, 9, .92) 100%);
    display: flex;
    align-items: flex-end;
    padding: 22px;
    opacity: 1;
}

.folio-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 40px;
    background: rgba(3, 12, 9, .75);
    border: 1px solid var(--brand-line);
    color: var(--brand-2);
    backdrop-filter: blur(6px);
}

.folio-info h3 {
    font-size: 19px;
    margin-bottom: 6px;
}

.folio-info p {
    font-size: 13.5px;
    margin-bottom: 0;
}

.folio-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 22px;
    border-top: 1px solid var(--line);
}

.folio-meta span {
    font-size: 13px;
    color: var(--muted);
}

.folio-go {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--brand-2);
    font-size: 13px;
    transition: all .4s var(--ease);
}

.folio-card:hover .folio-go {
    background: linear-gradient(96deg, var(--brand-2), var(--brand));
    color: #02120d;
    border-color: transparent;
    transform: rotate(-45deg);
}

/* ==========================================================================
   13. Industries Slider
   ========================================================================== */
.industry-card {
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    transition: all .45s var(--ease);
}

.industry-card:hover {
    /* transform: translateY(-8px); */
    border-color: var(--brand-line);
    background: var(--surface-2);
    box-shadow: 0 0 0 1px var(--brand-line), 0 24px 60px rgba(18, 185, 141, .22);
}

.industry-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    color: var(--brand-2);
    font-size: 22px;
    margin-bottom: 20px;
    transition: all .45s var(--ease);
}

.industry-card:hover .industry-icon {
    background: linear-gradient(140deg, var(--brand-2), var(--brand));
    color: #02120d;
    transform: rotate(-8deg) scale(1.06);
}

.industry-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 14.5px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.industry-tags li {
    font-size: 12.5px;
    padding: 5px 13px;
    border-radius: 40px;
    background: var(--surface-3);
    border: 1px solid var(--line);
    color: var(--muted);
    transition: all .35s var(--ease);
}

.industry-card:hover .industry-tags li {
    border-color: var(--brand-line);
    color: var(--text);
}

/* swiper */
.swiper {
    padding-bottom: 62px !important;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination-bullet {
    background: #3a4f48;
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all .3s var(--ease);
}

.swiper-pagination-bullet-active {
    background: var(--brand-2);
    width: 26px;
    border-radius: 6px;
}

.swiper-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 6px;
}

.swiper-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--brand-2);
    cursor: pointer;
    transition: all .35s var(--ease);
}

.swiper-btn:hover {
    background: linear-gradient(96deg, var(--brand-2), var(--brand));
    color: #02120d;
    border-color: transparent;
}

/* ==========================================================================
   14. Impact — progress lines + odometer
   ========================================================================== */
.impact-wrap {
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 46px 40px;
}

.impact-item+.impact-item {
    margin-top: 30px;
}

.impact-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.impact-top h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--text);
}

.impact-num {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.impact-bar {
    height: 8px;
    border-radius: 40px;
    background: var(--surface-3);
    overflow: hidden;
    border: 1px solid var(--line);
}

.impact-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 40px;
    background: linear-gradient(90deg, var(--brand-3), var(--brand), var(--brand-2));
    box-shadow: 0 0 18px rgba(18, 185, 141, .5);
    transition: width 1.8s cubic-bezier(.22, .8, .28, 1);
}

/* ==========================================================================
   15. Team
   ========================================================================== */
.team-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--surface-2);
    border: 1px solid var(--line);
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .5s var(--ease);
}

.team-card:hover img {
    transform: scale(1.07);
    filter: brightness(.55) saturate(.85);
}

.team-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 20, 15, .55) 0%, rgba(4, 32, 24, .35) 45%, rgba(2, 16, 12, .95) 100%);
    opacity: 0;
    transition: opacity .5s var(--ease);
}

.team-card:hover::after {
    opacity: 1;
}

.team-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    text-align: right;
    z-index: 3;
    transform: translateY(24px);
    opacity: 0;
    transition: all .5s var(--ease) .1s;
}

.team-card:hover .team-info {
    transform: translateY(0);
    opacity: 1;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 2px;
}

.team-info span {
    color: var(--brand-2);
    font-size: 14px;
    font-weight: 500;
}

.team-social {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, var(--brand-2), var(--brand));
    color: #02120d;
    font-size: 15px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
    transform: translateX(-80px);
    opacity: 0;
    transition: transform .5s var(--ease), opacity .5s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}

.team-social a:first-child {
    transform: translateX(0);
    opacity: 1;
}

.team-card:hover .team-social a {
    transform: translateX(0);
    opacity: 1;
}

.team-card:hover .team-social a:nth-child(2) {
    transition-delay: .06s;
}

.team-card:hover .team-social a:nth-child(3) {
    transition-delay: .12s;
}

.team-card:hover .team-social a:nth-child(4) {
    transition-delay: .18s;
}

.team-card:hover .team-social a:nth-child(5) {
    transition-delay: .24s;
}

.team-social a:hover {
    background: #fff;
    color: var(--brand-3);
    transform: translateX(0) scale(1.16) rotate(8deg) !important;
    box-shadow: 0 0 0 6px rgba(18, 185, 141, .22), 0 12px 28px rgba(0, 0, 0, .45);
}

/* ==========================================================================
   16. Pricing
   ========================================================================== */
.price-card {
    position: relative;
    height: 100%;
    background: linear-gradient(170deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    transition: all .45s var(--ease);
}

.price-card:hover,
.price-card.is-popular {
    transform: translateY(-10px);
    border-color: var(--brand);
    box-shadow: 0 0 0 1px var(--brand), 0 0 46px rgba(18, 185, 141, .35), 0 30px 70px rgba(0, 0, 0, .55);
}

.price-card.is-popular {
    transform: none;
}

.price-card.is-popular:hover {
    transform: translateY(-10px);
}

.price-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 40px;
    background: linear-gradient(96deg, var(--brand-2), var(--brand));
    color: #02120d;
}

.price-name {
    color: var(--brand-2);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 14px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.price-amount strong {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    color: #fff;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1;
}

.price-amount span {
    font-size: 14px;
    color: var(--muted);
}

.price-card>p {
    font-size: 14.5px;
}

.price-list {
    margin: 22px 0 26px;
    border-top: 1px solid var(--line);
    padding-top: 22px;
}

.price-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--text);
    margin-bottom: 13px;
}

.price-list li i {
    color: var(--brand-2);
    font-size: 16px;
    margin-top: 3px;
}

.price-list li.is-off {
    color: #5d726c;
}

.price-list li.is-off i {
    color: #3b4a45;
}

.price-note {
    font-size: 12.5px;
    color: var(--muted);
    text-align: center;
    margin: 14px 0 0;
}

/* ==========================================================================
   17. Testimonials
   ========================================================================== */
.tst-card {
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    transition: all .45s var(--ease);
}

.tst-card:hover {
    border-color: var(--brand-line);
    background: var(--surface-2);
    box-shadow: 0 0 0 1px var(--brand-line), 0 24px 60px rgba(18, 185, 141, .2);
    /* transform: translateY(-8px); */
}

.tst-quote {
    font-size: 30px;
    color: var(--brand);
    opacity: .35;
    line-height: 1;
    margin-bottom: 12px;
}

.tst-stars {
    color: #ffc107;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.tst-card p {
    font-size: 15px;
    color: var(--text);
}

.tst-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.tst-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, var(--brand-2), var(--brand-3));
    color: #02120d;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.tst-author h4 {
    font-size: 15.5px;
    margin: 0;
}

.tst-author span {
    font-size: 13px;
    color: var(--muted);
}

/* ==========================================================================
   18. FAQ
   ========================================================================== */
.faq-acc .accordion-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-acc .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: var(--brand-line);
    background: var(--surface-2);
}

.faq-acc .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 19px 22px;
    box-shadow: none !important;
}

.faq-acc .accordion-button:not(.collapsed) {
    color: var(--brand-2);
}

.faq-acc .accordion-button::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background: none;
    color: var(--brand-2);
    width: auto;
    height: auto;
    transition: transform .35s var(--ease);
}

.faq-acc .accordion-body {
    padding: 0 22px 22px;
    color: var(--muted);
    font-size: 15px;
}

.faq-cta {
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    text-align: center;
    position: sticky;
    top: 110px;
}

.faq-cta .wcu-icon {
    margin: 0 auto 20px;
}

/* ==========================================================================
   19. Contact
   ========================================================================== */
.contact-wrap {
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 46px 42px;
}

.form-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    background: #071310;
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 14px;
    padding: 13px 18px;
    font-size: 15px;
    transition: all .3s var(--ease);
}

.form-control::placeholder {
    color: #5d726c;
}

.form-control:focus,
.form-select:focus {
    background: #071310;
    color: var(--text);
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(18, 185, 141, .16);
}

.form-select option {
    background: #0b1512;
    color: var(--text);
}

.form-check-input {
    background-color: #071310;
    border-color: var(--line);
}

.form-check-input:checked {
    background-color: var(--brand);
    border-color: var(--brand);
}

.form-check-label {
    font-size: 13.5px;
    color: var(--muted);
}

.invalid-feedback {
    font-size: 12.5px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    color: var(--brand-2);
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 14.5px;
    margin-bottom: 22px;
}

.form-success.show {
    display: flex;
}

.contact-aside {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    gap: 16px;
    transition: all .4s var(--ease);
}

.contact-box:hover {
    border-color: var(--brand-line);
    background: var(--surface-2);
    transform: translateX(6px);
}

.contact-box i {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    color: var(--brand-2);
    font-size: 17px;
}

.contact-box h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-box p,
.contact-box a {
    font-size: 14px;
    margin: 0;
    display: block;
    color: var(--muted);
}

.contact-box a:hover {
    color: var(--brand-2);
}

/* ==========================================================================
   20. Review Platforms
   ========================================================================== */
.review-card {
    display: block;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all .45s var(--ease);
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-line);
    background: var(--surface-2);
    box-shadow: 0 0 0 1px var(--brand-line), 0 24px 60px rgba(18, 185, 141, .22);
}

.review-logo {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--surface-3);
    border: 1px solid var(--line);
    font-size: 24px;
    transition: all .45s var(--ease);
}

.review-card:hover .review-logo {
    transform: rotateY(360deg);
    border-color: var(--brand-line);
}

.review-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.review-card p {
    font-size: 13.5px;
    margin-bottom: 14px;
}

.review-stars {
    color: #ffc107;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--brand-2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.review-card:hover .review-link i {
    transform: translateX(4px);
}

.review-link i {
    transition: transform .35s var(--ease);
}

/* ==========================================================================
   21. Footer
   ========================================================================== */
.footer {
    position: relative;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    padding: 80px 0 0;
    overflow: hidden;
}

.footer-motif {
    position: absolute;
    right: 0;
    bottom: 90px;
    width: 260px;
    opacity: .12;
    pointer-events: none;
}

.footer-motif2 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .06;
    pointer-events: none;
}

.footer .container-fluid {
    position: relative;
    z-index: 2;
}

.footer-top {
    padding-bottom: 44px;
    margin-bottom: 44px;
    border-bottom: 1px solid var(--line);
}

.footer .widget-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brand-2);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 11px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-links li i {
    color: var(--brand);
    font-size: 13px;
    margin-top: 6px;
    flex-shrink: 0;
}

.footer-links a {
    color: var(--muted);
    font-size: 14.5px;
    transition: all .3s var(--ease);
}

.footer-links a:hover {
    color: var(--brand-2);
}

.footer-links li:not(:has(i)) a {
    position: relative;
    padding-left: 0;
}

.footer-links li:not(:has(i)) a:hover {
    padding-left: 6px;
}

.footer-logo-widget img {
    width: 210px;
    margin-bottom: 20px;
}

.footer-logo-widget p {
    font-size: 14.5px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
    transition: all .35s var(--ease);
}

.footer-social a:hover {
    background: linear-gradient(96deg, var(--brand-2), var(--brand));
    color: #02120d;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(28, 105, 85, 0.192);
}

.copyright {
    margin-top: 60px;
    border-top: 1px solid var(--line);
    padding: 22px 0;
}

.copyright p {
    margin: 0;
    font-size: 13.5px;
    text-align: center;
}

/* ==========================================================================
   22. Floating Actions
   ========================================================================== */
.float-actions {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-actions a,
.float-actions button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--brand-2);
    font-size: 17px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
    transition: all .35s var(--ease);
}

.float-actions a:hover,
.float-actions button:hover {
    background: linear-gradient(96deg, var(--brand-2), var(--brand));
    color: #02120d;
    border-color: transparent;
    transform: translateY(-4px);
}

.float-actions .wa {
    background: #25d366;
    color: #04240f;
    border-color: transparent;
}

#toTop {
    opacity: 0;
    visibility: hidden;
}

#toTop.show {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   23. Reveal Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   24. Responsive
   ========================================================================== */
@media (max-width: 1199.98px) {
    .headerTop .nav-link {
        font-size: 14px;
        padding: 10px 9px !important;
    }

    .headerTop .navbar-brand img {
        width: 165px;
    }
}

@media (max-width: 991.98px) {

    /* No backdrop-filter below lg: it would turn the header into the containing
       block for the fixed mobile menu panel and shrink it to the header box. */
    .headerTop,
    .headerTop.sticky {
        padding: 10px 0;
        background: rgba(4, 10, 8, .96);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .headerTop .navbar-collapse {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(420px, 100%);
        background: #060d0b;
        border-left: 1px solid var(--line);
        padding: 76px 22px 30px;
        overflow-y: auto;
        box-shadow: -20px 0 60px rgba(0, 0, 0, .6);
    }

    .headerTop .navbar-collapse.collapsing {
        transition: none;
    }

    .headerTop .navbar-nav {
        gap: 0;
        align-items: stretch;
    }

    .headerTop .real-menu>.nav-item {
        border-bottom: 1px solid var(--line);
    }

    .headerTop .real-menu>.nav-item>.nav-link::after {
        display: none;
    }

    .headerTop .nav-link {
        padding: 10px 30px !important;
        font-size: 15.5px;
    }

    .headerTop .dropdown-menu {
        border: 0;
        background: transparent;
        box-shadow: none;
        padding: 0 0 12px 12px;
        margin: 0;
        min-width: 100%;
        border-left: 1px solid var(--line);
    }

    .headerTop .mega-menu {
        width: 100%;
        left: 0;
        transform: none;
        padding: 0 0 12px 12px;
    }

    .headerTop .mega-menu .container-fluid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mega-menu-column {
        padding: 20px ;
    }

    .hero {
        padding: 130px 0 70px;
        text-align: center;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-points,
    .hero-mini {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 54px;
    }

    .section {
        padding: 74px 0;
    }

    .impact-wrap,
    .contact-wrap {
        padding: 32px 24px;
    }

    .faq-cta {
        position: static;
        margin-top: 24px;
    }
}

@media (max-width: 767.98px) {
    .container-fluid {
        padding: 0 5px;
    }

    body {
        font-size: 15.5px;
    }

    .section {
        padding: 62px 0;
    }

    .section-head {
        margin-bottom: 40px;
    }

    .hero {
        padding: 116px 0 60px;
    }

    .hero-mini {
        gap: 24px;
    }

    .hero-visual {
        padding: 10px 26px;
    }

    .float-badge {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .float-badge svg {
        width: 32px;
        height: 32px;
    }

    .badge-robot {
        left: -4px;
    }

    .badge-chip {
        left: 0;
    }

    .badge-bulb {
        right: -2px;
    }

    .stat-box+.stat-box::before {
        display: none;
    }

    .process-acc .accordion-body {
        padding-left: 22px;
    }

    .process-acc .accordion-button {
        font-size: 15.5px;
        padding: 16px;
        gap: 12px;
    }

    .process-step-no {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .wcu-card,
    .price-card,
    .industry-card {
        padding: 26px 22px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14.5px;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-motif {
        width: 170px;
    }
}

@media (max-width: 575.98px) {
    .hero-points {
        gap: 8px 16px;
    }

    .hero-points li {
        font-size: 13.5px;
    }

    .float-actions {
        right: 14px;
        bottom: 16px;
    }

    .float-actions a,
    .float-actions button {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .marquee-item {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Sticky sirf desktop pe — taaki mobile pe content stack hone par atka na rahe */
@media (min-width: 992px) {
    .sticky-wrap {
        position: sticky;
        top: 110px;   /* apne fixed header ki height + thoda gap ke hisab se adjust kar */
        align-self: flex-start; /* agar parent flex row hai to zaroori hai */
    }
}

.folio-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.folio-card-link:hover,
.folio-card-link:focus {
    color: inherit;
    text-decoration: none;
}

.folio-card-link .folio-card {
    height: 100%;
    cursor: pointer;
}

.folio-card-link:focus-visible {
    outline: 2px solid #00a896;
    outline-offset: 5px;
    border-radius: 18px;
}

/* ---------- Review Us On widget ---------- */
.review-widget .widget-title {
    padding: 0;
    border: 0;
    margin-bottom: 18px;
}

.review-eyebrow {
    display: inline-block;
    position: relative;
    color: var(--brand-2);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.review-eyebrow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--brand-2);
}

.review-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.review-cards a {
    position: relative;
    flex: 1 1 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.review-cards a img {
  
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1) brightness(1.8);
    opacity: .9;
    transition: filter .3s var(--ease), opacity .3s var(--ease);
}

/* bottom glow line, jaise reference image me hai */
.review-cards a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: var(--brand-2);
    box-shadow: 0 0 18px 4px var(--brand-2);
    opacity: 0;
    transition: opacity .35s var(--ease);
}

.review-cards a:hover {
    border-color: var(--brand-2);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}
.review-cards a:hover img {
    filter: none;
    opacity: 1;
}
.review-cards a:hover::after {
    opacity: 1;
}

@media (max-width: 575.98px) {
    .review-cards a { flex: 1 1 calc(50% - 8px); height: 78px; padding: 10px 14px; }
    .review-cards a img { max-height: 28px; }
}