*,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            font-family: 'Montserrat', sans-serif;
        }

        /* ── Sidebar (desktop) + mobile header (match home) ── */
        #hae-sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: 72px;
            height: 100vh;
            background: white;
            border-right: 1px solid #e3e2e8;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            padding: 1.75rem 0;
            z-index: 40;
            overflow: visible;
            box-shadow: 4px 0 20px rgba(0, 0, 0, 0.06);
        }

        #hae-sidebar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #4CA1E7;
        }

        #hae-main {
            margin-left: 72px;
        }

        /* Mobile header: shell.css */

        @media (max-width: 767px) {
            #hae-sidebar {
                display: none;
            }

            #hae-main {
                margin-left: 0 !important;
                width: 100% !important;
                max-width: 100vw !important;
            }

            #mega-menu {
                left: 0;
                max-width: 100vw;
                width: min(300px, 100vw);
                transform: translateX(-100%);
            }

            #mega-menu.is-open {
                transform: translateX(0);
            }
        }

        .vtext {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            white-space: nowrap;
            line-height: 1;
        }

        /* Make nav dots more visible and fix active state */
        .nav-dot-wrap {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            cursor: pointer;
            text-decoration: none;
        }

        .nav-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #e3e2e8;
            transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .nav-dot-wrap:hover .nav-dot {
            background: #00aeef !important;
            width: 10px !important;
            height: 10px !important;
            box-shadow: 0 0 10px rgba(0, 174, 239, 0.5);
        }

        .nav-dot.active {
            background: #00aeef !important;
            width: 12px !important;
            height: 12px !important;
            box-shadow: 0 0 15px rgba(0, 174, 239, 0.8);
            border: 2px solid white;
        }

        /* Tooltip styling */
        .nav-tip {
            position: absolute;
            left: calc(100% + 14px);
            top: 50%;
            transform: translateY(-50%) translateX(-6px);
            background: #0d1428;
            color: white;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 6px 12px;
            border-radius: 4px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .nav-tip::before {
            content: '';
            position: absolute;
            right: 100%;
            top: 50%;
            transform: translateY(-50%);
            border: 5px solid transparent;
            border-right-color: #0d1428;
        }

        .nav-dot-wrap:hover .nav-tip {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }

        .ham-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            width: 34px;
            height: 34px;
            border-radius: 8px;
            border: none;
            background: transparent;
            padding: 0;
            outline: none;
            cursor: pointer;
            transition: background 0.2s;
            flex-shrink: 0;
            appearance: none;
        }

        .ham-btn:hover {
            background: rgba(76, 161, 231, 0.08);
        }

        .ham-btn span {
            display: block;
            width: 17px;
            height: 1.5px;
            background: #21356A;
            border-radius: 2px;
            transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
            pointer-events: none;
        }

        .ham-btn.is-open span:nth-child(1) {
            transform: translateY(5.5px) rotate(45deg);
            background: #4CA1E7;
        }

        .ham-btn.is-open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .ham-btn.is-open span:nth-child(3) {
            transform: translateY(-5.5px) rotate(-45deg);
            background: #4CA1E7;
        }

        .ham-btn:focus-visible {
            outline: 2px solid #4CA1E7;
            outline-offset: 2px;
        }

        /* Special styling for Get in touch */
        .nav-dot-wrap.get-in-touch .get-in-touch-text {
            color: #00aeef;
            transition: color 0.2s;
            font-size: 9px !important;
            font-weight: 800 !important;
        }

        .nav-dot-wrap.get-in-touch:hover .get-in-touch-text {
            color: #25408f;
            transform: scale(1.05);
            transition: all 0.2s;
        }

        .sidebar-social {
            color: #3C71C2;
            font-size: 1rem;
            transition: color 0.2s, transform 0.2s;
            text-decoration: none;
        }

        .sidebar-social:hover {
            color: #4CA1E7;
            transform: translateY(-2px);
        }

        /* ── Mega menu (shared with home) ── */
        #mega-menu {
            position: fixed;
            top: 0;
            left: 72px;
            width: 300px;
            max-width: calc(100vw - 72px);
            min-width: 0;
            height: 100vh;
            background: #0d1428;
            z-index: 10050;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            padding: 2rem 1.75rem;
            transform: translateX(calc(-100% - 72px));
            transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 6px 0 36px rgba(0, 0, 0, 0.28);
            overflow-y: auto;
            overflow-x: hidden;
        }

        #mega-menu.is-open {
            transform: translateX(0);
        }

        #mega-menu>* {
            width: 100%;
            box-sizing: border-box;
            min-width: 0;
        }

        #menu-bd {
            position: fixed;
            inset: 0;
            background: rgba(10, 15, 40, 0.5);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 10040;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.32s ease;
        }

        #menu-bd.is-open {
            opacity: 1;
            pointer-events: all;
        }

        #mega-menu .m-cat {
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.28);
            margin: 0 0 0.6rem 0;
            padding: 0;
            text-align: left;
        }

        .m-cat+.m-cat {
            margin-top: 1.5rem;
        }

        /* m-link spacing: shell.css */

        #mega-menu .m-link.m-link-child {
            padding-left: 1.85rem;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.52);
        }

        #mega-menu .m-link.m-link-child .m-icon {
            width: 26px;
            height: 26px;
            font-size: 0.78rem;
        }

        /* m-link-current: shell.css */

        #mega-menu .m-link.m-link-current .m-icon {
            background: #4CA1E7;
            color: #fff;
        }

        #mega-menu .m-link.m-link-current .m-arrow {
            color: #4CA1E7;
            opacity: 1;
        }

        .m-link:hover {
            color: #4CA1E7;
        }

        .m-link:hover .m-icon {
            background: #4CA1E7;
            color: white;
        }

        .m-link.m-link-current:hover .m-icon {
            background: #4CA1E7;
            color: #fff;
        }

        .m-link:focus-visible {
            outline: 2px dashed #4CA1E7;
            outline-offset: 2px;
        }

        .m-icon {
            width: 30px;
            height: 30px;
            border-radius: 7px;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: #4CA1E7;
            flex-shrink: 0;
            transition: all 0.18s;
        }

        .m-arrow {
            justify-self: end;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.18);
            transition: all 0.18s;
        }

        .m-link:hover .m-arrow {
            color: #4CA1E7;
            transform: translateX(3px);
        }

        .m-social {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.14);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.2s;
        }

        .m-social:hover {
            background: #4CA1E7;
            border-color: #4CA1E7;
            color: white;
            transform: translateY(-2px);
        }

        @keyframes slideInL {
            from {
                opacity: 0;
                transform: translateX(-14px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        #mega-menu.is-open .m-anim {
            animation: slideInL 0.38s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        #mega-menu.is-open .m-anim:nth-child(1) {
            animation-delay: 40ms;
        }

        #mega-menu.is-open .m-anim:nth-child(2) {
            animation-delay: 55ms;
        }

        #mega-menu.is-open .m-anim:nth-child(3) {
            animation-delay: 75ms;
        }

        #mega-menu.is-open .m-anim:nth-child(4) {
            animation-delay: 100ms;
        }

        #mega-menu.is-open .m-anim:nth-child(5) {
            animation-delay: 125ms;
        }

        #mega-menu.is-open .m-anim:nth-child(6) {
            animation-delay: 150ms;
        }

        #mega-menu.is-open .m-anim:nth-child(7) {
            animation-delay: 175ms;
        }

        #mega-menu.is-open .m-anim:nth-child(8) {
            animation-delay: 200ms;
        }

        #mega-menu.is-open .m-anim:nth-child(9) {
            animation-delay: 225ms;
        }

        #mega-menu.is-open .m-anim:nth-child(10) {
            animation-delay: 250ms;
        }

        #mega-menu.is-open .m-anim:nth-child(11) {
            animation-delay: 275ms;
        }

        #mega-menu.is-open .m-anim:nth-child(12) {
            animation-delay: 300ms;
        }

        #mega-menu.is-open .m-anim:nth-child(13) {
            animation-delay: 325ms;
        }

        #mega-menu.is-open .m-anim:nth-child(14) {
            animation-delay: 350ms;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(28px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slowZoom {
            from {
                transform: scale(1);
            }

            to {
                transform: scale(1.06);
            }
        }

        .anim-fade-up {
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .anim-fade-in {
            opacity: 0;
            animation: fadeIn 1s ease-out forwards;
        }

        .anim-bg-zoom {
            animation: slowZoom 20s ease-in-out infinite alternate;
        }

        .delay-100 {
            animation-delay: 100ms;
        }

        .delay-200 {
            animation-delay: 200ms;
        }

        .delay-300 {
            animation-delay: 300ms;
        }

        .delay-500 {
            animation-delay: 500ms;
        }

        .delay-700 {
            animation-delay: 700ms;
        }

        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }

        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .timeline-snap {
            scroll-snap-type: x mandatory;
        }

        .snap-start-item {
            scroll-snap-align: start;
        }

        .lcd-box {
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        /* About hero – match Our Projects blueprint style */
        section[id] {
            scroll-margin-top: 64px;
        }

        @media (min-width: 768px) {
            section[id] {
                scroll-margin-top: 0;
            }
        }

        #about-hero {
            position: relative;
            overflow: hidden;
            scroll-margin-top: 0;
            background: linear-gradient(160deg, #071228 0%, #0d1c3d 28%, #162848 52%, #0b1830 75%, #071228 100%);
        }

        #about-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(ellipse at 25% 35%, rgba(76, 161, 231, 0.22) 0%, transparent 50%),
                radial-gradient(ellipse at 75% 65%, rgba(60, 113, 194, 0.16) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 80%, rgba(76, 161, 231, 0.08) 0%, transparent 40%);
            pointer-events: none;
            z-index: 0;
        }

        #about-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background-image:
                linear-gradient(rgba(76, 161, 231, 0.055) 1px, transparent 1px),
                linear-gradient(90deg, rgba(76, 161, 231, 0.055) 1px, transparent 1px);
            background-size: 56px 56px;
        }

        /* Core business area cards (merged from former Our Business page) */
        #business .sector-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 2px solid #e3e2e8;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            transition: background 0.4s, border-color 0.4s;
        }

        #business .sector-card:hover .sector-icon {
            background: #4CA1E7;
            border-color: #4CA1E7;
        }

        #business .sector-card:hover .sector-icon i {
            color: white !important;
        }

        #business .sector-card {
            background: white;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(33, 53, 106, 0.06);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        #business .sector-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 48px rgba(33, 53, 106, 0.14);
        }

        /* About bio — tighter two-column overview */
        .hae-bio-section .hae-bio-grid {
            align-items: stretch;
        }

        .hae-bio-main {
            display: flex;
            flex-direction: column;
        }

        .hae-bio-aside {
            height: 100%;
        }

        @media (min-width: 1024px) {
            .hae-bio-main {
                min-height: 100%;
            }

            .hae-bio-highlights {
                margin-top: auto;
                padding-top: 1.5rem;
            }
        }

        .hae-bio-quote {
            margin: 0.25rem 0;
        }

        .hae-bio-areas-list li {
            min-height: 0;
        }

        @media (min-width: 1024px) {
            .hae-bio-areas-list {
                column-gap: 1.25rem;
            }
        }

        .hae-bio-iso-list .flex {
            min-height: 0;
        }

        .hae-bio-metrics span.stat-counter {
            display: inline;
        }
