:root {
    --primary: #E85D04;
    --primary-dark: #C24A03;
    --primary-light: #FE8302;
    --primary-glow: rgba(232, 93, 4, 0.2);
    --secondary: #0066C8;
    --bg: #fcfcfc;
    --bg-secondary: #fcfcfc;
    --bg-card: #Fcfcfc;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-hover: rgba(255, 255, 255, 0.9);
    --text: #1A1A1A;
    --text-secondary: rgba(0, 0, 0, 0.55);
    --text-muted: rgba(0, 0, 0, 0.3);
    --border: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(0, 0, 0, 0.12);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --font: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --container: 1200px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

::selection {
    background: var(--primary);
    color: #fff
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px
}

section#why-us {
    padding-top: 0px !important;
}

.section {
    padding: 100px 0;
    position: relative
}

.section-header {
    text-align: center;
    margin-bottom: 72px
}

.section-tag {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #005CBF;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.section-tag img {
    width: 18px;
    height: 18px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto
}

.text-center {
    text-align: center
}


/* ===== LOADER ===== */

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.loader-content {
    text-align: center
}

.loader-logo {
    margin-bottom: 24px
}

.loader-logo-img {
    height: 200px;
    margin: 0 auto
}

.loader-bar-wrap {
    display: flex;
    align-items: center;
    gap: 16px
}

.loader-bar {
    flex: 1;
    width: 280px;
    height: 4px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden
}

.loader-bar-fill {
    height: 100%;
    width: 0;
    background: var(--primary);
    border-radius: 4px;
    transition: width 0.3s
}

.loader-pct {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    min-width: 40px;
    text-align: right
}


/* ===== CUSTOM CURSOR ===== */

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    border-radius: 50%
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary)
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--primary);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out)
}

.cursor-ring.hover {
    width: 52px;
    height: 52px;
    border-color: var(--primary);
    background: rgba(232, 93, 4, 0.06)
}

.cursor-dot.hide,
.cursor-ring.hide {
    opacity: 0
}

@media(max-width:1023px) {
    .cursor-dot,
    .cursor-ring {
        display: none
    }
}


/* ===== BUTTONS (reference style) ===== */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    perspective: 1000px;
    border-radius: 50px;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    min-width: 160px;
    height: 55px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
    background: #e85d04;
    color: #fff
}

.btn[data-front]::before,
.btn[data-front]::after,
.contact-btn[data-front]::before,
.contact-btn[data-front]::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em
}

.btn[data-front]::before,
.contact-btn[data-front]::before {
    content: attr(data-front);
    background: #e85d04;
    color: #fff;
    z-index: 2;
    transform: translateY(0) rotateX(0);
    opacity: 1
}

.btn[data-front]::after,
.contact-btn[data-front]::after {
    content: attr(data-back);
    background: #fff;
    color: #e85d04;
    border: 1px solid #e85d04;
    z-index: 1;
    transform: translateY(-100%) rotateX(90deg);
    opacity: 0
}

.btn[data-front]:hover::before,
.contact-btn[data-front]:hover::before {
    transform: translateY(100%) rotateX(-90deg);
    opacity: 0
}

.btn[data-front]:hover::after,
.contact-btn[data-front]:hover::after {
    transform: translateY(0) rotateX(0);
    opacity: 1
}

.btn[data-front]>*,
.contact-btn[data-front]>* {
    opacity: 0!important;
    visibility: hidden!important
}

.btn-outline {
    background: transparent;
    color: #e85d04;
    border: 2px solid #e85d04
}

.btn-outline[data-front]::before {
    background: transparent;
    color: #e85d04
}

.btn-outline[data-front]::after {
    background: #e85d04;
    color: #fff
}

.btn-sm {
    min-width: 130px;
    height: 42px;
    padding: 10px 24px;
    font-size: 12px
}

.btn-lg {
    min-width: 190px;
    height: 62px;
    padding: 18px 48px;
    font-size: 16px
}

.btn-block {
    width: 100%;
    min-width: 0
}


/* .btn-glow {
    box-shadow: 0 8px 32px rgba(230, 0, 35, 0.25)
}

.btn-glow:hover {
    box-shadow: 0 12px 40px rgba(230, 0, 35, 0.4)
} */

.submit-btn {
    background: #e85d04;
    color: #fff
}

.btn:disabled,
.btn.disabled {
    opacity: 0.5;
    pointer-events: none
}

@media(max-width:767px) {
    .btn {
        min-width: 140px;
        height: 48px;
        padding: 12px 28px;
        font-size: 13px
    }
    .btn-lg {
        min-width: 170px;
        height: 54px;
        padding: 14px 36px;
        font-size: 15px
    }
    .btn-sm {
        min-width: 120px;
        height: 38px;
        padding: 8px 20px;
        font-size: 11px
    }
}


/* ===== HEADER (reference style) ===== */

.main-header.header-style-one {
    position: fixed!important;
    top: 0!important;
    left: 0!important;
    right: 0!important;
    width: 100%!important;
    background: transparent!important;
    z-index: 100000!important;
    padding: 15px 0!important
}

.header-1 .container {
    max-width: 1680px!important
}

.header-1 .main-box {
    display: flex!important;
    align-items: center!important;
    justify-content: space-between!important;
    background: transparent!important;
    border: none!important;
    box-shadow: none!important
}

.header-lower {
    width: 100%
}

.main-header .logo {
    display: flex;
    align-items: center
}

.main-header .logo img {
    max-height: 100px !important;
    width: 190px;
    height: auto;
    max-height: 100px;
    object-fit: contain
}

.main-header .nav-outer {
    display: flex!important;
    align-items: center!important;
    flex: 1
}

.main-header .nav-outer>.main-menu {
    margin: auto
}

.main-header .nav-outer .main-menu .navigation {
    background: #ffffff!important;
    padding: 25px 30px!important;
    border-radius: 50px!important;
    display: flex!important;
    align-items: center!important;
    gap: 5px!important;
    margin: 0!important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1)!important
}

.main-header .nav-outer .main-menu .navigation>li {
    padding: 0!important
}

.main-header .nav-outer .main-menu .navigation>li>a {
    color: #333333!important;
    font-size: 14px!important;
    font-weight: 600!important;
    text-transform: capitalize!important;
    padding: 10px 15px!important;
    position: relative!important;
    transition: all 0.3s ease!important
}

.main-header .nav-outer .main-menu .navigation>li>a::after {
    content: ''!important;
    position: absolute!important;
    bottom: 5px!important;
    left: 15px!important;
    right: 15px!important;
    height: 2px!important;
    background-color: #e85d04!important;
    transform: scaleX(0)!important;
    transition: transform 0.3s ease!important;
    transform-origin: center!important
}

.main-header .nav-outer .main-menu .navigation>li:hover>a::after,
.main-header .nav-outer .main-menu .navigation>li.current>a::after {
    transform: scaleX(1)!important
}

.main-header .nav-outer .main-menu .navigation>li:hover>a,
.main-header .nav-outer .main-menu .navigation>li.current>a {
    color: #333333!important
}

.main-header .nav-outer .main-menu .navigation li {
    position: relative!important
}

.main-header .nav-outer .main-menu .navigation>li>ul {
    background: #ffffff!important;
    border-radius: 15px!important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)!important;
    padding: 10px 0!important;
    width: 340px!important;
    display: none;
    left: 0;
    margin-top: 30px;
    opacity: 0;
    position: absolute;
    top: 100%;
    z-index: 100;
    transition: all 300ms ease
}

.main-header .nav-outer .main-menu .navigation>li.dropdown:hover>ul {
    margin-top: 0;
    opacity: 1;
    top: 100%;
    visibility: visible;
    display: block!important
}

@media(min-width:768px) {
    .main-header .nav-outer .main-menu .navigation>li>ul {
        display: block!important;
        visibility: hidden;
        opacity: 0
    }
    .main-header .nav-outer .main-menu .navigation>li.dropdown:hover>ul {
        visibility: visible;
        opacity: 1
    }
}

.main-header .nav-outer .main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

.main-header .nav-outer .main-menu .navigation>li>ul>li:last-child {
    border-bottom: none
}

.main-header .nav-outer .main-menu .navigation li ul li a {
    color: #333333!important;
    padding: 10px 25px!important;
    font-size: 14px!important;
    position: relative!important;
    display: block!important
}

.main-header .nav-outer .main-menu .navigation li ul li a::after {
    content: ''!important;
    position: absolute!important;
    bottom: 8px!important;
    left: 25px!important;
    right: 25px!important;
    height: 2px!important;
    background-color: #e85d04!important;
    transform: scaleX(0)!important;
    transition: transform 0.3s ease!important;
    transform-origin: center!important
}

.main-header .nav-outer .main-menu .navigation li ul li:hover>a::after {
    transform: scaleX(1)!important
}

.main-header .nav-outer .main-menu .navigation li ul li:hover>a {
    color: #e85d04!important
}

.main-header .nav-outer .main-menu .navigation>li.dropdown>a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 14px;
    transition: all 300ms ease;
    display: inline-block
}

.main-header .nav-outer .main-menu .navigation>li.dropdown:hover>a:after {
    transform: rotate(180deg)
}

.main-header .outer-box {
    display: flex!important;
    align-items: center!important
}

.header-1 .ui-btn-outer {
    display: flex!important;
    align-items: center!important;
    gap: 10px!important
}

.header-1 .ui-btn-outer .ui-btn-search {
    display: flex!important;
    align-items: center!important;
    gap: 20px!important
}

.main-header .search-btn {
    color: #ffffff!important
}

.header-1 .ui-btn-outer .search-btn {
    display: none!important
}

.main-header .contact-btn {
    position: relative;
    display: inline-flex!important;
    align-items: center;
    justify-content: center;
    overflow: hidden!important;
    perspective: 1000px;
    min-width: 132px;
    height: 45px;
    padding: 0!important;
    background: transparent!important;
    border: none!important;
    border-radius: 50px!important;
    color: transparent!important;
    cursor: pointer;
    text-decoration: none!important;
    box-shadow: none!important
}

.main-header .contact-btn[data-front]>* {
    opacity: 0!important;
    visibility: hidden!important
}

@media(min-width:1024px) {
    .main-header .contact-btn,
    .sticky-header .outer-box .contact-btn {
        margin-right: 85px!important
    }
}

@media(min-width:1200px) {
    .main-header .logo,
    .sticky-header .logo {
        margin-left: 85px
    }
}

.main-header .mobile-nav-toggler {
    display: none!important
}

@media(min-width:1200px) {
    .main-header.header-1 .mobile-nav-toggler {
        display: none!important
    }
}

@media(max-width:1199.98px) {
    .main-header .header-lower .main-box {
        display: flex!important;
        justify-content: space-between!important;
        align-items: center!important;
        width: 100%!important;
        flex-wrap: nowrap!important;
        gap: 12px!important
    }
    .main-header.header-style-one {
        padding: 12px 0!important
    }
    .main-header .logo {
        max-width: 190px!important;
        width: 190px!important;
        min-width: 190px!important;
        flex: 0 0 auto!important;
        margin: 0!important;
        padding: 0!important
    }
    .main-header .logo img {
        width: 100%!important;
        max-width: 100%!important;
        height: auto!important;
        display: block!important;
        max-height: 100px!important
    }
    .main-header.header-1 .mobile-nav-toggler {
        display: block!important
    }
    .main-header .nav-outer .main-menu .navigation {
        display: none!important
    }
    .main-header .nav-outer {
        flex: 0 0 auto!important;
        width: auto!important;
        margin-left: auto!important;
        display: flex!important;
        align-items: center!important;
        justify-content: flex-end!important
    }
    .main-header .outer-box {
        display: flex!important;
        align-items: center!important;
        justify-content: flex-end!important;
        gap: 14px!important;
        width: auto!important;
        flex-wrap: nowrap!important
    }
    .main-header .ui-btn-outer {
        display: flex!important;
        align-items: center!important;
        margin: 0!important
    }
    .main-header .ui-btn-search {
        display: flex!important;
        align-items: center!important
    }
    .main-header .contact-btn {
        min-width: 118px!important;
        height: 40px!important;
        padding: 0!important;
        margin: 0!important;
        display: inline-flex!important
    }
    .main-header .contact-btn::before,
    .main-header .contact-btn::after {
        font-size: 12px!important
    }
    .main-header .search-toggler {
        display: none!important
    }
    .main-header .mobile-nav-toggler {
        width: 44px!important;
        height: 44px!important;
        margin: 0!important;
        flex: 0 0 44px!important;
        border-radius: 50%!important;
        background: #e85d04!important;
        box-shadow: 0 12px 24px rgba(230, 0, 35, 0.28)!important;
        position: relative!important
    }
    .main-header .mobile-nav-toggler span {
        position: absolute;
        left: 50%!important;
        right: auto!important;
        width: 20px!important;
        height: 2px!important;
        background: #ffffff!important;
        transform: translateX(-50%)!important
    }
    .main-header .mobile-nav-toggler span:first-child {
        top: 14px!important
    }
    .main-header .mobile-nav-toggler span:nth-child(2) {
        top: 21px!important;
        width: 20px!important;
        margin-top: 0!important
    }
    .main-header .mobile-nav-toggler span:last-child {
        top: 28px!important;
        bottom: auto!important;
        width: 20px!important
    }
    .main-header .mobile-nav-toggler.active span:first-child {
        transform: translateX(-50%) rotate(45deg) translate(3px, 9px)!important
    }
    .main-header .mobile-nav-toggler.active span:nth-child(2) {
        opacity: 0!important
    }
    .main-header .mobile-nav-toggler.active span:last-child {
        transform: translateX(-50%) rotate(-45deg) translate(3px, -9px)!important
    }
}

@media(max-width:575px) {
    .main-header .logo {
        max-width: 170px!important;
        width: 170px!important;
        min-width: 170px!important;
        flex: 0 0 170px!important
    }
    .main-header .contact-btn {
        min-width: 108px!important;
        height: 38px!important;
        padding: 0!important
    }
    .main-header .contact-btn::before,
    .main-header .contact-btn::after {
        font-size: 11px!important
    }
}


/* ===== MOBILE MENU OVERLAY ===== */

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden
}

.mobile-menu .upper-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px
}

.mobile-menu .close-btn {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.5s ease;
    transform: translateY(-50px)
}

.mobile-menu .close-btn:hover {
    opacity: 0.5
}

.mobile-menu .nav-logo {
    width: 100%
}

.mobile-menu .nav-logo img {
    max-height: 40px;
    width: 150px;
    height: auto;
    object-fit: contain
}

.mobile-menu .menu-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #0a0808fb;
    padding: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transform: translateX(101%)
}

.mobile-menu .navigation {
    display: block!important;
    flex-direction: column!important;
    align-items: stretch!important;
    gap: 0!important;
    background: transparent!important;
    padding: 0!important;
    border-radius: 0!important;
    box-shadow: none!important
}

.mobile-menu .navigation>li {
    display: block!important;
    width: 100%!important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.mobile-menu .navigation>li>a,
.mobile-menu .navigation li ul li a {
    color: #ffffff!important;
    display: block!important;
    padding: 10px 20px!important;
    font-size: 16px!important;
    font-weight: 400!important;
    text-transform: capitalize!important
}

.mobile-menu .navigation>li>a::after,
.mobile-menu .navigation li ul li a::after {
    display: none!important;
    content: none!important
}

.mobile-menu .navigation li ul {
    background: transparent!important;
    border-radius: 0!important;
    box-shadow: none!important;
    padding: 0!important
}

.mobile-menu .navigation li:hover>a,
.mobile-menu .navigation li.current>a {
    color: #e85d04!important
}

.mobile-menu-visible {
    overflow: hidden!important
}

.mobile-menu-visible .mouseCursor,
.mobile-menu-visible #back-top {
    z-index: 1!important
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease 200ms;
    transform: translateX(0%)
}

.mobile-menu-visible .mobile-menu .close-btn {
    transform: translateY(0px)
}

.mobile-menu .contact-list-one {
    list-style: none;
    padding: 20px;
    margin: 0
}

.mobile-menu .contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px
}

.mobile-menu .contact-info-box .icon {
    font-size: 16px;
    color: #e85d04;
    margin-bottom: 2px
}

.mobile-menu .contact-info-box .title {
    font-weight: 600;
    color: #fff;
    font-size: 14px
}

.mobile-menu .contact-info-box a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s
}

.mobile-menu .contact-info-box a:hover {
    color: #fff
}

.mobile-menu .social-links {
    display: flex;
    gap: 10px;
    padding: 0 20px 30px;
    list-style: none
}

.mobile-menu .social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: all 0.3s;
    font-size: 14px
}

.mobile-menu .social-links a:hover {
    background: #e85d04;
    color: #fff
}


/* ===== SEARCH POPUP ===== */

.search-popup {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.search-popup.active {
    opacity: 1;
    visibility: visible
}

.search-popup .search-back-drop {
    position: absolute;
    inset: 0;
    cursor: pointer
}

.search-popup .close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2
}

.search-popup .search-inner {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 20px
}

.search-popup .form-group {
    display: flex;
    gap: 0
}

.search-popup input[type="search"] {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 24px;
    padding: 15px 0;
    outline: none
}

.search-popup input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.4)
}

.search-popup .form-group button {
    background: none;
    border: none;
    color: #e85d04;
    font-size: 24px;
    cursor: pointer;
    padding: 15px 0 15px 20px
}


/* ===== STICKY HEADER ===== */

.sticky-header {
    background-color: rgba(10, 8, 8, 0.984);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0 5px 1px rgba(0, 0, 0, 0.05);
    left: 0;
    opacity: 0;
    padding: 0;
    position: fixed;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 99999
}

.sticky-header.fixed-header {
    opacity: 1;
    visibility: visible;
    z-index: 100001
}

.sticky-header .auto-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%
}

.sticky-header .logo {
    padding: 10px 0;
    display: flex;
    align-items: center
}

.sticky-header .logo img {
    max-height: 100px;
    width: 190px;
    height: auto;
    object-fit: contain
}

.sticky-header .inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative
}

.sticky-header .nav-outer {
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    flex: 1
}

.sticky-header .nav-outer>.main-menu {
    margin: auto
}

@media(min-width:1200px) {
    .sticky-header .nav-outer .main-menu .navigation {
        display: flex!important;
        align-items: center;
        gap: 5px;
        margin: 0;
        list-style: none;
        background: #ffffff!important;
        padding: 15px 20px!important;
        border-radius: 50px!important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1)!important
    }
    .sticky-header .nav-outer .main-menu .navigation>li {
        margin: 0;
        margin-left: 20px;
        padding: 8px 0
    }
    .sticky-header .nav-outer .main-menu .navigation>li>a {
        color: #333!important;
        font-size: 14px;
        font-weight: 600!important;
        text-transform: capitalize!important;
        padding: 8px 12px!important;
        position: relative!important;
        text-decoration: none;
        transition: all 0.3s ease
    }
    .sticky-header .nav-outer .main-menu .navigation>li>a::after {
        content: ''!important;
        position: absolute!important;
        bottom: 5px!important;
        left: 12px!important;
        right: 12px!important;
        height: 2px!important;
        background: #e85d04!important;
        transform: scaleX(0)!important;
        transition: transform 0.3s ease!important;
        transform-origin: center!important
    }
    .sticky-header .nav-outer .main-menu .navigation>li:hover>a::after,
    .sticky-header .nav-outer .main-menu .navigation>li.current>a::after {
        transform: scaleX(1)!important
    }
    .sticky-header .nav-outer .main-menu .navigation>li:hover>a,
    .sticky-header .nav-outer .main-menu .navigation>li.current>a {
        color: #333!important
    }
    .sticky-header .outer-box .contact-btn {
        display: inline-flex!important
    }
}

@media(max-width:1199.98px) {
    .sticky-header .nav-outer .main-menu .navigation {
        display: none!important
    }
    .sticky-header .mobile-nav-toggler {
        display: flex!important
    }
    .sticky-header .outer-box .contact-btn {
        display: none!important
    }
}

.sticky-header .outer-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.sticky-header .outer-box .contact-btn {
    position: relative;
    display: inline-flex!important;
    align-items: center;
    justify-content: center;
    overflow: hidden!important;
    perspective: 1000px;
    min-width: 100px;
    height: 38px;
    padding: 0 20px!important;
    background: transparent!important;
    border: none!important;
    border-radius: 50px!important;
    color: transparent!important;
    cursor: pointer;
    text-decoration: none!important;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.3s ease
}

.sticky-header .mobile-nav-toggler {
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e85d04;
    box-shadow: 0 12px 24px rgba(230, 0, 35, 0.28);
    position: relative;
    border: none;
    flex-shrink: 0;
    display: none
}

.sticky-header .mobile-nav-toggler span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 1px
}

.sticky-header .mobile-nav-toggler span:first-child {
    top: 14px
}

.sticky-header .mobile-nav-toggler span:nth-child(2) {
    top: 21px
}

.sticky-header .mobile-nav-toggler span:last-child {
    top: 28px
}

.sticky-header .mobile-nav-toggler.active span:first-child {
    transform: translateX(-50%) rotate(45deg) translate(3px, 9px)
}

.sticky-header .mobile-nav-toggler.active span:nth-child(2) {
    opacity: 0
}

.sticky-header .mobile-nav-toggler.active span:last-child {
    transform: translateX(-50%) rotate(-45deg) translate(3px, -9px)
}

@media(min-width:1200px) {
    .sticky-header .mobile-nav-toggler {
        display: none!important
    }
}

.sticky-header.fixed-header.animated.slideInDown {
    animation-name: slideInDown;
    animation-duration: 0.7s
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%)
    }
    to {
        transform: translateY(0)
    }
}


/* ===== STICKY HEADER SUBMENU ===== */

.sticky-header .nav-outer .main-menu .navigation>li>ul {
    background: #ffffff!important;
    border-radius: 15px!important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)!important;
    padding: 10px 0!important;
    width: 340px!important;
    display: none;
    left: 0;
    margin-top: 30px;
    opacity: 0;
    position: absolute;
    top: 100%;
    z-index: 100;
    transition: all 300ms ease
}

.sticky-header .nav-outer .main-menu .navigation>li.dropdown:hover>ul {
    margin-top: 0;
    opacity: 1;
    top: 100%;
    visibility: visible;
    display: block!important
}

@media(min-width:768px) {
    .sticky-header .nav-outer .main-menu .navigation>li>ul {
        display: block!important;
        visibility: hidden;
        opacity: 0
    }
    .sticky-header .nav-outer .main-menu .navigation>li.dropdown:hover>ul {
        visibility: visible;
        opacity: 1
    }
}

.sticky-header .nav-outer .main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

.sticky-header .nav-outer .main-menu .navigation>li>ul>li:last-child {
    border-bottom: none
}

.sticky-header .nav-outer .main-menu .navigation li ul li a {
    color: #333333!important;
    padding: 10px 25px!important;
    font-size: 14px!important;
    position: relative!important;
    display: block!important
}

.sticky-header .nav-outer .main-menu .navigation li ul li a::after {
    content: ''!important;
    position: absolute!important;
    bottom: 8px!important;
    left: 25px!important;
    right: 25px!important;
    height: 2px!important;
    background-color: #e85d04!important;
    transform: scaleX(0)!important;
    transition: transform 0.3s ease!important;
    transform-origin: center!important
}

.sticky-header .nav-outer .main-menu .navigation li ul li:hover>a::after {
    transform: scaleX(1)!important
}

.sticky-header .nav-outer .main-menu .navigation li ul li:hover>a {
    color: #e85d04!important
}

.sticky-header .nav-outer .main-menu .navigation>li.dropdown>a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 14px;
    transition: all 300ms ease;
    display: inline-block
}

.sticky-header .nav-outer .main-menu .navigation>li.dropdown:hover>a:after {
    transform: rotate(180deg)
}


/* ===== HERO ===== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    padding: 180px 0 100px
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('new-hero-bg.png') center center / cover no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(232, 93, 4, 0.06) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 80% 60%, rgba(0, 102, 200, 0.04) 0%, transparent 60%)
}

.hero-particles {
    position: absolute;
    inset: 0
}

.hero-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 93, 4, 0.08) 0%, transparent 70%);
    top: 20%;
    right: -5%;
    filter: blur(60px)
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px
}

.hero-content {
    flex: 1;
    max-width: 640px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--glass);
    border: 1px solid var(--border);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px)
}

.hero-badge.reveal-up {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--ease-out)
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary)
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px
}

.hero-line {
    display: block;
    overflow: hidden
}

.hero-line .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%)
}

.hero-line .word.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--ease-out)
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero .hero-badge {
    color: #fff;
}

.hero .hero-title {
    color: #fff;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    opacity: 0;
    transform: translateY(20px)
}

.hero-subtitle.reveal-up {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--ease-out) 0.3s
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px)
}

.hero-buttons.reveal-up {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--ease-out) 0.5s
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px)
}

.hero-stats.reveal-up {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--ease-out) 0.7s
}

.hero-stat {
    text-align: center
}

.hero-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary)
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7)
}

.hero-stat-div {
    width: 1px;
    background: rgba(255, 255, 255, 0.15)
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px
}

.hero-visual-inner {
    width: 100%;
    max-width: 480px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s var(--ease-out)
}

.hero-visual-img {
    width: 100%;
    height: auto
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    animation: float 3s var(--ease-out) infinite;
    z-index: 2
}

.fc-1 {
    top: 10%;
    right: -8%;
    animation-delay: 0s
}

.fc-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 0.5s
}

.fc-3 {
    top: 50%;
    right: -6%;
    animation-delay: 1s
}

.fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.fc-info {
    display: flex;
    flex-direction: column
}

.fc-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.fc-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text)
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2
}

.scroll-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted)
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease infinite
}

@keyframes scrollLine {
    0% {
        transform: scaleY(1);
        transform-origin: top
    }
    50% {
        transform: scaleY(0);
        transform-origin: top
    }
    50.01% {
        transform-origin: bottom
    }
    100% {
        transform: scaleY(1);
        transform-origin: bottom
    }
}


/* ===== TRUSTED SECTION ===== */

.trusted {
    padding: 60px 0!important;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.trusted-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 32px
}

.marquee {
    overflow: hidden;
    width: 100%
}

.marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite
}

.marquee-group {
    display: flex;
    gap: 48px;
    align-items: center
}

.marquee-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(-50%)
    }
}


/* ===== SERVICES ===== */

.services {
    background: var(--bg-secondary)
}


/* ===== SERVICES INTERACTIVE ===== */

.services-interactive {
    display: flex;
    gap: 48px;
    align-items: flex-start
}

.services-nav-list {
    flex: 0 0 300px;
    display: none;
    flex-direction: column;
    gap: 2px;
    position: sticky;
    top: 120px
}

.services-nav-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.35s ease;
    user-select: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative
}

.services-nav-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.4s ease
}

.services-nav-item:hover {
    transform: translateX(6px)
}

.services-nav-item:hover::after {
    width: 40px
}

.services-nav-item.active::after {
    width: 60px
}

.services-nav-item.active {
    border-bottom-color: transparent
}

.service-nav-num {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 28px;
    transition: color 0.35s
}

.services-nav-item.active .service-nav-num {
    color: var(--primary)
}

.service-nav-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color 0.35s;
    line-height: 1.4
}

.services-nav-item.active .service-nav-title {
    color: var(--text);
    font-weight: 500
}

.services-panels {
    flex: 1;
    min-height: 480px;
    position: relative;
    overflow: hidden
}

.service-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none
}

.service-panel.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto
}

.service-panel.exit {
    opacity: 0;
    transform: translateX(-20px)
}

.panel-content-info {
    padding-top: 20px;
}

.panel-visual {
    width: 100%;
    max-height: 260px;
    overflow: hidden;
    border-radius: 12px
}

.panel-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px
}

.panel-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 820px
}

.panel-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease
}

.panel-link:hover {
    gap: 10px
}


/* ===== WHY CHOOSE US ===== */

.why-us {
    background: var(--bg)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px
}

.why-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease)
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05)
}

.why-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s var(--ease)
}

.why-card:hover .why-icon-wrap {
    background: var(--primary);
    transform: scale(1.1)
}

.why-icon {
    color: var(--primary);
    transition: all 0.4s var(--ease)
}

.why-card:hover .why-icon {
    color: #fff
}

.why-card:hover .why-icon svg {
    stroke: #fff
}


}
.why-title {
    font-family: var(--font-heading);
    font-size: 17px;
    margin-bottom: 10px
}
.why-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px
}
.why-progress {
    text-align: left
}
.why-progress-bar {
    height: 4px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px
}
.why-progress-fill {
    height: 100%;
    width: 0;
    background: var(--primary);
    border-radius: 4px;
    transition: width 1.5s var(--ease-out)
}
.why-progress-fill.animated {
    width: var(--target, 95%)
}
.why-progress-label {
    font-size: 12px;
    color: var(--text-muted)
}

/* ===== STATS SECTION ===== */
.stats {
    background: #080a0b;
    position: relative;
    overflow: hidden
}
.stats-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}
.stats-particles {
    position: absolute;
    inset: 0
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2
}
.stat-item {
    text-align: center
}
.stat-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 16px
}
.stat-ring-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}
.stat-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 4
}
.stat-ring-fill {
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 345.58;
    stroke-dashoffset: 345.58;
    transition: stroke-dashoffset 2s var(--ease-out)
}
.stat-ring-fill.animated {}
.stat-ring-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center
}
.stat-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #fff
}
.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5)
}
@media(max-width:991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
    }
}
@media(max-width:480px) {
    .stats-grid {
        grid-template-columns: 1fr
    }
}

/* ===== BRAND SHINE SECTION ===== */
.brand-shine-section {
    height: 250vh;
    background: transparent
}
.brand-shine-stage {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    perspective: 1600px
}
.brand-shine-laptop-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none
}
.brand-shine-laptop {
    width: min(58vw, 900px);
    transform-style: preserve-3d
}
.brand-shine-laptop-screen {
    position: relative;
    height: min(32vw, 470px);
    background: linear-gradient(180deg, #262626 0%, #0e0e0e 100%);
    border: 10px solid #5a5a5a;
    border-bottom-width: 12px;
    border-radius: 24px 24px 12px 12px;
    transform-origin: bottom center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden
}
.brand-shine-laptop-screen-inner {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 45%, rgba(230, 0, 35, 0.18), transparent 33%), linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.1))
}
.brand-shine-laptop-glow {
    position: absolute;
    inset: auto 14% 10% 14%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent)
}
.brand-shine-laptop-camera {
    position: absolute;
    top: 14px;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    border-radius: 50%;
    background: #1a1a1a;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05)
}
.brand-shine-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    padding: 54px 38px 34px;
    text-align: center
}
.brand-shine-title {
    margin: 0;
    color: #f5f1eb;
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 700;
    line-height: 0.86;
    letter-spacing: 0;
    text-transform: uppercase
}
.brand-shine-title span {
    display: block
}
.brand-shine-title em {
    color: #e85d04;
    font-family: "Times New Roman", serif;
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0
}
.brand-shine-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f5f1eb;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(245, 241, 235, 0.7);
    padding-bottom: 6px
}
.brand-shine-link:hover {
    color: #e85d04;
    border-color: #e85d04
}
.brand-shine-link-icon {
    font-size: 16px;
    line-height: 1
}
.brand-shine-card {
    position: absolute;
    z-index: 3;
    width: min(22vw, 320px);
    will-change: transform;
    transform-style: preserve-3d;
    top: 50%;
    left: 50%
}
.brand-shine-card-inner {
    position: relative;
    overflow: hidden;
    transform-origin: center center;
    will-change: transform;
    border-radius: 12px
}
.brand-shine-card-inner img {
    display: block;
    width: 100%;
    aspect-ratio: 0.75;
    object-fit: cover;
    backface-visibility: visible
}
.brand-shine-card--logo .brand-shine-card-inner {
    background: transparent;
    box-shadow: none
}
.brand-shine-card--logo .brand-shine-card-inner img {
    object-fit: contain;
    aspect-ratio: 1
}
.brand-shine-laptop-base {
    position: relative;
    width: 110%;
    height: 24px;
    margin-left: -5%;
    margin-top: -2px;
    background: linear-gradient(180deg, #bcbcbc 0%, #7c7c7c 100%);
    border-radius: 0 0 28px 28px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28)
}
.brand-shine-laptop-base::before {
    content: "";
    position: absolute;
    top: 0;
    left: 3%;
    right: 3%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3)
}
.brand-shine-laptop-trackpad {
    position: absolute;
    top: 5px;
    left: 50%;
    width: 16%;
    height: 9px;
    margin-left: -8%;
    border-radius: 0 0 10px 10px;
    background: rgba(0, 0, 0, 0.18)
}
@media(max-width:1199px) {
    .brand-shine-section {
        height: auto;
        overflow: hidden
    }
    
    .brand-shine-stage {
        min-height: 20vh !important;
        padding: 72px 24px;
        display: block
    }
    
    .brand-shine-content {
        position: absolute;
        inset: 0;
        gap: 16px;
        padding: 44px 28px 28px
    }
    
    .brand-shine-card {
        position: absolute;
        inset: auto;
        width: min(24vw, 250px);
        top: 50%;
        left: 50%
    }
    
    .brand-shine-card-inner {
        max-width: 100%
    }
}
@media(max-width:575px) {
    .brand-shine-stage {
        min-height: 56vh;
        padding: 42px 10px 24px;
    }
    
    .brand-shine-title {
        font-size: clamp(1.75rem, 10vw, 2.7rem);
    }
    
    .brand-shine-link {
        gap: 8px;
        font-size: 12px;
        letter-spacing: 0.06em
    }
    
    .brand-shine-card-inner img {
        aspect-ratio: 0.82
    }
}

/* ===== TESTIMONIALS ===== */
.testi-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}
.testi-slider {
    padding: 30px 10px 70px;
    position: relative;
}
.testi-slider .swiper-slide {
    height: auto;
    display: flex;
}
.testi-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: left;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e85d04;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
}
.testi-quote {
    text-align: left !important;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 20px;
    font-style: italic;
}
.testi-author strong {
    display: block;
    font-size: 16px;
    color: #111;
    margin-bottom: 2px;
}
.testi-author span {
    font-size: 13px;
    color: #999;
}
.testi-stars {
    margin-top: 12px;
    display: flex;
    gap: 3px;
    color: #f5a623;
    font-size: 14px;
}
.testi-stars .inactive {
    color: #ddd;
}
.testi-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.testi-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all .25s ease;
}
.testi-nav button:hover {
    border-color: #e85d04;
    color: #e85d04;
}

/* ===== MINIMAL BOOTSTRAP GRID ===== */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}
@media(min-width:576px) {
    .container {
        max-width: 540px
    }
}
@media(min-width:768px) {
    .container {
        max-width: 720px
    }
}
@media(min-width:992px) {
    .container {
        max-width: 960px
    }
}
@media(min-width:1200px) {
    .container {
        max-width: 1200px
    }
}
.row {
    display: flex;
    flex-wrap: wrap
}
.row.g-4 {
    margin: -8px
}
.row.g-4>[class*="col-"] {
    padding: 8px
}
.col-lg-5,
.col-lg-7,
.col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%
}
.align-items-center {
    align-items: center
}
.position-relative {
    position: relative
}
.mb-lg-0 {
    margin-bottom: 0
}
@media(min-width:576px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%
    }
}
@media(min-width:992px) {
    .col-lg-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%
    }
    
    .col-lg-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%
    }
}
.section-padding {
    padding: 100px 0
}

/* ===== ABOUT 2 ===== */
.about-2-section {
    background-color: #fcfcfc;
    overflow: hidden
}
section#services {
    padding-top: 0px !important;
}
.about-2-content .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #005CBF;
    margin-bottom: 18px
}
.about-2-content .sub-title img {
    width: 18px;
    height: 18px
}
.about-2-content .title {
    font-family: var(--font-heading);
    font-size: 39px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -1px
}
@media(max-width:1199.98px) {
    .about-2-content .title {
        font-size: 44px
    }
}
@media(max-width:767.98px) {
    .about-2-content .title {
        font-size: 40px
    }
}
@media(max-width:575.98px) {
    .about-2-content .title {
        font-size: 36px
    }
}
@media(max-width:469.98px) {
    .about-2-content .title {
        font-size: 28px
    }
}
.about-2-text {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px
}
.cursive {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    color: #262626;
    margin-top: 1rem
}
.cursive span {
    color: #005CBF;
    font-weight: 600
}
.about-2-grid-wrapper {
    position: relative;
    padding: 20px;
    max-width: 100%;
    margin: 0 auto
}
.about-2-card {
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 180px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    filter: grayscale(40%);
    cursor: pointer
}
.about-2-card:hover {
    transform: translateY(-5px);
    filter: grayscale(0%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08)
}
.center-anim-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08)
}
.center-anim-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 1px dashed rgba(232, 93, 4, 0.35);
    border-radius: 50%;
    animation: rotateDash 10s linear infinite
}
@keyframes rotateDash {
    0% {
        transform: rotate(0deg)
    }
    
    100% {
        transform: rotate(360deg)
    }
}
.center-anim-icon {
    width: 70px;
    height: 70px;
    background: #fffaf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

/* Card reveal animation */
.about-2-grid-wrapper .col-sm-6 {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1)
}
.about-2-grid-wrapper .col-sm-6:nth-child(1) {
    transform: translate(80px, 80px) scale(0.3)
}
.about-2-grid-wrapper .col-sm-6:nth-child(2) {
    transform: translate(-80px, 80px) scale(0.3)
}
.about-2-grid-wrapper .col-sm-6:nth-child(3) {
    transform: translate(80px, -80px) scale(0.3)
}
.about-2-grid-wrapper .col-sm-6:nth-child(4) {
    transform: translate(-80px, -80px) scale(0.3)
}
.about-2-grid-wrapper .col-sm-6.reveal-card {
    opacity: 1;
    transform: translate(0, 0) scale(1)
}

/* Center icon reveal */
.center-anim-icon-wrapper {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5) rotate(90deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1)
}
.center-anim-icon-wrapper.reveal-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg)
}

/* ===== PROCESS ===== */
.process {
    background: var(--bg-secondary)
}

/* ===== HOW WE WORK — reference match ===== */
.process-section.process-horizontal {
    position: relative;
    padding: 80px 0 80px;
    overflow: hidden;
}
.process-section.process-horizontal .process-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.process-section.process-horizontal .process-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}
.process-section.process-horizontal .process-inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
.process-section.process-horizontal .sec-title {
    text-align: center;
    margin-bottom: 48px;
}
.process-section.process-horizontal .sub-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    position: relative;
    color: #005CBF;
    font-family: inherit;
    display: inline-flex;
    margin-bottom: 18px;
}
.process-section.process-horizontal .sub-title img {
    margin-right: 8px;
}
.process-section.process-horizontal .title {
    margin: 0 0 16px;
    font-size: clamp(1.85rem, 3.2vw, 3rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f0f0f;
}
.process-section.process-horizontal .pb-5 {
    padding-bottom: 20px;
}
.process-section.process-horizontal .process-scroll-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 460px;
    padding: 20px 0 40px;
    box-sizing: border-box;
}
.process-section.process-horizontal .process-curve {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1180px;
    min-height: 400px;
    margin: 0 auto;
    padding: 110px 0 110px;
    isolation: isolate;
    contain: layout style;
}
.process-section.process-horizontal .process-curve-path {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    width: 100%;
    height: auto;
    max-height: 300px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}
.process-section.process-horizontal .process-path-shadow,
.process-section.process-horizontal .process-path-main {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.process-section.process-horizontal .process-path-shadow {
    stroke: rgba(230, 0, 35, 0.2);
    stroke-width: 14;
    opacity: 0.32;
}
.process-section.process-horizontal .process-path-main {
    stroke-width: 3.5;
    stroke: #e85d04;
}
.process-section.process-horizontal .process-path-progress {
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    pointer-events: none;
}
.process-section.process-horizontal .process-anchor {
    position: absolute;
    z-index: 2;
    width: 0;
    height: 0;
    transform-origin: center center;
}
.process-section.process-horizontal .process-dot {
    display: none;
}
.process-section.process-horizontal .process-connector {
    position: absolute;
    left: 0;
    width: 2px;
    height: var(--process-connector-h, 36px);
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 999px;
    pointer-events: none;
    opacity: 0.85;
    transition: opacity 0.35s ease, height 0.35s ease;
}
.process-section.process-horizontal .process-anchor.is-path-below .process-connector {
    top: var(--process-dot-r, 8px);
    background: linear-gradient(180deg, #e85d04 0%, rgba(230, 0, 35, 0.12) 100%);
    box-shadow: 0 0 12px rgba(230, 0, 35, 0.2);
}
.process-section.process-horizontal .process-anchor.is-path-above .process-connector {
    top: calc(-1 * var(--process-dot-r, 8px));
    bottom: auto;
    transform: translate(-50%, -100%);
    background: linear-gradient(0deg, #e85d04 0%, rgba(230, 0, 35, 0.12) 100%);
    box-shadow: 0 0 12px rgba(230, 0, 35, 0.2);
}
.process-section.process-horizontal .process-item {
    position: absolute;
    left: 50%;
    --process-card-width: 210px;
    width: 210px;
    min-width: 0;
    max-width: none;
    min-height: 100px;
    margin: 0 !important;
    padding: 20px 20px 18px 54px;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 252, 0.92) 100%);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055);
    text-align: left !important;
    transform: translateX(-50%);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}
.process-section.process-horizontal .process-item::before {
    display: block !important;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #e85d04, #ff4d6d);
    opacity: 0.35;
    transition: opacity 0.35s ease;
}
.process-section.process-horizontal .process-item::after {
    display: none !important;
}
.process-section.process-horizontal .process-step-badge {
    position: absolute;
    left: 16px;
    top: 18px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #e85d04, #ff3d5a);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(230, 0, 35, 0.2);
}
.process-section.process-horizontal .process-anchor.is-path-below .process-item {
    top: calc(var(--process-dot-r, 8px) + var(--process-connector-h, 36px) + 12px);
}
.process-section.process-horizontal .process-anchor.is-path-above .process-item {
    bottom: calc(var(--process-dot-r, 8px) + var(--process-connector-h, 36px) + 12px);
    top: auto;
}
.process-section.process-horizontal .process-anchor.is-active .process-item {
    border-color: rgba(230, 0, 35, 0.28);
    box-shadow: 0 10px 26px rgba(230, 0, 35, 0.1);
    transform: translateX(-50%) translateY(-4px);
}
.process-section.process-horizontal .process-anchor.is-active .process-item::before {
    opacity: 1;
}
.process-section.process-horizontal .process-anchor.is-active .process-connector {
    opacity: 1;
    box-shadow: 0 0 16px rgba(230, 0, 35, 0.35);
}
.process-section.process-horizontal .process-path-node.is-active {
    fill: #e85d04;
    stroke: #fff;
    stroke-width: 3px;
}
.process-section.process-horizontal .process-anchor:hover .process-item {
    border-color: rgba(230, 0, 35, 0.2);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.075);
    transform: translateX(-50%) translateY(-3px);
}
.process-section.process-horizontal .process-path-node {
    fill: #fff;
    stroke: #e85d04;
    stroke-width: 2.5px;
    pointer-events: none;
    transition: fill 0.25s ease, stroke 0.25s ease;
}
.process-section.process-horizontal .process-step {
    display: block;
    margin-bottom: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e85d04;
    opacity: 0.85;
}
.process-section.process-horizontal .process-item h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.25;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
}
.process-section.process-horizontal .process-item h3::before,
.process-section.process-horizontal .process-item h3::after {
    display: none !important;
}
.process-scroll-man {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    width: 90px;
    height: 120px;
    opacity: 1;
    pointer-events: none;
    transform-origin: 50% 92%;
    transform: translate3d(0, 0, 0) translate(-50%, -92%);
    will-change: transform;
}
.process-man-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}
.process-section.process-horizontal .process-scroll-man::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 48px;
    height: 12px;
    border-radius: 50%;
    background: rgba(230, 0, 35, 0.18);
    transform: translateX(-50%);
    animation: none;
}
@media (max-width: 1100px) {
    .process-section.process-horizontal .process-item {
        --process-card-width: 160px;
        width: 160px;
        padding: 19px 16px 18px;
    }
    
    .process-section.process-horizontal .process-item h3 {
        font-size: 1rem;
    }
}
@media (max-width: 900px) {
    .process-section.process-horizontal {
        padding: 64px 0 80px;
    }
    
    .process-section.process-horizontal .process-head,
    .process-section.process-horizontal .process-anchor {
        opacity: 1;
        transform: none;
    }
    
    .process-section.process-horizontal .process-path-main,
    .process-section.process-horizontal .process-path-shadow {
        opacity: 1;
    }
    
    .process-section.process-horizontal .process-scroll-stage {
        min-height: auto;
    }
    
    .process-section.process-horizontal .process-curve {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: auto;
        padding: 0 0 0 36px;
    }
    
    .process-section.process-horizontal .process-curve::before {
        display: block;
        position: absolute;
        left: 18px;
        top: 10px;
        bottom: 10px;
        width: 2px;
        transform: none;
        background: linear-gradient(180deg, transparent, rgba(230, 0, 35, 0.28), transparent);
        content: "";
    }
    
    .process-section.process-horizontal .process-curve-path,
    .process-section.process-horizontal .process-scroll-man {
        display: none;
    }
    
    .process-section.process-horizontal .process-anchor {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100%;
        height: auto;
    }
    
    .process-section.process-horizontal .process-connector,
    .process-section.process-horizontal .process-path-nodes {
        display: none;
    }
    
    .process-section.process-horizontal .process-dot {
        display: block;
        position: absolute;
        left: -26px;
        top: 32px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #e85d04;
        box-shadow: 0 0 0 6px rgba(230, 0, 35, 0.06);
        transform: none;
    }
    
    .process-section.process-horizontal .process-item {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        min-height: 96px;
        padding: 20px 20px 20px 54px;
        border-radius: 18px !important;
        transform: none;
    }
    
    .process-section.process-horizontal .process-step-badge {
        display: inline-flex;
    }
    
    .process-section.process-horizontal .process-ambient {
        display: none;
    }
    
    .process-section.process-horizontal .sec-title {
        margin-bottom: 32px;
    }
    
    .process-section.process-horizontal .title {
        font-size: clamp(1.4rem, 4vw, 2rem);
    }
}
@media (max-width: 640px) {
    .process-section.process-horizontal {
        padding: 48px 0 60px;
    }
    
    .process-section.process-horizontal .process-curve {
        padding-left: 32px;
        gap: 14px;
    }
    
    .process-section.process-horizontal .process-dot {
        left: -22px;
        top: 28px;
        width: 12px;
        height: 12px;
    }
    
    .process-section.process-horizontal .process-item {
        padding: 16px 16px 16px 44px;
        min-height: 84px;
    }
    
    .process-section.process-horizontal .process-step-badge {
        left: 12px;
        top: 14px;
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }
    
    .process-section.process-horizontal .process-item h3 {
        font-size: 0.95rem;
    }
    
    .process-section.process-horizontal .process-step {
        font-size: 0.62rem;
    }
    
    .process-section.process-horizontal .title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }
    
    .process-section.process-horizontal .sub-title {
        font-size: 0.65rem;
        padding: 5px 12px;
    }
}

/* ===== CTA ===== */
.cta {
    background: #080a0b;
    position: relative;
    overflow: hidden;
    text-align: center
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}
.cta-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(232, 93, 4, 0.1) 0%, transparent 70%)
}
.cta-particles {
    position: absolute;
    inset: 0
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto
}
.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2
}
.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 36px
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap
}

/* ===== CONTACT ===== */
.contact {
    background: var(--bg)
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px
}
.contact-form-wrap {
    position: relative
}
.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border)
}
.form-group {
    margin-bottom: 20px
}
.form-group:last-child {
    margin-bottom: 0
}
.form-field {
    position: relative
}
.form-input {
    width: 100%;
    padding: 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: transparent;
    color: var(--text);
    font-family: var(--font);
    font-size: 14px;
    transition: all 0.3s;
    outline: none
}
.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow)
}
.form-input.glass {
    background: var(--bg)
}
.form-input::placeholder {
    color: transparent
}
.form-label {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 14px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s;
    background: transparent;
    padding: 0 4px
}
.form-input:focus~.form-label,
.form-input:not(:placeholder-shown)~.form-label {
    top: -8px;
    font-size: 11px;
    color: var(--primary);
    background: var(--bg-card)
}
.form-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s
}
.form-input:focus~.form-border {
    width: 100%
}
.form-select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px
}
.form-textarea {
    resize: vertical;
    min-height: 120px
}
.submit-btn {
    margin-top: 8px
}
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px;
    text-align: center
}
.form-success.show {
    display: flex
}
.form-success span {
    font-size: 16px;
    font-weight: 500
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px
}
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border)
}
.contact-info-card.glass {
    background: var(--glass)
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}
.contact-info-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    margin-bottom: 4px
}
.contact-info-card span {
    font-size: 14px;
    color: var(--text-secondary)
}

/* ===== FOOTER (reference style) ===== */
.saar-footer-minimal {
    background: #080a0b!important;
    color: #ffffff;
    padding: 0!important;
    position: relative;
    overflow: hidden
}
.saar-footer-minimal::before,
.saar-footer-minimal::after {
    content: none!important
}
.saar-footer-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    padding: 42px clamp(24px, 6vw, 86px) 34px
}
.footer-orbit-dot {
    position: static;
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: #e85d04;
    opacity: 0.85;
    pointer-events: none
}
.footer-orbit-dot-one {
    box-shadow: 0 0 18px rgba(230, 0, 35, 0.38)
}
.footer-orbit-dot-two {
    box-shadow: 0 0 18px rgba(230, 0, 35, 0.38)
}
.footer-logo-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 20px
}
.footer-brand-panel {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28)
}
.saar-footer-minimal .footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0
}
.saar-footer-minimal .footer-logo img {
    width: 138px;
    max-height: 143px;
    margin: 0;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35))
}
.footer-pillars {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px 48px;
    padding: 0;
    margin: 0;
    list-style: none
}
.footer-pillars li {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    padding-left: 13px;
    cursor: pointer
}
.footer-pillars li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    transform: translateY(-50%)
}
.footer-content-grid {
    position: relative;
    z-index: 2;
    display: block;
    padding: 34px 0 18px
}
.saar-footer-minimal .footer-widget,
.saar-footer-minimal .footer-about {
    margin: 0
}
.saar-footer-minimal .footer-text {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.62
}
.saar-footer-minimal .widget-title {
    position: relative;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 22px;
    padding-bottom: 10px
}
.saar-footer-minimal .widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: #e85d04
}
.footer-contact-grid {
    width: 100%
}
.saar-footer-minimal .footer-links,
.saar-footer-minimal .contact-info-list {
    padding: 0;
    margin: 0;
    list-style: none
}
.saar-footer-minimal .contact-info-list {
    display: grid!important;
    grid-template-columns: minmax(210px, 0.9fr) minmax(280px, 1.15fr) minmax(260px, 1fr);
    align-items: start;
    gap: clamp(34px, 7vw, 120px)!important;
    width: 100%
}
.saar-footer-minimal .footer-links li+li,
.saar-footer-minimal .contact-info-list li+li {
    margin-top: 0
}
.saar-footer-minimal .footer-links a,
.saar-footer-minimal .contact-info-list a,
.saar-footer-minimal .contact-info-list span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.45;
    text-decoration: none
}
.saar-footer-minimal .footer-links a:hover,
.saar-footer-minimal .contact-info-list a:hover {
    color: #ffffff
}
.saar-footer-minimal .contact-info-list li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    margin: 0!important;
    min-width: 0
}
.saar-footer-minimal .contact-info-list i {
    width: 18px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.45;
    margin-top: 2px
}
.saar-footer-minimal .myflex {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0
}
.saar-footer-minimal .contact-info-list a {
    width: max-content;
    max-width: 100%
}
.saar-footer-minimal .contact-info-list li:first-child a {
    white-space: nowrap
}
.footer-social-row {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 10px 0 22px
}
.saar-footer-minimal .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px
}
.saar-footer-minimal .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease
}
.saar-footer-minimal .social-links a:hover {
    background: #ffffff;
    color: #e85d04;
    transform: translateY(-3px)
}
.footer-legal-row {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-top: 4px
}
.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0
}
.saar-footer-minimal .footer-contact-widget .footer-legal-links {
    flex-wrap: nowrap
}
.saar-footer-minimal .footer-contact-widget .myflextwo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap
}
.saar-footer-minimal .footer-contact-widget .myflextwo:not(:last-child) {
    margin-right: 24px;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.46)
}
.saar-footer-minimal .footer-contact-widget .myflextwo i {
    flex: 0 0 auto;
    line-height: 1
}
.footer-legal-links a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.4;
    text-decoration: none;
    padding: 0 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.46)
}
.footer-legal-links a:first-child {
    padding-left: 0
}
.footer-legal-links a:last-child {
    border-right: 0;
    padding-right: 0
}
.saar-footer-minimal .footer-contact-widget .footer-legal-links a {
    padding: 0;
    border-right: 0
}
.footer-legal-links a:hover {
    color: #ffffff
}
.saar-footer-minimal .copyright-text {
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
    text-align: center
}
.saar-footer-minimal .myfootersaar {
    position: absolute;
    left: 50%;
    bottom: -31px;
    z-index: 1;
    width: max-content;
    max-width: none;
    display: block;
    transform: translateX(-50%);
    pointer-events: none
}
.saar-footer-minimal .footer-bg-text {
    position: static;
    display: block;
    color: rgba(255, 255, 255, 0.18)!important;
    font-size: clamp(5rem, 13.5vw, 13.2rem);
    font-weight: 900;
    line-height: 0.78;
    letter-spacing: -3px;
    white-space: nowrap;
    text-transform: uppercase;
    opacity: 1!important;
    animation: none!important;
    transform: none!important;
    transition: none!important;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 38%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 60%, black 100%)
}

/* ===== FOOTER RESPONSIVE ===== */
@media(max-width:1199.98px) {
    .saar-footer-card {
        padding: 38px 42px 32px
    }
    
    .footer-content-grid {
        padding-top: 32px
    }
    
    .saar-footer-minimal .footer-contact-widget .footer-legal-links {
        flex-wrap: wrap;
        row-gap: 12px
    }
    
    .saar-footer-minimal .contact-info-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 34px!important
    }
}
@media(max-width:991.98px) {
    .saar-footer-card {
        padding: 36px 30px 30px
    }
    
    .footer-brand-panel {
        gap: 18px;
        padding-bottom: 30px
    }
    
    .saar-footer-minimal .footer-logo img {
        width: 200px
    }
    
    .saar-footer-minimal .footer-text {
        max-width: 720px;
        text-align: center
    }
    
    .footer-pillars {
        gap: 16px 26px
    }
    
    .footer-pillars li {
        font-size: 14px
    }
    
    .saar-footer-minimal .contact-info-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 30px!important
    }
    
    .saar-footer-minimal .contact-info-list li:nth-child(3) {
        grid-column: 1/-1
    }
    
    .footer-social-row {
        padding-top: 4px
    }
}
@media(max-width:767.98px) {
    .saar-footer-minimal {
        padding: 0!important
    }
    
    .saar-footer-card {
        border-radius: 0;
        padding: 34px 22px 28px
    }
    
    .footer-brand-panel {
        gap: 18px;
        padding-bottom: 28px
    }
    
    .footer-pillars {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 14px 18px
    }
    
    .footer-content-grid {
        padding: 24px 0 16px
    }
    
    .footer-contact-grid {
        width: 100%
    }
    
    .saar-footer-minimal .contact-info-list {
        grid-template-columns: 1fr;
        gap: 16px!important
    }
    
    .saar-footer-minimal .contact-info-list li:nth-child(3) {
        grid-column: auto
    }
    
    .saar-footer-minimal .footer-text {
        max-width: none;
        margin-top: 0;
        font-size: 14px;
        line-height: 1.55;
        text-align: center
    }
    
    .footer-legal-links {
        gap: 10px 0
    }
    
    .saar-footer-minimal .footer-contact-widget .footer-legal-links {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        justify-content: stretch;
        width: 100%;
        row-gap: 0
    }
    
    .saar-footer-minimal .footer-contact-widget .myflextwo {
        display: grid;
        grid-template-columns: 24px minmax(0, 1fr);
        align-items: start;
        width: 100%;
        gap: 8px 12px;
        margin-right: 0;
        padding: 14px 0;
        border-right: 0;
        white-space: normal
    }
    
    .saar-footer-minimal .footer-contact-widget .myflextwo:not(:last-child) {
        margin-right: 0;
        padding-right: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16)
    }
    
    .saar-footer-minimal .footer-contact-widget .myflextwo i {
        grid-row: 1/span 3;
        width: 20px;
        margin-top: 2px;
        text-align: center
    }
    
    .saar-footer-minimal .footer-contact-widget .myflextwo a,
    .saar-footer-minimal .footer-contact-widget .myflextwo span {
        grid-column: 2;
        min-width: 0;
        overflow-wrap: anywhere
    }
    
    .footer-legal-links a {
        font-size: 14px;
        padding: 0 12px
    }
    
    .saar-footer-minimal .footer-contact-widget .footer-legal-links a {
        padding: 0;
        border-right: 0
    }
    
    .saar-footer-minimal .myfootersaar {
        bottom: -12px
    }
    
    .saar-footer-minimal .footer-bg-text {
        font-size: 18vw!important;
        letter-spacing: -0.05em
    }
}
@media(max-width:575.98px) {
    .saar-footer-card {
        padding: 30px 18px 26px
    }
    
    .footer-brand-panel {
        align-items: center;
        gap: 16px;
        padding-bottom: 24px
    }
    
    .saar-footer-minimal .footer-logo {
        align-self: center
    }
    
    .footer-logo-row {
        align-self: center;
        gap: 18px
    }
    
    .saar-footer-minimal .footer-logo img {
        width: 160px
    }
    
    .saar-footer-minimal .footer-text {
        text-align: center
    }
    
    .footer-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 18px
    }
    
    .footer-pillars li {
        font-size: 13px;
        line-height: 1.25
    }
    
    .footer-content-grid {
        padding-top: 24px
    }
    
    .saar-footer-minimal .widget-title {
        font-size: 16px;
        margin-bottom: 18px
    }
    
    .saar-footer-minimal .contact-info-list a,
    .saar-footer-minimal .contact-info-list span {
        font-size: 14px;
        overflow-wrap: anywhere
    }
    
    .saar-footer-minimal .contact-info-list li:first-child a {
        white-space: normal
    }
    
    .footer-social-row {
        justify-content: center;
        padding: 8px 0 18px
    }
    
    .saar-footer-minimal .social-links {
        justify-content: center;
        gap: 10px
    }
    
    .saar-footer-minimal .copyright-text {
        text-align: center;
        font-size: 14px
    }
    
    .footer-legal-row {
        align-items: center
    }
    
    .saar-footer-minimal .myfootersaar {
        left: 50%;
        bottom: -7px;
        transform: translateX(-50%)
    }
    
    .saar-footer-minimal .footer-bg-text {
        font-size: 23vw!important
    }
}
@media(max-width:420px) {
    .saar-footer-card {
        padding: 28px 16px 24px
    }
    
    .saar-footer-minimal .social-links a {
        width: 38px;
        height: 38px
    }
    
    .footer-legal-links {
        flex-direction: column
    }
    
    .footer-pillars {
        grid-template-columns: 1fr
    }
    
    .saar-footer-minimal .footer-contact-widget .myflextwo {
        margin-right: 0;
        padding-right: 0;
        border-right: 0
    }
    
    .footer-legal-links a {
        border-right: 0;
        padding: 0
    }
}

/* ===== FLOATING WHATSAPP/CALL ===== */
.nxq-floating-wrap {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 999999
}
.nxq-float-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none!important;
    font-size: 30px;
    transition: all 0.35s ease;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.08)!important
}
.nxq-float-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: nxq-glow 2s infinite;
    z-index: -1
}
@keyframes nxq-glow {
    0% {
        transform: scale(1);
        opacity: 0.7
    }
    
    70% {
        transform: scale(1.45);
        opacity: 0
    }
    
    100% {
        transform: scale(1.45);
        opacity: 0
    }
}
.nxq-float-btn:hover {
    transform: translateY(-5px) scale(1.05)
}
.nxq-call-btn {
    background: #ffffff;
    color: #000!important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transform: rotate(95deg)
}
.nxq-call-btn::before {
    background: rgba(255, 255, 255, 0.7)
}
.nxq-whatsapp-btn {
    background: #25D366;
    color: #fff!important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18), 0 0 18px rgba(37, 211, 102, 0.7)
}
.nxq-whatsapp-btn::before {
    background: rgba(37, 211, 102, 0.65)
}
.nxq-floating-wrap a,
.nxq-floating-wrap a:hover,
.nxq-floating-wrap a:focus,
.nxq-floating-wrap a:active {
    text-decoration: none!important;
    outline: none!important
}
@media(max-width:768px) {
    .nxq-floating-wrap {
        right: 30px;
        bottom: 240px;
        gap: 14px
    }
    
    .nxq-float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--primary-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease)
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--primary-glow)
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out)
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s var(--ease-out)
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0)
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s var(--ease-out)
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0)
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s var(--ease-out)
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1)
}
.reveal-up {
    opacity: 0;
    transform: translateY(30px)
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--ease-out)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1199px) {
    .hero-container {
        flex-direction: column;
        text-align: center
    }
    
    .hero-content {
        max-width: 100%
    }
    
    .hero-subtitle {
        margin: 0 auto 36px
    }
    
    .hero-buttons {
        justify-content: center
    }
    
    .hero-stats {
        justify-content: center
    }
    
    .about-2-grid-wrapper {
        padding: 10px
    }
    
    .about-2-grid-wrapper .col-sm-6:nth-child(1) {
        transform: translate(40px, 40px) scale(0.3)
    }
    
    .about-2-grid-wrapper .col-sm-6:nth-child(2) {
        transform: translate(-40px, 40px) scale(0.3)
    }
    
    .about-2-grid-wrapper .col-sm-6:nth-child(3) {
        transform: translate(40px, -40px) scale(0.3)
    }
    
    .about-2-grid-wrapper .col-sm-6:nth-child(4) {
        transform: translate(-40px, -40px) scale(0.3)
    }
    
    .about-2-card {
        min-height: 140px
    }
    
    .about-2-card svg {
        width: 36px;
        height: 36px
    }
    
    .center-anim-icon-wrapper {
        width: 72px;
        height: 72px
    }
    
    .center-anim-icon-wrapper::before {
        inset: -10px
    }
    
    .center-anim-icon {
        width: 50px;
        height: 50px
    }
    
    .center-anim-icon svg {
        width: 26px;
        height: 26px
    }
    
    .about-2-text+.cursive {
        font-size: 1.1rem
    }
    
    .contact-grid {
        grid-template-columns: 1fr
    }
    
    .laptop-scroll-laptop {
        width: 90%
    }
    
    .floating-card {
        display: none
    }
    
    .testimonial-card {
        padding: 28px
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}
@media(max-width:991px) {
    .footer-pillars {
        flex-wrap: wrap;
        gap: 20px
    }
    
    .cases-track {
        padding: 0 24px
    }
}
@media(max-width:767px) {
    .sticky-header .logo img {
        width: 185px;
        max-height: 75px
    }
    
    .section {
        padding: 80px 0
    }
    
    .hero {
        padding: 140px 0 60px;
        min-height: auto
    }
    
    .hero-stats {
        gap: 16px;
        flex-wrap: wrap
    }
    
    .hero-stat {
        flex: 1;
        min-width: 80px
    }
    
    .hero-stat-div {
        display: none
    }
    
    .services-interactive {
        flex-direction: column;
        gap: 0
    }
    
    .services-nav-list {
        flex: none;
        width: 100%;
        flex-direction: column;
        position: static;
        gap: 0;
        padding: 0;
        margin-bottom: 24px
    }
    
    .services-nav-item {
        padding: 14px 0;
        gap: 12px;
        border-bottom: 1px solid var(--border)
    }
    
    .services-nav-item::after {
        bottom: -1px;
        width: 0
    }
    
    .services-nav-item.active::after {
        width: 60px
    }
    
    .service-nav-num {
        min-width: 28px
    }
    
    .services-panels {
        min-height: auto;
        overflow: visible
    }
    
    .service-panel {
        position: relative;
        inset: auto;
        display: block;
        transform: none;
        opacity: 1;
        transition: none;
        pointer-events: auto;
        border-radius: 12px;
        margin-bottom: 20px
    }
    
    .service-panel.active,
    .service-panel.exit {
        display: block;
        transform: none;
        opacity: 1
    }
    
    .panel-visual {
        width: 100%;
        height: 160px;
        border-radius: 12px 12px 0 0
    }
    
    .panel-visual svg {
        width: 56px;
        height: 56px
    }
    
    .panel-content-info {
        padding: 24px
    }
    
    .panel-title {
        font-size: 20px
    }
    
    .panel-desc {
        font-size: 13px
    }
    
    .why-grid {
        grid-template-columns: 1fr
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }
    
    .stat-ring {
        width: 100px;
        height: 100px
    }
    
    .stat-num {
        font-size: 26px
    }
    
    .laptop-scroll-section {
        min-height: 300vh
    }
    
    .laptop-scroll-laptop {
        width: 100%
    }
    
    .case-card {
        width: 300px
    }
    
    .contact-grid {
        grid-template-columns: 1fr
    }
    
    .contact-form {
        padding: 24px
    }
    
    .footer-brand-panel {
        margin-bottom: 32px
    }
    
    .footer-pillars {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center
    }
    
    .about-2-content {
        text-align: center;
        padding: 0 4px
    }
    
    .about-2-content .sub-title {
        justify-content: center
    }
    
    .about-2-text {
        font-size: 15px
    }
    
    .about-2-grid-wrapper {
        padding: 0
    }
    
    .about-2-grid-wrapper .row.g-4 {
        margin: -6px
    }
    
    .about-2-grid-wrapper .row.g-4>[class*="col-"] {
        padding: 6px
    }
    
    .about-2-section.section-padding {
        padding: 60px 0
    }
    
    .about-2-card {
        min-height: 120px
    }
    
    .about-2-card svg {
        width: 32px;
        height: 32px
    }
    
    .center-anim-icon-wrapper {
        width: 60px;
        height: 60px
    }
    
    .center-anim-icon-wrapper::before {
        inset: -8px
    }
    
    .center-anim-icon {
        width: 42px;
        height: 42px
    }
    
    .center-anim-icon svg {
        width: 20px;
        height: 20px
    }
    
    .cursive {
        font-size: 20px
    }
    
    .nxq-floating-wrap {
        bottom: 70px;
        right: 16px
    }
    
    .nxq-float-btn {
        width: 48px;
        height: 48px;
        font-size: 18px
    }
}
@media(max-width:575.98px) {
    .center-anim-icon-wrapper {
        display: none
    }
    
    .about-2-grid-wrapper .col-sm-6:nth-child(1),
    .about-2-grid-wrapper .col-sm-6:nth-child(2),
    .about-2-grid-wrapper .col-sm-6:nth-child(3),
    .about-2-grid-wrapper .col-sm-6:nth-child(4) {
        transform: translateY(30px) scale(0.3)
    }
    
    .about-2-grid-wrapper .col-sm-6.reveal-card {
        transform: translate(0, 0) scale(1)
    }
}
@media(max-width:480px) {
    .container {
        padding: 0 16px
    }
    
    .hero-title {
        font-size: 2rem
    }
    
    .hero {
        padding: 120px 0 40px
    }
    
    .service-nav-title {
        font-size: 15px
    }
    
    .hero-stats {
        gap: 12px
    }
    
    .hero-stat-num {
        font-size: 22px
    }
    
    .stat-ring {
        width: 80px;
        height: 80px
    }
    
    .stat-num {
        font-size: 20px
    }
    
    .aboutboxes {
        margin-top: 24px
    }
    
    .about-2-card {
        min-height: 110px
    }
    
    .about-2-card svg {
        width: 28px;
        height: 28px
    }
    
    .saar-footer-card {
        padding: 48px 16px 32px
    }
    
    .footer-logo img {
        width: 160px
    }
    
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px
    }
}
.pt-5 {
    padding-top: 22px;
}