﻿      /* ══════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════ */
      :root {
        --primary: #68a4c4;
        --primary-dark: #1e4356;
        --primary-light: #e8f3f9;
        --primary-mid: #4d8fb2;
        --primary-glow: #9bc6dc;
        --text-dark: #2c3e50;
        --text-light: #666;
        --border-color: rgba(104, 164, 196, 0.15);

        --dark: #07131d;
        --navy: var(--primary-dark);
        --navy2: #133346;
        --blue: #2e6a8b;
        --gold: var(--primary);
        --gold-lt: var(--primary-glow);
        --brand-grad: linear-gradient(135deg, var(--primary-glow) 0%, var(--primary) 42%, var(--primary-mid) 100%);
        --brand-grad-soft: linear-gradient(135deg, rgba(155, 198, 220, 0.18) 0%, rgba(104, 164, 196, 0.12) 55%, rgba(77, 143, 178, 0.18) 100%);
        --brand-line: linear-gradient(90deg, rgba(155, 198, 220, 0), rgba(104, 164, 196, 0.75), rgba(155, 198, 220, 0));
        --gold-pale: rgba(104, 164, 196, 0.12);
        --white: #ffffff;
        --txt: #d8e8f2;
        --muted: #9ab7c8;
        --border: var(--border-color);
        --gb: rgba(104, 164, 196, 0.3);
        --rad: 16px;
        --ease: 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
        --th: 76px;
        --tbh: 38px;
      }
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "Cairo", "Tajawal", sans-serif;
        background: var(--dark);
        color: var(--txt);
        overflow-x: hidden;
      }

      /* ── page bg ── */
      .pg-bg {
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background:
          radial-gradient(
            ellipse 70% 50% at 15% 25%,
            rgba(77, 143, 178, 0.28) 0%,
            transparent 60%
          ),
          radial-gradient(
            ellipse 55% 40% at 88% 75%,
            rgba(104, 164, 196, 0.09) 0%,
            transparent 55%
          ),
          linear-gradient(160deg, #06090e 0%, #080f1a 60%, #060c14 100%);
      }
      .pg-dots {
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background-image: radial-gradient(
          rgba(104, 164, 196, 0.05) 1px,
          transparent 1px
        );
        background-size: 38px 38px;
      }
      .orb {
        position: fixed;
        border-radius: 50%;
        filter: blur(90px);
        opacity: 0.05;
        pointer-events: none;
        z-index: 0;
      }
      .orb1 {
        width: 600px;
        height: 600px;
        background: var(--gold);
        top: -120px;
        right: -120px;
        animation: orbf 14s ease-in-out infinite;
      }
      .orb2 {
        width: 450px;
        height: 450px;
        background: #1a5fa0;
        bottom: 60px;
        left: -120px;
        animation: orbf 18s ease-in-out infinite reverse;
      }
      @keyframes orbf {
        0%,
        100% {
          transform: translate(0, 0);
        }
        50% {
          transform: translate(35px, 45px);
        }
      }

      /* ══════════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════════ */
      .topbar {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1000;
        height: var(--tbh);
        background: rgba(5, 9, 18, 0.93);
        border-bottom: 1px solid var(--gb);
        backdrop-filter: blur(14px);
        display: flex;
        align-items: center;
        transition: 0.4s ease;
      }
      .tb-inner {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .tb-left {
        display: flex;
        align-items: center;
        gap: 20px;
      }
      .tb-left a {
        font-size: 12px;
        color: var(--muted);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 7px;
        transition: 0.3s;
      }
      .tb-left a i {
        color: var(--gold);
        font-size: 11px;
      }
      .tb-left a:hover {
        color: var(--gold-lt);
      }
      .tb-right {
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .socials {
        display: flex;
        gap: 8px;
      }
      .socials a {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        background: var(--gold-pale);
        border: 1px solid var(--gb);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 11px;
        text-decoration: none;
        transition: var(--ease);
      }
      .socials a:hover {
        background: var(--gold);
        color: var(--dark);
      }
      .lang-btn {
        font-size: 11.5px;
        font-weight: 700;
        letter-spacing: 1.2px;
        padding: 4px 13px;
        border-radius: 20px;
        background: transparent;
        border: 1px solid var(--gb);
        color: var(--muted);
        cursor: pointer;
        transition: var(--ease);
      }
      .lang-btn:hover {
        border-color: var(--gold);
        color: var(--gold-lt);
      }

      /* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
      .hdr {
        position: fixed;
        top: var(--tbh);
        right: 0;
        left: 0;
        z-index: 999;
        height: var(--th);
        transition:
          var(--ease),
          box-shadow 0.4s;
      }
      .hdr.scrolled {
        background: rgba(7, 13, 25, 0.97);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
        border-bottom: 1px solid var(--gb);
      }
      .hdr-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
      }
      .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        flex-shrink: 0;
      }
      .brand-logo-img {
        display: block;
        width: auto;
        height: 68px;
        object-fit: contain;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
      }
      .hdr.scrolled .brand-logo-img {
        height: 60px;
      }
      .brand-logo-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .brand-name {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
      }
      .brand-name-ar {
        font-family: "Tajawal", sans-serif;
        font-size: 1.05rem;
        font-weight: 800;
        color: #ffffff;
      }
      .brand-name-en {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 1.4px;
        color: var(--gold-lt);
      }
      .hdr.scrolled .brand-name-ar {
        font-size: 0.98rem;
      }
      .hdr.scrolled .brand-name-en {
        font-size: 0.64rem;
      }
      .logo-mk {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        background: var(--brand-grad);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Tajawal", sans-serif;
        font-size: 19px;
        font-weight: 900;
        color: var(--dark);
        position: relative;
        overflow: hidden;
      }
      .logo-mk::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.2),
          transparent
        );
      }
      .logo-txt .la {
        font-family: "Tajawal", sans-serif;
        font-size: 16.5px;
        font-weight: 800;
        color: #fff;
        display: block;
        line-height: 1;
      }
      .logo-txt .le {
        font-size: 9.5px;
        font-weight: 600;
        letter-spacing: 2.5px;
        color: var(--gold);
        text-transform: uppercase;
        display: block;
        margin-top: 3px;
      }
      .nav-ul {
        display: flex;
        align-items: center;
        gap: 2px;
        list-style: none;
        margin-bottom: 0 !important;
      }
      .nav-ul > li {
        position: relative;
        margin-bottom: 0 !important;
      }
      .nav-ul > li > a {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 13.5px;
        font-weight: 600;
        color: var(--txt);
        text-decoration: none;
        padding: 8px 13px;
        border-radius: 8px;
        transition: var(--ease);
        white-space: nowrap;
      }
      .nav-ul > li > a i {
        font-size: 9px;
        color: var(--gold);
        transition: transform 0.3s;
      }
      .nav-ul > li:hover > a {
        color: #fff;
        background: rgba(104, 164, 196, 0.08);
      }
      .nav-ul > li:hover > a i {
        transform: rotate(180deg);
      }
      .nav-ul > li > a.active-link {
        color: var(--gold-lt);
      }
      /* dropdown */
      .dd {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        min-width: 230px;
        background: rgba(9, 16, 30, 0.98);
        border: 1px solid var(--gb);
        border-radius: var(--rad);
        backdrop-filter: blur(20px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: 0.3s ease;
        overflow: hidden;
        z-index: 100;
      }
      .nav-ul > li:hover .dd {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      .dd::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 2px;
        background: var(--brand-line);
      }
      .dd a {
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 12px 17px;
        font-size: 13px;
        font-weight: 600;
        color: var(--muted);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        transition: 0.3s;
      }
      .dd a .ddi {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        background: var(--gold-pale);
        border: 1px solid var(--gb);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: var(--gold);
        flex-shrink: 0;
        transition: 0.3s;
      }
      .dd a:hover {
        color: #fff;
        background: rgba(104, 164, 196, 0.07);
        padding-right: 21px;
      }
      .dd a:hover .ddi {
        background: var(--gold);
        color: var(--dark);
      }
      .nav-cta {
        font-family: "Cairo", sans-serif;
        font-size: 13.5px;
        font-weight: 700;
        padding: 10px 26px;
        border-radius: 100px;
        background: var(--brand-grad);
        color: var(--dark);
        text-decoration: none;
        border: none;
        cursor: pointer;
        flex-shrink: 0;
        box-shadow: 0 8px 22px rgba(104, 164, 196, 0.3);
        transition: var(--ease);
        display: flex;
        align-items: center;
        gap: 7px;
      }
      .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 34px rgba(104, 164, 196, 0.42);
        color: var(--dark);
      }
      .hbg {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
      }
      .hbg span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
        transition: var(--ease);
      }
      .hbg.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }
      .hbg.open span:nth-child(2) {
        opacity: 0;
      }
      .hbg.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
      .mnav {
        position: fixed;
        inset: 0;
        z-index: 998;
        background: rgba(5, 9, 18, 0.99);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.4s ease;
      }
      .mnav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
      }
      .mnav a {
        font-family: "Tajawal", sans-serif;
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--txt);
        text-decoration: none;
        padding: 11px 0;
        border-bottom: 1px solid var(--border);
        width: 210px;
        text-align: center;
        transition: 0.3s;
      }
      .mnav a:hover {
        color: var(--gold-lt);
      }
      .mnav .mc {
        margin-top: 18px;
        background: var(--brand-grad);
        color: var(--dark) !important;
        border-radius: 100px;
        border: none !important;
        padding: 13px 38px;
        font-size: 0.95rem !important;
      }
      .hdr-spacer {
        height: calc(var(--tbh) + var(--th));
      }

      /* ══════════════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════════════ */
      section {
        position: relative;
        z-index: 1;
      }
      .sec-pad {
        padding: 100px 0;
      }
      .badge-pill {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: rgba(104, 164, 196, 0.1);
        border: 1px solid rgba(104, 164, 196, 0.35);
        color: var(--gold-lt);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        padding: 6px 20px;
        border-radius: 100px;
        margin-bottom: 20px;
        text-transform: uppercase;
      }
      .badge-pill i {
        font-size: 8px;
      }
      .sec-title {
        font-family: "Tajawal", sans-serif;
        font-size: clamp(1.8rem, 4.5vw, 3.2rem);
        font-weight: 800;
        line-height: 1.22;
        color: #fff;
      }
      .sec-title .hl {
        color: var(--gold);
        position: relative;
        display: inline-block;
      }
      .sec-title .hl::after {
        content: "";
        position: absolute;
        bottom: 4px;
        right: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, rgba(104, 164, 196, 0.72), transparent);
        border-radius: 2px;
      }
      .sec-desc {
        font-size: 0.95rem;
        color: var(--muted);
        line-height: 1.88;
        margin-top: 13px;
        max-width: 540px;
      }
      .gold-line {
        width: 56px;
        height: 3px;
        background: var(--brand-line);
        border-radius: 3px;
        margin: 16px 0;
      }
      .sec-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gb), transparent);
        margin: 0;
      }

      /* buttons */
      .btn-g {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: "Cairo", sans-serif;
        font-size: 14px;
        font-weight: 700;
        padding: 13px 36px;
        border-radius: 100px;
        background: var(--brand-grad);
        color: var(--dark);
        text-decoration: none;
        border: none;
        cursor: pointer;
        box-shadow: 0 10px 28px rgba(104, 164, 196, 0.32);
        transition: var(--ease);
      }
      .btn-g:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 42px rgba(104, 164, 196, 0.42);
        color: var(--dark);
      }
      .btn-o {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: "Cairo", sans-serif;
        font-size: 14px;
        font-weight: 700;
        padding: 12px 32px;
        border-radius: 100px;
        background: transparent;
        color: var(--muted);
        text-decoration: none;
        border: 1.5px solid rgba(255, 255, 255, 0.14);
        cursor: pointer;
        transition: var(--ease);
        margin-left: 12px;
      }
      .btn-o:hover {
        border-color: var(--gold);
        color: var(--gold-lt);
      }

      /* ══════════════════════════════════════════════
   1. HERO
══════════════════════════════════════════════ */
      .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
      }
      .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.25) saturate(0.9);
      }
      .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(8, 15, 26, 0.88) 0%,
          rgba(8, 15, 26, 0.55) 50%,
          rgba(8, 15, 26, 0.8) 100%
        );
      }
      .hero-grid-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background-image:
          linear-gradient(rgba(104, 164, 196, 0.05) 1px, transparent 1px),
          linear-gradient(90deg, rgba(104, 164, 196, 0.05) 1px, transparent 1px);
        background-size: 60px 60px;
      }
      .hero-content {
        position: relative;
        z-index: 2;
        padding: 0 0 60px;
      }
      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 28px;
      }
      .hero-eyebrow span {
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: 700;
        color: var(--gold-lt);
      }
      .eyebrow-line {
        width: 40px;
        height: 1px;
        background: var(--gold);
      }
      .hero-h1 {
        font-family: "Tajawal", sans-serif;
        font-size: clamp(2.4rem, 6vw, 4.8rem);
        font-weight: 900;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 22px;
      }
      .hero-h1 .gold-word {
        color: var(--gold);
        display: block;
      }
      .hero-p {
        font-size: 1.05rem;
        color: rgba(207, 216, 227, 0.8);
        line-height: 1.85;
        max-width: 560px;
        margin-bottom: 38px;
      }
      .hero-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        align-items: center;
      }
      .hero-scroll {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        cursor: pointer;
      }
      .hero-scroll span {
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--muted);
      }
      .scroll-arrow {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid var(--gb);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 13px;
        animation: bounce 2s ease-in-out infinite;
      }
      @keyframes bounce {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(8px);
        }
      }
      /* Hero floating cards */
      .hero-side {
        position: relative;
        z-index: 2;
      }
      .hero-float-card {
        background: rgba(13, 27, 42, 0.75);
        border: 1px solid var(--gb);
        backdrop-filter: blur(16px);
        border-radius: 16px;
        padding: 18px 22px;
        margin-bottom: 16px;
        transition: var(--ease);
      }
      .hero-float-card:hover {
        transform: translateX(-6px);
        border-color: rgba(104, 164, 196, 0.4);
      }
      .hfc-icon {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        background: var(--gold-pale);
        border: 1px solid var(--gb);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 18px;
        margin-bottom: 12px;
      }
      .hfc-num {
        font-family: "Tajawal", sans-serif;
        font-size: 2rem;
        font-weight: 800;
        color: var(--gold);
        line-height: 1;
      }
      .hfc-lbl {
        font-size: 0.82rem;
        color: var(--muted);
        margin-top: 4px;
      }
      .hero-badge-strip {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 8px;
      }
      .hbs {
        font-size: 11.5px;
        font-weight: 600;
        padding: 6px 14px;
        border-radius: 100px;
        background: var(--gold-pale);
        border: 1px solid var(--gb);
        color: var(--gold-lt);
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .hbs i {
        font-size: 9px;
      }

      /* ══════════════════════════════════════════════
   2. ABOUT
══════════════════════════════════════════════ */
      .about-sec {
        background: linear-gradient(
          180deg,
          transparent 0%,
          rgba(17, 34, 64, 0.15) 50%,
          transparent 100%
        );
      }
      .about-img-wrap {
        position: relative;
        border-radius: 22px;
        overflow: hidden;
      }
      .about-img-wrap img {
        width: 100%;
        height: 460px;
        object-fit: cover;
        border-radius: 22px;
        filter: brightness(0.9);
      }
      .about-img-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 22px;
        border: 2px solid rgba(104, 164, 196, 0.2);
        pointer-events: none;
      }
      .about-badge-abs {
        position: absolute;
        bottom: 24px;
        right: 24px;
        background: rgba(8, 15, 26, 0.88);
        backdrop-filter: blur(14px);
        border: 1px solid var(--gb);
        border-radius: 14px;
        padding: 16px 20px;
      }
      .aba-num {
        font-family: "Tajawal", sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--gold);
        line-height: 1;
      }
      .aba-lbl {
        font-size: 0.78rem;
        color: var(--muted);
        margin-top: 4px;
      }
      .about-corner {
        position: absolute;
        top: 22px;
        left: 22px;
        width: 80px;
        height: 80px;
        border-radius: 14px;
        background: var(--brand-grad);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: var(--dark);
      }
      /* VMG tabs */
      .vmg-tabs {
        display: flex;
        gap: 8px;
        margin-bottom: 24px;
        flex-wrap: wrap;
      }
      .vmg-tab {
        font-size: 13px;
        font-weight: 700;
        padding: 8px 22px;
        border-radius: 100px;
        cursor: pointer;
        border: 1.5px solid var(--gb);
        background: transparent;
        color: var(--muted);
        transition: 0.3s;
      }
      .vmg-tab.act {
        background: var(--brand-grad);
        border-color: transparent;
        color: var(--dark);
        box-shadow: 0 6px 20px rgba(104, 164, 196, 0.3);
      }
      .vmg-pane {
        display: none;
        animation: fadein 0.4s ease;
      }
      .vmg-pane.act {
        display: block;
      }
      @keyframes fadein {
        from {
          opacity: 0;
          transform: translateY(8px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .vmg-pane p {
        font-size: 0.92rem;
        color: var(--muted);
        line-height: 1.9;
      }
      .about-features {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 22px;
      }
      .af-item {
        display: flex;
        align-items: center;
        gap: 9px;
        font-size: 0.83rem;
        color: var(--txt);
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 8px 14px;
      }
      .af-item i {
        color: var(--gold);
        font-size: 12px;
      }

      /* ══════════════════════════════════════════════
   3. SERVICES
══════════════════════════════════════════════ */
      .services-sec {
        background: rgba(13, 27, 42, 0.25);
      }
      .srv-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      @media (max-width: 991px) {
        .srv-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 576px) {
        .srv-grid {
          grid-template-columns: 1fr;
        }
      }
      .srv-card {
        border-radius: var(--rad);
        border: 1px solid var(--border);
        padding: 30px 26px;
        background: rgba(13, 27, 42, 0.6);
        backdrop-filter: blur(10px);
        transition: var(--ease);
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }
      .srv-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(104, 164, 196, 0),
          rgba(104, 164, 196, 0.07)
        );
        opacity: 0;
        transition: 0.4s;
      }
      .srv-card::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 2px;
        background: var(--brand-line);
        transform: scaleX(0);
        transition: 0.4s;
      }
      .srv-card:hover {
        border-color: rgba(104, 164, 196, 0.3);
        transform: translateY(-6px);
        box-shadow: 0 28px 56px rgba(0, 0, 0, 0.4);
      }
      .srv-card:hover::before,
      .srv-card:hover::after {
        opacity: 1;
        transform: scaleX(1);
      }
      .srv-icon {
        width: 58px;
        height: 58px;
        border-radius: 14px;
        background: var(--gold-pale);
        border: 1px solid var(--gb);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--gold);
        margin-bottom: 20px;
        transition: 0.4s;
      }
      .srv-card:hover .srv-icon {
        background: var(--brand-grad);
        color: var(--dark);
        border-color: transparent;
      }
      .srv-name {
        font-family: "Tajawal", sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
      }
      .srv-desc {
        font-size: 0.83rem;
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 18px;
      }
      .srv-link {
        font-size: 12.5px;
        font-weight: 700;
        color: var(--gold);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: 0.3s;
      }
      .srv-link i {
        font-size: 10px;
        transition: transform 0.3s;
      }
      .srv-link:hover {
        color: var(--gold-lt);
      }
      .srv-link:hover i {
        transform: translateX(-4px);
      }

      /* ══════════════════════════════════════════════
   4. WHY US
══════════════════════════════════════════════ */
      .why-sec {
        overflow: hidden;
      }
      .why-img {
        position: relative;
        border-radius: 22px;
        overflow: hidden;
      }
      .why-img img {
        width: 100%;
        height: 100%;
        min-height: 480px;
        object-fit: cover;
        filter: brightness(0.8);
      }
      .why-img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(77, 143, 178, 0.7),
          rgba(8, 15, 26, 0.4)
        );
      }
      .why-img-badge {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        padding: 28px;
        background: linear-gradient(to top, rgba(8, 15, 26, 0.95), transparent);
      }
      .wib-inner {
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .wib-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        font-size: 20px;
        flex-shrink: 0;
      }
      .wib-txt .wn {
        font-family: "Tajawal", sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
      }
      .wib-txt .ws {
        font-size: 0.8rem;
        color: var(--muted);
      }
      .why-features {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .wf-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 18px 20px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: rgba(13, 27, 42, 0.5);
        transition: var(--ease);
        cursor: default;
      }
      .wf-item:hover {
        border-color: rgba(104, 164, 196, 0.25);
        background: rgba(77, 143, 178, 0.2);
        transform: translateX(-4px);
      }
      .wf-num {
        font-family: "Tajawal", sans-serif;
        font-size: 1.4rem;
        font-weight: 900;
        color: var(--gold);
        opacity: 0.5;
        line-height: 1;
        flex-shrink: 0;
        min-width: 32px;
      }
      .wf-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--gold-pale);
        border: 1px solid var(--gb);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 16px;
        flex-shrink: 0;
        transition: 0.3s;
      }
      .wf-item:hover .wf-icon {
        background: var(--gold);
        color: var(--dark);
      }
      .wf-body .wt {
        font-size: 0.93rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 4px;
      }
      .wf-body .wd {
        font-size: 0.8rem;
        color: var(--muted);
        line-height: 1.7;
      }

      /* ══════════════════════════════════════════════
   5. SECTORS
══════════════════════════════════════════════ */
      .sectors-sec {
        background: rgba(13, 27, 42, 0.2);
      }
      .sectors-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
      }
      @media (max-width: 991px) {
        .sectors-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      @media (max-width: 576px) {
        .sectors-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      .sec-card {
        border-radius: 14px;
        border: 1px solid var(--border);
        padding: 24px 16px;
        text-align: center;
        background: rgba(13, 27, 42, 0.55);
        backdrop-filter: blur(8px);
        transition: var(--ease);
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }
      .sec-card::before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        height: 2px;
        background: var(--brand-line);
        transform: scaleX(0);
        transition: 0.4s;
      }
      .sec-card:hover {
        border-color: rgba(104, 164, 196, 0.3);
        transform: translateY(-6px);
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
      }
      .sec-card:hover::before {
        transform: scaleX(1);
      }
      .sec-card-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: var(--gold-pale);
        border: 1px solid var(--gb);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--gold);
        margin: 0 auto 14px;
        transition: 0.4s;
      }
      .sec-card:hover .sec-card-icon {
        background: var(--brand-grad);
        color: var(--dark);
        border-color: transparent;
      }
      .sec-card-name {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--txt);
      }

      /* ══════════════════════════════════════════════
   6. STATS
══════════════════════════════════════════════ */
      .stats-sec {
        background: linear-gradient(
          135deg,
          rgba(77, 143, 178, 0.3) 0%,
          rgba(13, 27, 42, 0.6) 100%
        );
        border-top: 1px solid var(--gb);
        border-bottom: 1px solid var(--gb);
      }
      .stat-box {
        text-align: center;
        padding: 20px 10px;
        position: relative;
      }
      .stat-box + .stat-box::before {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: var(--gb);
      }
      .stat-n {
        font-family: "Tajawal", sans-serif;
        font-size: 3rem;
        font-weight: 900;
        color: var(--gold);
        line-height: 1;
        display: block;
      }
      .stat-p {
        font-size: 1.6rem;
      }
      .stat-l {
        font-size: 0.85rem;
        color: var(--muted);
        margin-top: 8px;
        font-weight: 500;
      }

      /* ══════════════════════════════════════════════
   7. PORTFOLIO  (inline — same as before)
══════════════════════════════════════════════ */
      .pf-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
      }
      @media (max-width: 991px) {
        .pf-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 576px) {
        .pf-grid {
          grid-template-columns: 1fr;
        }
      }
      .pf-card {
        border-radius: var(--rad);
        overflow: hidden;
        background: var(--navy2);
        border: 1px solid var(--border);
        transition: var(--ease);
        animation: fadeUp 0.6s ease both;
      }
      .pf-card:hover {
        transform: translateY(-8px);
        box-shadow:
          0 30px 60px rgba(0, 0, 0, 0.45),
          0 0 0 1px rgba(104, 164, 196, 0.25);
      }
      .pf-card.feat {
        grid-column: span 2;
      }
      @media (max-width: 576px) {
        .pf-card.feat {
          grid-column: span 1;
        }
      }
      .pf-img {
        position: relative;
        overflow: hidden;
        height: 230px;
      }
      .pf-card.feat .pf-img {
        height: 310px;
      }
      .pf-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
        filter: brightness(0.82);
      }
      .pf-card:hover .pf-img img {
        transform: scale(1.07);
        filter: brightness(0.65);
      }
      .pf-ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(8, 15, 26, 0.95) 0%,
          rgba(8, 15, 26, 0.2) 55%,
          transparent 100%
        );
      }
      .pf-ov-act {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        opacity: 0;
        transition: var(--ease);
      }
      .pf-card:hover .pf-ov-act {
        opacity: 1;
      }
      .pf-ob {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        text-decoration: none;
        transition: 0.3s;
      }
      .pf-ob:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--dark);
      }
      .pf-cat {
        position: absolute;
        top: 13px;
        right: 13px;
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 4px 13px;
        border-radius: 100px;
        background: rgba(104, 164, 196, 0.85);
        backdrop-filter: blur(6px);
        color: var(--dark);
      }
      .pf-feat-badge {
        position: absolute;
        top: 13px;
        left: 13px;
        font-size: 10.5px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 100px;
        background: rgba(8, 15, 26, 0.85);
        border: 1px solid var(--gb);
        color: var(--gold-lt);
      }
      .pf-body {
        padding: 18px 20px 22px;
      }
      .pf-name {
        font-family: "Tajawal", sans-serif;
        font-size: 1.08rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 5px;
        transition: color 0.3s;
      }
      .pf-card:hover .pf-name {
        color: var(--gold-lt);
      }
      .pf-sub {
        font-size: 0.79rem;
        color: var(--muted);
        margin-bottom: 12px;
      }
      .pf-meta {
        display: flex;
        align-items: center;
        gap: 13px;
        font-size: 0.77rem;
        color: var(--muted);
        border-top: 1px solid var(--border);
        padding-top: 12px;
      }
      .pf-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .pf-meta i {
        color: var(--gold);
        font-size: 10px;
      }
      .pf-card.hidden {
        display: none;
      }
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(26px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* filter */
      .filter-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 44px;
        justify-content: center;
      }
      .fb {
        font-family: "Cairo", sans-serif;
        font-size: 13px;
        font-weight: 600;
        padding: 9px 22px;
        border-radius: 100px;
        border: 1.5px solid var(--gb);
        background: transparent;
        color: var(--muted);
        cursor: pointer;
        transition: var(--ease);
      }
      .fb:hover {
        border-color: var(--gold);
        color: var(--gold-lt);
        background: rgba(104, 164, 196, 0.08);
      }
      .fb.act {
        background: var(--brand-grad);
        border-color: transparent;
        color: var(--dark);
        box-shadow: 0 8px 20px rgba(104, 164, 196, 0.35);
      }
      .lm-wrap {
        text-align: center;
        margin-top: 50px;
      }
      .lm-btn {
        font-family: "Cairo", sans-serif;
        font-size: 14px;
        font-weight: 700;
        padding: 12px 42px;
        border-radius: 100px;
        background: transparent;
        border: 2px solid var(--gold);
        color: var(--gold);
        cursor: pointer;
        transition: var(--ease);
        position: relative;
        overflow: hidden;
      }
      .lm-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--brand-grad);
        transform: scaleX(0);
        transform-origin: right;
        transition: 0.4s;
        z-index: 0;
      }
      .lm-btn:hover::before {
        transform: scaleX(1);
      }
      .lm-btn:hover {
        color: var(--dark);
      }
      .lm-btn span {
        position: relative;
        z-index: 1;
      }

      /* ══════════════════════════════════════════════
   8. PARTNERS (infinite marquee)
══════════════════════════════════════════════ */
      .partners-sec {
        overflow: hidden;
        background: rgba(13, 27, 42, 0.25);
      }
      .partners-track-wrap {
        overflow: hidden;
        position: relative;
      }
      .partners-track-wrap::before,
      .partners-track-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 120px;
        z-index: 2;
        pointer-events: none;
      }
      .partners-track-wrap::before {
        right: 0;
        background: linear-gradient(to left, var(--dark), transparent);
      }
      .partners-track-wrap::after {
        left: 0;
        background: linear-gradient(to right, var(--dark), transparent);
      }
      .partners-track {
        display: flex;
        gap: 20px;
        width: max-content;
        animation: marquee 28s linear infinite;
      }
      .partners-track:hover {
        animation-play-state: paused;
      }
      @keyframes marquee {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }
      .partner-logo {
        height: 70px;
        width: 160px;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: rgba(13, 27, 42, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: var(--ease);
      }
      .partner-logo:hover {
        border-color: rgba(104, 164, 196, 0.3);
        background: rgba(77, 143, 178, 0.3);
      }
      .partner-logo span {
        font-family: "Tajawal", sans-serif;
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--muted);
        text-align: center;
        padding: 0 10px;
      }

      /* ══════════════════════════════════════════════
   9. TESTIMONIALS
══════════════════════════════════════════════ */
      .testi-sec {
        background: linear-gradient(
          180deg,
          transparent 0%,
          rgba(17, 34, 64, 0.18) 50%,
          transparent 100%
        );
      }
      .testi-slider {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      @media (max-width: 991px) {
        .testi-slider {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 576px) {
        .testi-slider {
          grid-template-columns: 1fr;
        }
      }
      .testi-card {
        border-radius: var(--rad);
        border: 1px solid var(--border);
        padding: 28px 24px;
        background: rgba(13, 27, 42, 0.6);
        backdrop-filter: blur(10px);
        transition: var(--ease);
        position: relative;
        overflow: hidden;
      }
      .testi-card::before {
        content: "\201D";
        font-size: 5rem;
        color: var(--gold);
        opacity: 0.08;
        position: absolute;
        top: -10px;
        left: 20px;
        font-family: serif;
        line-height: 1;
        pointer-events: none;
      }
      .testi-card:hover {
        border-color: rgba(104, 164, 196, 0.25);
        transform: translateY(-5px);
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
      }
      .testi-stars {
        color: var(--gold);
        font-size: 13px;
        margin-bottom: 14px;
        display: flex;
        gap: 3px;
      }
      .testi-text {
        font-size: 0.875rem;
        color: var(--muted);
        line-height: 1.85;
        margin-bottom: 20px;
      }
      .testi-author {
        display: flex;
        align-items: center;
        gap: 12px;
        border-top: 1px solid var(--border);
        padding-top: 16px;
      }
      .testi-av {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--brand-grad);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Tajawal", sans-serif;
        font-size: 1rem;
        font-weight: 800;
        color: var(--dark);
        flex-shrink: 0;
      }
      .testi-av-info .tn {
        font-size: 0.88rem;
        font-weight: 700;
        color: #fff;
      }
      .testi-av-info .tj {
        font-size: 0.75rem;
        color: var(--muted);
      }

      /* ══════════════════════════════════════════════
   10. CONTACT
══════════════════════════════════════════════ */
      .contact-sec {
        background: rgba(13, 27, 42, 0.2);
      }
      .contact-card {
        background: rgba(13, 27, 42, 0.7);
        border: 1px solid var(--gb);
        border-radius: 22px;
        padding: 44px 36px;
        backdrop-filter: blur(14px);
        position: relative;
        overflow: hidden;
      }
      .contact-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 2px;
        background: var(--brand-line);
      }
      .form-group {
        margin-bottom: 18px;
      }
      .form-label-c {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--txt);
        margin-bottom: 7px;
        display: block;
      }
      .form-ctrl {
        width: 100%;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 12px 16px;
        font-family: "Cairo", sans-serif;
        font-size: 0.88rem;
        color: #fff;
        transition: 0.3s;
        outline: none;
      }
      .form-ctrl::placeholder {
        color: var(--muted);
      }
      .form-ctrl:focus {
        border-color: rgba(104, 164, 196, 0.4);
        background: rgba(255, 255, 255, 0.06);
        box-shadow: 0 0 0 3px rgba(104, 164, 196, 0.1);
      }
      textarea.form-ctrl {
        resize: vertical;
        min-height: 120px;
      }
      select.form-ctrl option {
        background: #0d1b2a;
      }
      .contact-info-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .ci-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
      }
      .ci-ico {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: var(--gold-pale);
        border: 1px solid var(--gb);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 17px;
        flex-shrink: 0;
      }
      .ci-txt .cl {
        font-size: 0.75rem;
        color: var(--muted);
        font-weight: 500;
        margin-bottom: 3px;
        display: block;
      }
      .ci-txt .cv {
        font-size: 0.9rem;
        color: #fff;
        font-weight: 600;
      }
      .ci-txt a {
        color: inherit;
        text-decoration: none;
        transition: 0.3s;
      }
      .ci-txt a:hover {
        color: var(--gold-lt);
      }
      .contact-map {
        margin-top: 28px;
        border-radius: 14px;
        overflow: hidden;
        height: 200px;
        border: 1px solid var(--border);
        background: rgba(13, 27, 42, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        font-size: 0.85rem;
      }

      /* ══════════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════════ */
      .cta-strip {
        margin: 0;
        padding: 80px 0;
        position: relative;
        z-index: 1;
        background: linear-gradient(
          135deg,
          rgba(77, 143, 178, 0.5) 0%,
          rgba(8, 15, 26, 0.9) 100%
        );
        border-top: 1px solid var(--gb);
        border-bottom: 1px solid var(--gb);
        text-align: center;
      }
      .cta-strip::before {
        content: "";
        position: absolute;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 320px;
        height: 320px;
        border-radius: 50%;
        pointer-events: none;
        background: radial-gradient(
          circle,
          rgba(104, 164, 196, 0.1),
          transparent 70%
        );
      }
      .cta-strip h2 {
        font-family: "Tajawal", sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 12px;
      }
      .cta-strip p {
        color: var(--muted);
        font-size: 1rem;
        max-width: 500px;
        margin: 0 auto 30px;
      }

      /* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
      footer {
        position: relative;
        z-index: 1;
      }
      .ft-top {
        background: #04080f;
        border-top: 1px solid var(--gb);
        padding: 64px 0 40px;
      }
      .ft-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
        text-decoration: none;
      }
      .ft-logo .brand-logo-img {
        height: 64px;
      }
      .ft-logo .brand-name-ar {
        font-size: 0.96rem;
      }
      .ft-logo .brand-name-en {
        font-size: 0.62rem;
      }
      .ft-desc {
        font-size: 0.87rem;
        color: var(--muted);
        line-height: 1.9;
        margin-bottom: 22px;
        max-width: 295px;
      }
      .ft-soc {
        display: flex;
        gap: 10px;
      }
      .ft-soc a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: var(--gold-pale);
        border: 1px solid var(--gb);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 14px;
        text-decoration: none;
        transition: var(--ease);
      }
      .ft-soc a:hover {
        background: var(--gold);
        color: var(--dark);
        transform: translateY(-3px);
      }
      .ft-col-h {
        font-family: "Tajawal", sans-serif;
        font-size: 0.98rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 18px;
        padding-bottom: 10px;
        position: relative;
      }
      .ft-col-h::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 34px;
        height: 2px;
        background: linear-gradient(90deg, rgba(104, 164, 196, 0.72), transparent);
        border-radius: 2px;
      }
      .ft-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 9px;
      }
      .ft-links a {
        font-size: 0.86rem;
        color: var(--muted);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 7px;
        transition: 0.3s;
      }
      .ft-links a i {
        color: var(--gold);
        font-size: 8.5px;
        transition: transform 0.3s;
      }
      .ft-links a:hover {
        color: var(--gold-lt);
        padding-right: 4px;
      }
      .ft-links a:hover i {
        transform: translateX(-3px);
      }
      .ft-contact-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 13px;
      }
      .ftc-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
      }
      .ftc-ico {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        background: var(--gold-pale);
        border: 1px solid var(--gb);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 13px;
        flex-shrink: 0;
      }
      .ftc-body .fl {
        font-size: 0.73rem;
        color: var(--muted);
        display: block;
        margin-bottom: 2px;
      }
      .ftc-body .fv {
        font-size: 0.84rem;
        color: var(--txt);
        font-weight: 600;
      }
      .ftc-body a {
        color: inherit;
        text-decoration: none;
        transition: 0.3s;
      }
      .ftc-body a:hover {
        color: var(--gold-lt);
      }
      .ft-cert {
        background: #04080f;
        border-top: 1px solid var(--border);
        padding: 18px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
      }
      .cert-b {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 7px 17px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        font-size: 11.5px;
        color: var(--muted);
      }
      .cert-b i {
        color: var(--gold);
        font-size: 14px;
      }
      .ft-bot {
        background: #020508;
        border-top: 1px solid rgba(104, 164, 196, 0.1);
        padding: 17px 0;
      }
      .ft-bot-in {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 11px;
      }
      .ft-copy {
        font-size: 0.78rem;
        color: var(--muted);
      }
      .ft-copy span {
        color: var(--gold);
        font-weight: 700;
      }
      .ft-bot-links {
        display: flex;
        gap: 18px;
      }
      .ft-bot-links a {
        font-size: 0.78rem;
        color: var(--muted);
        text-decoration: none;
        transition: 0.3s;
      }
      .ft-bot-links a:hover {
        color: var(--gold-lt);
      }
      .back-top {
        width: 40px;
        height: 40px;
        border-radius: 11px;
        background: var(--brand-grad);
        color: var(--dark);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        box-shadow: 0 8px 22px rgba(104, 164, 196, 0.32);
        transition: var(--ease);
      }
      .back-top:hover {
        transform: translateY(-3px);
      }

      /* scrollbar */
      ::-webkit-scrollbar {
        width: 5px;
      }
      ::-webkit-scrollbar-track {
        background: var(--dark);
      }
      ::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 3px;
      }

      /* responsive fixes */
      @media (max-width: 991px) {
        .nav-ul,
        .nav-cta {
          display: none;
        }
        .hbg {
          display: flex;
        }
        .brand-logo-img,
        .hdr.scrolled .brand-logo-img {
          height: 54px;
        }
        .brand-name-en {
          display: none;
        }
      }
      @media (max-width: 576px) {
        .tb-left .tb-hide {
          display: none;
        }
      }
    

