:root {
            --bg: #080b14;
            --surface: #0e1220;
            --surface2: #141929;
            --border: rgba(255, 255, 255, 0.07);
            --text: #e8eaf2;
            --muted: #7b82a0;
            --electric: #00e5ff;
            --violet: #7c3aed;
            --pink: #f72585;
            --amber: #ffb703;
            --green: #06d6a0;
            --glow: 0 0 32px rgba(0, 229, 255, 0.18);
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(8, 11, 20, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border);
        }

        .header-inner {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 48px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }

        .brand img {
            height: 42px;
            width: auto;
        }

        .navbar-toggler {
            border: 1px solid var(--border);
            background: transparent;
            border-radius: 8px;
            padding: 8px 11px;
            color: var(--text);
        }

        .navbar-toggler-icon {
            filter: invert(1);
        }

        .navbar-nav {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
        }

        .navbar-nav a {
            font-family: 'Syne', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: .3px;
            color: var(--muted);
            transition: color .2s;
        }
        .navbar-collapse {
          margin-top: -20px;
        }

        .navbar-nav a:hover {
            color: var(--electric);
        }

        .nav-cta {
            padding: 8px 20px;
            border-radius: 999px;
            background: var(--electric);
            color: #080b14 !important;
            font-weight: 700 !important;
            transition: box-shadow .2s, transform .15s !important;
        }

        .nav-cta:hover {
            box-shadow: var(--glow);
            transform: translateY(-1px);
        }

        /* ── HERO ── */
        .hero {
            position: relative;
            max-width: 1240px;
            margin: 0 auto;
            padding: 80px 48px 60px;
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 64px;
            align-items: center;
        }

        /* ambient blobs */
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            opacity: .18;
            pointer-events: none;
            z-index: -1;
        }

        .blob-1 {
            width: 560px;
            height: 420px;
            background: var(--electric);
            top: -80px;
            left: -120px;
        }

        .blob-2 {
            width: 400px;
            height: 400px;
            background: var(--violet);
            top: 100px;
            right: 80px;
        }

        .blob-3 {
            width: 300px;
            height: 300px;
            background: var(--pink);
            bottom: -60px;
            left: 38%;
        }

        .brand {
            margin-left: 15px;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid rgba(0, 229, 255, .3);
            background: rgba(0, 229, 255, .06);
            color: var(--electric);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .6px;
            text-transform: uppercase;
            margin-bottom: 22px;
        }

        .hero-label span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--electric);
            animation: pulse 1.8s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: .4;
                transform: scale(1.5);
            }
        }

        .hero h1 {
            /* font-family: 'Syne', sans-serif; */
            font-size: clamp(38px, 5vw, 62px);
            font-weight: 800;
            line-height: 1.06;
            letter-spacing: -1px;
            margin-bottom: 24px;
        }

        .hero h1 .accent {
            background: linear-gradient(110deg, var(--electric), var(--violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.8;
            max-width: 520px;
            margin-bottom: 10px;
        }
        .text-italic {
            text-align: end;
            font-style: italic;
        }
        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-primary-glow {
            padding: 13px 28px;
            border-radius: 10px;
            background: var(--electric);
            color: #080b14;
            /* font-family: 'Syne', sans-serif; */
            font-weight: 700;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: box-shadow .25s, transform .15s;
        }

        .btn-primary-glow:hover {
            box-shadow: var(--glow);
            transform: translateY(-2px);
        }

        .btn-ghost {
            padding: 13px 28px;
            border-radius: 10px;
            background: transparent;
            color: var(--text);
            /* font-family: 'Syne', sans-serif; */
            font-weight: 600;
            font-size: 15px;
            border: 1px solid var(--border);
            cursor: pointer;
            transition: border-color .2s, color .2s;
        }

        .btn-ghost:hover {
            border-color: var(--electric);
            color: var(--electric);
        }

        /* Hero image card */
        .hero-photo {
            position: relative;
        }

        .hero-photo::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 22px;
            background: linear-gradient(135deg, var(--electric), var(--violet), var(--pink));
            z-index: 0;
        }

        .hero-photo img {
            position: relative;
            z-index: 1;
            width: 100%;
            border-radius: 20px;
            display: block;
        }

        /* floating badge */
        .hero-badge {
            position: absolute;
            z-index: 3;
            bottom: 24px;
            left: -28px;
            background: var(--surface2);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
            backdrop-filter: blur(12px);
        }

        .badge-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--electric), var(--violet));
            display: grid;
            place-items: center;
            font-size: 18px;
            color: #fff;
            flex-shrink: 0;
        }

        .badge-text {
            font-size: 11px;
            color: var(--muted);
        }

        .badge-text strong {
            display: block;
            font-size: 15px;
            color: var(--text);
            font-family: 'Syne', sans-serif;
            font-weight: 700;
        }

        /* ── STATS BAR ── */
        .stats-bar {
            max-width: 1240px;
            margin: 0 auto 60px;
            padding: 0 48px;
        }

        .stats-inner {
            display: flex;
            gap: 0;
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            background: var(--surface);
        }

        .stat-item {
            flex: 1;
            padding: 28px 32px;
            border-right: 1px solid var(--border);
            position: relative;
        }

        .stat-item:last-child {
            border-right: 0;
        }

        .stat-num {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--electric);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 13px;
            color: var(--muted);
        }

        /* ── SERVICES ── */
        .section-header {
            max-width: 1240px;
            margin: 0 auto 36px;
            padding: 0 48px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
        }

        .section-eyebrow {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--electric);
            margin-bottom: 10px;
        }

        .section-title {
            /* font-family: 'Syne', sans-serif; */
            font-size: clamp(26px, 3vw, 38px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -.5px;
        }

        .services-grid {
            max-width: 990px;
            margin: 0 auto 80px;
            padding: 0 150px;
            /* display: grid;
      grid-template-columns: repeat(2, 1fr); 
      gap: 16px;
      */
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;

            transform: perspective(900px) rotateY(-6deg) rotateX(1deg);
            transform-origin: center;
        }

        .service-card {
            position: relative;
            border-radius: 20px;
            border: 1px solid var(--border);
            /* background: var(--surface); */
            overflow: hidden;
            padding: 36px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 220px;
            transition: border-color .25s, transform .2s, box-shadow .25s;
        }

        .service-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, .16);
            box-shadow: 0 24px 56px rgba(0, 0, 0, .4);
        }

        /* colour accent strip */
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            border-radius: 0;
        }

        /* .sc-blue::after   { background: linear-gradient(90deg, var(--electric), var(--violet)); }
    .sc-red::after    { background: linear-gradient(90deg, var(--pink), #ff6b6b); }
    .sc-yellow::after { background: linear-gradient(90deg, var(--amber), #f4a261); }
    .sc-green::after  { background: linear-gradient(90deg, var(--green), #4cc9f0); } */

        .service-card img {
            width: 100%;
            /* max-width: 250px; */
            object-fit: none;
            /* margin-bottom: 20px;
            opacity: .92; */
            /* filter: brightness(1.05); */
            object-fit: contain;
        }

        .learn-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Syne', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: #ffffff;
            transition: gap .2s, opacity .2s;
        }

        .sc-blue {
            background: #002e77;
        }

        .sc-red {
            background: #ad0303;
        }

        .sc-yellow {
            background: #c9c900;
        }

        .sc-green {
            background: #01c001;
        }

        .learn-link:hover {
            gap: 14px;
            opacity: .8;
        }

        .learn-link .arrow {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 1.5px solid currentColor;
            display: grid;
            place-items: center;
            font-size: 10px;
            transition: background .2s, color .2s;
        }

        .learn-link:hover .arrow {
            background: currentColor;
            color: var(--bg);
        }

        /* ── FOOTER ── */
        footer {
            background: var(--surface);
            border-top: 1px solid var(--border);
            margin-top: 0;
        }

        .footer-main {
            max-width: 1240px;
            margin: 0 auto;
            padding: 56px 48px 36px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 48px;
            align-items: start;
        }

        .footer-logo img {
            height: 40px;
            width: auto;
            margin-bottom: 18px;
            display: block;
        }

        .footer-address {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.8;
            max-width: 340px;
        }

        .social-row {
            display: flex;
            gap: 10px;
            margin-top: 4px;
        }

        .social-btn {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            border: 1px solid var(--border);
            background: var(--surface2);
            color: var(--muted);
            display: grid;
            place-items: center;
            font-size: 16px;
            transition: background .2s, color .2s, border-color .2s, transform .15s;
        }

        .social-btn:hover {
            transform: translateY(-3px);
        }

        .social-btn.fb:hover {
            background: #1877f2;
            color: #fff;
            border-color: #1877f2;
        }

        .social-btn.ig:hover {
            background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: #fff;
            border-color: transparent;
        }

        .social-btn.yt:hover {
            background: #ff0000;
            color: #fff;
            border-color: #ff0000;
        }

        .social-btn.tw:hover {
            background: #000;
            color: #fff;
            border-color: #fff;
        }

        .footer-bottom {
            max-width: 1240px;
            margin: 0 auto;
            padding: 20px 48px;
            border-top: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 13px;
            color: var(--muted);
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 991px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 60px 32px 40px;
                gap: 40px;
            }

            .hero-photo {
                max-width: 420px;
                margin: 0 auto;
            }

            .hero-badge {
                left: -12px;
                bottom: 16px;
            }

            .stats-bar,
            .section-header,
            .services-grid {
                padding-left: 32px;
                padding-right: 32px;
            }

            .header-inner {
                padding: 0 24px;
            }

            .footer-main {
                padding: 40px 32px 24px;
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                padding: 16px 32px;
                flex-direction: column;
                text-align: center;
            }

            .navbar-nav {
                background: #ffffff;
                gap: 20px;
                padding: 40px 0;
            }

            .service-card {
                padding: 35px 15px;
            }

            .blob-1 {
                width: 0px;
                height: 0px;
                background: var(--electric);
                top: -80px;
                left: -120px;
            }

            .blob-2 {
                width: 0px;
                height: 0px;
                background: var(--violet);
                top: 100px;
                right: 80px;
            }

            .blob-3 {
                width: 0px;
                height: 0px;
                background: var(--pink);
                bottom: -60px;
                left: 38%;
            }

            .services-grid {
                transform: perspective(900px) rotateY(-15deg) rotateX(1deg);
            }

            .service-card img {
                width: 100%;
                margin-bottom: 0px;
            }
        }

        @media (max-width: 760px) {
            .header-inner {
                height: 62px;
            }

            .hero h1 {
                font-size: clamp(32px, 9vw, 46px);
            }

            .stats-inner {
                flex-direction: column;
            }

            .stat-item {
                border-right: 0;
                border-bottom: 1px solid var(--border);
            }

            .stat-item:last-child {
                border-bottom: 0;
            }

            .services-grid {
                /* grid-template-columns: 1fr;  */
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .stats-bar,
            .section-header,
            .services-grid {
                padding-left: 20px;
                padding-right: 20px;
            }

            .footer-main {
                padding: 32px 20px 20px;
            }

            .footer-bottom {
                padding: 14px 20px;
            }
        }

        /* ── fade-in on load ── */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-label {
            animation: fadeUp .5s ease both;
        }

        .hero h1 {
            animation: fadeUp .6s .1s ease both;
        }

        .hero p {
            animation: fadeUp .6s .2s ease both;
        }

        .hero-actions {
            animation: fadeUp .6s .3s ease both;
        }

        .hero-photo {
            animation: fadeUp .7s .2s ease both;
        }

        .stats-inner {
            animation: fadeUp .6s .4s ease both;
        }