        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        /* =========================
           COLOR SYSTEM â€” World BI
        ==========================*/
        :root {
            --navy: #0D1C3D;
            --navy-hover: #162d63;
            --navy-deep: #07122B;
            --navy-mid: #0B192C;
            --sky: #EEF7FD;
            --sky-soft: #F8FBFF;
            --sky-mid: #DCEEFA;
            --blue: #3D72FC;
            --sky-blue: #5CB0E9;
            --gold: #FFD25D;
            --gold-dark: #E8A317;
            --gradient-brand: linear-gradient(135deg, #5CB0E9 0%, #3D72FC 100%);
            --gradient-hero: #000000;
            --gradient-light: linear-gradient(180deg, #F8FBFF 0%, #EEF7FD 55%, #E4F0FA 100%);
            --gradient-dark: linear-gradient(180deg, #0B192C 0%, #07122B 55%, #0D1C3D 100%);
            --gradient-cta: linear-gradient(135deg, #EEF7FD 0%, #DCEEFA 50%, #C8E4F7 100%);
            --gradient-footer: linear-gradient(165deg, #12325c 0%, #0f2a4f 38%, #153a6b 72%, #0e2647 100%);
            --text-on-dark: #ffffff;
            --text-on-dark-muted: #A8B4C4;
            --text-on-light: #0D1C3D;
            --text-on-light-muted: #4A5F7A;
            --border-on-dark: rgba(255, 255, 255, 0.10);
            --border-on-light: rgba(13, 28, 61, 0.10);
            --shadow-soft: 0 8px 32px rgba(13, 28, 61, 0.08);
            --shadow-card: 0 4px 24px rgba(13, 28, 61, 0.07);
            --shadow-navy: rgba(13, 28, 61, 0.28);
            --glow-blue: rgba(61, 114, 252, 0.28);
            --glow-sky: rgba(92, 176, 233, 0.18);
        }

        /* =========================
           GLOBAL LAYOUT
        ==========================*/

        html,
        body {
            overflow-x: hidden;
        }

        body {
            background-color: var(--sky-soft);
            color: var(--text-on-light);
        }

        html.lenis,
        html.lenis body {
            height: auto;
        }

        html.lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        html.lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }

        a {
            text-decoration: none;
        }

        /* =========================
           HEADER + NAV
        ==========================*/
        .site-logo img {
            width: 167px;
            height: 51px;
            object-fit: contain;
            display: none;
        }

        .site-logo .site-logo-white {
            display: inline-block;
        }

        .site-header.scrolled .site-logo-white {
            display: none;
        }

        .site-header.scrolled .site-logo-blue {
            display: inline-block;
        }
        .site-header {
            position: fixed;
            inset-inline: 0;
            top: 0;
            z-index: 999;
            background: transparent;
            border-bottom: 1px solid transparent;
            box-shadow: none;
            transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .site-header.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-on-light);
            box-shadow: 0 4px 24px rgba(13, 28, 61, 0.06);
        }

        .site-header-inner {
            margin: 0 auto;
            padding: 14px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .site-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-size: 0.85rem;
        }

        .site-logo-mark {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            background: var(--navy);
        }

        .site-logo span {
            color: var(--navy);
            background: none;
            -webkit-text-fill-color: var(--navy);
        }

        .site-header:not(.scrolled) .site-logo span {
            color: #ffffff;
            -webkit-text-fill-color: #ffffff;
        }

        .site-nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 18px;
            font-size: 0.98rem;
        }

        .nav-links a {
            color: var(--navy);
            padding-block: 4px;
            position: relative;
            transition: color 0.2s ease;
            /*opacity: 0.8;*/
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            border-radius: 999px;
            background: var(--gradient-brand);
            transition: width 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--navy);
            opacity: 1;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .site-nav .btn-cta {
            font-size: 0.95rem;
        }

        .site-header:not(.scrolled) .nav-links > a {
            color: #fff;
        }

        .site-header:not(.scrolled) .nav-links > a:hover {
            color: #ffffff;
        }

        .site-header:not(.scrolled) .nav-links > a::after {
            background: #ffffff;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-toggle {
            background: none;
            border: none;
            font-family: inherit;
            font-size: 0.98rem;
            color: var(--navy);
            padding-block: 4px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            /*opacity: 0.8;*/
            transition: color 0.2s ease, opacity 0.2s ease;
        }

        .nav-dropdown-toggle i {
            font-size: 0.62rem;
            transition: transform 0.2s ease;
        }

        .site-header:not(.scrolled) .nav-dropdown-toggle {
            color: rgba(255, 255, 255, 0.86);
        }

        .nav-dropdown:hover .nav-dropdown-toggle,
        .nav-dropdown.is-open .nav-dropdown-toggle {
            opacity: 1;
        }

        .nav-dropdown:hover .nav-dropdown-toggle i,
        .nav-dropdown.is-open .nav-dropdown-toggle i {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 14px);
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            min-width: 230px;
            list-style: none;
            margin: 0;
            padding: 10px 0;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 18px 44px rgba(13, 28, 61, 0.16);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
            z-index: 1000;
            overflow: hidden;
        }

        .nav-dropdown-menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-brand);
        }

        .nav-dropdown:hover .nav-dropdown-menu,
        .nav-dropdown.is-open .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 10px 20px;
            font-size: 0.94rem;
            color: var(--navy);
            opacity: 1;
            white-space: nowrap;
            transition: background 0.18s ease, color 0.18s ease;
        }

        .nav-dropdown-menu a::after {
            display: none;
        }

        .nav-dropdown-menu a:hover {
            background: var(--sky-mid);
            color: var(--navy-deep);
        }

        .mobile-nav-label {
            display: block;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.42);
            margin: 18px 0 8px;
        }

        .mobile-nav-sub {
            list-style: none;
            padding: 0;
            margin: 0 0 8px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .mobile-nav-sub a {
            font-size: 1.15rem !important;
            font-weight: 500 !important;
            padding: 10px 0 10px 12px !important;
            border-bottom: none !important;
            color: rgba(255, 255, 255, 0.62) !important;
        }

        .mobile-nav-sub a:hover {
            color: #fff !important;
            padding-left: 18px !important;
        }

        /* =========================
           CTA BUTTON SYSTEM
        ==========================*/

        .btn-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            border: 1px solid transparent;
            cursor: pointer;
            transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
            white-space: nowrap;
        }

        .btn-cta-primary {
            background: var(--gradient-brand);
            color: #ffffff;
            border-color: transparent;
            box-shadow: 0 8px 24px rgba(61, 114, 252, 0.35);
        }

        .btn-cta-primary:hover {
            background: linear-gradient(135deg, #6ec0f5 0%, #5280ff 100%);
            border-color: transparent;
            transform: translateY(-1px);
            box-shadow: 0 14px 36px rgba(61, 114, 252, 0.45);
            color: #ffffff;
        }

        .btn-cta-primary:active {
            transform: translateY(0);
            box-shadow: 0 3px 10px var(--shadow-navy);
        }

        .btn-cta-outline {
            background: transparent;
            color: #fff;
            border-color: #fff;
        }

        .btn-cta-outline:hover {
            background: var(--navy);
            color: #ffffff;
            border-color: var(--navy);
            transform: translateY(-1px);
        }

        .btn-cta-outline:active {
            transform: translateY(0);
        }

        .btn-cta-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            border-radius: 999px;
            margin-left: 8px;
            background: rgba(255, 255, 255, 0.15);
            font-size: 12px;
        }

        .btn-cta-ghost {
            background: transparent;
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.4);
        }

        .btn-cta-ghost:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.7);
            transform: translateY(-1px);
        }

        .heros {
            min-height: 100vh;
            padding-top: 220px;
            /*padding-bottom: 140px;*/
            /*background: var(--gradient-hero);*/
            width: 100%;
            z-index: 0;
            position: relative;
            overflow: hidden;
        }

        .heros::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
            top: -200px;
            right: -180px;
            pointer-events: none;
            z-index: 0;
        }

        .heros::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 160px;
            background: linear-gradient(to bottom, transparent, var(--sky-soft));
            pointer-events: none;
            z-index: 1;
        }

        .heros h1 {
            letter-spacing: -2px;
            line-height: 90px;
            font-size: 82px;
            color: var(--text-on-dark);
            font-weight: 700;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .heros h1 span {
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke: 0;
        }

        .heros-overlys {
            position: absolute;
            z-index: -1;
            inset: 0;
        }

        .heros-overlay {
            /*background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.5px, transparent 0px);*/
            /*background-size: 15px 15px;*/
            /*background-position: -14px -14px;*/
            background: #00000099;
            width: 100%;
            height: 100%;
        }

        .hero-after {
            position: absolute;
            top: 0;
            width: 100%;
            height: 110vh;
            z-index: -2;
            left: 0;
            overflow: hidden;
            will-change: transform;
        }

        .hero-after img {
            position: absolute;
            height: 100%;
            width: 100%;
            inset: 0px;
            color: transparent;
            object-position: center;
            object-fit: cover;
            will-change: transform;
        }

        .descript-wrap {
            max-width: 950px;
            margin-top: 20px;
            margin-left: auto;
            margin-right: auto;
        }

        .descript-wrap p {
            font-size: 1.2rem;
            line-height: 1.75rem;
            color: #fff;
            font-weight: 500;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-content-wrapper,
        .hero-cta-row {
            position: relative;
            z-index: 2;
        }

        .hero-cta-row {
            margin-top: 28px;
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-video-wrap {
            width: 100%;
            min-height: 600px;
            /* Pre-allocate total height so GSAP pin doesn't overlap below */
            display: flex;
            align-items: flex-start;
            /* Keeps video near text initially */
            justify-content: center;
            margin-top: 40px;
        }

        #videoBox {
            width: min(900px, 100%);
            height: 420px;
            border-radius: 18px;
            overflow: hidden;
            position: relative;
            background: var(--navy-deep);
            margin: 0 auto;
            transform-origin: center top;
            will-change: transform, border-radius;
            /*box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);*/
        }

        .hero-video-layer {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: var(--navy-deep);
        }

        .slide-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border: 0;
        }

        .hero-video-layer iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 1920px;
            height: 1080px;
            border: 0;
            display: block;
            pointer-events: none;
            transform-origin: center center;
            will-change: transform;
        }

        .hero-video-facade {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            padding: 0;
            border: 0;
            background: var(--navy-deep);
            cursor: pointer;
            overflow: hidden;
        }

        .hero-video-poster {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-video-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(7, 18, 43, 0.72);
            border: 2px solid rgba(255, 255, 255, 0.85);
            color: #fff;
            font-size: 1.35rem;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .hero-video-facade:hover .hero-video-play {
            transform: translate(-50%, -50%) scale(1.06);
            background: rgba(61, 114, 252, 0.85);
        }

        .video-ctrl {
            position: absolute;
            top: 0;
            right: 0;
            left: auto;
            bottom: auto;
            width: min(345px, calc(100% - 24px));
            height: 65px;
            background-color: #041462b5;
            backdrop-filter: blur(5px);
            box-shadow: 0 12px 36px var(--shadow-navy);
            border-bottom-left-radius: 20px;
            z-index: 100;
        }

        .ctrl-label {
            display: block;
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1.3;
            /* margin-bottom: 10px; */
        }

        .ctrl-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 8px;
            border-top: 1px solid rgba(255, 255, 255, 0.22);
        }

        .ctrl-counter {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .ctrl-left {
            flex: 1;
            min-width: 0;
        }

        .ctrl-right {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            padding-left: 16px;
        }

        /* ====== BELOW HERO ====== */
        .below-hero {
            background: var(--gradient-light);
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            border-top: 1px solid var(--border-on-light);
        }

        .below-hero p {
            color: var(--text-on-light-muted);
            font-size: 0.95rem;
        }

        .vedio-wrap {
            --tw-translate-y: -100%;
            --tw-rotate: 0;
            --tw-skew-x: 0;
            position: relative;
            height: 100%;
        }

        .ctrl-item {
            position: absolute;
            top: 0;
            right: 0;
            left: auto;
            transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
            border-radius: 10px;
            padding: 10px 18px 5px;
            z-index: 30;
            color: #fff;
            width: 98%;
            height: 88%;
            display: none;
            justify-content: space-between;
            align-items: center;
        }

        .ctrl-item.active {
            display: flex;
        }

        .progress-wrap {
            position: absolute;
            top: 0;
            right: 0;
            left: auto;
            width: 98%;
            height: 4px;
            background: rgba(0, 0, 0, 0.4);
            z-index: 35;
            border-radius: 10px 10px 0 0;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: var(--gradient-brand);
            width: 0%;
            border-radius: 10px 0 0 0;
        }
        .mtm {
            margin-top: -270px;
        }
        .glance-sub {
            font-size: .875rem;
            line-height: 1.25rem;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
            letter-spacing: 0.12em;
            font-weight: 600;
            background: var(--blue);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .glances h2 {
            letter-spacing: -2.08px;
            line-height: 60px;
            font-size: 52px;
            font-weight: 600;
            color: var(--text-on-light);
        }

        .glances {
            background: var(--gradient-light);
            padding: 0 0 4rem;
            position: relative;
        }

        .glances .row {
            --bs-gutter-x: 1.5rem;
            --bs-gutter-y: 1.5rem;
            margin-left: calc(var(--bs-gutter-x) * -0.5);
            margin-right: calc(var(--bs-gutter-x) * -0.5);
        }

        .glances .row > [class*="col-"] {
            padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
            padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
            margin-top: calc(var(--bs-gutter-y) * 0.5);
            margin-bottom: calc(var(--bs-gutter-y) * 0.5);
        }

        @media (max-width: 991.98px) {
            .glances .row {
                --bs-gutter-x: 1.25rem;
                --bs-gutter-y: 1.25rem;
            }
        }

        @media (max-width: 575.98px) {
            .glances .row {
                --bs-gutter-x: 1rem;
                --bs-gutter-y: 1rem;
            }
        }

        .glances::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--glow-sky) 0%, transparent 70%);
            bottom: -100px;
            left: -120px;
            pointer-events: none;
        }

        .glance-card {
            padding: 23px 23px;
            background: #ffffff;
            border: 1px solid var(--border-on-light);
            border-radius: 16px;
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            box-shadow: var(--shadow-card);
            transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
            position: relative;
            overflow: hidden;
        }

        .glance-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-brand);
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .glance-card:hover {
            transform: translateY(-6px);
            border-color: rgba(61, 114, 252, 0.25);
            box-shadow: 0 16px 48px rgba(13, 28, 61, 0.12);
        }

        .glance-card:hover::before {
            opacity: 1;
        }
        .glance-description {
            color: var(--text-on-light-muted);
            line-height: 180%;
            font-size: 1rem;
            margin: 0;
            max-width: 850px;
        }
        .stats-info {
            line-height: 18px;
            text-transform: uppercase;
            font-weight: 500;
            font-size: 13px;
            color: var(--text-on-light-muted);
            margin: 0;
            letter-spacing: 0.04em;
        }
        .stats-infos {
            line-height: 18px;
            text-transform: uppercase;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-on-light);
            margin: 0;
            padding-top: 10px;
        }
        .conter-wrap {
            display: inline-flex;
            align-items: baseline;
            flex-wrap: nowrap;
            white-space: nowrap;
            color: var(--text-on-light);
            font-weight: 500;
        }

        .glanceConter {
            font-size: 80px;
            line-height: 1;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.35s ease, opacity 0.35s ease;
        }

        .glanceConter.is-compacting {
            transform: scale(0.92);
            opacity: 0.5;
        }

        .glanceConter.is-compact {
            transform: scale(1);
            opacity: 1;
        }

        /* =========================
           ABOUT SECTION
        ==========================*/
        .about-section {
            background: #ffffff;
            padding: 6rem 0;
            position: relative;
        }

        .about-section > .container > .row {
            --bs-gutter-x: 1.5rem;
            --bs-gutter-y: 1.5rem;
            margin-left: calc(var(--bs-gutter-x) * -0.5);
            margin-right: calc(var(--bs-gutter-x) * -0.5);
        }

        .about-section > .container > .row > [class*="col-"] {
            padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
            padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
        }

        @media (min-width: 992px) {
            .about-section > .container > .row {
                --bs-gutter-x: clamp(2.5rem, 5vw, 5rem);
            }
        }

        .about-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            max-width: 34rem;
        }

        .about-why-title {
            font-size: clamp(2.4rem, 4.5vw, 3.4rem);
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -0.03em;
            color: var(--text-on-light);
            margin: 0 0 1.75rem;
        }

        .about-why-title span {
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-headline {
            font-size: clamp(1.85rem, 3vw, 2.65rem);
            font-weight: 600;
            line-height: 1.35;
            letter-spacing: -0.03em;
            color: var(--text-on-light);
            margin: 0 0 2.5rem;
        }

        .about-explore-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 24px;
            border-radius: 999px;
            background: var(--navy-deep);
            color: #fff;
            font-size: 0.92rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            border: 1px solid var(--navy-deep);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .about-explore-btn:hover {
            background: var(--navy);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 10px 28px rgba(13, 28, 61, 0.22);
        }

        .about-explore-btn i {
            font-size: 0.75rem;
        }

        .about-features {
            display: flex;
            flex-direction: column;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 2rem 0;
            border-bottom: 1px solid rgba(13, 28, 61, 0.1);
        }

        .about-feature:first-child {
            padding-top: 0;
        }

        .about-feature:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .about-feature-icon {
            flex: 0 0 88px;
            width: 88px;
            height: 88px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-feature-body {
            flex: 1;
            min-width: 0;
        }

        .about-feature-icon svg {
            width: 72px;
            height: 72px;
        }

        .about-feature-title {
            font-size: 1.35rem;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.02em;
            color: var(--text-on-light);
            margin: 0 0 0.75rem;
        }

        .about-feature-text {
            font-size: 0.98rem;
            line-height: 1.75;
            color: var(--text-on-light-muted);
            margin: 0;
        }

        @media (max-width: 991.98px) {
            .about-section {
                padding: 4.5rem 0;
            }

            .about-left {
                max-width: none;
            }

            .about-feature {
                gap: 1.25rem;
                padding: 1.75rem 0;
            }
        }

        @media (max-width: 575.98px) {
            .about-feature {
                flex-direction: column;
                gap: 1rem;
            }

            .about-feature-icon {
                width: 64px;
                height: 64px;
            }
        }

        .plus {
            font-size: 48px;
            line-height: 1;
            margin-left: 2px;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .our-services {
            position: relative;
            display: block;
            counter-reset: count;
            padding: 70px 0 10px;
            overflow: visible;
            z-index: 1;
            background: var(--gradient-dark);
            color: var(--text-on-dark);
        }

        .servces-one__bottom .row {
            align-items: flex-start;
        }

        .servces-one__bottom .col-xl-5 {
            align-self: flex-start;
        }

        /*.our-services::before {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    top: 0;*/
        /*    left: 0;*/
        /*    right: 0;*/
        /*    height: 80px;*/
        /*    background: linear-gradient(to bottom, var(--sky-soft), transparent);*/
        /*    pointer-events: none;*/
        /*    z-index: 0;*/
        /*}*/

        /*.our-services::after {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    bottom: 0;*/
        /*    left: 0;*/
        /*    right: 0;*/
        /*    height: 80px;*/
        /*    background: linear-gradient(to top, var(--sky-soft), transparent);*/
        /*    pointer-events: none;*/
        /*    z-index: 0;*/
        /*}*/
        .servces-one::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.04);
            z-index: -1;
        }
        .servces-one__shape-2 {
            position: absolute;
            width: 962px;
            top: 0px;
            height: 1147px;
            left: -491px;
            opacity: 0.5;
            filter: blur(60px);
            border-radius: 50%;
            background: radial-gradient(50% 50% at 50% 50%, var(--glow-blue) 0%, rgba(7, 12, 20, 0) 100%);
            z-index: -1;
        }
        .servces-one__shape-3 {
            position: absolute;
            top: 45px;
            right: 0;
            width: 160px;
            height: 160px;
            mix-blend-mode: lighten;
            z-index: -1;
            animation-name: float-bob-y;
            animation-duration: 2s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }

        .servces-one__shape-3::before {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(61, 114, 252, 0.22) 0%, transparent 70%);
        }
        @keyframes float-bob-y {
            0% {
                transform: translateY(-20px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(-20px);
            }
        }
        .servces-one__top {
            position: relative;
            display: block;
            margin-bottom: 78px;
        }
        .servces-one__top-left {
            position: relative;
            display: block;
        }
        .section-title {
            position: relative;
            display: block;
            margin-top: -12px;
            margin-bottom: 58px;
            z-index: 1;
        }
        .servces-one__top .section-title {
            margin-bottom: 0;
        }
        .section-title__tagline-box {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }
        .section-title__tagline-shape-1 {
            position: relative;
            display: inline-block;
            width: 14px;
            height: 2px;
            background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
        }
        .section-title__tagline {
            position: relative;
            display: inline-block;
            font-size: 16px;
            line-height: 16px;
            font-weight: 500;
            text-transform: capitalize;
            background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-title__tagline-shape-2 {
            position: relative;
            display: inline-block;
            width: 40px;
            height: 2px;
            background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
        }
        .section-title__title {
            color: var(--text-on-dark);
            font-size: 40px;
            line-height: 50px;
            font-weight: 700;
            text-transform: capitalize;
            margin-top: 26px;
            perspective: 400px;
        }
        .section-title__title span {
            color: var(--gold);
            font-weight: 400;
        }
        .servces-one__top-right {
            position: relative;
            display: block;
            margin-top: 50px;
        }
        p {
            margin: 0;
        }
        .servces-one__top-right p{
            color: var(--text-on-dark-muted);
            font-size: 18px;
            line-height: 27px;
            font-weight: 400;
        }
        .services-sticky-panel {
            width: 100%;
            will-change: transform;
        }

        @media (min-width: 1200px) {
            .servces-one__bottom .col-xl-5 {
                position: relative;
                z-index: 2;
            }

            .scroll-content {
                min-height: 100%;
            }
        }

        .servces-one__img-box {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-right: 17px;
            padding: 2rem 2.5rem 2rem 3rem;
            z-index: 10;
        }

        .servces-one__img {
            position: relative;
            display: block;
            width: 100%;
            padding: 3px;
            border-radius: 18px;
            overflow: hidden;
            background: linear-gradient(145deg, rgba(255, 210, 93, 0.55) 0%, rgba(92, 176, 233, 0.45) 50%, rgba(61, 114, 252, 0.5) 100%);
            box-shadow:
                0 24px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.06) inset;
        }

        .servces-one__img::after {
            content: '';
            position: absolute;
            inset: 3px;
            border-radius: 15px;
            background: linear-gradient(180deg, transparent 55%, rgba(7, 18, 43, 0.75) 100%);
            pointer-events: none;
            z-index: 2;
        }

        #servicesPanelImg {
            width: 100%;
            height: clamp(480px, 65vh, 640px);
            object-fit: cover;
            display: block;
            transition: opacity 0.45s ease, transform 0.6s ease;
            border-radius: 15px;
        }

        #servicesPanelImg.is-fading {
            opacity: 0;
            transform: scale(1.03);
        }

        .servces-one__img-caption {
            position: absolute;
            left: 20px;
            right: 20px;
            bottom: 20px;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 18px;
            border-radius: 14px;
            background: rgba(7, 18, 43, 0.72);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
        }

        .servces-one__img-caption-label {
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--sky-blue);
        }

        .servces-one__img-caption-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            line-height: 1.3;
        }

        .sticky-panel {
            position: relative;
        }

        .sticky-panel::before {
            content: '';
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(240, 165, 0, 0.18) 0%, transparent 70%);
            right: -120px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            z-index: -1;
        }
        @keyframes slideInLeft {
            0% {
                -webkit-transform: translate3d(-100%, 0, 0);
                transform: translate3d(-100%, 0, 0);
                visibility: visible;
            }
            100% {
                -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
            }
        }
        .services-panel-accent {
            position: absolute;
            width: 52px;
            height: 52px;
            pointer-events: none;
            z-index: 4;
        }

        .services-panel-accent__line {
            position: absolute;
            border-radius: 999px;
            background: linear-gradient(90deg, #FFD25D 0%, #5CB0E9 100%);
        }

        .services-panel-accent__line--h {
            height: 2px;
            width: 42px;
        }

        .services-panel-accent__line--v {
            width: 2px;
            height: 42px;
        }

        .services-panel-accent__dot {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 14px rgba(255, 210, 93, 0.55);
        }

        .services-panel-accent--tr {
            top: 6px;
            right: 6px;
        }

        .services-panel-accent--tr .services-panel-accent__line--h {
            top: 0;
            right: 0;
        }

        .services-panel-accent--tr .services-panel-accent__line--v {
            top: 0;
            right: 0;
            background: linear-gradient(180deg, #FFD25D 0%, #5CB0E9 100%);
        }

        .services-panel-accent--tr .services-panel-accent__dot {
            top: -3px;
            right: -3px;
        }

        .services-panel-accent--bl {
            bottom: 6px;
            left: 6px;
        }

        .services-panel-accent--bl .services-panel-accent__line--h {
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, #5CB0E9 0%, #3D72FC 100%);
        }

        .services-panel-accent--bl .services-panel-accent__line--v {
            bottom: 0;
            left: 0;
            background: linear-gradient(0deg, #5CB0E9 0%, #FFD25D 100%);
        }

        .services-panel-accent--bl .services-panel-accent__dot {
            bottom: -3px;
            left: -3px;
            background: var(--sky-blue);
            box-shadow: 0 0 14px rgba(92, 176, 233, 0.55);
        }
        .servces-one__bottom-right {
            position: relative;
            display: block;
        }
        
        /* â”€â”€ SCROLLSPY NAV PILLS â”€â”€ */
        .nav-pills-vertical {
          display: flex;
          flex-direction: column;
          gap: 6px;
          list-style: none;
          padding: 0;
          margin: 0;
        }

        .nav-pills-vertical a {
          display: flex;
          align-items: center;
          gap: 10px;
          padding: 8px 14px;
          border-radius: 8px;
          font-family: 'DM Sans', sans-serif;
          font-size: 0.82rem;
          font-weight: 500;
          color: rgba(255,255,255,0.45);
          text-decoration: none;
          transition: background 0.25s, color 0.25s, padding-left 0.25s;
          border: 1px solid transparent;
        }

        .nav-pills-vertical a .dot {
          width: 6px; height: 6px;
          border-radius: 50%;
          background: currentColor;
          flex-shrink: 0;
          transition: transform 0.25s;
        }

        .nav-pills-vertical a.active {
          background: rgba(240,165,0,0.15);
          border-color: rgba(240,165,0,0.35);
          color: #FFD25D;
          padding-left: 18px;
        }

        .nav-pills-vertical a.active .dot {
          background: #F0A500;
          transform: scale(1.5);
        }

        .scroll-content {
          --timeline-x: 48px;
          --timeline-y: 0px;
          --timeline-ratio: 0;
          position: relative;
          flex: 1;
          display: flex;
          flex-direction: column;
          padding: 0.5rem 0 2rem;
          background:
            radial-gradient(ellipse 70% 40% at 85% 20%, rgba(61, 114, 252, 0.08) 0%, transparent 55%),
            radial-gradient(ellipse 50% 35% at 10% 80%, rgba(255, 210, 93, 0.05) 0%, transparent 50%);
        }

        .scroll-content::before {
          content: '';
          position: absolute;
          left: var(--timeline-x);
          top: 40px;
          bottom: 40px;
          width: 2px;
          transform: translateX(-50%);
          background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
          border-radius: 999px;
          box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.02);
          z-index: 0;
        }

        .timeline-progress {
          position: absolute;
          left: var(--timeline-x);
          top: 40px;
          bottom: 40px;
          width: 3px;
          transform: translateX(-50%) scaleY(var(--timeline-ratio, 0));
          transform-origin: top center;
          background: linear-gradient(180deg, #FFD25D 0%, #5CB0E9 55%, #3D72FC 100%);
          border-radius: 999px;
          z-index: 1;
          will-change: transform;
          box-shadow: 0 0 12px rgba(92, 176, 233, 0.35);
        }

        .timeline-thumb {
          position: absolute;
          left: var(--timeline-x);
          top: calc(40px + var(--timeline-y, 0px));
          width: 18px;
          height: 18px;
          border-radius: 50%;
          z-index: 4;
          pointer-events: none;
          opacity: 0;
          transform: translate(-50%, -50%);
          background: radial-gradient(circle at 36% 34%, #FFFFFF 0%, #FFE08A 38%, #FFD25D 62%, #D4920A 100%);
          border: 2px solid rgba(255, 250, 235, 0.95);
          box-shadow:
            0 0 0 3px rgba(255, 210, 93, 0.2),
            0 0 18px rgba(255, 210, 93, 0.5);
          will-change: top, opacity;
        }

        .scroll-content.is-timeline-thumb-visible .timeline-thumb {
          opacity: 1;
        }

        .hiw-section {
          display: flex;
          align-items: center;
          padding: 2rem 1rem 2rem 3rem;
          border-bottom: none;
          position: relative;
          min-height: auto;
          padding-left: 100px;
          z-index: 1;
        }

        @media (min-width: 1200px) {
          .hiw-section {
            min-height: 22vh;
            padding-top: 2.5rem;
            padding-bottom: 2.5rem;
          }
        }

        .hiw-section .services-one__content-wrapper {
          position: relative;
          overflow: hidden;
          width: 100%;
          padding: 1.85rem 2rem;
          border-radius: 20px;
          border: 1px solid rgba(255, 255, 255, 0.09);
          background: linear-gradient(155deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 55%, rgba(92, 176, 233, 0.03) 100%);
          backdrop-filter: blur(14px);
          -webkit-backdrop-filter: blur(14px);
          transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hiw-section .services-one__content-wrapper::before {
          content: '';
          position: absolute;
          inset: 0;
          border-radius: inherit;
          background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 28%);
          pointer-events: none;
          opacity: 0.6;
          transition: opacity 0.35s ease;
        }

        .hiw-section:not(.in-view) .services-one__content-wrapper {
          opacity: 0.55;
          transform: scale(0.985);
        }

        .hiw-section.in-view .services-one__content-wrapper {
          opacity: 1;
          background: linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(61, 114, 252, 0.06) 100%);
          border-color: rgba(255, 210, 93, 0.35);
          box-shadow:
            0 20px 56px rgba(0, 0, 0, 0.32),
            0 0 0 1px rgba(255, 210, 93, 0.08) inset,
            0 1px 0 rgba(255, 255, 255, 0.12) inset;
          transform: translateX(8px) scale(1);
        }

        .hiw-section.in-view .services-one__content-wrapper::before {
          opacity: 1;
        }

        .hiw-section.in-view .services-one__content-wrapper::after {
          content: '';
          position: absolute;
          left: 0;
          top: 12%;
          bottom: 12%;
          width: 4px;
          border-radius: 0 6px 6px 0;
          background: linear-gradient(180deg, #FFD25D 0%, #5CB0E9 55%, #3D72FC 100%);
          box-shadow: 0 0 20px rgba(255, 210, 93, 0.35);
        }

        .hiw-section .services-one__content-wrapper .d-flex {
          position: relative;
          z-index: 1;
          gap: 1.5rem;
          align-items: flex-start;
        }

        .hiw-section .services-one__content-wrapper .d-flex > div:last-child {
          flex-shrink: 0;
          padding-top: 0.25rem;
        }

        .hiw-section.completed .services-one__content-wrapper {
          opacity: 0.72;
          border-color: rgba(92, 176, 233, 0.2);
        }

        .hiw-section.in-view .services-one__title {
          color: #fff;
          font-size: 1.85rem;
          letter-spacing: -0.025em;
          background: linear-gradient(135deg, #FFFFFF 30%, #FFD25D 100%);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
        }

        .hiw-section:not(.in-view) .services-one__title {
          color: rgba(255, 255, 255, 0.82);
        }

        .hiw-section .services-one__text {
          max-width: 36rem;
          line-height: 1.8;
          font-size: 0.98rem;
        }

        .hiw-section:not(.in-view) .services-one__text {
          color: var(--text-on-dark-muted);
        }

        .hiw-section.in-view .services-one__text {
          color: rgba(255, 255, 255, 0.88);
        }

        .hiw-section::before {
          content: '';
          position: absolute;
          left: var(--timeline-x);
          top: 50%;
          transform: translate(-50%, -50%);
          width: 12px;
          height: 12px;
          border-radius: 50%;
          background: var(--navy-deep);
          border: 2px solid rgba(255, 255, 255, 0.22);
          z-index: 2;
          transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
        }

        .hiw-section::after {
          content: '';
          position: absolute;
          left: calc(var(--timeline-x) + 6px);
          top: 50%;
          width: 40px;
          height: 2px;
          transform: translateY(-50%);
          background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
          z-index: 1;
          transition: width 0.3s ease, background 0.3s ease, opacity 0.3s ease;
        }

        .hiw-section.completed::before {
          background: #5CB0E9;
          border-color: rgba(92, 176, 233, 0.8);
          box-shadow: 0 0 12px rgba(92, 176, 233, 0.4);
        }

        .hiw-section.completed::after {
          background: linear-gradient(90deg, rgba(92, 176, 233, 0.5), rgba(92, 176, 233, 0.08));
        }

        .hiw-section.in-view::before {
          opacity: 0;
        }

        body.is-scrolling .hiw-section .services-one__content-wrapper,
        body.is-scrolling .hiw-section::before,
        body.is-scrolling .hiw-section::after {
          transition: none !important;
        }

        .hiw-section.in-view::after {
          left: calc(var(--timeline-x) + 9px);
          width: 48px;
          height: 2px;
          background: linear-gradient(90deg, #FFD25D, rgba(255, 210, 93, 0.15));
        }

        .hiw-section:last-child {
          border-bottom: none;
        }

        .hiw-section .btn-cta-primary {
          opacity: 0.8;
          transition: opacity 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        .hiw-section.in-view .btn-cta-primary {
          opacity: 1;
        }

        .hiw-section:not(.in-view) .btn-cta-primary {
          background: transparent;
          color: var(--gold);
          border-color: rgba(255, 210, 93, 0.4);
        }

        .hiw-section:not(.in-view) .btn-cta-primary:hover {
          background: rgba(255, 210, 93, 0.1);
          color: var(--gold);
          border-color: var(--gold);
        }

        .hiw-section.in-view .btn-cta-primary i {
          transition: transform 0.25s ease;
        }

        .hiw-section.in-view .btn-cta-primary:hover i {
          transform: translateX(4px);
        }

        .services-one__content-wrapper {
          position: relative;
          z-index: 1;
        }
        
        .list-unstyled {
            padding-left: 0;
            list-style: none;
        }
        .services-one__services-list {
            position: relative;
            display: block;
        }
        .services-one__services-list li {
            position: relative;
            display: block;
        }
        .services-one__services-single {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255, 255, 255, .10);
            padding-bottom: 19px;
        }
        .services-one__count-and-content {
            position: relative;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .services-one__count {
            position: relative;
            display: block;
            top: 5px;
        }
        .services-one__count::before {
            position: relative;
            display: inline-block;
            font-size: 20px;
            line-height: 27px;
            font-weight: 500;
            color: var(--text-on-dark-muted);
            counter-increment: count 1;
            content: "0" counter(count);
            transition: 500ms;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }
        .services-one__content {
            position: relative;
            display: block;
            width: 95%;
        }
        .services-one__title {
            font-size: 26px;
            font-weight: 700;
            line-height: 36px;
            text-transform: capitalize;
            margin-bottom: 1rem;
            color: var(--text-on-dark);
        }
        .services-one__title a {
            color: var(--text-on-dark);
            text-decoration: none;
        }
        .services-one__text {
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            color: var(--text-on-dark-muted);
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 1.5rem;
        }

        .services-one__content .btn-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            text-transform: capitalize;
            border: 1px solid transparent;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
            white-space: nowrap;
        }

        .services-one__content .btn-cta-primary {
            background: #FFD25D;
            color: #0B192C;
            border-color: #FFD25D;
            font-weight: 600;
        }

        .services-one__content .btn-cta-primary:hover {
            background: #FFF8EE;
            border-color: #FFF8EE;
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(255, 210, 93, 0.3);
            color: #0B192C;
        }

        .services-one__services-list {
            display: none;
        }
        .services-one__arrow {
            position: relative;
            display: block;
        }
        .services-one__arrow a {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            font-size: 18px;
            color: #ffffff;
            background-color: transparent;
            border-radius: 50%;
            z-index: 1;
            transition: all 500ms ease;
        }
        .services-one__arrow a:before {
            content: "";
            position: absolute;
            top: 0px;
            left: 0px;
            right: 0px;
            bottom: 0px;
            border-radius: 50%;
            border: 1px solid transparent;
            background: linear-gradient(90deg, #3D72FC, #5CB0E9) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            -webkit-transition: all 500ms ease;
            -moz-transition: all 500ms ease;
            -ms-transition: all 500ms ease;
            -o-transition: all 500ms ease;
            transition: all 500ms ease;
            visibility: visible;
            opacity: 1;
            z-index: -1;
        }
        [class^="icon-"], [class*=" icon-"] {
            font-family: 'icomoon' !important;
            speak: never;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        .services-one__arrow a span {
            transform: rotate(-45deg);
        }
        .icon-right-arrow:before {
            content: "\e900";
        }
        .services-one__hover-img {
            position: absolute;
            top: -30px;
            right: 75px;
            height: 150px;
            width: 150px;
            overflow: hidden;
            border-radius: 8px;
            -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
            pointer-events: none;
            -webkit-animation: inactiveImageAnimation 1s forwards ease;
            animation: inactiveImageAnimation 1s forwards ease;
            z-index: 2;
        }
        .services-one__hover-img img {
            width: 100%;
            border-radius: 8px;
        }
        @keyframes inactiveImageAnimation {
            0% {
                clip-path: inset(0 0 0 0);
            }
            100% {
                clip-path: inset(0 0 0 100%);
            }
        }
        .services-one__services-list li:hover .services-one__arrow a {
            background-color: #FFD25D;
            color: #0B192C;
        }
        .services-one__services-list li:hover .services-one__hover-img {
            -webkit-animation: activeImageAnimation 1s forwards ease;
            animation: activeImageAnimation 1s forwards ease;
        }
        @keyframes activeImageAnimation {
            0% {
                clip-path: inset(0 100% 0 0);
            }
            100% {
                clip-path: inset(0 0 0 0);
            }
        }
        
        .list-unstyled {
            padding-left: 0;
            list-style: none;
        }
        .services-one__services-list {
            position: relative;
            display: block;
        }
        .services-one__services-list li {
            position: relative;
            display: block;
        }
        .services-one__services-single {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255, 255, 255, .10);
            padding-bottom: 19px;
        }
        .services-one__count-and-content {
            position: relative;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .services-one__count {
            position: relative;
            display: block;
            top: 5px;
        }
        .services-one__count::before {
            position: relative;
            display: inline-block;
            font-size: 20px;
            line-height: 27px;
            font-weight: 500;
            color: var(--text-on-dark-muted);
            counter-increment: count 1;
            content: "0" counter(count);
            transition: 500ms;
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
        }
        .services-one__content {
            position: relative;
            display: block;
            width: 95%;
        }
        .services-one__title {
            font-size: 26px;
            font-weight: 700;
            line-height: 36px;
            text-transform: capitalize;
            margin-bottom: 1rem;
            color: var(--text-on-dark);
        }
        .services-one__title a {
            color: var(--text-on-dark);
            text-decoration: none;
        }
        .services-one__text {
            -webkit-transition: all 500ms ease;
            transition: all 500ms ease;
            color: var(--text-on-dark-muted);
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 1.5rem;
        }

        .our-services .btn-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            text-transform: capitalize;
            border: 1px solid transparent;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
            white-space: nowrap;
        }

        .hiw-section.in-view .btn-cta-primary {
            /*background: #FFD25D;*/
            background: linear-gradient(145deg, rgb(255 210 93 / 84%) 0%, rgb(92 176 233 / 75%) 50%, rgb(61 114 252) 100%);
            color: #fff;
            /*color: #0B192C;*/
            border-color: #FFD25D;
            font-weight: 600;
            gap: 10px;
            border-radius: 999px;
            padding: 10px 20px;
        }

        .hiw-section.in-view .btn-cta-primary:hover {
            background: #FFF8EE;
            border-color: #FFF8EE;
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(255, 210, 93, 0.3);
            color: #0B192C;
        }

        .services-one__services-list {
            display: none;
        }
        .services-one__arrow {
            position: relative;
            display: block;
        }
        .services-one__arrow a {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            font-size: 18px;
            color: #ffffff;
            background-color: transparent;
            border-radius: 50%;
            z-index: 1;
            transition: all 500ms ease;
        }
        .services-one__arrow a:before {
            content: "";
            position: absolute;
            top: 0px;
            left: 0px;
            right: 0px;
            bottom: 0px;
            border-radius: 50%;
            border: 1px solid transparent;
            background: linear-gradient(90deg, #3D72FC, #5CB0E9) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            -webkit-transition: all 500ms ease;
            -moz-transition: all 500ms ease;
            -ms-transition: all 500ms ease;
            -o-transition: all 500ms ease;
            transition: all 500ms ease;
            visibility: visible;
            opacity: 1;
            z-index: -1;
        }
        [class^="icon-"], [class*=" icon-"] {
            font-family: 'icomoon' !important;
            speak: never;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        .services-one__arrow a span {
            transform: rotate(-45deg);
        }
        .icon-right-arrow:before {
            content: "\e900";
        }
        .services-one__hover-img {
            position: absolute;
            top: -30px;
            right: 75px;
            height: 150px;
            width: 150px;
            overflow: hidden;
            border-radius: 8px;
            -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
            pointer-events: none;
            -webkit-animation: inactiveImageAnimation 1s forwards ease;
            animation: inactiveImageAnimation 1s forwards ease;
            z-index: 2;
        }
        .services-one__hover-img img {
            width: 100%;
            border-radius: 8px;
        }
        @keyframes inactiveImageAnimation {
            0% {
                clip-path: inset(0 0 0 0);
            }
            100% {
                clip-path: inset(0 0 0 100%);
            }
        }
        .services-one__services-list li:hover .services-one__arrow a {
            background-color: #FFD25D;
            color: #0B192C;
        }
        .services-one__services-list li:hover .services-one__hover-img {
            -webkit-animation: activeImageAnimation 1s forwards ease;
            animation: activeImageAnimation 1s forwards ease;
        }
        @keyframes activeImageAnimation {
            0% {
                clip-path: inset(0 100% 0 0);
            }
            100% {
                clip-path: inset(0 0 0 0);
            }
        }
    
        .global {
            background: var(--gradient-light);
            padding: 80px 0;
            position: relative;
        }

        .global::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: min(600px, 80%);
            height: 1px;
            background: var(--gradient-brand);
            opacity: 0.35;
        }

        .accordions-wrap {
            display: flex;
            gap: 12px;
            height: 450px;
            width: 100%;
        }

        .accordions-box {
            position: relative;
            flex: 1; 
            overflow: hidden;
            border-radius: 12px;
            transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            cursor: pointer;
            box-shadow: var(--shadow-card);
        }

        /* Active State */
        .accordions-box.active {
            flex: 5; 
        }

       .accordions-box video {
        position: absolute;
        top: 0;
        left: 0;
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover; 
        filter: brightness(0.6);
        transition: filter 0.5s ease;
    }

    .accordions-box {
        background-color: #000; 
        position: relative;
        flex: 1;
        overflow: hidden;
        border-radius: 6px;
        transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .accordions-box.active video {
        filter: brightness(1);
    }
    
    .event-info {
        position: absolute;
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 16px 18px;
        border-radius: 12px;
        background: linear-gradient(180deg, rgba(13, 28, 61, 0.2), rgba(13, 28, 61, 0.9));
        border: 1px solid rgba(238, 247, 253, 0.2);
        color: #eef7fd;
        z-index: 2;
        opacity: 0;
        transform: translateY(14px);
        transition: opacity 0.28s ease, transform 0.28s ease;
        pointer-events: none;
    }

    .accordions-box.active .event-info {
        opacity: 1;
        transform: translateY(0);
    }

    .event-tag {
        display: inline-block;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #0d1c3d;
        background: #eef7fd;
        border-radius: 999px;
        padding: 5px 10px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .event-title {
        font-size: 1.15rem;
        font-weight: 600;
        line-height: 1.35;
        margin: 0 0 6px;
        color: #fff;
    }

    .event-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 0.82rem;
        color: rgba(238, 247, 253, 0.88);
    }

    @media (max-width: 767.98px) {
        .event-info {
            left: 10px;
            right: 10px;
            bottom: 10px;
            padding: 12px;
        }

        .event-title {
            font-size: 0.95rem;
            margin-bottom: 4px;
        }

        .event-meta {
            font-size: 0.75rem;
            gap: 8px;
        }
    }
    
    #accordionMain {
        margin-top: 2rem;
    }

    .global-pill {
        font-size: 14px;
        color: var(--blue);
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .global h2 {
        line-height: 70px;
        font-size: 56px;
        letter-spacing: -1px;
        font-weight: 600;
        margin-bottom: -14px;
        color: var(--text-on-light);
    }
    .global-description {
        color: var(--text-on-light-muted);
        line-height: 1.75rem;
        font-weight: 500;
    }
    /* =========================
       SPONSORS SECTION
    ==========================*/
    .sponsors-section {
        position: relative;
        padding: 5.5rem 0;
        background: linear-gradient(165deg, #07122b 0%, #0b192c 42%, #0d1c3d 100%);
        color: var(--text-on-dark);
        overflow: hidden;
    }

    .sponsors-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        z-index: 0;
        background: linear-gradient(90deg, transparent 0%, rgba(92, 176, 233, 0.45) 35%, rgba(255, 210, 93, 0.35) 65%, transparent 100%);
        pointer-events: none;
    }

    .sponsors-section__bg {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
    }

    .sponsors-section__mesh {
        position: absolute;
        inset: -10% -5%;
        background:
            radial-gradient(ellipse 55% 45% at 18% 28%, rgba(92, 176, 233, 0.2) 0%, transparent 58%),
            radial-gradient(ellipse 50% 40% at 82% 55%, rgba(61, 114, 252, 0.16) 0%, transparent 55%),
            radial-gradient(ellipse 45% 38% at 48% 95%, rgba(255, 210, 93, 0.1) 0%, transparent 52%),
            radial-gradient(ellipse 35% 30% at 65% 15%, rgba(92, 176, 233, 0.12) 0%, transparent 50%);
        animation: sponsors-mesh-drift 16s ease-in-out infinite alternate;
    }

    .sponsors-section__beam {
        position: absolute;
        width: 220px;
        height: 150%;
        top: -25%;
        border-radius: 50%;
        background: linear-gradient(180deg, transparent 0%, rgba(92, 176, 233, 0.07) 45%, rgba(61, 114, 252, 0.05) 55%, transparent 100%);
        filter: blur(28px);
        opacity: 0.85;
    }

    .sponsors-section__beam--1 {
        left: 12%;
        transform: rotate(22deg);
        animation: sponsors-beam-1 20s ease-in-out infinite alternate;
    }

    .sponsors-section__beam--2 {
        right: 8%;
        transform: rotate(-18deg);
        background: linear-gradient(180deg, transparent 0%, rgba(255, 210, 93, 0.06) 48%, rgba(92, 176, 233, 0.04) 58%, transparent 100%);
        animation: sponsors-beam-2 24s ease-in-out infinite alternate;
    }

    .sponsors-section__grid {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
        background-size: 56px 56px;
        mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, #000 12%, transparent 75%);
        opacity: 0.7;
    }

    .sponsors-section__glow {
        position: absolute;
        border-radius: 50%;
        filter: blur(70px);
        pointer-events: none;
        animation: sponsors-glow-pulse 10s ease-in-out infinite;
    }

    .sponsors-section__glow--1 {
        width: 480px;
        height: 480px;
        top: -140px;
        right: -100px;
        background: radial-gradient(circle, rgba(61, 114, 252, 0.38) 0%, transparent 70%);
        animation-delay: 0s;
    }

    .sponsors-section__glow--2 {
        width: 400px;
        height: 400px;
        bottom: -120px;
        left: -80px;
        background: radial-gradient(circle, rgba(255, 210, 93, 0.22) 0%, transparent 70%);
        animation-delay: -3s;
    }

    .sponsors-section__glow--3 {
        width: 320px;
        height: 320px;
        top: 42%;
        left: 46%;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(92, 176, 233, 0.18) 0%, transparent 72%);
        animation-delay: -6s;
    }

    .sponsors-section__sparkles {
        position: absolute;
        inset: 0;
    }

    .sponsors-section__sparkles span {
        position: absolute;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 0 8px rgba(92, 176, 233, 0.8), 0 0 16px rgba(92, 176, 233, 0.35);
        opacity: 0;
        animation: sponsors-sparkle 4s ease-in-out infinite;
    }

    .sponsors-section__sparkles span:nth-child(1) { top: 18%; left: 22%; animation-delay: 0s; }
    .sponsors-section__sparkles span:nth-child(2) { top: 32%; left: 68%; animation-delay: 0.8s; width: 2px; height: 2px; }
    .sponsors-section__sparkles span:nth-child(3) { top: 58%; left: 14%; animation-delay: 1.6s; }
    .sponsors-section__sparkles span:nth-child(4) { top: 72%; left: 78%; animation-delay: 2.2s; width: 2px; height: 2px; }
    .sponsors-section__sparkles span:nth-child(5) { top: 44%; left: 42%; animation-delay: 2.8s; box-shadow: 0 0 8px rgba(255, 210, 93, 0.7), 0 0 14px rgba(255, 210, 93, 0.3); }
    .sponsors-section__sparkles span:nth-child(6) { top: 82%; left: 52%; animation-delay: 3.4s; width: 2px; height: 2px; }

    @keyframes sponsors-mesh-drift {
        0% { transform: translate(0, 0) scale(1); }
        100% { transform: translate(2%, -1.5%) scale(1.04); }
    }

    @keyframes sponsors-beam-1 {
        0% { transform: rotate(22deg) translateX(0); opacity: 0.65; }
        100% { transform: rotate(22deg) translateX(40px); opacity: 1; }
    }

    @keyframes sponsors-beam-2 {
        0% { transform: rotate(-18deg) translateX(0); opacity: 0.55; }
        100% { transform: rotate(-18deg) translateX(-35px); opacity: 0.95; }
    }

    @keyframes sponsors-glow-pulse {
        0%, 100% { opacity: 0.72; }
        50% { opacity: 1; }
    }

    @keyframes sponsors-sparkle {
        0%, 100% { opacity: 0; transform: scale(0.6); }
        45%, 55% { opacity: 0.85; transform: scale(1); }
    }

    @media (prefers-reduced-motion: reduce) {
        .sponsors-section__mesh,
        .sponsors-section__beam,
        .sponsors-section__glow,
        .sponsors-section__sparkles span {
            animation: none;
        }
    }

    .sponsors-section__inner {
        position: relative;
        z-index: 1;
    }

    .sponsors-intro {
        margin: 0 0 2.75rem;
        text-align: left;
    }

    .sponsors-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding: 0.45rem 0.9rem;
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--gold);
        background: rgba(255, 210, 93, 0.1);
        border: 1px solid rgba(255, 210, 93, 0.22);
    }

    .sponsors-title {
        margin: 0;
        font-size: clamp(2.1rem, 4vw, 3rem);
        font-weight: 700;
        letter-spacing: -0.03em;
        line-height: 1.12;
        color: #fff;
    }

    .sponsors-title span {
        color: var(--sky-blue);
    }

    .sponsors-sub {
        margin: 1.1rem 0 0;
        font-size: 1.02rem;
        line-height: 1.75;
        color: var(--text-on-dark-muted);
    }

    .sponsors-stage {
        padding: 1.5rem 0;
        overflow: hidden;
    }

    .sponsors-marquee {
        position: relative;
        margin-bottom: 1rem;
        mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    }

    .sponsors-marquee:last-child {
        margin-bottom: 0;
    }

    .sponsors-marquee--premium {
        padding: 0.25rem 0;
    }

    .sponsors-marquee__track {
        display: flex;
        align-items: center;
        gap: 1.35rem;
        width: max-content;
        animation: sponsors-marquee-left 150s linear infinite;
    }

    .sponsors-marquee__track--fast {
        animation-duration: 150s;
    }

    .sponsors-marquee--reverse .sponsors-marquee__track {
        animation-name: sponsors-marquee-right;
    }

    .sponsors-card {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease;
    }

    .sponsors-card--premium {
        width: 210px;
        height: 114px;
        padding: 12px 16px;
        align-items: stretch;
        justify-content: center;
        border-radius: 18px;
        background: #fff;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
        box-sizing: border-box;
    }

    /*.sponsors-card--premium::before {*/
    /*    content: "";*/
    /*    position: absolute;*/
    /*    inset: 0;*/
    /*    background: linear-gradient(135deg, rgba(255, 210, 93, 0.08) 0%, transparent 45%, rgba(92, 176, 233, 0.1) 100%);*/
    /*    pointer-events: none;*/
    /*}*/

    .sponsors-card--premium:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: rgba(255, 210, 93, 0.35);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    }

    .sponsors-card--premium img {
        position: relative;
        z-index: 1;
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
        min-height: 0;
        height: 100%;
        object-fit: contain;
        object-position: center;
        opacity: 1;
        filter: none;
        transition: transform 0.3s ease;
    }

    .sponsors-card--premium:hover img {
        /*opacity: 1;*/
        transform: scale(1.04);
    }

    .sponsors-footer {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1.25rem;
        margin-top: 2.25rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .sponsors-footer p {
        margin: 0;
        /*max-width: 28rem;*/
        font-size: 0.95rem;
        line-height: 1.65;
        color: var(--text-on-dark-muted);
    }

    @keyframes sponsors-marquee-left {
        from { transform: translateX(5%); }
        to { transform: translateX(-95%); }
    }

    @keyframes sponsors-marquee-right {
        from { transform: translateX(-95%); }
        to { transform: translateX(2%); }
    }

    @media (max-width: 575.98px) {
        .sponsors-section {
            padding: 4rem 0;
        }

        .sponsors-card--premium {
            width: 172px;
            height: 96px;
            padding: 10px 12px;
        }

        /*.sponsors-card--premium img {*/
        /*    max-height: 34px;*/
        /*}*/

        .sponsors-footer {
            flex-direction: column;
            align-items: flex-start;
        }

        .sponsors-footer .btn-cta {
            width: 100%;
            justify-content: center;
        }
    }

    .global-pill {
        font-size: 14px;
        color: var(--blue);
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .global h2 {
        line-height: 70px;
        font-size: 50px;
        letter-spacing: -1px;
        font-weight: 600;
        margin-bottom: -14px;
        color: var(--text-on-light);
    }
    .global-description {
        color: var(--text-on-light-muted);
        line-height: 1.75rem;
        font-weight: 500;
    }
    
    /* Contact Us */
    .contact-card {
        background: #fff;
        border-radius: 16px;
        padding: 27px 21px 35px;
        box-shadow: 0 8px 25px rgb(27 55 56 / .12);
        transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
        position: relative;
        overflow: hidden;
        text-align: start;
        word-break: break-word;
    }
    .contact-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgb(27 55 56 / .18);
    }
    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: radial-gradient(ellipse 70% 55% at 12% 0%, rgba(92, 176, 233, 0.22) 0%, transparent 58%),
                radial-gradient(ellipse 60% 50% at 88% 100%, rgba(61, 114, 252, 0.18) 0%, transparent 52%),
                radial-gradient(ellipse 45% 40% at 50% 50%, rgba(255, 210, 93, 0.04) 0%, transparent 60%),
                var(--gradient-footer);
    }
    .contact-category {
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        margin-bottom: 10px;
        display: inline-block;
        padding: 10px;
        background: var(--gradient-brand);
        border-radius: 50px;
        display: flex;
        justify-content: start;
        align-items: center;
        max-width: fit-content;
    }
    .contact-title {
        color: #0d1c3d;
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    .contact-subtitle {
        color: #666;
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 15px;
        letter-spacing: .3px;
    }
    .contact-card .divider {
        width: 50px;
        height: 3px;
        background: #0d1c3d;
        margin-bottom: 15px;
        border-radius: 2px;
    }
    .contact-detail {
        margin-bottom: 24px;
        position: relative;
        z-index: 1;
    }
    .contact-detail:last-child {
        margin-bottom: 0;
    }
    
    .contact-card a {
        color: #0d1c3d;
    }

    /* =========================
           FOOTER
        ==========================*/

        .closing-cta-section {
            background: var(--gradient-cta);
            border-top: 1px solid rgba(61, 114, 252, 0.12);
            padding: 72px 0 56px;
            color: var(--text-on-light);
            position: relative;
            overflow: hidden;
        }

        .closing-cta-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(61, 114, 252, 0.1) 0%, transparent 70%);
            top: -120px;
            right: -80px;
            pointer-events: none;
        }

        .site-footer {
            background:
                radial-gradient(ellipse 70% 55% at 12% 0%, rgba(92, 176, 233, 0.22) 0%, transparent 58%),
                radial-gradient(ellipse 60% 50% at 88% 100%, rgba(61, 114, 252, 0.18) 0%, transparent 52%),
                radial-gradient(ellipse 45% 40% at 50% 50%, rgba(255, 210, 93, 0.04) 0%, transparent 60%),
                var(--gradient-footer);
            margin-top: 0;
            padding: 4.5rem 0 2rem;
            color: rgba(238, 247, 253, 0.96);
            position: relative;
            overflow: hidden;
        }
        
        .site-footer::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(92, 176, 233, 0.045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(92, 176, 233, 0.045) 1px, transparent 1px);
            background-size: 56px 56px;
            pointer-events: none;
            opacity: 0.7;
        }

        .site-footer::before {
            content: '';
            position: absolute;
            inset: 0 0 auto;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(92, 176, 233, 0.65), rgba(61, 114, 252, 0.75), rgba(255, 210, 93, 0.35), transparent);
            pointer-events: none;
            z-index: 1;
        }

        .footer-glow {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(80px);
            z-index: 0;
        }

        .footer-glow--left {
            width: 480px;
            height: 480px;
            top: -140px;
            left: -120px;
            background: radial-gradient(circle, rgba(61, 114, 252, 0.32) 0%, transparent 68%);
        }

        .footer-glow--right {
            width: 420px;
            height: 420px;
            bottom: -60px;
            right: -40px;
            background: radial-gradient(circle, rgba(92, 176, 233, 0.28) 0%, transparent 68%);
        }

        .footer-inner {
            margin: 0 auto;
            padding-inline: 24px;
            position: relative;
            z-index: 1;
        }

        .site-footer > .container > .footer-inner > .row {
            --bs-gutter-x: 1.5rem;
            --bs-gutter-y: 2rem;
            margin-left: calc(var(--bs-gutter-x) * -0.5);
            margin-right: calc(var(--bs-gutter-x) * -0.5);
        }

        .site-footer > .container > .footer-inner > .row > [class*="col-"] {
            padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
            padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
        }

        .footer-main-title {
            font-size: clamp(1.7rem, 2.5vw, 2.6rem);
            line-height: 1.2;
            letter-spacing: -0.02em;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-on-light);
        }

        .footer-main-copy {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-on-light-muted);
            margin-bottom: 18px;
        }

        .footer-cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .footer-cta-buttons .btn-cta-outline {
            background: #ffffff;
            color: var(--navy);
            border-color: var(--navy);
            border-width: 1.5px;
        }

        .footer-cta-buttons .btn-cta-outline:hover {
            background: var(--navy);
            color: #ffffff;
        }

        .closing-cta-section .btn-cta-primary {
            background: var(--navy);
            box-shadow: 0 8px 24px var(--shadow-navy);
        }

        .closing-cta-section .btn-cta-primary:hover {
            background: var(--navy-hover);
            box-shadow: 0 12px 32px var(--shadow-navy);
        }

        .footer-logo-link {
            display: inline-block;
            margin-bottom: 1.25rem;
        }

        .footer-logo {
            width: min(200px, 100%);
            height: auto;
            display: block;
            filter: brightness(1.05);
        }

        .footer-tagline {
            font-size: 1.05rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            color: #fff;
            margin: 0 0 0.75rem;
            max-width: 280px;
        }

        .footer-brand-desc {
            font-size: 0.9rem;
            line-height: 1.7;
            color: rgba(220, 234, 250, 0.92);
            margin: 0 0 1.5rem;
            max-width: 310px;
        }

        .footer-social {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-social a {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            border: 1px solid rgba(92, 176, 233, 0.35);
            background: linear-gradient(145deg, rgba(92, 176, 233, 0.18) 0%, rgba(61, 114, 252, 0.12) 100%);
            color: #eef7fd;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        }

        .footer-social a:hover {
            color: #fff;
            background: linear-gradient(145deg, rgba(92, 176, 233, 0.32) 0%, rgba(61, 114, 252, 0.24) 100%);
            border-color: rgba(125, 196, 245, 0.65);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(61, 114, 252, 0.28);
        }

        .footer-heading {
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
            color: #8ecbf5;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-heading::after {
            content: '';
            width: 28px;
            height: 2px;
            border-radius: 999px;
            background: var(--gradient-brand);
            opacity: 0.85;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 4px;
        }

        .footer-links a {
            display: inline-flex;
            align-items: center;
            padding: 7px 0;
            font-size: 0.92rem;
            color: rgba(238, 247, 253, 0.9);
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .footer-links a:hover {
            color: #fff;
            transform: translateX(4px);
        }

        .footer-contact {
            display: grid;
            gap: 14px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            line-height: 1.6;
            color: rgba(238, 247, 253, 0.9);
        }

        .footer-contact-item a {
            color: inherit;
            transition: color 0.2s ease;
        }

        .footer-contact-item a:hover {
            color: #fff;
        }

        .footer-contact-icon {
            flex: 0 0 38px;
            width: 38px;
            height: 38px;
            border-radius: 11px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, rgba(92, 176, 233, 0.28) 0%, rgba(61, 114, 252, 0.18) 100%);
            border: 1px solid rgba(125, 196, 245, 0.4);
            color: #b8e0fb;
            font-size: 0.85rem;
            box-shadow: 0 6px 18px rgba(61, 114, 252, 0.15);
        }

        .footer-newsletter-card {
            background: linear-gradient(155deg, rgba(92, 176, 233, 0.16) 0%, rgba(61, 114, 252, 0.1) 55%, rgba(255, 255, 255, 0.06) 100%);
            border: 1px solid rgba(125, 196, 245, 0.32);
            border-radius: 20px;
            padding: 1.75rem;
            backdrop-filter: blur(14px);
            box-shadow: 0 20px 50px rgba(8, 20, 42, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
            height: 100%;
        }

        .footer-newsletter-card .footer-heading {
            color: #fff;
            justify-content: center;
            text-align: center;
        }

        .footer-newsletter-card .footer-heading::after {
            display: none;
        }

        .footer-newsletter-card .footer-cta-copy {
            text-align: center;
        }

        .footer-cta-copy {
            font-size: 0.88rem;
            line-height: 1.7;
            color: rgba(220, 234, 250, 0.92);
            margin-bottom: 1.25rem;
        }

        .footer-divider {
            height: 1px;
            margin: 2.75rem 0 1.5rem;
            background: linear-gradient(90deg, transparent, rgba(92, 176, 233, 0.28), rgba(61, 114, 252, 0.28), transparent);
        }

        .footer-newsletter {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 12px;
        }

        .footer-newsletter input {
            height: 46px;
            border-radius: 8px;
            border: 1px solid rgba(148, 163, 184, 0.4);
            background: rgba(13, 28, 61, 0.4);
            color: #eef7fd;
            font-size: 0.9rem;
            padding: 0 14px;
            outline: none;
        }

        .footer-newsletter input::placeholder {
            color: rgba(226, 232, 240, 0.66);
        }

        .footer-newsletter input:focus {
            border-color: rgba(238, 247, 253, 0.58);
        }

        .footer-newsletter .btn-cta {
            width: 100%;
            min-height: 46px;
        }

        .footer-newsletter-trigger {
            margin-top: 4px;
        }

        /* Bootstrap newsletter modal â€” brand overrides */
        #newsletterModal .modal-content {
            background: #eef7fd;
            color: #0d1c3d;
            border: none;
            border-radius: 16px;
        }

        #newsletterModal .modal-header {
            border-bottom: 1px solid rgba(13, 28, 61, 0.1);
            padding: 22px 24px 12px;
        }

        #newsletterModal .modal-title {
            font-size: 1.35rem;
            font-weight: 600;
            color: #0d1c3d;
        }

        #newsletterModal .btn-close {
            opacity: 0.7;
        }

        #newsletterModal .modal-body {
            padding: 8px 24px 24px;
        }

        #newsletterModal .modal-copy {
            font-size: 0.92rem;
            line-height: 1.65;
            color: rgba(13, 28, 61, 0.82);
            margin-bottom: 18px;
        }

        #newsletterModal .footer-newsletter,
        #newsletterModal .newsletter-form {
            display: grid;
            gap: 12px;
        }

        #newsletterModal .footer-newsletter input,
        #newsletterModal .newsletter-form .email-input-field,
        #newsletterModal .newsletter-form .form-control {
            height: 46px;
            border-radius: 8px;
            border: 1px solid rgba(13, 28, 61, 0.22);
            background: #fff;
            color: #0d1c3d;
            font-size: 0.9rem;
            padding: 0 14px;
        }

        #newsletterModal .footer-newsletter input::placeholder,
        #newsletterModal .newsletter-form input::placeholder {
            color: rgba(13, 28, 61, 0.5);
        }

        #newsletterModal .footer-newsletter input:focus,
        #newsletterModal .newsletter-form input:focus {
            border-color: #0d1c3d;
            box-shadow: 0 0 0 0.2rem rgba(13, 28, 61, 0.12);
        }

        #newsletterModal .footer-newsletter .btn-cta,
        #newsletterModal .newsletter-form .btn-cta {
            width: 100%;
            min-height: 46px;
        }

        .footer-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
            font-size: 0.82rem;
            color: rgba(184, 210, 235, 0.95);
        }

        .footer-meta-right {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }

        .footer-meta-right a {
            color: inherit;
            transition: color 0.2s ease;
            position: relative;
        }

        .footer-meta-right a:hover {
            color: #fff;
        }

        .footer-meta-right a:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(148, 163, 184, 0.5);
            transform: translateY(-50%);
        }

        /* =========================
           HAMBURGER BUTTON
        ==========================*/

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 6px;
            border: 1px solid rgba(13, 28, 61, 0.22);
            border-radius: 8px;
            background: transparent;
            cursor: pointer;
            flex-shrink: 0;
            transition: border-color 0.2s ease, background 0.2s ease;
        }

        .hamburger:hover {
            background: rgba(13, 28, 61, 0.07);
            border-color: rgba(13, 28, 61, 0.45);
        }

        .hamburger-bar {
            display: block;
            width: 100%;
            height: 2px;
            border-radius: 999px;
            background: #0D1C3D;
            transform-origin: center;
            transition: transform 0.28s ease, opacity 0.22s ease, width 0.22s ease;
        }

        .site-header:not(.scrolled) .hamburger {
            border-color: rgba(255, 255, 255, 0.45);
        }

        .site-header:not(.scrolled) .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.7);
        }

        .site-header:not(.scrolled) .hamburger-bar {
            background: #ffffff;
        }

        .hamburger.is-open .hamburger-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.is-open .hamburger-bar:nth-child(2) {
            opacity: 0;
            width: 0;
        }

        .hamburger.is-open .hamburger-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* =========================
           MOBILE DRAWER
        ==========================*/

        .mobile-drawer {
            position: fixed;
            inset: 0;
            z-index: 998;
            display: flex;
            flex-direction: column;
            height: 100dvh;
            max-height: 100dvh;
            background: radial-gradient(circle at top left, var(--glow-blue), transparent 55%),
                radial-gradient(circle at bottom right, var(--glow-sky), transparent 55%),
                rgba(3, 3, 10, 0.97);
            backdrop-filter: blur(22px);
            padding: 0;
            transform: translateX(100%);
            transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            pointer-events: none;
        }

        .mobile-drawer.is-open {
            transform: translateX(0);
            pointer-events: auto;
        }

        .mobile-drawer-scroll {
            flex: 1 1 auto;
            min-height: 0;
            overflow-y: auto;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
            padding: 100px 32px 40px;
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-nav-links a {
            display: block;
            font-size: 1.7rem;
            font-weight: 600;
            letter-spacing: -0.03em;
            color: rgba(255, 255, 255, 0.72);
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            transition: color 0.18s ease, padding-left 0.18s ease;
        }

        .mobile-nav-links a:hover {
            color: #fff;
            padding-left: 8px;
        }

        .mobile-drawer-cta {
            margin-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-drawer-cta .btn-cta {
            width: 100%;
            justify-content: center;
            padding: 14px 24px;
            font-size: 1rem;
        }

        .mobile-drawer-footer {
            margin-top: 32px;
            padding-top: 8px;
            font-size: 0.78rem;
            color: rgba(148, 163, 184, 0.7);
        }
        
        .btn-cta-primary.footer-newsletter-trigger {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px 22px;
            border-radius: 999px;
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            border: 1px solid transparent;
            cursor: pointer;
            background: var(--gradient-brand);
            color: #fff;
            box-shadow: 0 8px 28px rgba(61, 114, 252, 0.35);
            transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
            white-space: nowrap;
        }

        .btn-cta-primary.footer-newsletter-trigger:hover {
            transform: translateY(-1px);
            box-shadow: 0 12px 32px rgba(61, 114, 252, 0.45);
            filter: brightness(1.05);
            color: #fff;
        }

         @media (max-width: 991.98px) {
            .site-header-inner {
                padding-block: 10px;
            }

            .footer-meta {
                flex-direction: column;
                align-items: flex-start;
            }

            .site-footer {
                padding: 3.5rem 0 1.75rem;
            }
        }

        @media (min-width: 1200px) {
            .mobile-drawer {
                display: none;
            }
        }

        @media (max-width: 575.98px) {
            .footer-main-title {
                font-size: 1.6rem;
            }

            .footer-newsletter-card {
                padding: 1.35rem;
            }
        }

        /* Responsive refinements for all breakpoint ranges */
        @media (max-width: 1200px) {
            .site-header-inner {
                max-width: 100%;
                padding: 14px 20px;
            }

            .heros {
                padding-top: 180px;
            }

            .heros h1 {
                font-size: clamp(4.5rem, 6vw, 6.5rem);
                line-height: 1.05;
            }

            .descript-wrap {
                max-width: 860px;
            }

            #videoBox {
                width: min(900px, 100%);
            }
        }
        
        @media (max-width: 1199.98px) {
            .site-header-inner {
                padding: 12px 18px;
                gap: 16px;
            }

            .site-logo img {
                width: 128px;
                height: auto;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .nav-cta-wrap .btn-cta-primary {
                display: none !important;
            }

            .video-ctrl {
                right: 0;
                left: auto;
                width: min(540px, calc(100% - 20px));
                height: auto;
                min-height: 85px;
            }

            .ctrl-item {
                height: auto !important;
                min-height: 85px;
                padding: 12px 16px;
                align-items: center;
            }

            .ctrl-left {
                flex: 1;
                min-width: 0;
                padding-right: 10px;
            }

            .ctrl-label {
                font-size: 0.82rem;
                line-height: 1.25;
                margin-bottom: 0;
            }

            .progress-wrap {
                top: 0;
                right: 0;
                left: auto;
                width: 98%;
            }

            .ctrl-right {
                padding-left: 12px;
            }

            .ctrl-counter {
                font-size: 0.78rem;
            }

            .hiw-section {
                min-height: auto;
                padding: 2rem 0 2rem 3.5rem;
            }

            #servicesPanelImg {
                height: auto;
                max-height: 420px;
            }

            .global h2 br{
                display: none;
            }
            .global h2 {
                font-size: 45px;
            }
        }

        @media (max-width: 991.98px) {
            .hero-cta-row {
                justify-content: center;
                flex-wrap: wrap;
            }

            .hero-video-wrap {
                min-height: auto;
                margin-top: 30px;
                padding: 0 20px;
            }

            .servces-one__img-box {
                margin-right: 0;
            }

            .section-title__title {
                font-size: 3.1rem;
                line-height: 1.1;
            }

            .servces-one__top-right {
                margin-top: 30px;
            }

            .accordions-wrap {
                flex-direction: column;
                height: 600px;
            }

            .accordions-box {
                height: 320px;
            }
        }

        @media (max-width: 767.98px) {
            .footer-cta-buttons {
                justify-content: center;
            }
            .heros {
                padding-top: 150px;
                padding-bottom: 70px;
            }

            .heros h1 {
                font-size: clamp(2.8rem, 8vw, 4.2rem);
                line-height: 1.1;
            }

            .descript-wrap p {
                font-size: 1rem;
                line-height: 1.6;
            }

            .hero-video-wrap {
                width: 100%;
                padding: 0 16px;
            }

            .servces-one__img-box,
            .servces-one__bottom-right {
                width: 100%;
            }

            .services-panel-accent {
                width: 40px;
                height: 40px;
            }

            .services-panel-accent__line--h {
                width: 32px;
            }

            .services-panel-accent__line--v {
                height: 32px;
            }

            .services-one__services-single {
                flex-direction: column;
                align-items: stretch;
                gap: 16px;
            }

            .services-one__hover-img {
                position: relative;
                top: auto;
                right: auto;
                width: 100%;
                height: auto;
                margin-top: 18px;
                clip-path: none;
                animation: none;
                pointer-events: auto;
            }

            .services-one__hover-img img {
                width: 100%;
                height: auto;
            }

            .services-one__services-list li {
                padding-bottom: 24px;
            }

            .event-info {
                left: 12px;
                right: 12px;
                bottom: 12px;
                padding: 14px 16px;
            }

            .global h2 {
                font-size: 2.7rem;
                line-height: 1.1;
            }
            .mtm {
                margin-top: 0;
            }
        }

        @media (max-width: 575.98px) {
            header {
                padding: 0 16px;
            }

            .site-header-inner {
                flex-wrap: wrap;
                gap: 12px;
            }

            .site-logo {
                font-size: 1rem;
            }

            .hero-video-wrap {
                padding: 0 12px;
            }

            .hero-cta-row {
                gap: 12px;
            }

            .video-controls-bar {
                width: calc(100% - 32px);
                bottom: 20px;
                left: 16px;
            }

            .section-title__title {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .servces-one__top-right p {
                font-size: 1rem;
            }

            .accordions-box {
                height: 240px;
            }

            #videoBox {
                transform: none !important;
                width: 100% !important;
                max-width: 100% !important;
            }
            .video-ctrl {
                position: absolute;
                top: 0;
                right: 0;
                left: auto;
                width: calc(100% - 20px);
                min-height: 85px;
                height: auto !important;
            }
            .ctrl-item {
                position: absolute;
                top: 0 !important;
                right: 0 !important;
                left: auto !important;
                height: auto !important;
                min-height: 85px;
                width: 100% !important;
                display: none;
                align-items: center;
                justify-content: space-between;
                padding: 12px 18px;
                box-sizing: border-box;
            }
            .ctrl-item.active {
                display: flex !important;
            }
            .ctrl-item {
                text-align: left;
            }
            .ctrl-right {
                padding-left: 10px;
            }
            .progress-wrap {
                display: block;
                top: 0;
                right: 0;
                left: auto;
                width: 100%;
            }
            .hiw-section {
                padding: 1.5rem 10px 1.5rem 0;
                padding-left: 44px;
            }

            .hiw-section .services-one__content-wrapper {
                padding: 1.35rem 1.25rem;
                border-radius: 16px;
            }

            .hiw-section.in-view .services-one__content-wrapper {
                transform: translateX(4px) scale(1);
            }

            .servces-one__img-caption {
                left: 14px;
                right: 14px;
                bottom: 14px;
                padding: 10px 14px;
            }

            .servces-one__img-caption-title {
                font-size: 0.95rem;
            }
            .scroll-content {
                --timeline-x: 12px;
            }

            .timeline-progress,
            .timeline-thumb,
            .hiw-section::before,
            .scroll-content::before {
                left: var(--timeline-x);
            }

            .hiw-section::after {
                left: calc(var(--timeline-x) + 5px);
                width: 22px;
            }

            .hiw-section.in-view::after {
                left: calc(var(--timeline-x) + 8px);
                width: 26px;
            }
            .services-one__text {
                font-size: 12px;
            }
            .services-one__title {
                font-size: 20px;
                line-height: normal;
                margin-bottom: 15px;
            }
            .our-services .btn-cta {
                font-size: 12px;
            }
            .heros h1 {
                font-size: 30px;
                line-height: 1.1;
            }
            .descript-wrap p {
                font-size: 14px;
            }
            .ctrl-label {
                margin-bottom: 0;
            }
        }

        /* =========================
           ABOUT PAGE
        ==========================*/
        .page-about {
            background: var(--sky-soft);
        }

        .page-hero {
            position: relative;
            padding: 10.5rem 0 5.5rem;
            background: var(--navy-deep);
            color: var(--text-on-dark);
            overflow: hidden;
        }

        .page-hero__bg-wrap {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        .page-hero__bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .page-hero__bg-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, rgba(7, 18, 43, 0.88) 0%, rgba(7, 18, 43, 0.72) 32%, rgba(13, 28, 61, 0.42) 58%, rgba(13, 28, 61, 0.22) 100%), 
                        linear-gradient(180deg, rgb(7 18 43 / 0%) 0%, transparent 38%, rgb(7 18 43 / 2%) 100%);
        }

        .page-hero__bg-dots {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.04) 0.5px, transparent 0px);
            background-size: 15px 15px;
            background-position: -14px -14px;
            opacity: 0.25;
        }

        .page-hero:has(.page-hero__bg-wrap)::before,
        .page-hero:has(.page-hero__bg-wrap)::after {
            display: none;
        }

        .page-hero > .container {
            position: relative;
            z-index: 2;
        }

        .page-hero--premium {
            padding: 10rem 0 7rem;
        }

        .page-hero__grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
            pointer-events: none;
        }

        .page-hero__orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(40px);
        }

        .page-hero__orb--1 {
            width: 480px;
            height: 480px;
            top: -140px;
            right: -100px;
            background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
        }

        .page-hero__orb--2 {
            width: 360px;
            height: 360px;
            bottom: -100px;
            left: -60px;
            background: radial-gradient(circle, rgba(255, 210, 93, 0.2) 0%, transparent 70%);
        }

        .page-hero::before {
            content: '';
            position: absolute;
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
            top: -180px;
            right: -120px;
            pointer-events: none;
            z-index: 1;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 210, 93, 0.14) 0%, transparent 70%);
            bottom: -120px;
            left: -80px;
            pointer-events: none;
            z-index: 1;
        }

        .page-hero__inner {
            position: relative;
            z-index: 1;
            max-width: 760px;
        }

        .page-hero__eyebrow {
            display: inline-block;
            margin-bottom: 1rem;
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--gold);
            border: 1px solid rgba(255, 210, 93, 0.35);
            background: rgba(255, 210, 93, 0.08);
        }

        .page-hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
            margin: 2rem 0 1.75rem;
        }

        .page-hero__actions .btn-cta-outline {
            border-color: rgba(255, 255, 255, 0.35);
            color: #fff;
        }

        .page-hero__actions .btn-cta-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.55);
        }

        .page-hero__chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .page-hero__chips span {
            padding: 0.35rem 0.75rem;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.75);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .page-hero__visual {
            position: relative;
            z-index: 1;
        }

        .page-hero__img-frame {
            position: relative;
            border-radius: 22px;
            padding: 3px;
            background: linear-gradient(145deg, rgba(255, 210, 93, 0.55) 0%, rgba(92, 176, 233, 0.5) 50%, rgba(61, 114, 252, 0.55) 100%);
            box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
            overflow: hidden;
        }

        .page-hero__img-frame img {
            display: block;
            width: 100%;
            height: clamp(340px, 38vw, 460px);
            object-fit: cover;
            border-radius: 19px;
        }

        .page-hero__img-shine {
            position: absolute;
            inset: 3px;
            border-radius: 19px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 45%);
            pointer-events: none;
        }

        .page-hero__float {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.85rem 1.1rem;
            border-radius: 14px;
            background: rgba(7, 18, 43, 0.88);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
            animation: about-float 4s ease-in-out infinite;
        }

        .page-hero__float--stats {
            left: -12px;
            bottom: 48px;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.15rem;
            animation-delay: 0s;
        }

        .page-hero__float--globe {
            right: -8px;
            top: 32px;
            font-size: 0.82rem;
            font-weight: 600;
            color: #fff;
            animation-delay: 1.2s;
        }

        .page-hero__float--globe i {
            color: var(--sky-blue);
            font-size: 1.1rem;
        }

        .page-hero__float-num {
            font-size: 1.65rem;
            font-weight: 700;
            line-height: 1;
            background: linear-gradient(135deg, #fff 30%, var(--gold) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .page-hero__float-label {
            font-size: 0.72rem;
            font-weight: 500;
            color: var(--text-on-dark-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        @keyframes about-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .about-stats-section {
            position: relative;
            z-index: 2;
            padding: 0 0 2rem;
            background: var(--gradient-light);
        }

        .about-stat-card {
            background: rgba(255, 255, 255, 0.98);
        }

        .about-stat-card .about-glanceConter {
            font-size: 80px;
            line-height: 1;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .page-hero__breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1.25rem;
            font-size: 0.82rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.78);
            text-shadow: 0 1px 10px rgba(7, 18, 43, 0.55);
        }

        .page-hero__breadcrumb a {
            color: rgba(255, 255, 255, 0.92);
            transition: color 0.2s ease;
        }

        .page-hero__breadcrumb a:hover {
            color: var(--gold);
        }

        .page-hero__title {
            font-size: clamp(2.6rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -0.03em;
            margin: 0 0 1rem;
            color: #fff;
            text-shadow: 0 2px 20px rgba(7, 18, 43, 0.65), 0 4px 40px rgba(7, 18, 43, 0.35);
        }

        .page-hero__title span {
            color: var(--gold);
            -webkit-text-fill-color: var(--gold);
            filter: drop-shadow(0 2px 14px rgba(7, 18, 43, 0.55));
        }

        .page-hero__lead {
            font-size: clamp(1rem, 1.4vw, 1.15rem);
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.94);
            margin: 0;
            text-shadow: 0 1px 14px rgba(7, 18, 43, 0.6), 0 2px 24px rgba(7, 18, 43, 0.35);
        }

        .about-story-section {
            padding: 6rem 0;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .about-story-shape {
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            right: -160px;
            top: 20%;
            background: radial-gradient(circle, var(--glow-sky) 0%, transparent 70%);
            pointer-events: none;
        }

        .about-story-collage {
            position: relative;
            padding-right: 2rem;
        }

        .about-story-collage__main {
            border-radius: 20px;
            overflow: hidden;
            padding: 3px;
            background: linear-gradient(145deg, rgba(255, 210, 93, 0.45) 0%, rgba(61, 114, 252, 0.45) 100%);
            box-shadow: var(--shadow-card);
        }

        .about-story-collage__main img {
            display: block;
            width: 100%;
            height: clamp(360px, 40vw, 500px);
            object-fit: cover;
            border-radius: 17px;
        }

        .about-story-collage__inset {
            position: absolute;
            right: 0;
            bottom: -24px;
            width: 48%;
            border-radius: 16px;
            padding: 3px;
            background: linear-gradient(145deg, var(--gold) 0%, var(--sky-blue) 100%);
            box-shadow: 0 20px 48px rgba(13, 28, 61, 0.18);
        }

        .about-story-collage__inset img {
            display: block;
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 13px;
        }

        .about-story-collage__badge {
            position: absolute;
            top: 24px;
            left: -16px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            border-radius: 14px;
            background: var(--navy-deep);
            color: #fff;
            box-shadow: 0 16px 40px rgba(7, 18, 43, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .about-story-collage__badge i {
            font-size: 1.35rem;
            color: var(--gold);
        }

        .about-story-collage__badge strong {
            display: block;
            font-size: 0.92rem;
            font-weight: 600;
        }

        .about-story-collage__badge span {
            font-size: 0.72rem;
            color: var(--text-on-dark-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .about-pullquote {
            margin: 0 0 1.5rem;
            padding: 1.25rem 1.25rem 1.25rem 1.5rem;
            border-left: 4px solid transparent;
            border-image: linear-gradient(180deg, var(--gold) 0%, var(--blue) 100%) 1;
            background: linear-gradient(90deg, rgba(92, 176, 233, 0.08) 0%, transparent 100%);
            border-radius: 0 12px 12px 0;
            font-size: 1.05rem;
            font-weight: 500;
            line-height: 1.65;
            color: var(--text-on-light);
            font-style: italic;
        }

        .about-industry-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            margin-top: 1.75rem;
        }

        .about-industry-tags span {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.5rem 0.85rem;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--text-on-light);
            background: var(--sky-soft);
            border: 1px solid var(--border-on-light);
            transition: border-color 0.2s ease, transform 0.2s ease;
        }

        .about-industry-tags span i {
            color: var(--blue);
            font-size: 0.72rem;
        }

        .about-industry-tags span:hover {
            border-color: rgba(61, 114, 252, 0.35);
            transform: translateY(-2px);
        }

        .about-story-content .section-title__tagline-box {
            margin-bottom: 1rem;
        }

        .about-story-content h2 {
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.03em;
            color: var(--text-on-light);
            margin: 0 0 1.5rem;
        }

        .about-story-content h2 span {
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-story-content p {
            font-size: 1.02rem;
            line-height: 1.85;
            color: var(--text-on-light-muted);
            margin-bottom: 1.25rem;
        }

        .about-story-content p:last-child {
            margin-bottom: 0;
        }

        .about-pillars-section {
            padding: 6rem 0;
            background: var(--navy-deep);
            color: var(--text-on-dark);
            position: relative;
            overflow: hidden;
        }

        .about-pillars-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(61, 114, 252, 0.06);
            pointer-events: none;
        }

        .about-pillars-header {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 42rem;
            margin: 0 auto 3.5rem;
        }

        .about-pillars-header h2 {
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            margin: 0 0 0.75rem;
        }

        .about-pillars-header h2 span {
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-pillars-header p {
            color: var(--text-on-dark-muted);
            font-size: 1.02rem;
            line-height: 1.7;
            margin: 0;
        }

        .about-pillars-shape {
            position: absolute;
            width: 500px;
            height: 500px;
            left: -200px;
            top: 10%;
            border-radius: 50%;
            background: rgba(61, 114, 252, 0.08);
            pointer-events: none;
        }

        .about-pillar-card {
            position: relative;
            z-index: 1;
            height: 100%;
            padding: 2.25rem 1.85rem 2rem;
            border-radius: 22px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(12px);
            overflow: hidden;
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .about-pillar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--sky-blue);
        }

        .about-pillar-card:hover {
            transform: translateY(-6px);
            border-color: rgba(92, 176, 233, 0.4);
            box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
        }

        .about-pillar-num {
            position: absolute;
            top: 1rem;
            right: 1.25rem;
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
            color: rgba(255, 255, 255, 0.06);
        }

        .about-pillar-icon {
            width: 58px;
            height: 58px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.35rem;
            background: rgba(61, 114, 252, 0.22);
            color: var(--sky-blue);
            font-size: 1.4rem;
            box-shadow: 0 8px 24px rgba(61, 114, 252, 0.2);
        }

        .about-pillar-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 0 0 0.85rem;
            color: #fff;
        }

        .about-pillar-card p {
            font-size: 0.96rem;
            line-height: 1.75;
            color: var(--text-on-dark-muted);
            margin: 0 0 0.75rem;
        }

        .about-pillar-card ul {
            margin: 0;
            padding-left: 1.15rem;
        }

        .about-pillar-card li {
            font-size: 0.96rem;
            line-height: 1.75;
            color: var(--text-on-dark-muted);
        }

        .about-pillar-card li + li {
            margin-top: 0.35rem;
        }

        .about-value-chip {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            height: 100%;
            padding: 1.1rem 1.15rem;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.88);
            font-size: 0.88rem;
            font-weight: 500;
            transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }

        .about-value-chip i {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 210, 93, 0.12);
            color: var(--gold);
            font-size: 0.9rem;
        }

        .about-value-chip:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 210, 93, 0.25);
            transform: translateY(-2px);
        }

        .about-marquee-section {
            padding: 0;
            background: var(--blue);
            border-top: 1px solid rgba(13, 28, 61, 0.08);
            border-bottom: 1px solid rgba(13, 28, 61, 0.08);
            overflow: hidden;
        }

        .about-marquee {
            padding: 1.1rem 0;
            mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
        }

        .about-marquee__track {
            display: flex;
            gap: 2rem;
            width: max-content;
            animation: about-marquee 28s linear infinite;
        }

        .about-marquee__track span {
            flex-shrink: 0;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--text-on-dark);
            white-space: nowrap;
        }

        .about-marquee__track span::before {
            content: '◆';
            margin-right: 2rem;
            color: var(--gold);
            font-size: 0.55rem;
            vertical-align: middle;
        }

        @keyframes about-marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        .about-gallery-section {
            padding: 2rem 0; 
            background: #f4f7fc;
            position: relative;
            overflow: hidden;
        }

        .about-gallery-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 50% at 0% 0%, rgba(61, 114, 252, 0.06) 0%, transparent 55%),
                radial-gradient(ellipse 60% 45% at 100% 100%, rgba(13, 28, 61, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }

        .about-gallery-section > .container {
            position: relative;
            z-index: 1;
        }

        .about-gallery-header {
            text-align: center;
            max-width: 42rem;
            margin: 0 auto 3.25rem;
        }

        .about-gallery-header .section-title__tagline {
            justify-content: center;
        }

        .about-gallery-header h2 {
            font-size: clamp(2rem, 3.5vw, 2.65rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            color: var(--text-on-light);
            margin: 1rem 0 0;
        }

        .about-gallery-header h2 span {
            /*color: var(--sky-blue);*/
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-gallery-sub {
            margin: 1rem auto 0;
            max-width: 34rem;
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-on-light-muted);
        }

        .about-gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.35rem;
        }

        .about-gallery-item__badge {
            position: absolute;
            top: 0.85rem;
            left: 0.85rem;
            z-index: 2;
            padding: 0.3rem 0.65rem;
            border-radius: 999px;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--blue);
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(61, 114, 252, 0.12);
            box-shadow: 0 4px 12px rgba(13, 28, 61, 0.08);
        }

        .about-gallery-item__arrow {
            position: absolute;
            top: 0.85rem;
            right: 0.85rem;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(8px);
            color: #fff;
            font-size: 0.8rem;
            opacity: 0;
            transform: translateX(-4px);
            transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
        }

        .about-gallery-item:hover .about-gallery-item__arrow {
            opacity: 1;
            transform: translateX(0);
            background: var(--blue);
        }

        .about-reveal {
            opacity: 0;
            transform: translateY(32px);
        }

        .about-reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-gallery-item {
            position: relative;
            display: block;
            border: 1px solid rgba(13, 28, 61, 0.08);
            padding: 0;
            border-radius: 18px;
            overflow: hidden;
            cursor: pointer;
            background: #fff;
            aspect-ratio: 1 / 1;
            box-shadow: 0 8px 24px rgba(13, 28, 61, 0.06);
            text-decoration: none;
            color: inherit;
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
        }

        .about-gallery-item:hover {
            transform: translateY(-6px);
            border-color: rgba(61, 114, 252, 0.22);
            box-shadow: 0 20px 44px rgba(13, 28, 61, 0.12);
        }

        .about-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-gallery-item:hover img {
            transform: scale(1.06);
        }

        .about-gallery-item__overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.15rem 1.1rem;
            background: linear-gradient(180deg, transparent 42%, rgba(7, 18, 43, 0.72) 78%, rgba(7, 18, 43, 0.92) 100%);
            text-align: left;
        }

        .about-gallery-item__label {
            font-size: 0.92rem;
            font-weight: 600;
            color: #fff;
            line-height: 1.35;
            letter-spacing: -0.01em;
        }

        .about-gallery-cta {
            text-align: center;
            margin-top: 2.5rem;
        }

        .gallery-lightbox {
            position: fixed;
            inset: 0;
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: rgba(4, 10, 24, 0.92);
            backdrop-filter: blur(8px);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

        .gallery-lightbox.is-open {
            opacity: 1;
            visibility: visible;
        }

        .gallery-lightbox__dialog {
            position: relative;
            width: min(960px, 100%);
        }

        .gallery-lightbox__img {
            width: 100%;
            max-height: 78vh;
            object-fit: contain;
            border-radius: 12px;
            display: block;
        }

        .gallery-lightbox__caption {
            margin-top: 1rem;
            text-align: center;
            color: #fff;
            font-size: 1rem;
            font-weight: 500;
        }

        .gallery-lightbox__close,
        .gallery-lightbox__nav {
            position: absolute;
            border: none;
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .gallery-lightbox__close:hover,
        .gallery-lightbox__nav:hover {
            background: rgba(255, 255, 255, 0.22);
        }

        .gallery-lightbox__close {
            top: -56px;
            right: 0;
        }

        .gallery-lightbox__nav--prev {
            left: -56px;
            top: 50%;
            transform: translateY(-50%);
        }

        .gallery-lightbox__nav--next {
            right: -56px;
            top: 50%;
            transform: translateY(-50%);
        }

        .gallery-lightbox__counter {
            position: absolute;
            top: -56px;
            left: 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.88rem;
        }

        .site-nav .nav-links a.is-active {
            color: var(--gold);
        }
        
        @media (max-width: 1399.98px){
            .nav-links a {
                font-size: 13px;
            }
        }

        @media (max-width: 991.98px) {
            .page-hero--premium {
                padding: 8.5rem 0 5rem;
            }

            .page-hero__visual {
                margin-top: 1rem;
            }

            .page-hero__float--stats {
                left: 8px;
                bottom: 24px;
            }

            .about-stats-section {
                margin-top: -2rem;
            }

            .about-story-collage {
                padding-right: 0;
                margin-bottom: 2rem;
            }

            .about-gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.1rem;
            }

            .gallery-lightbox__nav--prev {
                left: 8px;
            }

            .gallery-lightbox__nav--next {
                right: 8px;
            }
        }

        @media (max-width: 575.98px) {
            .glances h2 {
                font-size: 40px;
                line-height: normal;
                letter-spacing: normal;
            }
            .glances h2 br {
                display: none;
            }
            .page-hero {
                padding: 8rem 0 4rem;
            }

            .page-hero__actions {
                flex-direction: column;
            }

            .page-hero__actions .btn-cta {
                width: 100%;
                justify-content: center;
            }

            .about-gallery-grid {
                grid-template-columns: 1fr;
            }

            .about-gallery-item {
                aspect-ratio: 4 / 3;
            }

            .about-story-section,
            .about-pillars-section,
            .about-gallery-section {
                padding: 4rem 0;
            }

            .about-story-collage__inset {
                width: 55%;
                bottom: -16px;
            }
            .site-header {
                padding: 0 0;
            }
            .site-header-inner {
                padding: 12px 0;
            }
            .global h2 {
                font-size: 28px;
                line-height: 1.1;
            }
        }
        
        @media (max-width: 400.98px){
            .about-gallery-item {
                aspect-ratio: 3 / 3;
            }
            .footer-main-copy {
                font-size: 12px;
                line-height: normal;
            }
            .footer-main-title {
                font-size: 16px;
            }
            .hiw-section .services-one__text {
                max-width: 100%;
                font-size: 13px;
            }
            .hiw-section.in-view .services-one__title{
                font-size: 25px;
            }
            .hiw-section .services-one__content-wrapper {
                padding: 1.35rem 14px;
            }
            .hiw-section {
                padding-left: 37px;
            }
            .servces-one__top-right {
                margin-top: 0;
            }
            .section-title__title {
                font-size: 17px;
                line-height: normal;
            }
            .about-feature-text {
                font-size: 12px;
                line-height: normal;
            }
            .about-feature-title {
                font-size: 17px;
                line-height: normal;
            }
            .about-headline {
                font-size: 17px;
            }
            .sponsors-intro {
                margin: 0 0 20px;
            }
            .sponsors-sub {
                font-size: 13px;
                line-height: normal;
            }
            .sponsors-title {
                font-size: 25px;
            }
            .glance-description {
                max-width: 100%;
                font-size: 12px;
            }
            .glances h2 {
                font-size: 24px;
            }
        }

