      /* ══════════════════════════════════════════════
         DESIGN TOKENS
      ══════════════════════════════════════════════ */
      :root {
        --mu-blue: #01377d;
        --mu-orange: #eaac20;
        --mu-orange-dark: #d49613;
        --mu-dark: #111111;
        --mu-white: #ffffff;
        --mu-gray-bg: #f4f6f9;
        --mu-border: #e2e8f0;
        --mu-red: #d84a00;

        --mu-blue-light: rgba(1, 55, 125, 0.06);
        --mu-blue-mid: rgba(1, 55, 125, 0.12);
        --mu-orange-glow: rgba(234, 173, 32, 0.084);
        --mu-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
        --mu-shadow-md: 0 8px 28px rgba(1, 55, 125, 0.1);
        --mu-shadow-lg: 0 16px 48px rgba(1, 55, 125, 0.14);
        --mu-radius-sm: 8px;
        --mu-radius-md: 16px;
        --mu-radius-lg: 24px;
        --mu-radius-xl: 32px;

        --s-bg: var(--mu-white);
        --s-fg: var(--mu-dark);
        --s-muted: #555;
        --s-border: var(--mu-border);
      }

      /* ══════════════════════════════════════════════
         RESET & BASE
      ══════════════════════════════════════════════ */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      body {
        font-family: "DM Sans", sans-serif;
        background: var(--mu-gray-bg);
        color: var(--mu-dark);
        overflow-x: hidden;
      }

      img {
        display: block;
        max-width: 100%;
      }

      a {
        text-decoration: none;
        color: inherit;
      }

      ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      /* ══════════════════════════════════════════════
         SECTION VARIANTS
      ══════════════════════════════════════════════ */
      .mu-section {
        padding: 80px 0;
        background: var(--s-bg);
        color: var(--s-fg);
      }

      .mu-section--light {
        --s-bg: var(--mu-white);
        --s-fg: var(--mu-dark);
        --s-muted: #555;
        --s-border: var(--mu-border);
      }

      .mu-section--gray {
        --s-bg: var(--mu-gray-bg);
        --s-fg: var(--mu-dark);
        --s-muted: #555;
        --s-border: var(--mu-border);
        background: var(--mu-gray-bg);
      }

      .mu-section--dark {
        --s-bg: var(--mu-blue);
        --s-fg: #fff;
        --s-muted: rgba(255, 255, 255, 0.65);
        --s-border: rgba(255, 255, 255, 0.15);
        background: var(--mu-blue);
        color: #fff;
      }

      .mu-section--ink {
        --s-bg: #080f1c;
        --s-fg: #fff;
        --s-muted: rgba(255, 255, 255, 0.55);
        --s-border: rgba(255, 255, 255, 0.1);
        background: var(--mu-blue);
        color: #fff;
      }

      @media (max-width: 767px) {
        .mu-section {
          padding: 56px 0;
        }
      }

      /* ══════════════════════════════════════════════
         SECTION HEADER
      ══════════════════════════════════════════════ */
      .mu-section-header {
        margin-bottom: 52px;
      }

      .mu-section-header--center {
        text-align: center;
      }

      .mu-section-header--center .mu-subheading {
        margin: 0 auto;
        display: none;
      }

      /* ══════════════════════════════════════════════
         TAG / PILL
      ══════════════════════════════════════════════ */
      .mu-tag {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 0.75rem;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        border-radius: 999px;
        padding: 5px 14px;
        width: fit-content;
        margin-bottom: 16px;
        display: none;
      }

      .mu-tag--blue {
        color: var(--mu-blue);
        background: var(--mu-blue-light);
        border: 1px solid var(--mu-border);
      }

      .mu-tag--orange {
        color: var(--mu-orange-dark);
        background: var(--mu-orange-glow);
        border: 1px solid rgba(234, 172, 32, 0.35);
      }

      .mu-tag--white {
        color: #fff;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.22);
      }

      .mu-tag .mu-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: currentColor;
        flex-shrink: 0;
      }

      /* ══════════════════════════════════════════════
         TYPOGRAPHY
      ══════════════════════════════════════════════ */
      .mu-heading-display {
        font-family: "DM Sans", sans-serif;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.15;
        letter-spacing: -0.5px;
        color: var(--s-fg);
      }

      .mu-heading-display span {
        color: var(--mu-orange);
      }

      .mu-heading-lg {
        font-size: clamp(1.6rem, 3vw, 2.5rem);
        line-height: 1.2;
        letter-spacing: -0.4px;
        color: var(--s-fg);
      }

      .mu-heading-lg span {
        color: var(--mu-orange);
      }

      .mu-heading-md {
        font-size: clamp(1.2rem, 2vw, 1.6rem);
        line-height: 1.25;
        color: var(--s-fg);
      }

      .mu-body {
        font-size: 0.92rem;
        line-height: 1.8;
        color: var(--s-muted);
      }

      .mu-body--sm {
        font-size: 0.84rem;
        line-height: 1.7;
        color: var(--s-muted);
      }

      .mu-subheading {
        font-size: 1rem;
        line-height: 1.75;
        color: var(--s-muted);
        max-width: 520px;
      }

      /* ══════════════════════════════════════════════
         DIVIDER
      ══════════════════════════════════════════════ */
      .mu-divider {
        width: 48px;
        height: 3px;
        background: var(--mu-orange);
        border-radius: 2px;
        margin-top: 14px;
      }

      .mu-divider--center {
        margin-left: auto;
        margin-right: auto;
      }

      /* ══════════════════════════════════════════════
         STACK HELPERS
      ══════════════════════════════════════════════ */
      .mu-stack-xs {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      .mu-stack-sm {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .mu-stack-md {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .mu-stack-lg {
        display: flex;
        flex-direction: column;
        gap: 44px;
      }

      /* ══════════════════════════════════════════════
         BUTTONS
      ══════════════════════════════════════════════ */
      .mu-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: "DM Sans", sans-serif;
        font-size: 0.88rem;
        padding: 13px 26px;
        border-radius: var(--mu-radius-sm);
        border: none;
        cursor: pointer;
        transition:
          transform 0.15s,
          box-shadow 0.2s,
          background 0.2s,
          opacity 0.2s;
        width: fit-content;
      }

      .mu-btn:hover {
        transform: translateY(-2px);
      }

      .mu-btn--primary {
        background: var(--mu-blue);
        color: #fff;
        box-shadow: 0 4px 16px rgba(1, 55, 125, 0.25);
      }

      .mu-btn--primary:hover {
        background: #012c66;
        box-shadow: 0 6px 24px rgba(1, 55, 125, 0.35);
        color: #fff;
      }

      .mu-btn--orange {
        background: linear-gradient(135deg,
            var(--mu-orange) 0%,
            var(--mu-orange-dark) 100%);
        color: var(--mu-dark);
        box-shadow: 0 4px 16px var(--mu-orange-glow);
      }

      .mu-btn--orange:hover {
        box-shadow: 0 6px 24px rgba(234, 172, 32, 0.4);
      }

      .mu-btn--outline-white {
        background: transparent;
        color: #fff;
        border: 1.5px solid rgba(255, 255, 255, 0.4);
      }

      .mu-btn--outline-white:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
      }

      .mu-btn--red {
        background: var(--mu-red);
        color: #fff;
        box-shadow: 0 4px 14px rgba(216, 74, 0, 0.3);
      }

      .mu-btn--red:hover {
        background: #ba3f00;
        color: #fff;
      }

      .mu-btn .mu-arrow {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.68rem;
        flex-shrink: 0;
      }

      /* ══════════════════════════════════════════════
         ICON CIRCLE
      ══════════════════════════════════════════════ */
      .mu-icon-circle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 10px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .mu-icon-circle--blue {
        background: var(--mu-blue-light);
        color: var(--mu-blue);
        border: 1.5px solid var(--mu-border);
      }

      .mu-icon-circle--blue img {
        filter: invert(12%) sepia(94%) saturate(2470%) hue-rotate(196deg) brightness(60%) contrast(105%);
      }

      .mu-icon-circle--orange {
        background: var(--mu-orange-glow);
        color: var(--mu-orange-dark);
        border: 1.5px solid rgba(234, 172, 32, 0.3);
      }

      .mu-icon-circle--orange img {
        filter: invert(78%) sepia(43%) saturate(487%) hue-rotate(3deg) brightness(95%) contrast(92%);
      }

      .mu-icon-circle svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      /* ══════════════════════════════════════════════
         NAV ARROW BUTTONS
      ══════════════════════════════════════════════ */
      .mu-nav-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1.5px solid var(--s-border);
        background: transparent;
        color: var(--s-fg);
        cursor: pointer;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.82rem;
        transition:
          border-color 0.2s,
          background 0.2s,
          color 0.2s,
          transform 0.15s;
      }

      .mu-nav-btn:hover {
        border-color: var(--mu-blue);
        background: var(--mu-blue);
        color: #fff;
        transform: scale(1.07);
      }

      /* ══════════════════════════════════════════════
         IMAGE WRAPPER
      ══════════════════════════════════════════════ */
      .mu-img-wrap {
        border-radius: var(--mu-radius-xl);
        overflow: hidden;
        box-shadow: var(--mu-shadow-lg);
      }

      .mu-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .mu-img-wrap:hover img {
        transform: scale(1.04);
      }

      /* ══════════════════════════════════════════════
         FLOAT BADGE
      ══════════════════════════════════════════════ */
      .mu-float-badge {
        position: absolute;
        background: var(--mu-white);
        border-radius: var(--mu-radius-md);
        padding: 14px 18px;
        box-shadow: var(--mu-shadow-md);
        display: flex;
        align-items: center;
        gap: 12px;
        border: 1px solid var(--mu-border);
        z-index: 3;
      }

      .mu-float-badge .badge-num {
        font-size: 1.45rem;
        color: var(--mu-dark);
        line-height: 1;
      }

      .mu-float-badge .badge-label {
        font-size: 0.72rem;
        color: #777;
        line-height: 1.4;
        margin-top: 2px;
      }

      /* ══════════════════════════════════════════════
         CHECKLIST
      ══════════════════════════════════════════════ */
      .mu-checklist {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .mu-checklist li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.88rem;
        line-height: 1.5;
        color: var(--s-muted);
      }

      .mu-checklist .chk {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        flex-shrink: 0;
        margin-top: 1px;
        background: var(--mu-orange-glow);
        border: 1.5px solid var(--mu-orange);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.52rem;
        color: var(--mu-orange-dark);
      }

      /* ══════════════════════════════════════════════
         ACCORDION
      ══════════════════════════════════════════════ */
      .mu-accordion {
        border-top: 1px solid var(--s-border);
      }

      .mu-acc-item {
        border-bottom: 1px solid var(--s-border);
        overflow: hidden;
      }

      .mu-acc-trigger {
        width: 100%;
        background: none;
        border: none;
        padding: 18px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        cursor: pointer;
        font-family: "DM Sans", sans-serif;
      }

      .mu-acc-trigger-left {
        display: flex;
        align-items: center;
        gap: 14px;
        flex: 1;
      }

      .mu-acc-num {
        font-size: 0.75rem;
        color: var(--mu-blue);
        letter-spacing: 0.5px;
        flex-shrink: 0;
        min-width: 24px;
      }

      .mu-acc-title {
        font-size: 0.98rem;
        color: var(--s-fg);
        line-height: 1.3;
        transition: color 0.2s;
      }

      .mu-acc-arrow {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1.5px solid var(--s-border);
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--mu-blue);
        font-size: 0.72rem;
        flex-shrink: 0;
        transition:
          background 0.25s,
          border-color 0.25s,
          color 0.25s,
          transform 0.3s;
      }

      .mu-acc-panel {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
          padding 0.3s;
        padding: 0 0 0 38px;
      }

      .mu-acc-item.open .mu-acc-title {
        color: var(--mu-blue);
      }

      .mu-acc-item.open .mu-acc-num {
        color: var(--mu-orange-dark);
      }

      .mu-acc-item.open .mu-acc-arrow {
        background: var(--mu-blue);
        border-color: var(--mu-blue);
        color: #fff;
        transform: rotate(90deg);
      }

      .mu-acc-item.open .mu-acc-panel {
        max-height: 260px;
        padding-bottom: 18px;
      }

      /* ══════════════════════════════════════════════
         CHIPS
      ══════════════════════════════════════════════ */
      .mu-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 12px;
      }

      .mu-chip {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 0.75rem;
        color: var(--mu-blue);
        background: var(--mu-blue-light);
        border: 1px solid var(--mu-border);
        border-radius: 999px;
        padding: 4px 11px;
      }

      .mu-chip i {
        font-size: 0.6rem;
        color: var(--mu-orange-dark);
      }

      /* ══════════════════════════════════════════════
         TOP BAR
      ══════════════════════════════════════════════ */
      .top-bar {
        height: 42px;
        background: var(--mu-blue);
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.85);
      }

      .tb-item {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .tb-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--mu-orange);
        color: var(--mu-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.65rem;
        flex-shrink: 0;
      }

      .top-bar .social-links a {
        color: var(--mu-orange);
        margin-left: 12px;
        font-size: 0.82rem;
        transition: color 0.2s;
      }

      .top-bar .social-links a:hover {
        color: #fff;
      }

      .tb-search {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 6px;
        padding: 4px 10px;
      }

      .tb-search input {
        border: none;
        background: transparent;
        color: #fff;
        font-size: 0.78rem;
        width: 110px;
        outline: none;
        font-family: "DM Sans", sans-serif;
      }

      .tb-search input::placeholder {
        color: rgba(255, 255, 255, 0.45);
      }

      .tb-search button {
        border: none;
        background: transparent;
        color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
        font-size: 0.72rem;
      }

      /* ══════════════════════════════════════════════
         BRAND HEADER
      ══════════════════════════════════════════════ */
      .brand-header {
        background: var(--mu-white);
        border-bottom: 1px solid var(--mu-border);
        padding: 16px 40px;
      }

      .brand-logo {
        width: 150px;
      }

      .brand-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .legacy-text {
        color: var(--mu-blue);
        font-size: 0.82rem;
        line-height: 1.4;
        letter-spacing: 0.4px;
      }

      .brand-contact {
        font-size: 0.84rem;
        color: var(--mu-dark);
      }

      .brand-contact a {
        color: var(--mu-dark);
        transition: color 0.2s;
      }

      .brand-contact a:hover {
        color: var(--mu-blue);
      }

      .brand-contact .type-label {
        font-size: 0.74rem;
        color: var(--mu-red);
        font-style: italic;
        margin-left: 4px;
      }

      /* ══════════════════════════════════════════════
         NAVBAR
      ══════════════════════════════════════════════ */
      .mu-navbar {
        background: var(--mu-blue) !important;
        padding: 0 !important;
        box-shadow: 0 4px 20px rgba(1, 55, 125, 0.3);
      }

      .mu-navbar .navbar-collapse {
        justify-content: center;
      }

      .mu-navbar .nav-link {
        color: rgba(255, 255, 255, 0.88) !important;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        padding: 15px 14px !important;
        white-space: nowrap;
        transition:
          color 0.2s,
          background 0.2s;
      }

      .mu-navbar .nav-link:hover,
      .mu-navbar .nav-link.active,
      .mu-navbar .nav-item.active .nav-link {
        color: var(--mu-orange) !important;
        background: rgba(255, 255, 255, 0.07);
      }

      .mu-navbar .dropdown-menu {
        border: none;
        border-top: 3px solid var(--mu-orange);
        border-radius: 0 0 var(--mu-radius-sm) var(--mu-radius-sm);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        padding: 6px 0;
      }

      .mu-navbar .dropdown-item {
        font-size: 0.83rem;
        padding: 9px 18px;
        color: var(--mu-dark);
      }

      .mu-navbar .dropdown-item:hover {
        background: var(--mu-blue-light);
        color: var(--mu-blue);
      }

      /* ══════════════════════════════════════════════
         HERO
      ══════════════════════════════════════════════ */
      .hero-arena {
        position: relative;
        overflow: hidden;
        min-height: 88vh;
      }

      .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
      }

      .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }

      .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(130deg,
            rgba(4, 12, 28, 0.96) 0%,
            rgba(1, 30, 70, 0.6) 60%,
            rgba(0, 8, 22, 0.3) 100%);
      }

      .hero-grid-lines {
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
        background-size: 60px 60px;
      }

      .hero-content {
        position: relative;
        z-index: 3;
        min-height: 88vh;
        display: flex;
        align-items: center;
        padding: 60px 0;
      }

      .hero-text {
        display: flex;
        flex-direction: column;
        gap: 24px;
        color: #fff;
      }

      .hero-text .mu-tag--white {
        margin-bottom: 0;
      }

      .hero-title {
        font-family: "DM Sans", sans-serif;
        font-size: clamp(2.2rem, 5vw, 3.8rem);
        line-height: 1.1;
        color: #fff;
      }

      .hero-title span {
        color: var(--mu-orange);
      }

      .hero-desc {
        font-size: 1rem;
        opacity: 0.78;
        line-height: 1.75;
        max-width: 480px;
      }

      /* ── Glass card ── */
      .glass-card {
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(20px) saturate(1.8);
        -webkit-backdrop-filter: blur(20px) saturate(1.8);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: var(--mu-radius-lg);
        overflow: hidden;
        box-shadow:
          0 24px 64px rgba(0, 0, 0, 0.45),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
      }

      .glass-card-header {
        background: rgba(1, 55, 125, 0.6);
        border-bottom: 2px solid var(--mu-orange);
        padding: 18px 24px;
        text-align: center;
      }

      .glass-card-header h2 {
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        color: #fff;
        margin: 0;
      }

      .glass-card-header p {
        font-size: 0.74rem;
        color: rgba(255, 255, 255, 0.62);
        margin: 5px 0 0;
      }

      .glass-card-body {
        padding: 20px 22px;
      }

      .gl-label {
        display: block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        color: rgba(255, 255, 255, 0.72);
        margin-bottom: 5px;
      }

      .gl-input,
      .gl-select {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--mu-radius-sm);
        background: rgba(255, 255, 255, 0.09);
        color: #fff;
        font-family: "DM Sans", sans-serif;
        font-size: 0.84rem;
        padding: 9px 12px;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
        -webkit-appearance: none;
      }

      .gl-input::placeholder {
        color: rgba(255, 255, 255, 0.35);
      }

      .gl-input:focus,
      .gl-select:focus {
        border-color: var(--mu-orange);
        box-shadow: 0 0 0 3px rgba(234, 172, 32, 0.22);
        outline: none;
        background: rgba(255, 255, 255, 0.14);
      }

      .gl-select option {
        color: var(--mu-dark);
        background: #fff;
      }

      .captcha-row {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: var(--mu-radius-sm);
        padding: 8px 10px;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      #captchaCanvas {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 4px;
        cursor: pointer;
        flex-shrink: 0;
      }

      .btn-refresh {
        border: none;
        background: none;
        color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
        font-size: 0.85rem;
      }

      .btn-refresh:hover {
        color: var(--mu-orange);
      }

      .btn-submit {
        width: 100%;
        padding: 13px;
        border: none;
        cursor: pointer;
        border-radius: var(--mu-radius-sm);
        background: linear-gradient(135deg,
            var(--mu-orange),
            var(--mu-orange-dark));
        color: var(--mu-dark);
        font-family: "DM Sans", sans-serif;
        font-size: 0.92rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 18px rgba(234, 172, 32, 0.4);
        transition:
          transform 0.15s,
          box-shadow 0.2s;
      }

      .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 7px 24px rgba(234, 172, 32, 0.55);
      }

      /* ══════════════════════════════════════════════
         STAT BAND
      ══════════════════════════════════════════════ */
      .stat-band {
        background: var(--mu-blue);
        padding: 0;
      }

      .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 36px 20px;
        position: relative;
      }

      .stat-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 52px;
        background: rgba(255, 255, 255, 0.12);
      }

      .stat-num {
        font-size: 2.8rem;
        color: var(--mu-orange);
        line-height: 1;
        letter-spacing: -1px;
        margin-bottom: 8px;
      }

      .stat-label {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.62);
        letter-spacing: 0.2px;
      }

      @media (max-width: 575px) {
        .stat-item:nth-child(2)::after {
          display: none;
        }
      }

      /* ══════════════════════════════════════════════
         SERVICE CARDS
      ══════════════════════════════════════════════ */
      .svc-card {
        background: var(--mu-white);
        border: 1px solid var(--mu-border);
        border-radius: var(--mu-radius-md);
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        box-shadow: var(--mu-shadow-sm);
        transition:
          transform 0.3s,
          box-shadow 0.3s,
          border-color 0.3s;
        height: 100%;
      }

      .svc-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--mu-shadow-md);
        border-color: var(--mu-blue);
      }

      .svc-card .mu-icon-circle {
        align-self: flex-start;
      }

      .svc-card h3 {
        font-size: 1rem;
        color: var(--mu-blue);
      }

      .svc-card p {
        font-size: 0.84rem;
        color: #666;
        line-height: 1.65;
        flex: 1;
      }

      .svc-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.74rem;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        color: var(--mu-blue);
        margin-top: auto;
        transition:
          gap 0.2s,
          color 0.2s;
      }

      .svc-link:hover {
        gap: 10px;
        color: var(--mu-orange-dark);
      }

      /* ══════════════════════════════════════════════
         ABOUT
      ══════════════════════════════════════════════ */
      .about-img-main {
        aspect-ratio: 16/9;
      }

      .about-badges-row {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin: 20px 0;
      }

      .about-badge {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .about-badge-text {
        font-size: 0.84rem;
        color: var(--mu-dark);
        line-height: 1.35;
      }

      .about-img-secondary {
        aspect-ratio: 16/9;
      }

      /* ══════════════════════════════════════════════
         WHY CHOOSE US
      ══════════════════════════════════════════════ */
      .wcu-img-wrap {
        aspect-ratio: 4/3.6;
        position: relative;
      }

      .wcu-img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
            transparent 40%,
            rgba(0, 10, 28, 0.85) 100%);
        border-radius: var(--mu-radius-xl);
        pointer-events: none;
      }

      .wcu-overlay-card {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 28px 28px 32px;
        color: #fff;
      }

      .wcu-overlay-headline {
        font-size: 1.15rem;
        margin-bottom: 16px;
        color: #fff;
        line-height: 1.3;
      }

      .wcu-overlay-headline span {
        color: var(--mu-orange);
      }

      .wcu-checklist-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 9px 18px;
        list-style: none;
        padding: 0;
      }

      .wcu-checklist-grid li {
        display: flex;
        align-items: flex-start;
        gap: 7px;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.4;
      }

      .wcu-chk {
        width: 17px;
        height: 17px;
        border-radius: 50%;
        flex-shrink: 0;
        margin-top: 1px;
        background: rgba(234, 172, 32, 0.22);
        border: 1.5px solid var(--mu-orange);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.5rem;
        color: var(--mu-orange);
      }

      .wcu-stat-badge {
        top: 22px;
        left: -18px;
      }

      @media (max-width: 575px) {
        .wcu-checklist-grid {
          grid-template-columns: 1fr;
        }

        .wcu-stat-badge {
          display: none;
        }
      }

      /* ══════════════════════════════════════════════
         COURSES
      ══════════════════════════════════════════════ */
      .course-tab {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 18px;
        border-radius: var(--mu-radius-sm);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all 0.22s;
        text-decoration: none;
        width: 100%;
        margin-bottom: 8px;
      }

      .course-tab:last-child {
        margin-bottom: 0;
      }

      .course-tab:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
      }

      .course-tab.active {
        background: var(--mu-orange);
        border-color: var(--mu-orange);
        box-shadow: 0 4px 18px rgba(234, 172, 32, 0.3);
      }

      .course-tab-icon {
        width: 80px;
        height: 80px;
        padding: 15px;
        border-radius: 50%;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.22s;
      }

      .course-tab-icon img {
        filter: brightness(0) invert(1);
      }

      .course-tab.active .course-tab-icon {
        background: rgba(0, 0, 0, 0.15);
        color: var(--mu-dark);
      }

      .course-tab.active .course-tab-icon img {
        filter: invert(21%) sepia(67%) saturate(749%) hue-rotate(184deg) brightness(35%) contrast(95%);
      }

      .course-tab-icon svg {
        width: 19px;
        height: 19px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .course-tab-label {
        font-size: 0.84rem;
        color: rgba(255, 255, 255, 0.82);
        line-height: 1.3;
        transition: color 0.22s;
        text-align: left;
      }

      .course-tab.active .course-tab-label {
        color: var(--mu-dark);
      }

      .course-img-wrap {
        aspect-ratio: 16/9;
        border-radius: var(--mu-radius-lg);
        overflow: hidden;
        background: #1a2a40;
      }

      .course-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
      }

      .course-img-wrap:hover img {
        transform: scale(1.04);
      }

      .course-detail-title {
        font-size: 1.3rem;
        color: #fff;
      }

      .course-detail-desc {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.75;
        max-width: 540px;
      }

      /* ══════════════════════════════════════════════
         TESTIMONIALS
      ══════════════════════════════════════════════ */
      .testi-quote-icon {
        width: 44px;
        height: 44px;
        color: var(--mu-blue);
        opacity: 0.18;
        flex-shrink: 0;
      }

      .testi-text {
        font-size: 1rem;
        color: #3a3a3a;
        line-height: 1.8;
      }

      .testi-divider {
        height: 1px;
        background: var(--mu-border);
      }

      .testi-author {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
      }

      .testi-author-left {
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .testi-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        border: 2.5px solid var(--mu-orange);
        flex-shrink: 0;
      }

      .testi-author-name {
        font-size: 0.95rem;
        color: var(--mu-dark);
        line-height: 1.2;
      }

      .testi-author-role {
        font-size: 0.76rem;
        color: #777;
        margin-top: 2px;
      }

      .testi-dots {
        display: flex;
        gap: 6px;
        align-items: center;
      }

      .testi-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--mu-border);
        border: none;
        cursor: pointer;
        padding: 0;
        transition:
          background 0.25s,
          width 0.25s;
        flex-shrink: 0;
      }

      .testi-dot.active {
        background: var(--mu-blue);
        width: 22px;
        border-radius: 4px;
      }

      .testi-img-wrap {
        aspect-ratio: 4/3.2;
      }

      .testi-badge {
        bottom: -18px;
        left: -20px;
      }

      @media (max-width: 575px) {
        .testi-badge {
          display: none;
        }
      }

      /* ══════════════════════════════════════════════
         BLOG CARDS
      ══════════════════════════════════════════════ */
      .blog-card {
        background: var(--mu-white);
        border: 1px solid var(--mu-border);
        border-radius: var(--mu-radius-md);
        overflow: hidden;
        box-shadow: var(--mu-shadow-sm);
        transition:
          transform 0.3s,
          box-shadow 0.3s;
        display: flex;
        flex-direction: column;
        height: 100%;
      }

      .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--mu-shadow-md);
      }

      .blog-card-img {
        aspect-ratio: 4/3;
        background: var(--mu-gray-bg);
        overflow: hidden;
      }

      .blog-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
      }

      .blog-card:hover .blog-card-img img {
        transform: scale(1.05);
      }

      .blog-card-body {
        padding: 22px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1;
      }

      .blog-tag {
        display: inline-block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--mu-blue);
        background: var(--mu-blue-light);
        border-radius: 4px;
        padding: 3px 8px;
        width: fit-content;
      }

      .blog-title {
        font-size: 0.95rem;
        color: var(--mu-dark);
        line-height: 1.45;
      }

      .blog-excerpt {
        font-size: 0.82rem;
        color: #666;
        line-height: 1.65;
        flex: 1;
      }

      .blog-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 0.76rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        color: var(--mu-blue);
        margin-top: 4px;
        transition:
          gap 0.2s,
          color 0.2s;
      }

      .blog-link:hover {
        gap: 9px;
        color: var(--mu-orange-dark);
      }

      /* ══════════════════════════════════════════════
         CTA BANNER
      ══════════════════════════════════════════════ */
      .cta-banner {
        background: linear-gradient(135deg,
            var(--mu-blue) 0%,
            #012b66 60%,
            #010e28 100%);
        padding: 72px 0;
        position: relative;
        overflow: hidden;
      }

      .cta-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: radial-gradient(circle at 75% 50%,
            rgba(234, 172, 32, 0.08) 0%,
            transparent 60%);
      }

      /* ══════════════════════════════════════════════
         FOOTER
      ══════════════════════════════════════════════ */
      .footer {
        background: #080f1c;
        color: rgba(255, 255, 255, 0.75);
        padding: 64px 0 0;
      }

      .footer-brand-name {
        font-family: "DM Sans", sans-serif;
        font-size: 1.3rem;
        color: #fff;
        margin-bottom: 12px;
      }

      .footer-desc {
        font-size: 0.83rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.75;
        max-width: 260px;
      }

      .footer-socials {
        display: flex;
        gap: 10px;
        margin-top: 18px;
      }

      .footer-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.8rem;
        transition:
          background 0.2s,
          color 0.2s;
      }

      .footer-socials a:hover {
        background: var(--mu-orange);
        color: var(--mu-dark);
        border-color: var(--mu-orange);
      }

      .footer h4 {
        font-size: 0.88rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        margin-bottom: 18px;
      }

      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .footer-links a {
        font-size: 0.83rem;
        color: rgba(255, 255, 255, 0.52);
        transition: color 0.2s;
        display: flex;
        align-items: center;
        gap: 7px;
      }

      .footer-links a:hover {
        color: var(--mu-orange);
      }

      .footer-links a i {
        font-size: 0.65rem;
        color: var(--mu-orange);
      }

      .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
      }

      .footer-contact-item .fc-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.07);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--mu-orange);
        font-size: 0.8rem;
        flex-shrink: 0;
      }

      .footer-contact-item .fc-text {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.52);
        line-height: 1.6;
      }

      .footer-contact-item .fc-text strong {
        display: block;
        color: #fff;
        font-size: 0.84rem;
        margin-bottom: 2px;
      }

      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding: 20px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.35);
        flex-wrap: wrap;
        gap: 10px;
      }

      @media (max-width: 575px) {
        .footer-bottom {
          flex-direction: column;
          text-align: center;
        }
      }

      /* ══════════════════════════════════════════════
         MISC
      ══════════════════════════════════════════════ */
      .section-sep {
        height: 1px;
        background: var(--mu-border);
      }

      .h-100-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* ══════════════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════════════ */
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 440px;
        gap: 12px;
      }

      /* First item spans 2 columns */
      .gallery-item--wide {
        grid-column: span 2;
      }

      /* Fifth item spans 2 rows */
      .gallery-item--tall {
        grid-row: span 2;
      }

      .gallery-item {
        position: relative;
        border-radius: var(--mu-radius-md);
        overflow: hidden;
        display: block;
        cursor: pointer;
        background: var(--mu-gray-bg);
      }

      .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .gallery-item:hover img {
        transform: scale(1.07);
      }

      /* Overlay */
      .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
            rgba(1, 55, 125, 0) 30%,
            rgba(1, 55, 125, 0.82) 100%);
        display: flex;
        align-items: flex-end;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .gallery-item:hover .gallery-overlay {
        opacity: 1;
      }

      .gallery-overlay-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 16px;
        gap: 10px;
      }

      .gallery-caption {
        font-size: 0.85rem;
        color: #fff;
        line-height: 1.3;
        font-weight: 500;
        flex: 1;
      }

      .gallery-zoom-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--mu-orange);
        color: var(--mu-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.78rem;
        flex-shrink: 0;
        transition: transform 0.2s;
      }

      .gallery-item:hover .gallery-zoom-icon {
        transform: scale(1.1);
      }

      /* Responsive */
      @media (max-width: 991px) {
        .gallery-grid {
          grid-template-columns: repeat(2, 1fr);
          grid-auto-rows: 200px;
        }

        .gallery-item--wide {
          grid-column: span 2;
        }

        .gallery-item--tall {
          grid-row: span 1;
        }
      }

      @media (max-width: 575px) {
        .gallery-grid {
          grid-template-columns: 1fr 1fr;
          grid-auto-rows: 150px;
        }

        .gallery-item--wide {
          grid-column: span 2;
        }

        .gallery-caption {
          font-size: 0.74rem;
        }
      }

      .asset-up-right,
      .asset-bottom-right {
        position: relative;
      }

      .asset-up-right::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 250px;
        height: 250px;
        background: url("/assets/images/asset2.png") center/contain no-repeat;
      }

      .asset-bottom-right::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 350px;
        height: 350px;
        background: url("/assets/images/asset1.png") center/contain no-repeat;
        z-index: 1;
      }


      /* about us page */

      /* ══════════════════════════════════════════════
     BREADCRUMB
  ══════════════════════════════════════════════ */
      .mu-breadcrumb {
        position: relative;
        min-height: 470px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;



        background: linear-gradient(130deg, rgba(4, 12, 28, 0.96) 0%, rgba(1, 30, 70, 0.6) 60%, rgba(0, 8, 22, 0.3) 100%), url(/assets/images/image3.png);

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .mu-breadcrumb-content {
        position: relative;
        z-index: 2;
        color: var(--mu-white);
      }

      .mu-breadcrumb-content h1 {
        font-family: "DM Sans", sans-serif;
        font-size: clamp(2rem, 7vw, 4rem);
        font-weight: 300;
        line-height: 1;
        margin-bottom: 30px;
        color: var(--mu-white);
      }

      .mu-breadcrumb-nav {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 14px;

        font-size: 1rem;
        color: rgba(255, 255, 255, 0.82);
      }

      .mu-breadcrumb-nav a {
        color: var(--mu-orange);

        transition:
          color 0.2s ease,
          opacity 0.2s ease;
      }

      .mu-breadcrumb-nav a:hover {
        color: var(--mu-orange);
      }

      .mu-breadcrumb-nav .mu-separator {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 24px;
        height: 24px;
        border-radius: 50%;

        background: rgba(255, 255, 255, 0.08);
        color: var(--mu-orange);

        font-size: 0.68rem;
      }

      .mu-breadcrumb-nav .active {
        color: rgba(255, 255, 255, 0.9);
      }

      /* ══════════════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════════════ */
      @media (max-width: 767px) {
        .mu-breadcrumb {
          min-height: 340px;
          padding: 90px 0;
        }

        .mu-breadcrumb-content h1 {
          font-size: clamp(2.4rem, 10vw, 4rem);
          margin-bottom: 20px;
          letter-spacing: -1px;
        }

        .mu-breadcrumb-nav {
          gap: 10px;
          font-size: 0.9rem;
        }

        .mu-breadcrumb-nav .mu-separator {
          width: 20px;
          height: 20px;
          font-size: 0.58rem;
        }
      }

      /* ══════════════════════════════════════════════
   WHY CHOOSE US – FEATURE GRID
══════════════════════════════════════════════ */


      .wcu-feature-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
      }

      .wcu-feature-card {
        background: #fff;
        border: 1px solid var(--mu-border);
        border-radius: var(--mu-radius-md);
        padding: 22px 20px 20px;
        position: relative;
        overflow: hidden;
        transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
      }

      .wcu-feature-card::after {
        content: "";
        position: absolute;
        top: -18px;
        right: -18px;
        width: 80px;
        height: 80px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,0 100,25 100,75 50,100 0,75 0,25' fill='%23e8eef7' /%3E%3Cpolygon points='50,15 85,32 85,68 50,85 15,68 15,32' fill='%23dde5f2' /%3E%3C/svg%3E") center / contain no-repeat;
        opacity: 0.7;
        pointer-events: none;
      }

      .wcu-feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--mu-shadow-md);
        border-color: var(--mu-blue);
      }

      .wcu-feature-check {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 2px solid var(--mu-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--mu-blue);
        font-size: 0.75rem;
        margin-bottom: 16px;
        background: var(--mu-blue-light);
        position: relative;
        z-index: 1;
      }

      .wcu-feature-label {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        color: #999;
        margin-bottom: 6px;
        position: relative;
        z-index: 1;
      }

      .wcu-feature-title {
        font-size: 1rem;
        color: var(--mu-blue);
        line-height: 1.3;
        position: relative;
        z-index: 1;
        margin: 0 0 8px;
      }

      .wcu-feature-desc {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.6;
        position: relative;
        z-index: 1;
        margin: 0;
      }

      .wcu-feature-img-wrap {
        border-radius: var(--mu-radius-xl);
        overflow: hidden;
        height: 100%;
        min-height: 400px;
        box-shadow: var(--mu-shadow-lg);
      }

      .wcu-feature-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      @media (max-width: 767px) {
        .wcu-feature-grid {
          grid-template-columns: 1fr;
        }

        .wcu-feature-img-wrap {
          min-height: 260px;
        }
      }