﻿
/* ─── RESET & TOKENS ─────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --gold: #C9A227;
      --gold-light: #C9A227;
      --gold-pale: #FEF9EC;
      --gold-dark: #7A5700;
      --gold-border: #E8D5A0;
      --silver: #8E9CB2;
      --silver-light: #C8D4E3;
      --silver-pale: #EEF2F7;
      --navy: #0D0D1A;
      --navy-heading: #1E3A5F;
      --navy-mid: #162240;
      --navy-soft: #1E3055;
      --ink: #1A1F2E;
      --ink-mid: #3D4560;
      --ink-soft: #6B7494;
      --line: #D8DCEC;
      --line-light: #ECEEF5;
      --surface: #F7F8FC;
      --surface-warm: #FDFCF8;
      --white: #FFFFFF;
      --up: #166534;
      --up-bg: #DCFCE7;
      --down: #991B1B;
      --down-bg: #FEE2E2;
      /* Audit design tokens */
      --color-up: #22c55e;
      --color-down: #ef4444;
      --gold-subtle: rgba(201, 162, 39, 0.08);
      --shadow-gold: 0 4px 12px rgba(201, 162, 39, 0.15);
      --radius-sm: 6px;
      --radius: 10px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --ff-display: 'Barlow', Georgia, serif;
      --ff-body: 'DM Sans', system-ui, sans-serif;
      --shadow-sm: 0 1px 4px rgba(11, 22, 40, .06);
      --shadow: 0 4px 16px rgba(11, 22, 40, .08);
      --shadow-lg: 0 12px 40px rgba(11, 22, 40, .12);
      --transition: .18s ease;
    }

    html,
    body {
      width: 100%;
      max-width: 100vw;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
      position: relative;
    }

    body {
      font-family: var(--ff-body);
      font-size: 15px;
      color: var(--ink);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none
    }

    img {
      display: block;
      max-width: 100%;
      height: auto
    }

    button {
      font-family: var(--ff-body);
      cursor: pointer
    }

    ul {
      list-style: none
    }

    /* ─── LAYOUT ──────────────────────────────────────── */
    .container {
      width: 100%;
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .section {
      padding: 72px 0
    }

    .section-sm {
      padding: 48px 0
    }

    /* ─── TOP BAR ─────────────────────────────────────── */

    .sub-bar {
      background: #12100E;
      color: rgba(255, 255, 255, .75);
      font-size: 12px;
      padding: 0 0;
      overflow: visible;
      height: 38px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(201, 162, 39, .3);
    }

    .sub-bar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 0 24px;
    }

    .sub-bar-links {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 11.5px;
      flex-shrink: 0;
      padding-left: 24px;
      border-left: 1px solid rgba(255, 255, 255, .1);
    }

    .sub-bar-links a {
      color: rgba(255, 255, 255, .6);
      transition: color var(--transition)
    }


.top-bar {
    background: #12100E;
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    padding: 0 0;
    overflow: hidden;
    height: 30px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(201, 162, 39, .3);
    position: relative;
    display: inline-block;
}

    .top-bar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 0 5px;
    }

    .top-bar-ticker {
      display: flex;
      align-items: center;
      gap: 6px;
      overflow: hidden;

    }

    .ticker-scroll {
      display: flex;
      gap: 32px;
      animation: scrollLeft 40s linear infinite;
      white-space: nowrap;
    }

    .ticker-scroll:hover {
      animation-play-state: paused
    }
     .ticker-scroll-2 {
      display: flex;
      gap: 32px;
      animation: scrollLeft 30s linear infinite;
      white-space: nowrap;
    }

    .ticker-scroll-2:hover {
      animation-play-state: paused
    }

    @keyframes scrollLeft {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .ticker-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12.5px
    }

    .ticker-name {
      color: rgba(255, 255, 255, .55);
      font-weight: 400
    }

    .ticker-price {
      color: #fff;
      font-weight: 500;
      font-variant-numeric: tabular-nums
    }

    .ticker-up {
      color: #22C55E;
      font-size: 11px
    }

    .ticker-down {
      color: #EF4444;
      font-size: 11px
    }

    .ticker-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .2);
      flex-shrink: 0
    }

    /* ─── LIVE BADGE ──────────────────────────────────── */
    .ticker-live-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #0000AA;
      color: #fff;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: .08em;
      padding: 2px 8px;
      border-radius: 3px;
      flex-shrink: 0;
      margin-right: 14px;
      z-index: 9;
      min-width: 145px;
    }

    .ticker-live-badge::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #fff;
      animation: livePulse 1.4s infinite;
    }

    @keyframes livePulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .3
      }
    }

    .ticker-timestamp {
      font-size: 10.5px;
      color: rgba(255, 255, 255, .4);
      flex-shrink: 0;
      padding-left: 12px;
      border-left: 1px solid rgba(255, 255, 255, .1);
      white-space: nowrap;
    }

    .top-bar-links {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 11.5px;
      flex-shrink: 0;
      padding-left: 24px;
      border-left: 1px solid rgba(255, 255, 255, .1);
    }

    .top-bar-links a {
      color: rgba(255, 255, 255, .6);
      transition: color var(--transition)
    }

    .top-bar-links a:hover {
      color: #fff
    }

    /* ─── NAVIGATION ──────────────────────────────────── */
    #navbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.25s ease, border-color 0.25s ease;
    }

    /* Scrolled state — applied via JS when user scrolls past top-bar */
    #navbar.scrolled {
      box-shadow: 0 4px 24px rgba(11, 22, 40, 0.13);
      border-bottom-color: rgba(201, 162, 39, 0.35);
      width: 100%;
      position: fixed;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 84px;
      transition: height 0.25s ease;
    }

    #navbar.scrolled .nav-inner {
      height: 68px;
    }

    /* Keep logo proportional when nav compresses */
    #navbar.scrolled .logo-mark {
      height: 52px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .logo-mark {
      height: 67px;

      border-radius: 0px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-display);
      color: #fff;
      font-size: 16px;
      letter-spacing: .5px;
    }

    .logo-mark img {
      height: 100%;
    }

    .logo-text {
      line-height: 1.15
    }

    .logo-text strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: .02em
    }

    .logo-text span {
      display: block;
      font-size: 10px;
      color: var(--ink-soft);
      letter-spacing: .04em
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 2px;
      flex: 1;
      justify-content: center;
      padding: 0 16px;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      display: block;
      padding: 8px 11px;
      font-size: 13px;
      font-weight: 500;
      color: var(--ink-mid);
      border-radius: var(--radius-sm);
      transition: background var(--transition), color var(--transition);
      white-space: nowrap;
      position: relative;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 11px;
      right: 11px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform .2s ease;
    }

    .nav-link:hover,
    .nav-item:hover>.nav-link {
      background: transparent;
      color: var(--navy);
    }

    .nav-link:hover::before,
    .nav-item:hover>.nav-link::before {
      transform: scaleX(1);
    }

    .nav-link.has-sub::after {
      content: '';
      display: inline-block;
      width: 0;
      height: 0;
      border-left: 3.5px solid transparent;
      border-right: 3.5px solid transparent;
      border-top: 4px solid currentColor;
      margin-left: 5px;
      vertical-align: middle;
      opacity: .5;
    }

    .nav-dropdown {
      position: absolute;
      top: calc(100% + 0px);
      left: 0;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      min-width: 220px;
      padding: 8px;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-6px);
      transition: opacity .15s, transform .15s;
      z-index: 200;
    }

    .nav-item:hover>.nav-dropdown {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }

    .nav-dropdown a {
      display: block;
      padding: 7px 12px;
      font-size: 13px;
      color: var(--ink-mid);
      border-radius: var(--radius-sm);
      transition: background var(--transition), color var(--transition);
    }

    .nav-dropdown a:hover {
      background: var(--surface);
      color: var(--navy)
    }

    .nav-dropdown .dd-heading {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--ink-soft);
      padding: 10px 12px 4px;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    /* ─── SEARCH BUTTON ───────────────────────────────── */
    .nav-search-btn {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink-mid);
      cursor: pointer;
      transition: all var(--transition);
      flex-shrink: 0;
    }

    .nav-search-btn:hover {
      background: var(--surface);
      border-color: var(--silver-light);
      color: var(--navy);
    }

    .nav-search-btn svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ─── SEARCH OVERLAY ──────────────────────────────── */
    #search-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      pointer-events: none;
      visibility: hidden;
    }

    #search-overlay.open {
      pointer-events: all;
      visibility: visible;
    }

    .search-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(13, 13, 26, 0.6);
      backdrop-filter: blur(4px);
      opacity: 0;
      transition: opacity .25s ease;
    }

    #search-overlay.open .search-backdrop {
      opacity: 1;
    }

    .search-panel {
      position: relative;
      background: var(--white);
      width: 100%;
      max-height: 520px;
      box-shadow: 0 20px 60px rgba(11, 22, 40, 0.18);
      transform: translateY(-20px);
      opacity: 0;
      transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .25s ease;
      border-bottom: 3px solid var(--gold);
      overflow: hidden;
    }

    #search-overlay.open .search-panel {
      transform: translateY(0);
      opacity: 1;
    }

    .search-panel-inner {
      max-width: 780px;
      margin: 0 auto;
      padding: 28px 24px 32px;
    }

    .search-field-row {
      display: flex;
      align-items: center;
      gap: 12px;
      border: 2px solid var(--gold);
      border-radius: var(--radius);
      padding: 10px 16px;
      background: var(--surface-warm);
      margin-bottom: 24px;
    }

    .search-field-row svg {
      width: 20px;
      height: 20px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    #site-search-input {
      flex: 1;
      border: none;
      background: transparent;
      font-family: var(--ff-body);
      font-size: 16px;
      color: var(--ink);
      outline: none;
    }

    #site-search-input::placeholder {
      color: var(--ink-soft);
    }

    .search-close-btn {
      width: 30px;
      height: 30px;
      border: none;
      background: var(--line-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--ink-mid);
      font-size: 16px;
      line-height: 1;
      transition: background var(--transition), color var(--transition);
      flex-shrink: 0;
    }

    .search-close-btn:hover {
      background: var(--navy);
      color: #fff;
    }

    /* Category chips */
    .search-categories {
      margin-bottom: 20px;
    }

    .search-cat-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 10px;
    }

    .search-cat-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .search-cat-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      border-radius: 20px;
      border: 1px solid var(--line);
      background: var(--white);
      font-size: 12.5px;
      font-weight: 500;
      color: var(--ink-mid);
      cursor: pointer;
      transition: all var(--transition);
    }

    .search-cat-chip:hover,
    .search-cat-chip.active {
      background: var(--navy);
      border-color: var(--navy);
      color: #fff;
    }

    .search-cat-chip .chip-icon {
      font-size: 14px;
    }

    /* Quick links */
    .search-quick {
      border-top: 1px solid var(--line-light);
      padding-top: 18px;
    }

    .search-quick-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 10px;
    }

    .search-quick-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
    }

    .search-quick-link {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      border-radius: var(--radius-sm);
      background: var(--surface);
      border: 1px solid var(--line);
      font-size: 12.5px;
      color: var(--ink-mid);
      font-weight: 500;
      transition: all var(--transition);
      cursor: pointer;
    }

    .search-quick-link:hover {
      background: var(--gold-pale);
      border-color: var(--gold-border);
      color: var(--gold-dark);
    }

    .search-quick-link .ql-icon {
      font-size: 16px;
      flex-shrink: 0;
    }

    /* Search results list */
    #search-results {
      display: none;
      border-top: 1px solid var(--line-light);
      padding-top: 16px;
      max-height: 240px;
      overflow-y: auto;
    }

    #search-results.has-results {
      display: block;
    }

    .search-result-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: background var(--transition);
    }

    .search-result-item:hover {
      background: var(--surface);
    }

    .sri-icon {
      width: 32px;
      height: 32px;
      border-radius: var(--radius-sm);
      background: var(--gold-pale);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
    }

    .sri-title {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--navy);
    }

    .sri-section {
      font-size: 11px;
      color: var(--ink-soft);
      margin-top: 2px;
    }

    mark {
      background: rgba(201, 162, 39, .22);
      color: var(--gold-dark);
      border-radius: 2px;
      padding: 0 1px;
    }

    @media (max-width: 992px) {
      .nav-search-btn {
        display: none;
      }

      .search-quick-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .search-quick-grid {
        grid-template-columns: 1fr;
      }

      .search-panel-inner {
        padding: 20px 16px 24px;
      }
    }

    .btn-ghost {
      padding: 8px 14px;
      font-size: 13px;
      font-weight: 500;
      color: var(--ink-mid);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: transparent;
      transition: all var(--transition);
    }

    .btn-ghost:hover {
      background: var(--surface);
      border-color: var(--silver-light)
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 16px;
      font-size: 13px;
      font-weight: 600;
      color: var(--gold);
      background: transparent;
      border: 1.5px solid var(--gold);
      border-radius: var(--radius-sm);
      transition: all var(--transition);
      letter-spacing: .01em;
    }

    .btn-primary:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(201, 162, 39, .25);
    }

    .btn-primary:hover svg {
      filter: brightness(0.5);
    }

    .btn-gold {
      padding: 10px 24px;
      font-size: 14px;
      font-weight: 700;
      color: var(--navy) !important;
      background: var(--gold);
      border: none;
      border-radius: var(--radius-sm);
      transition: all var(--transition);
      letter-spacing: .01em;
    }

    .btn-gold:hover {
      background: #B8911F !important;
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(201, 162, 39, .35)
    }

    .btn-outline-white {
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 500;
      color: var(--gold) !important;
      background: transparent;
      border: 1.5px solid var(--gold);
      border-radius: var(--radius-sm);
      transition: all var(--transition);
    }

    .btn-outline-white:hover {
      background: rgba(201, 162, 39, .12)
    }

    /* ─── HERO ────────────────────────────────────────── */
    #hero {
      background: var(--navy);
      position: relative;
      overflow: hidden;
      min-height: 500px;
      display: flex;
      align-items: center;
    }

    .hero-video-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.38;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(to bottom, rgba(11, 22, 40, .65) 0%, rgba(11, 22, 40, .55) 100%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184, 134, 11, .12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(30, 48, 85, .8) 0%, transparent 70%);
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-columns: 30% 70%;
    gap: 30px !important;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201, 162, 39, .15);
      border: 1px solid rgba(201, 162, 39, .4);
      border-radius: 20px;
      padding: 5px 16px;
      font-size: 11.5px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 3px rgba(201, 162, 39, .3);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 3px rgba(201, 162, 39, .3)
      }

      50% {
        box-shadow: 0 0 0 6px rgba(201, 162, 39, .1)
      }
    }

    /* ─── HERO TRUST PILLS ───────────────────────────── */
    .hero-trust-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
    }

    .hero-trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 11px;
      font-weight: 500;
      color: rgba(255, 255, 255, .75);
      white-space: nowrap;
    }

    .hero-trust-pill::before {
      content: '✓';
      color: var(--gold);
      font-weight: 700;
      font-size: 10px;
    }

    .hero-h1 {
      font-family: var(--ff-display);
      font-size: 52px;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 18px;
    }

    .hero-h1 em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, .65);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 440px;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .hero-stat-num {
      font-family: var(--ff-display);
      font-size: 28px;
      color: #fff;
    }

    .hero-stat-label {
      font-size: 12px;
      color: rgba(255, 255, 255, .5);
      margin-top: 2px
    }

    /* ─── IIBX MARKET WIDGET (MCX-style) ──────────────── */
    .iibx-mw {
      background: #060e1c;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0, 0, 0, .6);
      border: 1px solid rgba(255, 255, 255, .07);
    }

    /* Header */
    .iibx-mw-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      padding: 16px 18px 14px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .iibx-mw-title {
      font-size: 19px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.01em;
      line-height: 1.2;
    }

    .iibx-mw-activity {
      text-align: right;
    }

    .iibx-mw-activity-label {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
    }

    .iibx-mw-activity-time {
      font-size: 11px;
      color: rgba(255, 255, 255, .45);
      margin-top: 2px;
      font-variant-numeric: tabular-nums;
    }

    /* Body: chart + cards side by side */
    .iibx-mw-body {
      display: flex;
    }

    /* Chart column */
    .iibx-mw-chart-col {
      width: 44%;
      flex-shrink: 0;
      padding: 14px 14px 10px;
      border-right: 1px solid rgba(255, 255, 255, .06);
      display: flex;
      flex-direction: column;
      background: #040b16;
    }

    /* header left: title stacked above dropdown */
    .iibx-mw-header-left {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .iibx-mw-dropdown {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 7px;
      padding: 6px 12px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, .88);
      cursor: pointer;
      width: fit-content;
      user-select: none;
      transition: background .15s, border-color .15s;
    }

    .iibx-mw-dropdown:hover {
      background: rgba(255, 255, 255, .11);
      border-color: rgba(201, 162, 39, .4);
    }

    .iibx-mw-dropdown svg {
      width: 9px;
      height: 9px;
      fill: rgba(255, 255, 255, .45);
      flex-shrink: 0;
      transition: transform .2s;
    }

    .iibx-mw-dropdown.open svg {
      transform: rotate(180deg);
    }

    /* dropdown menu */
    .iibx-mw-drop-menu {
      display: none;
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      min-width: 190px;
      background: #0f1e36;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 9px;
      box-shadow: 0 12px 36px rgba(0, 0, 0, .55);
      z-index: 200;
      overflow: hidden;
    }

    .iibx-mw-dropdown.open .iibx-mw-drop-menu {
      display: block;
    }

    .iibx-mw-drop-item {
      padding: 9px 14px;
      font-size: 12px;
      font-weight: 500;
      color: rgba(255, 255, 255, .72);
      cursor: pointer;
      transition: background .12s, color .12s;
      border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .iibx-mw-drop-item:last-child { border-bottom: none; }

    .iibx-mw-drop-item:hover {
      background: rgba(201, 162, 39, .1);
      color: #fff;
    }

    .iibx-mw-drop-item.active {
      color: var(--gold-light);
      font-weight: 700;
      background: rgba(201, 162, 39, .07);
    }

    .iibx-mw-val-row {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 10px;
    }

    .iibx-mw-val {
      font-size: 21px;
      font-weight: 800;
      color: #fff;
      font-variant-numeric: tabular-nums;
      letter-spacing: -.02em;
    }

    .iibx-mw-val-chg {
      font-size: 13px;
      font-weight: 700;
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
    }

    .iibx-mw-val-chg.up   { color: #22c55e; }
    .iibx-mw-val-chg.down { color: #f87171; }

    /* SVG chart placeholder */
    .iibx-mw-chart-svg {
      flex: 1;
      width: 100%;
      min-height: 90px;
      display: block;
    }

    .iibx-mw-xaxis {
      display: flex;
      justify-content: space-between;
      margin-top: 5px;
    }

    .iibx-mw-xaxis span {
      font-size: 9px;
      color: rgba(255, 255, 255, .28);
      font-variant-numeric: tabular-nums;
    }

    .iibx-mw-open-val {
      font-size: 9.5px;
      color: rgba(255, 255, 255, .3);
      margin-top: 5px;
      font-variant-numeric: tabular-nums;
    }

    /* Cards grid column */
    .iibx-mw-cards {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(255, 255, 255, .07);
    }

    .iibx-mw-card-left,
    .iibx-mw-card-right {
      display: flex;
      flex-direction: column;
      background: #0a1525;
    }

    .iibx-mw-card-left { border-right: 1px solid rgba(255, 255, 255, .07); }

    .iibx-mw-col-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255);
      padding: 9px 13px 7px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .iibx-mw-card-left .iibx-mw-card,
    .iibx-mw-card-right .iibx-mw-card {
      border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .iibx-mw-card-left .iibx-mw-card:last-of-type,
    .iibx-mw-card-right .iibx-mw-card:last-of-type {
      border-bottom: none;
    }

    .iibx-mw-more {
      margin-top: auto;
    }

    .iibx-mw-more-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      padding: 5px 13px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .02em;
      color: #fff;
      background: #c9a227;
      text-decoration: none;
      border-top: 1px solid rgba(255, 255, 255, .07);
      transition: background .15s, color .15s;
    }

    .iibx-mw-more-link:hover {
      background: #0e1e35;
      color: #e2bc3f;
    }

    .iibx-mw-more-link svg {
      flex-shrink: 0;
      transition: transform .15s;
    }

    .iibx-mw-more-link:hover svg {
      transform: translateX(2px);
    }

    .iibx-mw-card {
      background: #0a1525;
      padding: 10px 13px;
      cursor: pointer;
      transition: background .15s;
      border-left: 3px solid transparent;
    }

    .iibx-mw-card:hover { background: #0e1e35; }

    .iibx-mw-card.gold-card  { border-left-color: #c9a227; }
    .iibx-mw-card.silver-card { border-left-color: #94a3b8; }

    .iibx-mw-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .iibx-card-name {
      font-size: 10px;
      font-weight: 700;
      color: rgba(255, 255, 255, .8);
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .iibx-card-date {
      font-size: 9px;
      color: rgba(255, 255, 255, .38);
      font-variant-numeric: tabular-nums;
    }

    .iibx-mw-card-bottom {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 4px;
    }

    .iibx-card-price {
      font-size: 15px;
      font-weight: 800;
      color: #fff;
      font-variant-numeric: tabular-nums;
      letter-spacing: -.01em;
    }

    .iibx-card-pct {
      font-size: 11px;
      font-weight: 700;
      font-variant-numeric: tabular-nums;
    }

    .iibx-card-pct.up   { color: #22c55e; }
    .iibx-card-pct.down { color: #f87171; }

    @keyframes pulse-green {
      0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, .25); }
      50%       { box-shadow: 0 0 0 7px rgba(34, 197, 94, .06); }
    }

  .hero-right {
      position: relative;
       width: 100%;
      height: 100%;
      min-height: 300px;
    }
.hero-left {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
}


 /*   .hero-right {
        position: relative;
        width: 200%;
        height: 500px;
    }*/
    /* ─── HERO SLIDER ─────────────────────────────────── */
    .hero-slider {
      position: relative;
      width: 100%;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
      height: 100%;
      background: rgba(255, 255, 255, .05);
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .65s ease;
      pointer-events: none;
       width: 100%;
      height: 100%;
    }

    .hero-slide.active {
      opacity: 1;
      pointer-events: auto;
      z-index: 1;
    }

  /*  .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      
    }
*/
  
        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            display: block;
        }
    .hero-slide-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px 24px 20px;
      background: linear-gradient(to top, rgba(11, 22, 40, .85) 0%, transparent 100%);
      transform: translateY(8px);
      opacity: 0;
      transition: transform .55s ease .2s, opacity .55s ease .2s;
    }

    .hero-slide.active .hero-slide-caption {
      transform: translateY(0);
      opacity: 1;
    }

    .hero-slide-caption .slide-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gold-light);
      background: rgba(245, 200, 66, .15);
      border: 1px solid rgba(245, 200, 66, .3);
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 8px;
    }

    .hero-slide-caption .slide-title {
      font-family: var(--ff-display);
        font-size: 15px;
        color: #fff;
        line-height: 1.2;
        font-weight: 500;
    }

    /* Slider controls */
    .hero-slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
      color: #fff;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background var(--transition);
      backdrop-filter: blur(4px);
      line-height: 1;
    }

    .hero-slider-btn:hover {
      background: rgba(255, 255, 255, .25)
    }

    .hero-slider-prev {
      left: 12px
    }

    .hero-slider-next {
      right: 12px
    }

    /* Dots */
    .hero-slider-dots {
      position: absolute;
      bottom: 14px;
      right: 16px;
      display: flex;
      gap: 6px;
      z-index: 10;
    }

    .hero-slider-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .3);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background .3s, transform .3s;
    }

    .hero-slider-dot.active {
      background: #fff;
      transform: scale(1.3);
    }

    .hero-card {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--radius-lg);
      padding: 20px 24px;
      backdrop-filter: blur(8px);
    }

    .hero-card-label {
      font-size: 11px;
      color: rgba(255, 255, 255, .45);
      font-weight: 500;
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: 12px
    }

    .price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .price-row:last-child {
      border-bottom: none;
      padding-bottom: 0
    }

    .price-name {
      font-size: 13px;
      color: rgba(255, 255, 255, .8);
      font-weight: 500
    }

    .price-val {
      font-size: 14px;
      color: #fff;
      font-weight: 600;
      font-variant-numeric: tabular-nums
    }

    .price-chg {
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 500
    }

    .chg-up {
      background: rgba(94, 219, 149, .15);
      color: #5EDB95
    }

    .chg-down {
      background: rgba(249, 112, 102, .15);
      color: #F97066
    }

    .hero-card-footer {
      font-size: 11px;
      color: rgba(255, 255, 255, .3);
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 6px
    }

    .live-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #5EDB95;
      animation: pulse2 1.5s infinite
    }

    @keyframes pulse2 {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .3
      }
    }

    .hero-card-links {
      display: flex;
      gap: 10px;
      margin-top: 4px;
    }

    .hero-card-link {
      flex: 1;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius-sm);
      padding: 12px;
      text-align: center;
      font-size: 12px;
      font-weight: 500;
      color: rgba(255, 255, 255, .7);
      transition: all var(--transition);
    }

    .hero-card-link:hover {
      background: rgba(255, 255, 255, .14);
      color: #fff
    }

    .hero-card-link span {
      display: block;
      font-size: 18px;
      margin-bottom: 4px
    }

    /* ─── TICKER STRIP ────────────────────────────────── */
    #ticker {
      background: var(--navy-mid);
      padding: 11px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .ticker-inner {
      display: flex;
      align-items: center;
      gap: 0;
      overflow: hidden;
    }

    .ticker-label-pill {
      background: var(--gold);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      padding: 4px 12px;
      border-radius: 4px;
      flex-shrink: 0;
      margin-right: 20px;
      text-transform: uppercase;
    }

    /* ─── STATS STRIP ─────────────────────────────────── */
    #stats {
      background: var(--surface-warm);
      border-top: 1px solid var(--gold-border);
      border-bottom: 1px solid var(--line);
      padding: 32px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .stat-item {
      text-align: center;
      padding: 0 24px;
      border-right: 1px solid var(--line);
    }

    .stat-item:last-child {
      border-right: none
    }

    .stat-number {
      font-family: var(--ff-display);
      font-size: 36px;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-number span {
      color: var(--gold);
      font-style: italic
    }

    .stat-desc {
      font-size: 13px;
      color: var(--ink-soft)
    }

    /* ─── SECTION HEADINGS ────────────────────────────── */
    .sec-head {
      margin-bottom: 40px
    }

    .sec-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .sec-title {
      font-family: var(--ff-display);
      font-size: 36px;
      color: var(--navy);
      line-height: 1.2;
    }

    .sec-sub {
      font-size: 15px;
      color: var(--ink-soft);
      margin-top: 10px;
      max-width: 540px;
      line-height: 1.65;
    }

    .sec-head-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 32px;
    }

    .sec-head-row .sec-sub {
      margin-top: 6px
    }

    .view-all {
      font-size: 13px;
      font-weight: 500;
      color: var(--navy);
      border: 1px solid var(--line);
      padding: 7px 16px;
      border-radius: var(--radius-sm);
      transition: all var(--transition);
      white-space: nowrap;
      align-self: flex-start;
    }

    .view-all:hover {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy)
    }

    /* ─── MARKET SNAPSHOT ─────────────────────────────── */
    #market {
      background: var(--white)
    }

    .market-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
    }

    .market-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: box-shadow var(--transition), transform var(--transition);
    }

    .market-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-2px)
    }

    .market-card-head {
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--line-light);
    }

    .market-card-head h3 {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy)
    }

    .market-type-badge {
      font-size: 10px;
      font-weight: 600;
      padding: 3px 9px;
      border-radius: 20px;
      letter-spacing: .04em;
    }

    .badge-gold {
      background: var(--gold-pale);
      color: var(--gold-dark)
    }

    .badge-silver {
      background: var(--silver-pale);
      color: #4A5568
    }

    .badge-futures {
      background: #EEF2FF;
      color: #3730A3
    }

    .market-card-body {
      padding: 0 20px
    }

    .mkt-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid var(--line-light);
      gap: 8px;
    }

    .mkt-row:last-child {
      border-bottom: none
    }

    .mkt-name {
      font-size: 13px;
      color: var(--ink-mid);
      flex: 1
    }

    .mkt-price-wrap {
      text-align: right
    }

    .mkt-price {
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      font-variant-numeric: tabular-nums;
      display: block
    }

    .mkt-unit {
      font-size: 10px;
      color: var(--ink-soft)
    }

    .mkt-badge {
      font-size: 10.5px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 4px
    }

    .mkt-up {
      background: var(--up-bg);
      color: var(--up)
    }

    .mkt-down {
      background: var(--down-bg);
      color: var(--down)
    }

    .market-card-foot {
      padding: 12px 20px;
      border-top: 1px solid var(--line-light);
      background: var(--surface);
    }

    .market-link {
      font-size: 12px;
      font-weight: 500;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 4px
    }

    .market-link::after {
      content: '→';
      transition: transform var(--transition)
    }

    .market-link:hover::after {
      transform: translateX(3px)
    }

    /* ─── QUICK ACCESS ────────────────────────────────── */
    #quickaccess {
      background: var(--surface-warm);
      border-top: 1px solid var(--gold-border);
      border-bottom: 1px solid var(--line)
    }

    .qa-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
    }

    .qa-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-bottom: 2px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 24px 16px;
      text-align: center;
      transition: all var(--transition);
      cursor: pointer;
    }

    .qa-card:hover {
      background: var(--gold-pale);
      border-color: var(--gold);
      border-bottom-color: var(--gold);
      box-shadow: var(--shadow);
      transform: translateY(-3px)
    }

    .qa-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: var(--radius);
      margin: 0 auto 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      transition: transform var(--transition);
    }

    .qa-card:hover .qa-icon-wrap {
      transform: scale(1.08)
    }

    .qa-label {
      font-size: 12.5px;
      font-weight: 500;
      color: var(--ink)
    }

    .qa-sub {
      font-size: 11px;
      color: var(--ink-soft);
      margin-top: 3px
    }

    /* ─── QA STOCK REPORT BANNER ──────────────────────── */
    .qa-stock-banner {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 32px;
      padding: 20px 28px;
      background: linear-gradient(135deg, #FEF9EC 0%, #FFF8E1 100%);
      border: 1.5px solid var(--gold-border);
      border-left: 5px solid var(--gold);
      border-radius: var(--radius-lg);
      cursor: pointer;
      transition: all var(--transition);
      text-decoration: none;
      color: inherit;
    }

    .qa-stock-banner:hover {
      background: linear-gradient(135deg, #FDF6DE 0%, #FFF4C8 100%);
      box-shadow: 0 6px 24px rgba(201, 162, 39, .18);
      transform: translateY(-2px);
    }

    .qa-stock-icon {
      font-size: 36px;
      flex-shrink: 0;
    }

    .qa-stock-content {
      flex: 1;
    }

    .qa-stock-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--gold-dark);
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .qa-stock-badge {
      background: var(--gold);
      color: var(--navy);
      font-size: 9px;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 3px;
      letter-spacing: .06em;
    }

    .qa-stock-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
      font-family: var(--ff-display);
    }

    .qa-stock-sub {
      font-size: 12.5px;
      color: var(--ink-soft);
      line-height: 1.5;
    }

    .qa-stock-arrow {
      font-size: 28px;
      color: var(--gold);
      flex-shrink: 0;
      font-weight: 700;
      transition: transform var(--transition);
    }

    .qa-stock-banner:hover .qa-stock-arrow {
      transform: translate(3px, -3px);
    }

    /* ─── QA CONNECT / SOCIAL GRID ────────────────────── */
    .qa-connect-head {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-top: 24px;
      margin-bottom: 12px;
    }

    .qa-connect-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .qa-connect-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 20px 16px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      text-align: center;
      text-decoration: none;
      color: inherit;
      transition: all var(--transition);
    }

    .qa-connect-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform var(--transition);
    }

    .qa-connect-card:hover .qa-connect-icon {
      transform: scale(1.1);
    }

    .qa-connect-label {
      font-size: 13px;
      font-weight: 600;
    }

    .qa-connect-sub {
      font-size: 11px;
      color: var(--ink-soft);
    }

    /* Brand colours */
    .qa-linkedin .qa-connect-icon {
      background: #EFF6FF;
      color: #0A66C2;
    }

    .qa-linkedin:hover {
      border-color: #0A66C2;
      background: #EFF6FF;
    }

    .qa-linkedin:hover .qa-connect-label {
      color: #0A66C2;
    }

    .qa-twitter .qa-connect-icon {
      background: #F7F7F7;
      color: #000;
    }

    .qa-twitter:hover {
      border-color: #000;
      background: #F7F7F7;
    }

    .qa-twitter:hover .qa-connect-label {
      color: #000;
    }

    .qa-youtube .qa-connect-icon {
      background: #FFF0F0;
      color: #FF0000;
    }

    .qa-youtube:hover {
      border-color: #FF0000;
      background: #FFF0F0;
    }

    .qa-youtube:hover .qa-connect-label {
      color: #FF0000;
    }

    .qa-contact .qa-connect-icon {
      background: var(--gold-pale);
      color: var(--gold);
    }

    .qa-contact:hover {
      border-color: var(--gold);
      background: var(--gold-pale);
    }

    .qa-contact:hover .qa-connect-label {
      color: var(--navy);
    }

    /* ─── HOW IT WORKS ────────────────────────────────── */
    #howitworks {
      background: var(--surface-warm)
    }

    #GlobalFirst {
      background: var(--navy)
    }
  #GlobalFirst  .sec-title {
      color: #fff
    }
    

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
    }
.steps-grid-3 {grid-template-columns: repeat(3, 1fr);}
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 40px;
      left: calc(12.5% + 40px);
      width: calc(75% - 80px);
      height: 2px;
      background: linear-gradient(90deg, var(--line), var(--line));
      background-size: 8px 2px;
      background-image: repeating-linear-gradient(90deg, var(--line) 0, var(--line) 5px, transparent 5px, transparent 12px);
      z-index: 0;
    }

    .step-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px 22px;
      position: relative;
      z-index: 1;
      transition: all var(--transition);
    }

    .step-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-3px);
      border-color: var(--silver-light)
    }

    .step-num-wrap {
      width: 44px;
      height: 44px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-display);
      font-size: 18px;
      color: var(--navy);
      font-weight: 700;
      margin-bottom: 18px;
      position: relative;
    }

    .step-num-wrap::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1.5px dashed var(--line);
    }

    .step-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px
    }

    .step-desc {
      font-size: 13px;
      color: var(--ink-soft);
      line-height: 1.6
    }

    /* ─── PRODUCTS ────────────────────────────────────── */
    #products {
      background: var(--surface)
    }

    .products-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px
    }

    .product-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all var(--transition);
    }

    .product-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-3px)
    }

    .product-card-banner {
      padding: 28px 28px 22px;
      position: relative;
      overflow: hidden;
    }

    .product-card-banner.gold-bg {
      background: linear-gradient(135deg, #7A5700 0%, #C9A227 60%, #D4A020 100%);
      border-top: 3px solid #E8D5A0;
    }

    .product-card-banner.silver-bg {
      background: linear-gradient(135deg, #3D4A5C 0%, #6B7E96 60%, #8E9CB2 100%);
      border-top: 3px solid #9CA3AF;
    }

    .product-card-banner.futures-bg {
      background: linear-gradient(135deg, #0B1628 0%, #162240 60%, #1E3A64 100%);
      border-top: 3px solid #0284C7;
    }

    .product-card-banner::after {
      content: '';
      position: absolute;
      right: -20px;
      top: -20px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .06);
    }

    .product-icon {
      font-size: 36px;
      margin-bottom: 12px;
      position: relative;
      z-index: 1
    }

    .product-title {
      font-family: var(--ff-display);
      font-size: 24px;
      color: #fff;
      position: relative;
      z-index: 1;
      margin-bottom: 4px
    }

    .product-tagline {
      font-size: 12px;
      color: rgba(255, 255, 255, .65);
      position: relative;
      z-index: 1
    }

    .product-body {
      padding: 22px 28px
    }

    .product-contracts {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 18px
    }

    .contract-tag {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12.5px;
      padding: 7px 12px;
      background: var(--surface);
      border-radius: var(--radius-sm);
      color: var(--ink-mid);
    }

    .contract-spec {
      font-size: 11px;
      color: var(--ink-soft)
    }

    .product-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      padding-top: 14px;
      border-top: 1px solid var(--line-light);
    }

    .product-link span {
      color: var(--ink-soft);
      font-weight: 400;
      font-size: 12px
    }

    /* ─── MEMBERSHIP CTA ──────────────────────────────── */
    #membership-cta {
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    .membership-cta-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 50% 100% at 100% 50%, rgba(184, 134, 11, .15) 0%, transparent 70%),
        radial-gradient(ellipse 30% 80% at 0% 0%, rgba(30, 48, 85, .5) 0%, transparent 70%);
    }

    .membership-cta-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 72px 0;
      position: relative;
      z-index: 1;
    }

    .cta-left h2 {
      font-family: var(--ff-display);
      font-size: 40px;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .cta-left h2 em {
      color: var(--gold-light);
      font-style: italic
    }

    .cta-left p {
      font-size: 15px;
      color: rgba(255, 255, 255, .6);
      line-height: 1.7;
      margin-bottom: 28px
    }

    .cta-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap
    }

    .membership-types {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .membership-type-card {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--radius);
      padding: 18px;
      transition: all var(--transition);
    }

    .membership-type-card:hover {
      background: rgba(255, 255, 255, .1);
      border-color: rgba(255, 255, 255, .2)
    }

    .mt-icon {
      font-size: 24px;
      margin-bottom: 8px
    }

    .mt-title {
      font-size: 13px;
      font-weight: 600;
      color: #fff !important;
      margin-bottom: 4px
    }

    .mt-desc {
      font-size: 11.5px;
      color: rgba(255, 255, 255, .5) !important
    }

    /* ─── PARTICIPANTS ────────────────────────────────── */
    #participants {
      background: var(--white)
    }

    .participants-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px
    }

    .participant-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 24px;
      transition: all var(--transition);
    }

    .participant-card:hover {
      border-color: var(--navy);
      box-shadow: var(--shadow)
    }

    .part-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 14px;
    }

    .part-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px
    }

    .part-desc {
      font-size: 12.5px;
      color: var(--ink-soft);
      line-height: 1.55;
      margin-bottom: 14px
    }

    .part-links {
      display: flex;
      flex-direction: column;
      gap: 6px
    }

    .part-link {
      font-size: 12px;
      color: var(--ink-mid);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .part-link::before {
      content: '›';
      color: var(--gold);
      font-size: 19px;
      line-height: 12px;
    }

    .part-link:hover {
      color: var(--navy)
    }

    /* ─── NEWS ────────────────────────────────────────── */
    #news {
      background: var(--surface)
    }

    .news-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px
    }

    .news-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all var(--transition);
    }

    .news-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-2px)
    }

    .news-img {
      width: 100%;
      height: 180px;
      background: linear-gradient(135deg, var(--navy-mid), var(--navy-soft));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      overflow: hidden;
    }

    .news-img.sm {
      height: 120px
    }

    .news-body {
      padding: 18px
    }

    .news-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px
    }

    .news-cat {
      font-size: 10px;
      font-weight: 600;
      padding: 3px 9px;
      border-radius: 20px;
    }

    .cat-circular {
      background: #EEF2FF;
      color: #3730A3
    }

    .cat-press {
      background: #FEF9EE;
      color: #854F0B
    }

    .cat-event {
      background: #F0FDF4;
      color: #166534
    }

    .cat-knowledge {
      background: #FFF7ED;
      color: #9A3412
    }

    .news-date {
      font-size: 11px;
      color: var(--ink-soft)
    }

    .news-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.4;
      margin-bottom: 8px
    }

    .news-title.sm {
      font-size: 13px
    }

    .news-excerpt {
      font-size: 12.5px;
      color: var(--ink-soft);
      line-height: 1.55
    }

    .news-tabs {
        display: flex;
        gap: 4px;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--line);
        padding-bottom: 0;
    }

    .news-tab,
    .news-tab:focus,
    .news-tab:active,
    .news-tab:focus-visible {
        border: none;
        outline: none;
        box-shadow: none;
    }

    .news-tab {
      font-size: 13px;
      font-weight: 500;
      color: var(--ink-soft);
      padding: 8px 16px;
      border-bottom: 2px solid transparent;
      cursor: pointer;
      transition: all var(--transition);
      background: none;
      border-left: none;
      border-top: none;
      border-right: none;
      font-family: var(--ff-body);
      margin-bottom: -1px;
    }

        .news-tab.active {
            color: var(--navy);
            /* border-bottom-color: var(--navy);*/
            border-bottom: 2px solid var(--navy);
        }

    .news-tab:hover:not(.active) {
      color: var(--navy)
    }

    .news-grid-2 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    /* ─── TECHNOLOGY ──────────────────────────────────── */
    #technology {
      background: var(--white)
    }

    .tech-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center
    }

    .tech-visual {
      background: var(--navy);
      border-radius: var(--radius-xl);
      padding: 36px;
      position: relative;
      overflow: hidden;
    }

    .tech-visual::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(184, 134, 11, .08);
    }

    .tech-cards-stacked {
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .tech-mini-card {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--radius);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .tech-mini-icon {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, .1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .tech-mini-title {
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 2px
    }

    .tech-mini-desc {
      font-size: 11px;
      color: rgba(255, 255, 255, .5)
    }

    .tech-items {
      display: flex;
      flex-direction: column;
      gap: 24px
    }

    .tech-item {
      display: flex;
      gap: 16px;
      align-items: flex-start
    }

    .tech-item-num {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      background: var(--gold-pale);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 600;
      color: var(--gold-dark);
      margin-top: 2px;
    }

    .tech-item-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 5px
    }

    .tech-item-desc {
      font-size: 13px;
      color: var(--ink-soft);
      line-height: 1.6
    }

    /* ─── REGULATORY ──────────────────────────────────── */
    #regulatory {
      background: var(--surface)
    }

    .reg-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    .reg-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: all var(--transition);
    }

    .reg-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-2px)
    }

    .reg-icon {
      font-size: 32px;
      margin-bottom: 16px
    }

    .reg-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px
    }

    .reg-desc {
      font-size: 13px;
      color: var(--ink-soft);
      line-height: 1.65;
      margin-bottom: 16px
    }

    .reg-link {
      font-size: 12px;
      font-weight: 600;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 4px
    }

    .reg-link::after {
      content: '→';
      transition: transform var(--transition)
    }

    .reg-link:hover::after {
      transform: translateX(3px)
    }

    /* ─── MILESTONES ──────────────────────────────────── */
    #milestones {
      background: #0D0D1A;
      padding: 72px 0
    }

    .milestones-title {
      font-family: var(--ff-display);
      font-size: 36px;
      color: #fff;
      text-align: center;
      margin-bottom: 8px;
    }

    .milestones-sub {
      font-size: 14px;
      color: rgba(255, 255, 255, .5);
      text-align: center;
      margin-bottom: 48px
    }

    .timeline {
      display: flex;
      gap: 0;
      position: relative;
      overflow-x: auto;
      padding-bottom: 8px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      top: 45px;
      left: 0;
      right: 0;
      height: 2px;
      background: rgba(255, 255, 255, .08);
    }

    .timeline-item {
      flex: 1;
      min-width: 160px;
      padding: 0 20px;
      position: relative;
      text-align: center;
    }

    /* Arrow connector between milestone items */
    .timeline-item:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 39px;
      right: -10px;
      width: 0;
      height: 0;
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent;
      border-left: 10px solid var(--gold);
      opacity: 0.75;
      z-index: 2;
    }

    .timeline-dot {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--gold);
      margin: 20px auto 16px;
      position: relative;
      z-index: 1;
      box-shadow: 0 0 0 4px rgba(184, 134, 11, .2);
    }

    .timeline-date {
      font-size: 11px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: .06em;
      margin-bottom: 6px
    }

    .timeline-event {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .75);
      line-height: 1.5
    }

    .affiliates {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 52px;
      padding-top: 40px;
      border-top: 1px solid rgba(201, 162, 39, .2);
    }

    .affiliate-label {
      font-size: 12px;
      color: rgba(255, 255, 255, .55);
      text-transform: none;
      letter-spacing: .02em;
      width: 100%;
      max-width: 100%;
      text-align: center;
      margin: 0 auto 16px;
      line-height: 1.5;
    }

    .affiliate-logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, .97);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 8px;
      padding: 14px 26px;
      height: 56px;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
      transition: all var(--transition);
    }

    .affiliate-logo img {
      height: 100%;
      max-width: 150px;
      object-fit: contain;
      display: block;
    }

    .affiliate-logo:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
    }

    /* ─── GROUP COMPANIES ─────────────────────────────── */
    #group {
      background: var(--white)
    }

    .group-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px
    }

    .group-card {
      display: block;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px 20px;
      text-align: center;
      text-decoration: none;
      transition: all var(--transition);
    }

    .group-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-2px);
      border-color: var(--silver-light)
    }

    .group-logo-wrap {
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .group-logo {
      font-family: var(--ff-display);
      font-size: 16px;
      padding: 8px 16px;
      border-radius: 6px;
      margin: 15px 15px 30px
    }

    .group-logo img {
      height: 75px;
      object-fit: contain;
    }

    .group-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 4px
    }

    .group-desc {
      font-size: 11.5px;
      color: var(--ink-soft)
    }

    /* ─── CONTACT ─────────────────────────────────────── */
    #contact {
      background: var(--surface)
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    .contact-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: all var(--transition);
    }

    .contact-card:hover {
      box-shadow: var(--shadow)
    }

    .contact-icon {
      font-size: 28px;
      margin-bottom: 14px
    }

    .contact-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px
    }

    .contact-desc {
      font-size: 13px;
      color: var(--ink-soft);
      line-height: 1.65;
      margin-bottom: 18px
    }

    .contact-action {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      padding: 9px 18px;
      border: 1.5px solid var(--navy);
      border-radius: var(--radius-sm);
      transition: all var(--transition);
    }

    .contact-action:hover {
      background: var(--navy);
      color: #fff
    }

    /* ─── FOOTER ──────────────────────────────────────── */
    #footer {
      background: #0D0D1A;
      color: rgba(255, 255, 255, .6);
      padding: 64px 0 32px;
      border-top: 2px solid rgba(201, 162, 39, .5);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }

    .footer-brand {
      max-width: 280px
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }

    .footer-logo-mark {
      width: 36px;
      height: 36px;
      background: var(--gold);
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-display);
      font-size: 14px;
      color: var(--navy);
    }

    .footer-logo-text {
      font-size: 15px;
      font-weight: 600;
      color: #fff
    }

    .footer-brand-desc {
      font-size: 13px;
      line-height: 1.7;
      margin-bottom: 20px
    }

    .footer-socials {
      display: flex;
      gap: 8px
    }

    .social-btn {
      width: 34px;
      height: 34px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .65);
      transition: all var(--transition);
      text-decoration: none;
    }

    .social-btn:hover {
      background: rgba(255, 255, 255, .15);
      border-color: rgba(255, 255, 255, .3);
      color: #fff;
    }

    .social-btn svg {
      display: block;
    }

    .footer-col h4 {
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      font-size: 13px;
      color: rgba(255, 255, 255, .55);
      margin-bottom: 10px;
      transition: color var(--transition);
    }

    .footer-col a:hover {
      color: #fff
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom-left {
      font-size: 12px;
      color: rgba(255, 255, 255, .4)
    }

    .footer-bottom-links {
      display: flex;
      gap: 20px
    }

    .footer-bottom-links a {
      font-size: 12px;
      color: rgba(255, 255, 255, .4);
      transition: color var(--transition)
    }

    .footer-bottom-links a:hover {
      color: #fff
    }

    /* ─── BACK TO TOP ──────────────────────────────────── */
    .back-to-top {
      position: fixed;
      bottom: 32px;
      right: 32px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0 14px 0 14px;
      height: 42px;
      background: var(--gold);
      border-radius: 24px;
      cursor: pointer;
      border: none;
      opacity: 0;
      pointer-events: none;
      transform: translateY(16px);
      transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 18px rgba(201, 162, 39, .4);
      z-index: 998;
      color: var(--navy);
      font-family: var(--ff-body);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .02em;
      white-space: nowrap;
      width: 44px;
    }

    .back-to-top.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .back-to-top:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(201, 162, 39, .55);
      background: #d4ab2e;
    }

    .back-to-top svg {
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }

    .back-to-top:hover svg {
      transform: translateY(-2px);
    }

    /* ─── NEWS IMAGE BADGE OVERLAY ────────────────────── */
    .news-img {
      position: relative;
    }

    .news-img-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: .05em;
      color: #ffffff;
      z-index: 2;
    }

    .news-img-badge.badge-press {
      background: #1d4ed8;
    }

    .news-img-badge.badge-circular {
      background: #d97706;
    }

    .news-img-badge.badge-event {
      background: #15803d;
    }

    .news-img-badge.badge-knowledge {
      background: #7c3aed;
    }

    /* ─── NEWS TEXT ROW LEFT BORDER ───────────────────── */
    .news-card.has-left-border {
      border-left: 4px solid transparent;
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    }

    .news-card.has-left-border.border-circular {
      border-left-color: #d97706;
    }

    .news-card.has-left-border.border-press {
      border-left-color: #1d4ed8;
    }

    .news-card.has-left-border.border-event {
      border-left-color: #15803d;
    }

    .news-card.has-left-border.border-knowledge {
      border-left-color: #7c3aed;
    }

    .news-card .news-row-arrow {
      margin-left: auto;
      opacity: 0;
      transition: opacity 0.15s;
      color: var(--ink-soft);
      font-size: 16px;
    }

    .news-card.has-left-border:hover .news-row-arrow {
      opacity: 1;
    }

    /* ─── AFFILIATE LOGO HOVER ────────────────────────── */
    .affiliate-logo {
      cursor: pointer;
    }

    .affiliate-logo:hover {
      border-color: var(--gold) !important;
      box-shadow: 0 4px 16px rgba(201, 162, 39, .2) !important;
    }

    /* ─── REG-ICON SVG SIZING ─────────────────────────── */
    .reg-icon svg {
      display: block;
    }

    .contact-icon svg {
      display: block;
    }

    .part-icon svg {
      display: block;
    }

    .mt-icon svg {
      display: block;
    }

    .tech-mini-icon svg {
      display: block;
    }

    .qa-icon-wrap svg {
      display: block;
    }

    .product-icon svg {
      display: block;
    }

    /* ─── ANNOUNCEMENT TICKER ────────────────────────── */
    .announcement-bar {
      background: linear-gradient(90deg, #0B1628 0%, #1C2D52 50%, #0B1628 100%);
      border-top: 1px solid rgba(201, 162, 39, .35);
      border-bottom: 2px solid var(--gold);
      overflow: hidden;
      position: relative;
      box-shadow: 0 3px 16px rgba(0, 0, 0, .28);
    }

    .announcement-ticker-inner {
      display: flex;
      align-items: stretch;
      height: 30px;
    }

    .announcement-label {
      background: linear-gradient(135deg, #ddb43a 0%, var(--gold) 55%, #b9881d 100%);
      color: var(--navy);
      font-size: 11px;
      font-weight: 800;
      padding: 0 20px;
      letter-spacing: .09em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 7px;
      flex-shrink: 0;
      white-space: nowrap;
      position: relative;
      z-index: 1;
      box-shadow: inset 0 -2px 4px rgba(0, 0, 0, .12);
    }

    .announcement-label-icon {
      flex-shrink: 0;
      transform-origin: top center;
      animation: bell-ring 3.2s ease-in-out infinite;
    }

    @keyframes bell-ring {
      0%, 65%, 100% { transform: rotate(0deg); }
      68% { transform: rotate(14deg); }
      72% { transform: rotate(-12deg); }
      76% { transform: rotate(8deg); }
      80% { transform: rotate(-5deg); }
      84% { transform: rotate(0deg); }
    }

    /* arrow notch on the right edge of the label */
    .announcement-label::after {
      content: '';
      position: absolute;
      right: -11px;
      top: 0;
      width: 0;
      height: 0;
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
      border-left: 11px solid var(--gold);
    }

    .announcement-ticker-wrapper {
      flex: 1;
      overflow: hidden;
      display: flex;
      align-items: center;
      background: rgba(201, 162, 39, .05);
      mask-image: linear-gradient(to right, transparent 0, black 2%, black 98%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0, black 2%, black 98%, transparent 100%);
    }

.announcement-ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 28s linear infinite;
    width: max-content;
    min-width: 100%;
}

    .announcement-ticker-track:hover {
      animation-play-state: paused;
    }

    .announcement-ticker-item {
      display: inline-flex;
      align-items: center;
      color: rgba(255, 255, 255, .92);
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      padding: 0 28px;
      white-space: nowrap;
      transition: color .2s;
    }

    .announcement-ticker-item:hover {
      color: var(--gold-light);
    }

    .ticker-sep {
      color: rgba(245, 200, 66, .55);
      font-size: 16px;
      flex-shrink: 0;
      line-height: 1;
    }

   /* @keyframes ticker-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }*/

@keyframes ticker-scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

    /* ─── UTILITIES ───────────────────────────────────── */
    .divider {
      border: none;
      border-top: 1px solid var(--line)
    }

    .text-gold {
      color: var(--gold)
    }

    .text-navy {
      color: var(--navy)
    }

    .italic {
      font-style: italic
    }

    .mb-4 {
      margin-bottom: 4px
    }

    .mt-auto {
      margin-top: auto
    }

    /* ─── ANIMATIONS ──────────────────────────────────── */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .hero-grid>* {
      animation: fadeInUp .6s ease both
    }

    .hero-grid>*:nth-child(2) {
      animation-delay: .15s
    }

    /* ─── RESPONSIVE ────────────────────────────────────── */
    @media (max-width: 1100px) {
      .nav-menu {
        gap: 0;
      }

      .nav-link {
        padding: 8px 8px;
        font-size: 12.5px;
      }
    }

    @media (max-width: 992px) {
      .top-bar {
        height: 34px !important;
      }

      .top-bar-inner {
        padding: 0 5px !important;
      }

      .ticker-live-badge {
        font-size: 8.5px !important;
        min-width: 0 !important;
        padding: 2px 7px !important;
        margin-right: 10px !important;
      }

      .ticker-item, .ticker-name, .ticker-price {
        font-size: 10.5px !important;
      }

      .ticker-timestamp {
        display: none !important;
      }

      .announcement-bar {
        width: 100% !important;
        overflow: hidden !important;
      }

      .announcement-ticker-inner {
        height: 36px !important;
      }

      .announcement-label {
        font-size: 9px !important;
        padding: 0 12px !important;
        gap: 5px !important;
      }

      .announcement-label-icon {
        width: 11px !important;
        height: 11px !important;
      }

      .announcement-label::after {
        border-top-width: 18px !important;
        border-bottom-width: 18px !important;
      }

      .announcement-ticker-item {
        font-size: 12px !important;
        padding: 0 20px !important;
      }

      .nav-inner {
        height: 72px !important;
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
      }

      .logo-mark {
        height: 44px !important;
        margin-left: 0 !important;
      }

      .nav-menu,
      .nav-actions,
      .top-bar-links {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
        position: absolute !important;
      }

      .nav-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        right: 0px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1002 !important;
      }

        .hero-grid {
            grid-template-columns: 1fr;
            grid-template-columns: 70% 30%;
            text-align: center;
            gap: 32px;
            padding: 32px 0;
        }

      .hero-h1 {
        font-size: 32px !important;
      }

      .hero-btns {
        flex-direction: column;
        width: 100%;
      }

      .hero-btns .btn {
        width: 100%;
      }

      /* Market widget on mobile */
      .iibx-mw-body {
        flex-direction: column !important;
      }

      .iibx-mw-chart-col {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, .06) !important;
      }

      .iibx-mw-cards {
        grid-template-columns: 1fr 1fr !important;
      }

      .iibx-mw-val {
        font-size: 17px !important;
      }

      .iibx-mw-title {
        font-size: 15px !important;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding-bottom: 20px;
      }

      .stat-item:nth-child(even) {
        border-left: 1px solid var(--line);
      }

      .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
      }

      .qa-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .steps-grid {
        grid-template-columns: 1fr;
      }

      .steps-grid::before {
        display: none;
      }

      .products-grid {
        grid-template-columns: 1fr;
      }

      .membership-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
      }

      .membership-types {
        grid-template-columns: repeat(2, 1fr);
      }

      .participants-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .news-grid,
      .news-grid-2 {
        grid-template-columns: 1fr;
      }

      .tech-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .reg-grid {
        grid-template-columns: 1fr;
      }

      .group-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: 48px 0;
      }

      .hero-h1 {
        font-size: 38px;
      }

      .sec-title {
        font-size: 28px;
      }

      .top-bar-ticker {
        border-right: none;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }

      .stat-item {
        border: none !important;
        border-bottom: 1px solid var(--line) !important;
      }

      .stat-item:last-child {
        border-bottom: none !important;
      }

      .qa-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .membership-types {
        grid-template-columns: 1fr;
      }

      .participants-grid {
        grid-template-columns: 1fr;
      }

      .group-grid {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-brand {
        max-width: 100%;
      }
    }

    /* Mobile Menu Styles */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      width: 44px;
      height: 44px;
      position: relative;
      z-index: 1001;
      flex-direction: column;
    }

    .nav-toggle span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--navy);
      margin: 3px 0;
      transition: .3s;
    }

    .nav-active .nav-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-active .nav-toggle span:nth-child(2) {
      opacity: 0;
    }

    .nav-active .nav-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    #mobile-menu {
      position: fixed;
      top: 72px;
      /* Adjusted for mobile navbar height */
      left: 0;
      right: 0;
      background: #fff;
      border-bottom: 1px solid var(--line);
      box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
      display: none;
      max-height: calc(100vh - 72px);
      overflow-y: auto;
      z-index: 1000;
      padding: 24px 24px 80px 24px;
      transform: translateY(-20px);
      opacity: 0;
      transition: .3s ease;
    }

    .nav-active #mobile-menu {
      display: block;
      transform: translateY(0);
      opacity: 1;
    }

    .mm-list {
      margin-bottom: 24px;
    }

    .mm-item {
      border-bottom: 1px solid var(--line-light);
    }

    .mm-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 0;
      font-size: 15px;
      font-weight: 500;
      color: var(--navy);
      gap: 8px;
    }

    /* Chevron arrow for items with sub-links */
    .mm-link.has-sub::after {
      content: '';
      width: 8px;
      height: 8px;
      border-right: 2px solid var(--gold);
      border-bottom: 2px solid var(--gold);
      transform: rotate(-45deg);
      flex-shrink: 0;
      transition: transform 0.25s ease;
      margin-right: 4px;
    }

    /* Rotate chevron down when expanded */
    .mm-item.active .mm-link.has-sub::after {
      transform: rotate(45deg);
    }

    .mm-sub {
      padding-left: 16px;
      display: none;
      padding-bottom: 12px;
    }

    .mm-sub a {
      display: block;
      padding: 8px 0;
      font-size: 13px;
      color: var(--ink-mid);
    }

    .mm-item.active .mm-sub {
      display: block;
    }

    .mm-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 2px solid var(--line);
    }

    .mm-actions .btn-primary,
    .mm-actions .btn-ghost {
      width: 100%;
      text-align: center;
    }

    .mobile-navigation-utility-links {
      display: block !important;
      margin: 0 !important;
      padding: 10px 0 !important;
      border-bottom: 2px solid var(--line) !important;
      width: 100% !important;
      box-sizing: border-box !important;
      visibility: visible !important;
      opacity: 1 !important;
    }

    .mobile-navigation-utility-links a {
      font-size: 14px !important;
      color: #0B1628 !important;
      font-weight: 600 !important;
      display: block !important;
      width: 100% !important;
      padding: 16px 20px !important;
      border-bottom: 1px solid #ECEEF5 !important;
      background: #f8f9fa !important;
      margin: 0 0 8px 0 !important;
      border-radius: 8px !important;
      box-sizing: border-box !important;
      text-align: left !important;
      text-decoration: none !important;
      clear: both !important;
      float: none !important;
      visibility: visible !important;
    }

    .mobile-navigation-utility-links a:last-child {
      border-bottom: none !important;
      margin-bottom: 0 !important;
    }

    .mobile-utility-links a:last-child {
      border-bottom: none !important;
      margin-bottom: 0 !important;
    }

    /* ─── FIXED RIGHT SOCIAL SIDEBAR ─────────────────── */
    #social-sidebar {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 500;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 4px;
    }

    .ssb-label {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      background: #0D0D1A;
      padding: 12px 6px;
      border-radius: 8px 0 0 8px;
      margin-bottom: 4px;
    }

    .ssb-btn {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      background: #0D0D1A;
      color: rgba(255, 255, 255, .6);
      border-radius: 8px 0 0 8px;
      text-decoration: none;
      transition: all .2s ease;
      overflow: visible;
    }

    .ssb-btn:hover {
      width: 48px;
      color: #fff;
    }

    /* Tooltip */
    .ssb-tooltip {
      position: absolute;
      right: calc(100% + 10px);
      top: 50%;
      transform: translateY(-50%);
      background: #0D0D1A;
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 6px;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      transition: opacity .15s ease, transform .15s ease;
      transform: translateY(-50%) translateX(4px);
    }

    .ssb-tooltip::after {
      content: '';
      position: absolute;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      border: 5px solid transparent;
      border-left-color: #0D0D1A;
    }

    .ssb-btn:hover .ssb-tooltip {
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }

    /* Brand hover colours */
    .ssb-linkedin:hover {
      background: #0A66C2;
    }

    .ssb-twitter:hover {
      background: #1a1a1a;
    }

    .ssb-youtube:hover {
      background: #FF0000;
    }

    .ssb-contact:hover {
      background: var(--gold);
      color: var(--navy);
    }

    @media (max-width: 992px) {
      #social-sidebar {
        display: none;
      }
    }

/* ═══════════════════════════════════════════════════
   INNER PAGE — shared styles
═══════════════════════════════════════════════════ */

/* Page hero banner */
.page-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 30px 0 30px;
  border-bottom: 1px solid rgba(201,162,39,.2);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 100% 50%, rgba(184,134,11,.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 0% 80%, rgba(30,48,85,.7) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.page-breadcrumb a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .15s;
}

.page-breadcrumb a:hover { color: var(--gold-light); }

.page-breadcrumb .bc-sep { color: rgba(255,255,255,.25); }

.page-breadcrumb .bc-current { color: var(--gold-light); font-weight: 600; }

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,162,39,.12);
  border: 1px solid rgba(201,162,39,.35);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  max-width: 720px;
  margin-bottom: 14px;
}

.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  line-height: 1.65;
}

/* About page layout */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
  padding: 64px 0;
}

.about-main { }

.about-intro {
  font-family: var(--ff-display);
  font-size: 20px;
  line-height: 1.65;
  color: var(--navy-heading);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 32px;
}

.about-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 20px;
}

.about-body p:last-child { margin-bottom: 0; }

.about-body strong { color: var(--ink); font-weight: 600; }

/* About sidebar */
.about-sidebar { }

.about-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.about-sidebar-card h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.about-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-light);
  transition: color .15s, padding-left .15s;
}

.about-sidebar-nav a:last-child { border-bottom: none; }

.about-sidebar-nav a:hover { color: var(--gold-dark); padding-left: 4px; }

.about-sidebar-nav a.active { color: var(--gold-dark); font-weight: 700; }

.about-sidebar-nav a::before {
  content: '›';
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.about-key-fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-light);
}

.about-key-fact:last-child { border-bottom: none; }

.about-key-fact-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.about-key-fact-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
/*.about-key-fact-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-mid);*/
    /* font-weight: 400;*/
    /*    color: var(--ink-mid);
*/ /*  color: var(--ink);
*/
/*}*/

/* Promoters section */
.promoters-section {
  background: var(--navy);
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.promoters-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.promoters-title {
  font-family: var(--ff-display);
  font-size: 26px;
  color: #fff;
  margin-bottom: 36px;
  line-height: 1.3;
}

.promoters-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.promoter-card {
    background: rgba(255,255,255,1);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    padding: 14px 12px;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    transition: background .2s, border-color .2s, transform .2s;
}

    .promoter-card:hover {
        background: rgba(255,255,255,1);
        border-color: rgba(201,162,39,.3);
        transform: translateY(-3px);
    }

.promoter-name {
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
    width: 100%;
}

/*.promoters-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.promoter-card {
  background: rgba(255,255,255,1);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  padding: 16px 16px;
  text-align: center !important;
  transition: background .2s, border-color .2s, transform .2s;
}

.promoter-card:hover {
  background: rgba(255,255,255,1);
  border-color: rgba(201,162,39,.3);
  transform: translateY(-3px);
}*/

/*.promoter-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
 
  margin-bottom: 12px;
}

.promoter-logo {
     max-width: 110px;
    max-height: 58px;
    object-fit: contain;
    width: 100%;
}*/

/*.promoter-name {
  font-size: 13px;  
  line-height: 1.2;
}*/

/* Highlights grid */
.highlights-section {
  background: var(--surface);
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.highlight-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  border-top: 3px solid var(--gold);
  transition: box-shadow .2s, transform .2s;
}

.highlight-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,162,39,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
}

.highlight-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.highlight-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Responsive — inner pages */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 0;
  }
  .about-sidebar { order: -1; }
  .about-sidebar-nav { display: flex; flex-wrap: wrap; gap: 8px; }
  .about-sidebar-nav a { border-bottom: none; padding: 6px 12px; background: var(--line-light); border-radius: 20px; }
  .promoters-grid { grid-template-columns: repeat(3, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-title { font-size: 28px; }
}

@media (max-width: 600px) {
  .promoters-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════
   MARKET WATCH PAGE
══════════════════════════════════════════════════════ */
.mw-section {
  padding: 32px 0 80px;
  background: var(--bg);
}

/* Title row */
.mw-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.mw-page-title {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--navy-heading);
  font-weight: 400;
  margin: 0;
}
.mw-top-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
}
.mw-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-green 1.4s ease-in-out infinite;
}
.mw-refresh-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--ff-body);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.mw-refresh-btn:hover { background: var(--gold); color: #000; }

/* Toggle buttons */
.mw-toggle-row { margin-bottom: 20px; }
.mw-toggle-group {
  display: inline-flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.mw-toggle {
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--ff-body);
  border: none;
  cursor: pointer;
  background: var(--surface);
  color: var(--ink-2);
  transition: background 0.15s, color 0.15s;
  border-right: 1px solid var(--line);
}
.mw-toggle:last-child { border-right: none; }
.mw-toggle.active { background: var(--navy); color: #fff; }
.mw-toggle:not(.active):hover { background: var(--surface-2); }

/* Filter bar */
.mw-filter-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.mw-filter-fields {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}
.mw-filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mw-filter-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.mw-select-wrap {
  position: relative;
}
.mw-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--ink-3);
  pointer-events: none;
}
.mw-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 7px 28px 7px 12px;
  font-size: 13px;
  font-family: var(--ff-body);
  font-weight: 500;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  min-width: 100px;
  outline: none;
  transition: border-color 0.15s;
}
.mw-select:focus { border-color: var(--gold); }

.mw-show-btn {
  padding: 7px 28px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ff-body);
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 0.3px;
}
.mw-show-btn:hover { background: var(--navy-heading); }

.mw-filter-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mw-csv-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--ff-body);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.mw-csv-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Table */
.mw-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.mw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  font-family: var(--ff-body);
  min-width: 1000px;
}
.mw-table thead tr { background: var(--navy); }
.mw-table thead th {
  padding: 11px 12px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.45px;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.mw-table thead th:last-child { border-right: none; }
.mw-table thead th:hover { color: var(--gold); }
.mw-table thead th.num { text-align: right; }
.mw-table thead th.ltp-col { color: rgba(255,255,255,0.95); }
.mw-table thead th.sorted-asc::after { content: ' ▲'; color: var(--gold); font-size: 9px; }
.mw-table thead th.sorted-desc::after { content: ' ▼'; color: var(--gold); font-size: 9px; }
.sort-ico { font-size: 10px; opacity: 0.55; }

.mw-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.1s;
}
.mw-table tbody tr:last-child { border-bottom: none; }
.mw-table tbody tr:nth-child(even) { background: #fafafa; }
.mw-table tbody tr:hover { background: rgba(201,162,39,0.06) !important; }

.mw-table td {
  padding: 9px 12px;
  color: var(--ink);
  vertical-align: middle;
  white-space: nowrap;
  border-right: 1px solid var(--line);
}
.mw-table td:last-child { border-right: none; }
.mw-table td.num { text-align: right; }

.mw-instr {
  font-weight: 700;
  font-size: 13px;
  color: var(--navy-heading);
  letter-spacing: 0.2px;
}
.mw-commodity-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.mw-commodity-link:hover { text-decoration: underline; }

/* LTP colored */
.mw-table td.ltp-col { font-weight: 700; font-size: 14px; }
.mw-table td.ltp-col.up  { color: #16a34a; }
.mw-table td.ltp-col.down { color: #dc2626; }

/* Up/down text in change columns */
.mw-table td.up   { color: #16a34a; font-weight: 600; }
.mw-table td.down { color: #dc2626; font-weight: 600; }

/* Range bar in Low cell */
.mw-low-cell { min-width: 110px; }
.mw-range-bar {
  height: 4px;
  border-radius: 2px;
  background: #e5e7eb;
  margin-top: 5px;
  position: relative;
  overflow: hidden;
}
.mw-range-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(to right, #ef4444, #ef4444 40%, #22c55e 40%, #22c55e);
}
.mw-range-fill.down {
  background: linear-gradient(to right, #ef4444, #ef4444 70%, #fca5a5 70%, #fca5a5);
}

/* No results */
.mw-no-results {
  text-align: center;
  padding: 48px 20px;
  color: var(--ink-3);
  font-size: 14px;
}

/* Disclaimer */
.mw-disclaimer {
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 768px) {
  .mw-title-row { flex-direction: column; align-items: flex-start; }
  .mw-filter-bar { flex-direction: column; align-items: flex-start; }
  .mw-filter-right { width: 100%; }
  .mw-page-title { font-size: 22px; }
}

/* ── Combined Low / LTP / High cell ── */
.mw-range-th {
  min-width: 240px;
  text-align: center !important;
}
.mw-range-cell {
  min-width: 240px;
  padding: 8px 14px !important;
}
.mw-range-vals {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 6px;
}
.mw-range-low,
.mw-range-high {
  font-size: 11.5px;
  color: var(--ink-3);
  font-weight: 400;
  white-space: nowrap;
  min-width: 60px;
}
.mw-range-high { text-align: right; }
.mw-range-ltp {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.mw-range-ltp.up   { color: #16a34a; }
.mw-range-ltp.down { color: #dc2626; }

.mw-range-bar-full {
  position: relative;
  height: 5px;
  border-radius: 3px;
  width: 100%;
  margin-top: 7px;
  background: linear-gradient(to right, #ffb3a7 0%, #f6736a 22%, #f2a854 45%, #8fc96a 70%, #1e7d32 100%);
}
.mw-range-arrow {
  position: absolute;
  top: -7px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--navy);
  transform: translateX(-50%);
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.3));
}


/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
.contact-section { padding: 48px 0 80px; background: var(--bg); }

/* Office card */
.contact-office-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.contact-office-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex: 1;
  min-width: 260px;
}
.contact-office-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,162,39,.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-office-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-office-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-heading);
  margin-bottom: 6px;
}
.contact-office-addr {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.75;
}
.contact-info-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  background: var(--surface);
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.contact-pill:hover { border-color: var(--gold); color: var(--gold); }

/* Section heading */
.contact-dept-heading {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--navy-heading);
  margin-bottom: 20px;
  font-weight: 400;
}

/* Department cards grid */
.contact-dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.contact-dept-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .15s;
}
.contact-dept-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }

.contact-dept-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.contact-dept-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-dept-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-heading);
  margin-bottom: 2px;
}
.contact-dept-email {
  font-size: 12px;
  color: var(--gold);
  text-decoration: none;
}
.contact-dept-email:hover { text-decoration: underline; }

.contact-persons { padding: 8px 0; }
.contact-person {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  padding: 10px 20px;
  border-bottom: 1px solid var(--line);
  gap: 2px 12px;
}
.contact-person:last-child { border-bottom: none; }
.cp-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  grid-column: 1;
  grid-row: 1;
}
.cp-email {
  font-size: 11.5px;
  color: var(--gold);
  text-decoration: none;
  grid-column: 1;
  grid-row: 2;
}
.cp-email:hover { text-decoration: underline; }
.cp-phone {
  font-size: 12px;
  color: var(--ink-3);
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  white-space: nowrap;
  text-align: right;
}

/* IFSC Authority — PDF download button */
.ifsca-website-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: #000;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  margin: 12px 0 0;
  transition: background .15s, opacity .15s;
}
.ifsca-website-btn:hover { opacity: .88; }

.reg-dl-btn {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201,162,39,.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: .4px;
  transition: background .15s;
}
.reg-dl-btn:hover { background: var(--gold); color: #000; }

/* Responsive */
@media (max-width: 768px) {
  .contact-office-row { flex-direction: column; padding: 20px; }
  .contact-dept-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   CIRCULARS PAGE
═══════════════════════════════════════════════════ */
.circ-section { padding: 40px 0 80px; background: var(--bg); }

/* Segment Tabs */
.circ-seg-tabs { display: flex; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; width: fit-content; margin-bottom: 24px; }
.circ-seg-tab { padding: 8px 22px; font-size: 13px; font-weight: 500; font-family: var(--ff-body); background: transparent; border: none; color: var(--ink-2); cursor: pointer; transition: background .15s, color .15s; }
.circ-seg-tab.active { background: var(--navy); color: #fff; }
.circ-seg-tab:hover:not(.active) { background: var(--surface); color: var(--ink); }

/* Filter Bar */
.circ-filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end;
  padding: 18px 20px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 24px;
}
.circ-filter-group { display: flex; flex-direction: column; ga: 5px; }
.circ-filter-label { font-size: 11px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: .4px; font-family: var(--ff-body); }
.circ-select-wrap { position: relative; }
.circ-select-wrap::after { content: '▾'; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-size: 11px; color: var(--ink-3); pointer-events: none; }
.circ-select {
  appearance: none; -webkit-appearance: none;
  padding: 8px 32px 8px 12px; border: 1px solid var(--line);
  border-radius: 6px; background: var(--bg); color: var(--ink);
  font-size: 13px; font-family: var(--ff-body); cursor: pointer;
  min-width: 160px; outline: none;
}
.circ-select:focus { border-color: var(--gold); }
.circ-search-wrap { position: relative; flex: 1; min-width: 220px; }
.circ-search-wrap svg { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--ink-3); pointer-events: none; }
.circ-search { width: 100%; padding: 8px 12px 8px 34px; border: 1px solid var(--line); border-radius: 6px; background: var(--bg); color: var(--ink); font-size: 13px; font-family: var(--ff-body); outline: none; box-sizing: border-box; }
.circ-search:focus { border-color: var(--gold); }
.circ-filter-actions { display: flex; gap: 8px; align-items: flex-end; }
.circ-show-btn { padding: 8px 20px; background: var(--navy); color: #fff; border: none; border-radius: 6px; font-size: 13px; font-weight: 600; font-family: var(--ff-body); cursor: pointer; transition: background .15s; }
.circ-show-btn:hover { background: var(--gold); color: #000; }
.circ-reset-btn { padding: 8px 14px; background: transparent; color: var(--ink-3); border: 1px solid var(--line); border-radius: 6px; font-size: 12px; font-family: var(--ff-body); cursor: pointer; transition: all .15s; }
.circ-reset-btn:hover { border-color: var(--ink); color: var(--ink); }

/* Results info row */
.circ-info-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.circ-count { font-size: 13px; color: var(--ink-3); font-family: var(--ff-body); }
.circ-count strong { color: var(--ink); }
.circ-csv-btn { display: flex; align-items: center; gap: 6px; padding: 6px 14px; border: 1px solid var(--line); border-radius: 6px; font-size: 12px; font-weight: 600; font-family: var(--ff-body); color: var(--ink-2); background: transparent; cursor: pointer; text-decoration: none; transition: all .15s; }
.circ-csv-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Table */
.circ-table-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; overflow-x: auto; }
.circ-table { width: 100%; border-collapse: collapse; font-size: 13px; font-family: var(--ff-body); min-width: 780px; }
.circ-table thead tr { background: var(--navy); }
.circ-table thead th { padding: 11px 14px; text-align: left; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .45px; white-space: nowrap; }
.circ-table thead th:first-child { width: 46px; text-align: center; }
.circ-table tbody tr { border-bottom: 1px solid var(--line); transition: background .1s; }
.circ-table tbody tr:last-child { border-bottom: none; }
.circ-table tbody tr:hover { background: rgba(201,162,39,.04); }
.circ-table td { padding: 11px 14px; color: var(--ink-2); vertical-align: middle; }
.circ-table td:first-child { text-align: center; color: var(--ink-3); font-size: 12px; }
.circ-td-date { white-space: nowrap; font-size: 12px; color: var(--ink-3) !important; }
.circ-td-no { white-space: nowrap; font-size: 12px; font-weight: 600; color: var(--navy-heading) !important; font-family: var(--ff-body); }
.circ-td-subject { color: var(--ink) !important; line-height: 1.45; }
.circ-tag { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; letter-spacing: .2px; }
.circ-tag-spot { background: rgba(16,185,129,.1); color: #059669; }
.circ-tag-futures { background: rgba(59,130,246,.1); color: #2563eb; }
.circ-tag-all { background: rgba(107,114,128,.1); color: #6b7280; }
.circ-dl-btn { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; background: rgba(201,162,39,.1); color: var(--gold); font-size: 11px; font-weight: 700; border-radius: 4px; text-decoration: none; letter-spacing: .3px; transition: background .15s; white-space: nowrap; }
.circ-dl-btn:hover { background: var(--gold); color: #000; }
.circ-no-results { text-align: center; padding: 48px 20px; color: var(--ink-3); font-size: 14px; font-family: var(--ff-body); }

/* Pagination */
.circ-pagination { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
.circ-page-info { font-size: 13px; color: var(--ink-3); font-family: var(--ff-body); }
.circ-page-btns { display: flex; gap: 4px; }
.circ-page-btn { min-width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 6px; background: transparent; font-size: 13px; font-family: var(--ff-body); color: var(--ink-2); cursor: pointer; transition: all .15s; padding: 0 8px; }
.circ-page-btn.active { background: var(--navy) !important; color: #fff; border-color: var(--navy); }
.circ-page-btn:hover:not(.active):not(:disabled) { border-color: var(--gold); color: var(--gold); }
.circ-page-btn:disabled { opacity: .38; cursor: default; }

@media (max-width: 768px) {
    .circ-filter-bar {
        flex-direction: column;
    }

    .circ-select {
        min-width: 100%;
        width: 100%;
    }

    .circ-search-wrap {
        min-width: 100%;
    }

    .circ-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .circ-pagination {
        flex-direction: column;
        gap: 12px;
    }
}


.has-third {
    position: relative;
    display: block;
    width: 100%;
}

.has-third::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 10px;
    height: 100%;
}

    .has-third > a {
        display: block;
        padding: 7px 12px;
        font-size: 13px;
        color: var(--ink-mid);
        border-radius: var(--radius-sm);
        transition: background var(--transition),color var(--transition);
        width: 100%;
        box-sizing: border-box;
    }

.has-third > a:hover{
    background:var(--surface);
    color:var(--navy);
}

.third-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 8px;
    width: max-content;
    min-width: 140px;
    max-width: 240px;
    box-sizing: border-box;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
    .third-dropdown a {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
.has-third:hover .third-dropdown{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.about-sidebar-nav .submenu {
    position: relative;
}

.about-sidebar-nav .submenu-items {
    display: none;
    margin-left: 20px;
}

.about-sidebar-nav .submenu:hover .submenu-items {
    display: block;
}

.pdf-download {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    gap: 4px;
}

    .pdf-download i {
        font-size: 30px;
        color: #d32f2f;
    }

    .pdf-download span {
        font-size: 13px;
        font-weight: 600;
        text-align: center;
    }

    .pdf-download:hover {
        color: #d32f2f;
    }
/*=========================
  BOARD SECTION
=========================*/

.board-section {
    background: #f4f6fb;
    padding: 60px 0;
}

.board-header {
    margin-bottom: 35px;
}

    .board-header h2 {
        font-size: 48px;
        font-weight: 700;
        color: #111;
        margin-bottom: 10px;
    }

    .board-header p {
        font-size: 20px;
        color: #555;
    }

/*=========================
  SLIDER
=========================*/

.board-slider {
    display: block;
    width:100%;
    align-items: center;
    justify-content: space-between;
}

.director-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    align-items: stretch;
}

/*=========================
  CARD
=========================*/

.director-card {
    width: 100%;
    height:100%;
    min-height: 330px;
    background: #fff;
    border-radius: 18px;
    text-align: center;
    padding: 25px 20px;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    box-sizing:border-box;
    border: 1px solid #ececec;
}


    /* Active Card */

    .director-card.active {
        background: linear-gradient(90deg, #151A2C 0%, #1E2338 50%, #2A2D44 100%);
        color: white;
    }

        .director-card.active span,
        .director-card.active a {
            color: white;
        }

    .director-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }

/*=========================
 IMAGE
=========================*/

.director-img {
    width: 170px;
    height: 170px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    background: #dfeaf5;
    border: 5px solid #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

    .director-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: .4s;
        transform: none;
    }

.director-card:hover .director-img img {
    transform: none;
}

/*=========================
 TEXT
=========================*/

.director-card h3 {
    margin-top: 22px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.director-card span {
    display: block;
    margin-top: 12px;
    color: #555;
    line-height: 24px;
    min-height: 60px;
}

/*=========================
 LINK
=========================*/

.director-card a {
    display: inline-block;
    margin-top: 22px;
    color: #090a7b;
    font-weight: 600;
    text-decoration: underline;
}

    .director-card a:hover {
        color: #d4a017;
    }

/*=========================
 ARROWS
=========================*/

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #090a7b;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: .3s;
}

    .slider-btn:hover {
        background: #d4a017;
    }

/*=========================
 RESPONSIVE
=========================*/

@media(max-width:991px) {

    .director-wrapper {
        flex-wrap: wrap;
    }

    .slider-btn {
        display: none;
    }
}

@media(max-width:768px) {

    .board-header h2 {
        font-size: 34px;
    }

    .board-header p {
        font-size: 16px;
    }

    .director-card {
        width: 100%;
    }
}
.director-card {
    background: #fff;
    color: #222;
    transition: all .35s ease;
    cursor: pointer;
    position: relative;
   /* display: inline-block;
    margin: 0;*/
}

    .director-card:hover {
        background-color: rgba(14, 35, 64, 0.85); /* Blue */
        color: #fff;
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,.18);
    }

        .director-card:hover h3,
        .director-card:hover span,
        .director-card:hover a {
            color: #fff;
        }

        .director-card:hover .director-img {
            border: 5px solid #fff;
        }

        .director-card:hover .know-btn {
            background: #fff;
            color: #0A1970;
        }
.board-wrapper {
    position: relative;
}


/* Popup */

#directorPopup {
    position: absolute;
    display: none;
    width: 900px;
    max-width: 95%;
    max-height: 550px;
    overflow: visible;
    background: #0E2340;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    z-index: 999;
}

    #directorPopup::before {
        content: "";
        position: absolute;
        top: -15px;
        left: calc(15% - 30px);
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid #0E2340;
    }

.close-popup {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
}

.popup-scroll {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

#directorPopup h3 {
    margin-bottom: 20px;
    color: #fff;
}

#directorPopup ul {
    margin: 0;
    padding-left: 20px;
}

#directorPopup li {
    margin-bottom: 10px;
}

#directorPopup,
#directorPopup * {
    color: #fff !important;
}


    #directorPopup p {
        color: #fff !important;
        margin-bottom: 30px !important;
        line-height: 1.6 !important;
        font-size: 16px;
        text-align: justify;

    }

        #directorPopup p:last-child {
            margin-bottom: 0 !important;
        }

    #directorPopup li {
        color: #fff !important;
    }

    #directorPopup h1,
    #directorPopup h2,
    #directorPopup h3,
    #directorPopup h4,
    #directorPopup h5,
    #directorPopup h6 {
        color: #fff !important;
    }

    #directorPopup a {
        color: #fff !important;
    }

    /* Scrollbar */
.popup-scroll::-webkit-scrollbar {
    width: 8px;
}

.popup-scroll::-webkit-scrollbar-track {
    background: #d9d9d9;
    border-radius: 10px;
}

.popup-scroll::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 10px;
}

    .popup-scroll::-webkit-scrollbar-thumb:hover {
        background: #e5e5e5;
    }



.business-hours {
    margin-top: 15px;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 10px;
    color: var(--ink-2);
}

    .hours-item i {
        color: var(--gold);
        font-size: 10px;
        width: 18px;
    }

.contact-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
}
.top-menu {
    position: relative;
}

    .top-menu > a {
        color: rgba(255,255,255,.6);
        text-decoration: none;
    }

    .top-menu:hover > a {
        color: #fff;
    }

.top-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 180px;
    max-width: 240px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: none !important;
    z-index: 9999;
    overflow: hidden;
}


.top-menu:hover .top-dropdown {
    display: block !important;
}

.top-dropdown a {
    display: block !important;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
}

.top-dropdown a:hover {
    background: var(--surface);
    color: var(--navy);
}
/* ==========================
   LOGIN MENU
========================== */

.iibx-login-menu {
    position: relative;
    list-style: none;
}

/* Login Button */
/*.iibx-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #e31b23;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

    .iibx-login-btn:hover {
        background: #c4171f;
        color: #fff !important;
    }*/

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    letter-spacing: .01em;
}

    .btn-login:hover {
        background: var(--gold);
        color: var(--navy);
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(201, 162, 39, .25);
    }

/* Dropdown */
.iibx-login-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 230px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    z-index: 9999;
    overflow: hidden;
}

/*.iibx-login-menu:hover .iibx-login-dropdown {
    display: block !important;
}*/

.iibx-login-section {
    padding: 15px;
    border-bottom: 1px solid #0D0D1A;
}

    .iibx-login-section:last-child {
        border-bottom: none;
    }

    .iibx-login-section h6 {
        margin: 0 0 10px;
        font-size: 15px;
        font-weight: 600;
        color: #333;
    }

    .iibx-login-section a {
        display: inline-block;
        margin-right: 15px;
        color: #0056b3;
        text-decoration: none;
        font-size: 14px;
    }

        .iibx-login-section a:hover {
            color: #e31b23;
        }

/* Responsive */
@media(max-width:991px) {

    .iibx-login-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-top: 10px;
    }

    .iibx-login-btn {
        width: 100%;
        justify-content: space-between;
    }
}

.pdf-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    overflow: hidden;

}


   .pdf-content {
    width: 80%;
    height: 90%;
    margin: 3% auto;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;

}


.pdf-header {
    height: 55px;
    background: #0B2545;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

    .pdf-header h4 {
        margin: 0;
        font-size: 18px;
    }

.pdf-actions button {
    border: none;
    padding: 8px 15px;
    margin-left: 8px;
    border-radius: 5px;
    cursor: pointer;
}

.download-btn {
    Background: #5DADE2;
    Color: White;
}

.print-btn {
    Background: #FD7E14;
    Color: #ffffff
}

.close {
    font-size: 28px;
    cursor: pointer;
    margin-left: 15px;

}


#pdfFrame {
    width: 100%;
   height: calc(100% - 45px);
    border: none;
}

@media(max-width:768px) {

    .pdf-content {
        width: 95%;
        height: 90%;
    }
}
/*.page-item.active .page-link {
    background: #1F5A89 !important;
    border-color: #1F5A89 !important;
}*/
.page-item.active .page-link {
    background: #2C6AA0 !important;
    border-color: #2C6AA0 !important;
}

/*.zoom-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

    .zoom-container img {
        width: 100%;
        display: block;
        transition: transform 0.1s linear;
    }

.image-zoom-wrapper {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.zoom-image {
    width: 700px;
    position: relative;
    border: 1px solid #ddd;
    overflow: hidden;
}

    .zoom-image img {
        width: 100%;
        display: block;
    }*/

.lens {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid #0078d7;
    background: rgba(255,255,255,.35);
    display: none;
    cursor: crosshair;
    pointer-events: none;
}

.result {
    width: 600px;
    height: 500px;
    border: 1px solid #ddd;
    display: none;
    background-repeat: no-repeat;
    background-color: white;
}

.top-bar,
.announcement-bar {
    display: block;
}



/*.top-bar {
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    overflow: hidden !important;
}

.top-bar-inner {
    height: 30px !important;
    min-height: 30px !important;
}

.announcement-bar {
    position: relative;
    top: -6px;
}

*/
.zoom-image {
    cursor: zoom-in;
}

.image-modal-dialog {
    max-width: 1500px !important;
    width: 95% !important;
    margin: 20px auto;
}

.image-modal-content {
    background: #fff;
    border: none;
    border-radius: 5px;
}

.image-modal-body {
    padding: 10px;
    display: flex;
    justify-content: center;
       align-items: center;
 max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: block !important;
}

    .image-modal-body img {
        cursor: zoom-in;
        transition: transform 0.2s ease;
        width: 100% !important;
        max-width: 1500px !important;
        height: auto !important;
        display: inline-block;
       /* cursor: grab !important;*/
    }
        .image-modal-body img:active {
            transform: scale(2);
            cursor: grabbing;
        }
            .image-modal-close {
                position: absolute;
                right: 10px;
                top: 5px;
                z-index: 10;
                background: transparent;
                border: none;
                color: #333;
                font-size: 35px;
                cursor: pointer;
            }
.products-grid {
    width: 100%;
    display: flex;
}

.product-image-card {
    width: 100%;
    max-width: 1200px;
}

    .product-image-card img {
        width: 100%;
        height: 100%; 
        display: block;
    }


.website-popup-dialog {
    max-width: 500px;
    width: 60%;
    margin: 20px auto;
}


.website-popup-content {
    background: #fff;
    padding: 15px;
    position: relative;
}

.website-popup-header {
    height: 45px;
    position: relative;
    border-bottom: 1px solid #000;
}

.website-popup-close {
    position: absolute;
    right: 5px;
    top: 3px;
    z-index: 9999;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 32px;
    line-height: 32px;
    color: #000;
    cursor: pointer;
}

.website-popup-body {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: visible;
}

.website-popup-image {
    width: 100%;
    height: auto;
    display: block;
}
.event-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    width: 100%;
}

.event-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

    .event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.event-description {
    background-color: #f8f9fa;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    text-align: justify;
    height: auto;
    display: inline-block;
    width: 100%;
}

@media (max-width: 991px) {
    .event-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .event-gallery {
        grid-template-columns: 1fr;
    }
}
.membership-type-card-link,
.membership-type-card-link:hover,
.membership-type-card-link:focus,
.membership-type-card-link:visited {
    text-decoration: none !important;
    color: inherit;
}

.promoter-card,
.promoter-card:hover,
.promoter-card:focus,
.promoter-card:active,
.promoter-card:visited {
    text-decoration: none !important;
    color: inherit !important;
}

    .promoter-card .promoter-name {
        text-decoration: none !important;
        border-bottom: none !important;
    }
.contract-submenu {
    display: none;
}

.contract-menu:hover .contract-submenu {
    display: block;
}

.contract-submenu a {
    padding-left: 30px;
    font-size: 14px;
}