/* ============================================================
           WHO WE ARE
        ============================================================ */
.overview-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    .overview-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .overview-card .en-text {
        font-size: 1.02rem;
        color: var(--mid);
        line-height: 1.85;
        margin-bottom: 1.25rem;
    }

    .overview-card .ar-text {
        font-size: .95rem;
        color: var(--muted);
        direction: rtl;
        line-height: 1.85;
        border-top: 1px solid var(--border);
        padding-top: 1.1rem;
        margin-top: 1.1rem;
    }

.overview-visual {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.ov-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
}

.ov-stat-box {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: background var(--transition);
}

    .ov-stat-box:hover {
        background: rgba(255,255,255,.11);
    }

.ov-stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.ov-stat-lbl {
    font-size: .75rem;
    color: rgba(255,255,255,.55);
    margin-top: 5px;
    line-height: 1.4;
}
/* ============================================================
           STATS / TRUST BAND
        ============================================================ */
#stats-band {
    padding: 72px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a2d45 100%);
    position: relative;
    overflow: hidden;
}

    #stats-band::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
        background-size: 40px 40px;
    }

.stat-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: background var(--transition), transform var(--transition);
}

    .stat-card:hover {
        background: rgba(255,255,255,.11);
        transform: translateY(-3px);
    }

.stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(249,92,51,.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin: 0 auto 1rem;
}

.stat-heading {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.stat-en {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    line-height: 1.5;
}

.stat-ar {
    font-size: .78rem;
    color: rgba(255,255,255,.38);
    direction: rtl;
    line-height: 1.4;
    margin-top: 4px;
}

/* ============================================================
           MISSION / VISION
        ============================================================ */
.mv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    height: 100%;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

    .mv-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

    .mv-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
    }

    .mv-card.mission::after {
        background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .mv-card.vision::after {
        background: linear-gradient(90deg, #6366f1, #a78bfa);
    }

.mv-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.35rem;
}

    .mv-icon.mission {
        background: var(--primary-light);
        color: var(--primary);
    }

    .mv-icon.vision {
        background: #ede9fe;
        color: #6366f1;
    }

.mv-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .35rem;
}

.mv-card .ar-title {
    font-size: .95rem;
    color: var(--muted);
    direction: rtl;
    margin-bottom: 1rem;
}

.mv-card .en-body {
    font-size: .95rem;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mv-card .ar-body {
    font-size: .9rem;
    color: var(--muted);
    direction: rtl;
    line-height: 1.8;
    border-top: 1px dashed var(--border);
    padding-top: .9rem;
}

/* ============================================================
           INDUSTRIES
        ============================================================ */
.industry-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 22px;
    height: 100%;
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .industry-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

.industry-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.industry-card h5 {
    font-size: .97rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1px;
}

.industry-card .ar-title {
    font-size: .82rem;
    color: var(--muted);
    direction: rtl;
    margin-bottom: .5rem;
}

.industry-card p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* Icon colour variants */
.icon-orange {
    background: var(--primary-light);
    color: var(--primary);
}

.icon-teal {
    background: #ccfbf1;
    color: #0d9488;
}

.icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.icon-violet {
    background: #ede9fe;
    color: #6d28d9;
}

.icon-pink {
    background: #fce7f3;
    color: #be185d;
}

.icon-green {
    background: #dcfce7;
    color: #15803d;
}

/* ============================================================
           VALUES
        ============================================================ */
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    height: 100%;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}

    .value-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

.value-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto .9rem;
}

.value-card h5 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.value-card .ar-title {
    font-size: .8rem;
    color: var(--muted);
    direction: rtl;
    margin-bottom: .5rem;
}

.value-card .en-desc {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: .3rem;
}

.value-card .ar-desc {
    font-size: .78rem;
    color: var(--muted);
    direction: rtl;
    line-height: 1.6;
}
