 *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #6b7a8d;
            background: #fff;
            -webkit-font-smoothing: antialiased;
        }

        /* ── NAV ── */
         

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .nav-logo-icon {
            width: 42px;
            height: 42px;
            background: #c8102e;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 9px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
        }

        .nav-logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .nav-logo-text .brand {
            font-size: 18px;
            font-weight: 800;
            color: #1a2744;
            letter-spacing: .3px;
        }

        .nav-logo-text .brand em {
            color: #c8102e;
            font-style: normal;
        }

        .nav-logo-text .tagline {
            font-size: 8px;
            color: #9aabb8;
            margin-top: 2px;
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }

        .nav-links a {
            font-size: 12px;
            font-weight: 600;
            color: #1a2744;
            text-decoration: none;
            padding: 6px 10px;
            border-radius: 4px;
            letter-spacing: .2px;
            transition: color .15s;
            opacity: .8;
        }

        .nav-links a:hover {
            color: #c8102e;
            opacity: 1;
        }

        .nav-links a.active {
            color: #c8102e;
            opacity: 1;
        }

        .ir-intro-title {
    font-family: var(--font-family-secondary);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.08;
    /* opacity: 0; */
    transform: translateY(24px);
    animation: ir-fadeUp 0.7s ease forwards 0.2s;
}
 
.ir-intro-title em {
  font-style: normal;
  color: var(--red);
}

        /* ── HERO / SUB-HERO ── */
        .hero-ir {
            background: #0d1b3e;
                padding: 92px 440px 92px;
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid #c8102e;
        }

        .hero-ir::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 16, 46, .08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-ir-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1200px;
        }

        .hero-ir-eyebrow {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .hero-ir-eyebrow-line {
            width: 30px;
            height: 2px;
            background: #c8102e;
            flex-shrink: 0;
        }

        .hero-ir-eyebrow-text {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #c8102e;
        }

        .hero-ir-h1-white {
            font-size: 64px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1;
            letter-spacing: -1px;
            display: block;
        }

        .hero-ir-h1-red {
            font-size: 64px;
            font-weight: 800;
            color: #c8102e;
            line-height: 1.05;
            letter-spacing: -1px;
            display: block;
        }

        .hero-ir-desc {
            font-size: 14px;
            line-height: 1.75;
            color: #7a8ba8;
            max-width: 340px;
        }

        .sub-hero-ir {
            background: #0d1b3e;
            border-bottom: 3px solid #c8102e;
            padding: 52px 80px 48px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .sub-eyebrow {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }

        .sub-eyebrow-line {
            width: 24px;
            height: 2px;
            background: #c8102e;
            flex-shrink: 0;
        }

        .sub-eyebrow-text {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #c8102e;
        }

        .sub-h1-white {
            font-size: 48px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1;
            letter-spacing: -1px;
            display: block;
        }

        .sub-h1-red {
            font-size: 48px;
            font-weight: 800;
            color: #c8102e;
            line-height: 1.1;
            letter-spacing: -1px;
            display: block;
        }

        .sub-desc {
            font-size: 14px;
            line-height: 1.72;
            color: #7a8ba8;
        }

        /* ── BREADCRUMB ── */
        .breadcrumb {
            background: #f8f9fc;
            border-bottom: 1px solid #e2e8f0;
            padding: 12px 80px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 500;
        }

        .breadcrumb a {
            color: #1a2744;
            text-decoration: none;
            cursor: pointer;
        }

        .breadcrumb a:hover {
            color: #c8102e;
        }

        .breadcrumb .sep {
            color: #c0cad8;
        }

        .breadcrumb .cur {
            color: #c8102e;
            font-weight: 600;
        }

        /* ── OVERVIEW / TIMELINE (home) ── */
        .overview {
            padding: 72px 80px 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }

        .overview-eyebrow {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .overview-eyebrow-line {
            width: 26px;
            height: 2px;
            background: #c8102e;
            flex-shrink: 0;
        }

        .overview-eyebrow-text {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #c8102e;
        }

        .overview-heading {
            font-size: 40px;
            font-weight: 800;
            color: #1a2744;
            line-height: 1.0;
            margin-bottom: 22px;
        }

        .overview-body {
            font-size: 14px;
            line-height: 1.78;
            color: #6b7a8d;
        }

        .timeline {
            list-style: none;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 28px;
            bottom: 28px;
            width: 1.5px;
            background: #dde5f0;
        }

        .tl-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            margin-bottom: 36px;
            position: relative;
            cursor: pointer;
        }

        .tl-item:last-child {
            margin-bottom: 0;
        }

        .tl-dot {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #3d7fd4;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            box-shadow: 0 0 0 4px #fff;
            transition: background .2s;
        }

        .tl-item:hover .tl-dot {
            background: #c8102e;
        }

        .tl-dot svg {
            width: 18px;
            height: 18px;
            stroke: #fff;
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .tl-cat {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #c8102e;
            margin-bottom: 4px;
        }

        .tl-title {
            font-size: 16px;
            font-weight: 700;
            color: #1a2744;
            margin-bottom: 6px;
            transition: color .18s;
            line-height: 1.2;
        }

        .tl-item:hover .tl-title {
            color: #c8102e;
        }

        .tl-desc {
            font-size: 13px;
            line-height: 1.65;
            color: #6b7a8d;
        }

        .tl-arrow {
            display: inline-block;
            margin-top: 8px;
            font-size: 12px;
            font-weight: 600;
            color: #3d7fd4;
            opacity: 0;
            transition: opacity .2s;
        }

        .tl-item:hover .tl-arrow {
            opacity: 1;
            color: #c8102e;
        }

        /* ── INNER WRAP ── */
        .wrap {
            padding: 52px 80px 72px;
        }

        .sec-head {
            margin-bottom: 36px;
        }

        .sec-head h2 {
            font-size: 30px;
            font-weight: 800;
            color: #1a2744;
        }

        .sec-head p {
            font-size: 14px;
            color: #6b7a8d;
            margin-top: 8px;
            line-height: 1.65;
        }

        /* ── GLOBAL PARTNERSHIPS ── */
        .gp-layout {
            display: grid;
            grid-template-columns: 230px 1fr;
        }

        .gp-sidebar {
            background: #0d1b3e;
            padding: 36px 20px;
            min-height: 500px;
        }

        .gp-sidebar-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #c8102e;
            margin-bottom: 16px;
        }

        .region-list {
            list-style: none;
        }

        .region-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 9px 12px;
            border-radius: 5px;
            cursor: pointer;
            margin-bottom: 2px;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, .55);
            transition: all .15s;
        }

        .region-item:hover {
            background: rgba(255, 255, 255, .07);
            color: #fff;
        }

        .region-item.active {
            background: #c8102e;
            color: #fff;
            font-weight: 600;
        }

        .region-count {
            font-size: 10px;
            font-weight: 700;
            background: rgba(255, 255, 255, .15);
            border-radius: 20px;
            padding: 1px 7px;
        }

        .gp-main {
            padding: 44px 50px;
        }

        .partner-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .partner-card {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 24px 20px;
            background: #fff;
            position: relative;
            overflow: hidden;
            transition: box-shadow .2s, transform .2s;
        }

        .partner-card:hover {
            box-shadow: 0 6px 24px rgba(26, 39, 68, .1);
            transform: translateY(-2px);
        }

        .partner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #c8102e;
            opacity: 0;
            transition: opacity .2s;
        }

        .partner-card:hover::before {
            opacity: 1;
        }

        .pc-flag {
            font-size: 26px;
            margin-bottom: 12px;
        }

        .pc-region {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #c8102e;
            margin-bottom: 6px;
        }

        .pc-name {
            font-size: 14px;
            font-weight: 700;
            color: #1a2744;
            margin-bottom: 4px;
            line-height: 1.35;
        }

        .pc-country {
            font-size: 12px;
            color: #9aabb8;
            margin-bottom: 11px;
        }

        .pc-desc {
            font-size: 12.5px;
            color: #6b7a8d;
            line-height: 1.6;
            margin-bottom: 14px;
        }

        .pc-since {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            font-weight: 600;
            color: #1a2744;
            background: #f0f4fa;
            padding: 4px 10px;
            border-radius: 20px;
        }

        /* ── INT'L ASSOCIATIONS ── */
        .ia-top {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: start;
            margin-bottom: 44px;
        }

        .ia-heading {
            font-size: 28px;
            font-weight: 800;
            color: #1a2744;
            line-height: 1;
            margin-bottom: 14px;
        }

        .ia-body {
            font-size: 14px;
            line-height: 1.72;
            color: #6b7a8d;
        }

        .ia-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .ia-stat {
            background: #0d1b3e;
            border-radius: 8px;
            padding: 20px 16px;
            text-align: center;
        }

        .ia-stat-n {
            font-size: 40px;
            font-weight: 800;
            color: #c8102e;
            line-height: 1;
        }

        .ia-stat-l {
            font-size: 11px;
            font-weight: 500;
            color: rgba(255, 255, 255, .5);
            margin-top: 5px;
        }

        .assoc-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .assoc-card {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            display: grid;
            grid-template-columns: 62px 1fr 110px;
            gap: 18px;
            padding: 20px 22px;
            align-items: center;
            transition: box-shadow .18s;
        }

        .assoc-card:hover {
            box-shadow: 0 4px 16px rgba(26, 39, 68, .08);
        }

        .assoc-logo {
            width: 62px;
            height: 62px;
            border-radius: 7px;
            background: #f0f4fa;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            flex-shrink: 0;
        }

        .assoc-type {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #c8102e;
            margin-bottom: 4px;
        }

        .assoc-name {
            font-size: 15px;
            font-weight: 700;
            color: #1a2744;
            margin-bottom: 3px;
        }

        .assoc-full {
            font-size: 12px;
            color: #9aabb8;
            margin-bottom: 7px;
        }

        .assoc-desc {
            font-size: 13px;
            color: #6b7a8d;
            line-height: 1.58;
        }

        .assoc-meta {
            text-align: right;
        }

        .assoc-yr {
            font-size: 28px;
            font-weight: 800;
            color: #1a2744;
            line-height: 1;
        }

        .assoc-yl {
            font-size: 11px;
            color: #9aabb8;
            margin-top: 2px;
        }

        .badge-on {
            display: inline-block;
            margin-top: 8px;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            background: #e8f5ee;
            color: #1a7a46;
        }

        /* ── MOUs ── */
        .filter-bar {
            display: flex;
            gap: 8px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .fbt {
            padding: 7px 18px;
            border: 1.5px solid #e2e8f0;
            border-radius: 24px;
            font-size: 12px;
            font-weight: 600;
            color: #6b7a8d;
            cursor: pointer;
            background: #fff;
            font-family: 'Inter', sans-serif;
            transition: all .15s;
        }

        .fbt:hover {
            border-color: #1a2744;
            color: #1a2744;
        }

        .fbt.on {
            background: #1a2744;
            border-color: #1a2744;
            color: #fff;
        }

        .tbl-wrap {
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            overflow: hidden;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        thead {
            background: #0d1b3e;
        }

        thead th {
            padding: 14px 18px;
            text-align: left;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .6);
        }

        tbody tr {
            border-bottom: 1px solid #e2e8f0;
            transition: background .12s;
        }

        tbody tr:last-child {
            border: none;
        }

        tbody tr:hover {
            background: #f8f9fc;
        }

        tbody td {
            padding: 15px 18px;
            vertical-align: middle;
        }

        .t-num {
            font-size: 18px;
            font-weight: 800;
            color: #1a2744;
        }

        .t-org {
            font-size: 14px;
            font-weight: 700;
            color: #1a2744;
            margin-bottom: 2px;
        }

        .t-cty {
            font-size: 12px;
            color: #9aabb8;
        }

        .t-scope {
            font-size: 13px;
            color: #6b7a8d;
            line-height: 1.5;
            max-width: 250px;
        }

        .t-date {
            font-size: 13px;
            color: #6b7a8d;
            white-space: nowrap;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 11px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
        }

        .badge::before {
            content: '●';
            font-size: 7px;
        }

        .bg-green {
            background: #e8f5ee;
            color: #1a7a46;
        }

        .bg-orange {
            background: #fff4e6;
            color: #b86000;
        }

        .bg-red {
            background: #feeaea;
            color: #b01c1c;
        }

        /* ── CROSS-BORDER INITIATIVES ── */
        .cbi-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 28px;
        }

        .cbi-search {
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1.5px solid #e2e8f0;
            border-radius: 7px;
            padding: 8px 14px;
        }

        .cbi-search input {
            border: none;
            outline: none;
            font-size: 13px;
            font-family: 'Inter', sans-serif;
            color: #1a2744;
            width: 180px;
        }

        .cbi-search input::placeholder {
            color: #9aabb8;
        }

        .cbi-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .cbi-card {
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            overflow: hidden;
            transition: box-shadow .2s, transform .2s;
        }

        .cbi-card:hover {
            box-shadow: 0 8px 28px rgba(26, 39, 68, .11);
            transform: translateY(-3px);
        }

        .cbi-head {
            background: #0d1b3e;
            padding: 24px 24px 20px;
            position: relative;
            overflow: hidden;
        }

        .cbi-head::after {
            content: '';
            position: absolute;
            bottom: -16px;
            right: -16px;
            width: 80px;
            height: 80px;
            background: rgba(200, 16, 46, .15);
            border-radius: 50%;
        }

        .cbi-stag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 3px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 11px;
        }

        .s-on {
            background: #c8102e;
            color: #fff;
        }

        .s-done {
            background: #1a7a46;
            color: #fff;
        }

        .s-plan {
            background: #6b3aed;
            color: #fff;
        }

        .cbi-ctitle {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 5px;
        }

        .cbi-csub {
            font-size: 12px;
            color: rgba(255, 255, 255, .5);
        }

        .cbi-body {
            padding: 20px 24px;
        }

        .cbi-meta {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 11px;
        }

        .cbi-mi {
            font-size: 12px;
            color: #9aabb8;
        }

        .cbi-desc {
            font-size: 13px;
            color: #6b7a8d;
            line-height: 1.62;
            margin-bottom: 14px;
        }

        .chips {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .chip {
            padding: 3px 10px;
            background: #f0f4fa;
            border-radius: 20px;
            font-size: 11.5px;
            font-weight: 600;
            color: #1a2744;
        }

        .cbi-foot {
            padding: 14px 24px;
            border-top: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .prog {
            flex: 1;
        }

        .prog-lbl {
            font-size: 11px;
            font-weight: 600;
            color: #9aabb8;
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }

        .prog-track {
            height: 4px;
            background: #e2e8f0;
            border-radius: 2px;
        }

        .prog-fill {
            height: 100%;
            border-radius: 2px;
            background: #c8102e;
        }

        .dbtn {
            padding: 8px 16px;
            background: #1a2744;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            font-family: 'Inter', sans-serif;
            transition: background .15s;
        }

        .dbtn:hover {
            background: #c8102e;
        }

        /* ── MODAL ── */
        .modal-bg {
            position: fixed;
            inset: 0;
            background: rgba(10, 18, 40, .5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 32px;
        }

        .modal-bg.open {
            display: flex;
        }

        .modal-box {
            background: #fff;
            border-radius: 12px;
            width: 100%;
            max-width: 660px;
            max-height: 88vh;
            overflow-y: auto;
        }

        .modal-top {
            background: #0d1b3e;
            padding: 32px 36px;
            position: relative;
        }

        .m-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, .1);
            border: none;
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-size: 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .15s;
        }

        .m-close:hover {
            background: #c8102e;
        }

        .m-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 3px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 11px;
        }

        .m-title {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 6px;
            line-height: 1.1;
        }

        .m-sub {
            font-size: 13px;
            color: rgba(255, 255, 255, .5);
        }

        .m-body {
            padding: 30px 36px;
        }

        .m-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 24px;
        }

        .m-stat {
            background: #f0f4fa;
            border-radius: 7px;
            padding: 14px;
            text-align: center;
        }

        .m-stat-v {
            font-size: 24px;
            font-weight: 800;
            color: #1a2744;
        }

        .m-stat-k {
            font-size: 11px;
            color: #9aabb8;
            font-weight: 500;
            margin-top: 3px;
        }

        .m-sec {
            margin-bottom: 20px;
        }

        .m-sec h4 {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #c8102e;
            margin-bottom: 8px;
        }

        .m-sec p,
        .m-sec li {
            font-size: 13px;
            line-height: 1.7;
            color: #6b7a8d;
        }

        .m-sec ul {
            padding-left: 16px;
        }

        .m-sec li {
            margin-bottom: 4px;
        }

        @media(max-width:960px) {
            .nav {
                padding: 0 20px;
            }

            .nav-links {
                display: none;
            }

            .hero-ir-inner,
            .sub-hero-ir,
            .overview,
            .ia-top {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .hero-ir {
                padding: 44px 24px;
            }

            .hero-ir-h1-white,
            .hero-ir-h1-red {
                font-size: 44px;
            }

            .sub-hero-ir {
                padding: 36px 20px;
            }

            .overview {
                padding: 40px 24px;
            }

            .gp-layout {
                grid-template-columns: 1fr;
            }

            .gp-sidebar {
                display: none;
            }

            .gp-main,
            .wrap {
                padding: 28px 20px;
            }

            .partner-grid {
                grid-template-columns: 1fr 1fr;
            }

            .assoc-card {
                grid-template-columns: 50px 1fr;
            }

            .assoc-meta {
                display: none;
            }

            .cbi-grid {
                grid-template-columns: 1fr;
            }

            .breadcrumb {
                padding: 11px 20px;
            }
        }