/* ============================================
   ABOUT PAGE - Overflow fix
   ============================================ */

html,
body {
    overflow-x: hidden !important;
}

/* ============================================
   1. ABOUT INTRO SECTION (Who We Are)
   ============================================ */

.about-intro-section {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.about-intro-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, 1fr);
    gap: 2.5rem;
    align-items: start;
}

/* Brand Panel */
.about-brand-panel {
    position: sticky;
    top: 100px;
}

.brand-panel-inner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-panel-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(var(--accent-color-rgb), 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(var(--main-color-rgb), 0.1) 0%, transparent 50%),
        linear-gradient(160deg, #0c1524 0%, #12203a 35%, #172848 70%, #1a2f55 100%);
    z-index: 0;
}

.brand-panel-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}



.brand-panel-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Logo */
.brand-logos {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Slogan */
.brand-slogan {
    padding: 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.25rem;
}

.brand-slogan p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

/* Mission Card */
.brand-mission-card {
    background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.15) 0%, rgba(var(--accent-color-rgb), 0.08) 100%);
    border: 1px solid rgba(var(--accent-color-rgb), 0.2);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    position: relative;
}

.brand-mission-card i {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0.7;
}

.brand-mission-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

/* Year Badge */
.brand-experience {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.75rem 1.5rem;
    align-self: center;
}

.brand-exp-number {
    display: flex;
    align-items: baseline;
    direction: ltr;
}

.brand-exp-plus {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.brand-exp-count {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.brand-exp-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border-inline-start: 2px solid rgba(var(--accent-color-rgb), 0.3);
    padding-inline-start: 0.75rem;
}

.brand-exp-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    line-height: 1.3;
}

.brand-exp-since {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    direction: ltr;
}




.about-text p {
    color: #424a54;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1.85;
    margin-bottom: 1.15rem;
}



/* ============================================
   1.5 STATS BAR SECTION
   ============================================ */

/* Impact Stats Section */
.about-impact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafb 0%, #eef3f6 100%);
    position: relative;
}

.about-impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--main-color-rgb), 0.15), transparent);
}

.impact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.impact-header .section-main-title::after {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.impact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.25rem 1.25rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(15, 36, 70, 0.08);
    box-shadow: 0 4px 16px rgba(15, 36, 70, 0.04);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--main-color, #0f2446);
    transition: height 0.3s ease, box-shadow 0.3s ease;
}

.impact-card.accent-blue::before {
    background: #1D9FDA;
}

.impact-card.accent-green::before {
    background: #27AE60;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(15, 36, 70, 0.08), 0 4px 12px rgba(29, 159, 218, 0.06);
    border-color: rgba(29, 159, 218, 0.35);
}

.impact-card.accent-blue:hover::before {
    height: 5px;
    box-shadow: 0 2px 10px rgba(29, 159, 218, 0.4);
}

.impact-card.accent-green:hover::before {
    height: 5px;
    box-shadow: 0 2px 10px rgba(39, 174, 96, 0.4);
}

.impact-card:hover .impact-value {
    transform: scale(1.06);
}

.impact-value {
    display: block;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    direction: ltr;
    text-align: center;
    font-family: var(--font-heading, inherit);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.impact-value.color-blue,
.impact-card.accent-blue .impact-value {
    color: #1D9FDA;
}

.impact-value.color-green,
.impact-card.accent-green .impact-value {
    color: #27AE60;
}

.impact-label {
    display: block;
    font-size: 0.98rem;
    color: #4a5568;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

/* ============================================
   2. VISION, MISSION, VALUES (VMV) SECTION
   ============================================ */

.vmv-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.vmv-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0c1524 0%, #12203a 40%, #162848 100%);
    z-index: 0;
}

.vmv-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-color-rgb), 0.08) 0%, transparent 70%);
    animation: vmvFloat1 12s ease-in-out infinite;
}

.vmv-bg::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-color-rgb), 0.08) 0%, transparent 70%);
    animation: vmvFloat2 10s ease-in-out infinite;
}

@keyframes vmvFloat1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(60px, 40px);
    }
}

@keyframes vmvFloat2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-50px, -30px);
    }
}

/* VMV Section Header */
.vmv-section .section-header {
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
}

/* Top row: Mission + Vision side by side */
.vmv-top-row {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.vmv-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vmv-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--main-color-lighter));
}

.vmv-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.vmv-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vmv-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.2), rgba(var(--accent-color-rgb), 0.05));
    border: 1px solid rgba(var(--accent-color-rgb), 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.vmv-card h3 {
    color: #fff;
    font-size: clamp(1.2rem, 1.6vw, 1.4rem);
    font-weight: 800;
    margin: 0;
}

.vmv-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.98rem, 1.1vw, 1.08rem);
    line-height: 1.85;
    margin: 0;
}

/* Values Section */
.vmv-values-container {
    position: relative;
    z-index: 10;
    margin-top: 2rem;
}

.vmv-values-title-wrap {
    text-align: center;
    margin-bottom: 1.75rem;
}

.vmv-values-main-title {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.vmv-values-main-title i {
    color: var(--accent-color);
}

.vmv-values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 1.75rem 1.15rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(var(--accent-color-rgb), 0.35);
    transform: translateY(-4px);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.2), rgba(var(--accent-color-rgb), 0.05));
    border: 1px solid rgba(var(--accent-color-rgb), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
}

/* ============================================
   3. STRATEGY & TRIPLE NEXUS SECTION
   ============================================ */

.strategy-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.strategy-section .section-header {
    max-width: 860px;
    margin: 0 auto 3.5rem;
}

/* Nexus Diagram Card */
.nexus-diagram-card {
    background: #ffffff;
    border: 1px solid rgba(29, 159, 218, 0.15);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 16px 45px rgba(15, 36, 70, 0.05);
    margin-bottom: 3.5rem;
    position: relative;
    overflow: hidden;
}

.nexus-diagram-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.nexus-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(29, 159, 218, 0.1);
    color: var(--accent-color, #1D9FDA);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.nexus-diagram-title {
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--main-color, #0f2446);
    margin: 0;
}

/* Canvas Container */
.nexus-graphic-container {
    position: relative;
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Flow SVG */
.nexus-flow-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.nexus-path {
    fill: none;
    stroke-width: 3.5;
    stroke-dasharray: 8 6;
    animation: nexusFlow 15s linear infinite;
}

@keyframes nexusFlow {
    to {
        stroke-dashoffset: -100;
    }
}

/* Center Core */
.nexus-core-node {
    position: absolute;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0f2446, #1a3a6b);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    z-index: 3;
    box-shadow: 0 12px 35px rgba(15, 36, 70, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nexus-core-node:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 18px 45px rgba(15, 36, 70, 0.35);
}

.core-glow-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed rgba(29, 159, 218, 0.4);
    animation: spinSlow 30s linear infinite;
    pointer-events: none;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

.core-icon {
    font-size: 2rem;
    color: #63d2ff;
    margin-bottom: 0.5rem;
}

.core-title {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
    max-width: 140px;
    margin: 0;
}

/* Orbital Nodes */
.nexus-node {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.06);
    max-width: 280px;
    transition: all 0.35s ease;
}

.nexus-node:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.node-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.node-humanitarian {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 3px solid var(--accent-color, #1D9FDA);
}

.node-humanitarian:hover {
    transform: translateX(-50%) translateY(-4px);
}

.node-humanitarian .node-icon-box {
    background: rgba(29, 159, 218, 0.12);
    color: var(--accent-color, #1D9FDA);
}

.node-peace {
    bottom: 20px;
    right: 5%;
    border-top: 3px solid var(--main-color, #0f2446);
}

.node-peace .node-icon-box {
    background: rgba(15, 36, 70, 0.08);
    color: var(--main-color, #0f2446);
}

.node-development {
    bottom: 20px;
    left: 5%;
    border-top: 3px solid #0D9488;
}

.node-development .node-icon-box {
    background: rgba(13, 148, 136, 0.12);
    color: #0D9488;
}

.node-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--main-color, #0f2446);
    margin: 0 0 0.25rem;
}

.node-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* Strategy Pillars Grid */
.strategy-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3.5rem;
}

.strategy-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    box-shadow: 0 10px 30px rgba(15, 36, 70, 0.05);
    border: 1px solid rgba(15, 36, 70, 0.08);
    border-top: 4px solid var(--accent-color, #1D9FDA);
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.strategy-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--main-color, #0f2446);
    box-shadow: 0 20px 45px rgba(15, 36, 70, 0.12);
}

.pillar-card-top {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pillar-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: rgba(29, 159, 218, 0.1);
    color: var(--accent-color, #1D9FDA);
    transition: all 0.3s ease;
}

.strategy-card:hover .pillar-icon-wrap {
    background: var(--accent-color, #1D9FDA);
    color: #ffffff;
    transform: scale(1.05);
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--main-color, #0f2446);
    margin-bottom: 0.35rem;
    line-height: 1.4;
}

.pillar-subtitle {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-color, #1D9FDA);
    margin-bottom: 1rem;
    display: block;
}

.pillar-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #526071;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.pillar-tag {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    background: #f8fafc;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pillar-tag i {
    font-size: 0.75rem;
    color: var(--accent-color, #1D9FDA);
}

/* Strategy Roadmap Card */
.strategy-roadmap-card {
    background: linear-gradient(135deg, #0f2446, #163663);
    border-radius: 24px;
    padding: 2.75rem 2.5rem;
    color: #ffffff;
    box-shadow: 0 16px 45px rgba(15, 36, 70, 0.2);
}

.roadmap-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.roadmap-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(29, 159, 218, 0.2);
    color: #63d2ff;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.roadmap-title {
    font-size: 1.45rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.roadmap-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
}

.roadmap-step {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.35s ease;
}

.roadmap-step:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
}

.step-active {
    background: rgba(29, 159, 218, 0.15);
    border-color: rgba(29, 159, 218, 0.4);
    box-shadow: 0 0 30px rgba(29, 159, 218, 0.2);
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.step-1 {
    background: rgba(255, 255, 255, 0.1);
    color: #93c5fd;
}

.step-2 {
    background: rgba(39, 174, 96, 0.2);
    color: #86efac;
}

.step-3 {
    background: linear-gradient(135deg, #1D9FDA, #27AE60);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(29, 159, 218, 0.4);
}

.step-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #93c5fd;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.step-title {
    font-size: 1.12rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.step-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
}

.roadmap-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    flex-shrink: 0;
}

[dir="rtl"] .fa-arrow-right-lang {
    transform: rotate(0deg);
}

[dir="ltr"] .fa-arrow-right-lang {
    transform: rotate(180deg);
}

/* ============================================
   4. 6 POST-CONFLICT CORE SECTORS (COMPACT SPLIT SHOWCASE)
   ============================================ */

.sectors-showcase-section {
    padding: 3.5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.sectors-top-showcase-layout {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

/* Top 6-Sector Navigation Bar (Desktop Grid) */
.sectors-nav-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.sector-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    background: #f8fafc;
    border: 1px solid rgba(15, 36, 70, 0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    outline: none;
    width: 100%;
}

.sector-nav-item:hover {
    background: #ffffff;
    border-color: rgba(29, 159, 218, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(15, 36, 70, 0.06);
}

.sector-nav-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 9px;
    background: rgba(29, 159, 218, 0.1);
    color: var(--accent-color, #1D9FDA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.sector-nav-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--main-color, #0f2446);
    line-height: 1.2;
    transition: color 0.25s ease;
    white-space: nowrap;
}

/* Active Nav State */
.sector-nav-item.active {
    background: linear-gradient(135deg, #0f2446, #163663);
    border-color: rgba(29, 159, 218, 0.5);
    box-shadow: 0 8px 22px rgba(15, 36, 70, 0.18);
    transform: translateY(-2px);
}

.sector-nav-item.active .sector-nav-icon {
    background: rgba(29, 159, 218, 0.25);
    color: #63d2ff;
    box-shadow: 0 0 10px rgba(29, 159, 218, 0.3);
}

.sector-nav-item.active .sector-nav-title {
    color: #ffffff;
}

/* Right Column: Detail Stage */
.sectors-stage-wrap {
    position: relative;
    display: flex;
}

.sector-detail-panel {
    display: none;
    background: #ffffff;
    border: 1px solid rgba(15, 36, 70, 0.08);
    border-radius: 18px;
    padding: 1.75rem 2rem;
    box-shadow: 0 10px 30px rgba(15, 36, 70, 0.04);
    position: relative;
    overflow: hidden;
    width: 100%;
    border-top: 3px solid var(--accent-color, #1D9FDA);
}

.sector-detail-panel.active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeInPanel 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-watermark-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 11rem;
    color: rgba(15, 36, 70, 0.02);
    pointer-events: none;
    line-height: 1;
    z-index: 0;
}

[dir="rtl"] .panel-watermark-icon {
    right: auto;
    left: -20px;
}

.panel-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
}

.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(29, 159, 218, 0.08);
    color: var(--accent-color, #1D9FDA);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
}

.panel-icon-lg {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(29, 159, 218, 0.08);
    color: var(--accent-color, #1D9FDA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.panel-title {
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    font-weight: 800;
    color: var(--main-color, #0f2446);
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.panel-subtitle {
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    font-weight: 700;
    color: var(--accent-color, #1D9FDA);
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
}

.panel-desc {
    font-size: clamp(0.92rem, 1.05vw, 1rem);
    line-height: 1.75;
    color: #475569;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

/* Focus Pillars in Panel */
.panel-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.panel-pillar-item {
    background: #f8fafc;
    border: 1px solid rgba(15, 36, 70, 0.05);
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.84rem, 0.95vw, 0.92rem);
    font-weight: 700;
    color: var(--main-color, #0f2446);
    transition: all 0.25s ease;
}

.panel-pillar-item:hover {
    background: #ffffff;
    border-color: rgba(29, 159, 218, 0.25);
    transform: translateY(-2px);
}

.panel-pillar-item i {
    color: var(--accent-color, #1D9FDA);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Allocation Principle Banner (Centered) */
.sectors-allocation-banner {
    background: linear-gradient(135deg, rgba(29, 159, 218, 0.05), rgba(15, 36, 70, 0.03));
    border: 1px solid rgba(29, 159, 218, 0.15);
    border-radius: 18px;
    padding: 1.5rem 2rem;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 6px 20px rgba(15, 36, 70, 0.02);
}

.allocation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(29, 159, 218, 0.1);
    color: var(--accent-color, #1D9FDA);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(29, 159, 218, 0.2);
}

.allocation-badge i {
    font-size: 0.95rem;
}

.allocation-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #526071;
    margin: 0;
    max-width: 740px;
}

/* ============================================
   5. WHERE WE WORK SECTION
   ============================================ */

.where-we-work-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.where-we-work-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.75) 0%, rgba(var(--accent-color-rgb), 0.6) 100%);
}

.where-we-work-section .section-main-title {
    color: #fff;
}

.where-we-work-section .impact-header .section-main-title::after {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
}

.work-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.location-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(var(--accent-color-rgb), 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(var(--accent-color-rgb), 0.15);
}

.location-card:hover::after {
    opacity: 1;
}

/* Bottom accent line on hover */
.location-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    opacity: 0;
    transition: all 0.35s ease;
}

.location-card:hover::before {
    opacity: 1;
    left: 15%;
    right: 15%;
}

.location-info {
    position: relative;
    z-index: 1;
}

.location-info h3 {
    color: #fff;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.location-info p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ============================================
/* ============================================
   8. RESPONSIVE STYLES
   ============================================ */

@media (max-width: 991px) {
    .about-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-brand-panel {
        position: static;
    }



    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .vmv-top-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .vmv-values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .sectors-showcase-section {
        padding: 3rem 0;
    }

    .sectors-split-layout {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .sectors-nav-list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 0.5rem !important;
        padding: 0.35rem 0.5rem 0.75rem !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
        scroll-snap-type: x mandatory !important;
    }

    .sectors-nav-list::-webkit-scrollbar {
        display: none !important;
    }

    .sector-nav-item {
        flex: 0 0 auto !important;
        width: auto !important;
        padding: 0.5rem 1rem !important;
        border-radius: 50px !important;
        gap: 0.45rem !important;
        background: #f1f5f9 !important;
        border: 1px solid rgba(15, 36, 70, 0.06) !important;
        scroll-snap-align: center !important;
        user-select: none !important;
    }

    .sector-nav-item.active {
        background: linear-gradient(135deg, #0f2446, #163663) !important;
        border-color: rgba(29, 159, 218, 0.4) !important;
        box-shadow: 0 4px 12px rgba(15, 36, 70, 0.2) !important;
    }

    .sector-nav-icon {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        font-size: 0.85rem !important;
        border-radius: 50% !important;
    }

    .sector-nav-title {
        font-size: 0.88rem !important;
        white-space: nowrap !important;
    }

    .sector-nav-hint,
    .sector-nav-arrow {
        display: none !important;
    }
}

@media (max-width: 767px) {

    .about-intro-section,
    .vmv-section,
    .goals-section,
    .sectors-showcase-section,
    .where-we-work-section {
        padding: 2.5rem 0;
    }

    .section-main-title,
    .vmv-section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .impact-header {
        margin-bottom: 2rem;
    }

    .section-badge {
        margin-bottom: 0.75rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
    }

    .about-stats-side {
        grid-template-columns: 1fr 1fr;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .impact-card {
        padding: 1.5rem 0.75rem 1.25rem;
    }

    .impact-value {
        font-size: 1.75rem;
        margin-bottom: 0.4rem;
    }

    .impact-label {
        font-size: 0.85rem;
    }

    .sector-detail-panel {
        padding: 1.35rem 1.15rem;
        border-radius: 16px;
    }

    .panel-title {
        font-size: 1.3rem;
    }

    .panel-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.65rem;
    }

    .panel-desc {
        font-size: 0.86rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .panel-pillars-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .panel-pillar-item {
        padding: 0.55rem 0.7rem;
        font-size: 0.8rem;
    }

    .sectors-allocation-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.15rem 1rem;
        gap: 0.75rem;
    }

    .allocation-icon-wrap {
        margin: 0 auto;
    }

    .vmv-top-row {
        grid-template-columns: 1fr;
    }

    .vmv-card {
        padding: 1.75rem 1.25rem;
    }

    .vmv-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .value-card {
        padding: 1.25rem 0.75rem 1rem;
    }

    .value-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }

    .value-title {
        font-size: 0.98rem;
    }

    .value-desc {
        font-size: 0.82rem;
    }

    .work-locations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .location-card {
        padding: 1.5rem;
        text-align: start;
    }

    .location-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .location-info p {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    /* Strategy Section Responsive */
    .strategy-section {
        padding: 3rem 0;
    }

    .nexus-diagram-card {
        padding: 1.5rem 0.75rem;
        border-radius: 20px;
    }

    .nexus-diagram-title {
        font-size: 1.15rem;
    }

    .nexus-graphic-container {
        min-height: 390px;
        position: relative;
    }

    .nexus-flow-svg {
        display: block;
    }

    .nexus-core-node {
        width: 120px;
        height: 120px;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0.5rem;
    }

    .core-icon {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .core-title {
        font-size: 0.78rem;
        max-width: 95px;
    }

    .nexus-node {
        padding: 0.65rem 0.85rem;
        border-radius: 14px;
        gap: 0.6rem;
        max-width: 165px;
        min-height: auto;
    }

    .node-icon-box {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .node-title {
        font-size: 0.88rem;
        margin-bottom: 0.2rem;
    }

    .node-desc {
        font-size: 0.72rem;
        line-height: 1.35;
        color: #64748b;
        margin: 0;
    }

    .node-humanitarian {
        top: 5px;
        max-width: 230px;
    }

    .node-peace {
        bottom: 8px;
        right: 2%;
    }

    .node-development {
        bottom: 8px;
        left: 2%;
    }

    .strategy-pillars-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .strategy-card {
        padding: 1.5rem 1.25rem;
    }

    .strategy-roadmap-card {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }

    .roadmap-title {
        font-size: 1.15rem;
    }

    .roadmap-steps {
        flex-direction: column;
        gap: 0.75rem;
    }

    .roadmap-step {
        width: 100%;
        padding: 1.35rem 1.15rem;
    }

    .roadmap-arrow {
        transform: rotate(90deg) !important;
        margin: 0.25rem 0;
    }
}

@media (max-width: 480px) {
    .vmv-values-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .value-card:last-child:nth-child(odd) {
        max-width: 100%;
    }

    .nexus-graphic-container {
        min-height: 380px;
    }

    .nexus-core-node {
        width: 105px;
        height: 105px;
    }

    .core-icon {
        font-size: 1.3rem;
    }

    .core-title {
        font-size: 0.72rem;
        max-width: 85px;
    }

    .nexus-node {
        max-width: 155px;
        padding: 0.55rem 0.7rem;
    }

    .node-humanitarian {
        max-width: 220px;
    }

    .node-title {
        font-size: 0.84rem;
    }

    .node-desc {
        font-size: 0.68rem;
        line-height: 1.3;
        color: #64748b;
        margin: 0;
    }

    .pillar-title {
        font-size: 1.12rem;
    }
}

/* ============================================
   STRATEGIC PARTNERS SECTION
   ============================================ */

.partners-section {
    padding: 4.5rem 0 3.5rem;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(15, 36, 70, 0.05);
    border-bottom: 1px solid rgba(15, 36, 70, 0.05);
}

.partners-ticker-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
    margin: 2.25rem 0 1rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-ticker-track {
    display: flex;
    width: max-content;
    animation: partnersMarquee 35s linear infinite;
    will-change: transform;
}

.partners-ticker-group {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem;
    flex-shrink: 0;
}

[dir="rtl"] .partners-ticker-group,
html[dir="rtl"] .partners-ticker-group {
    padding-right: 0;
    padding-left: 1.5rem;
}

[dir="rtl"] .partners-ticker-track,
html[dir="rtl"] .partners-ticker-track {
    animation-name: partnersMarqueeRtl;
}

.partners-ticker-container:hover .partners-ticker-track {
    animation-play-state: paused;
}

@keyframes partnersMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes partnersMarqueeRtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

.partner-logo-card {
    width: 190px;
    height: 90px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 15px rgba(15, 36, 70, 0.04);
    border: 1px solid rgba(15, 36, 70, 0.08);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    filter: grayscale(85%) opacity(0.85);
}

.partner-logo-card:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(29, 159, 218, 0.12);
    border-color: rgba(29, 159, 218, 0.4);
}

.partner-logo-card img {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* ============================================
   ABOUT PARTNERSHIP CTA BANNER
   ============================================ */

.about-partnership-cta-section {
    padding: 3rem 0 5rem;
}

.about-partnership-cta-card {
    background: linear-gradient(135deg, #0f2446 0%, #163866 50%, #0d213f 100%);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 36, 70, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.partnership-cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(29, 159, 218, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.partnership-cta-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.partnership-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(29, 159, 218, 0.18);
    color: #63d2ff;
    padding: 0.4rem 1.15rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(29, 159, 218, 0.3);
}

.partnership-cta-title {
    color: #ffffff;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.partnership-cta-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.25rem;
}

.partnership-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.cta-email-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-email-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #63d2ff;
    border-color: #63d2ff;
    transform: translateY(-2px);
}

.cta-partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #1D9FDA, #1580b0);
    color: #ffffff;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(29, 159, 218, 0.35);
    transition: all 0.3s ease;
}

.cta-partner-btn:hover {
    background: linear-gradient(135deg, #24b0f0, #1D9FDA);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(29, 159, 218, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .recognition-pillars-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-partnership-cta-card {
        padding: 2.5rem 1.5rem;
    }

    .partnership-cta-title {
        font-size: 1.6rem;
    }

    .partnership-cta-desc {
        font-size: 0.95rem;
    }
}