﻿:root {
    --ink: #07080f;
    --blue: #1648d4;
    --cyan: #00d4ff;
    --gold: #f0a500;
    --green: #25d366;
    --white: #fff;
    --gray: #f4f6fb;
    --bdr: #e4e8f3;
    --muted: #64748b;
    --r: 16px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ═══════════════ HERO ═══════════════ */
.ab-hero {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    padding: 80px 20px 64px;
    text-align: center;
}

    .ab-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(22,72,212,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(22,72,212,.07) 1px, transparent 1px);
        background-size: 36px 36px;
        animation: gridDrift 22s linear infinite;
        pointer-events: none;
    }

@keyframes gridDrift {
    to {
        background-position: 0 36px;
    }
}

.ab-hero::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(22,72,212,.18) 0%, transparent 65%);
    top: -160px;
    right: -130px;
    pointer-events: none;
}

.ab-glow2 {
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(0,212,255,.10) 0%, transparent 65%);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
}

.ab-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.ab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(22,72,212,.2);
    border: 1px solid rgba(22,72,212,.4);
    color: var(--cyan);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    animation: popIn .6s cubic-bezier(.34,1.56,.64,1) both;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: blink 1.6s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(.7)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.ab-hero-h1 {
    font-size: clamp(2rem, 6vw, 3.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
    animation: slideUp .7s .1s ease both;
}

    .ab-hero-h1 .hi {
        color: var(--cyan);
    }

    .ab-hero-h1 .hi2 {
        color: var(--gold);
    }

.ab-hero-p {
    font-size: 15px;
    color: rgba(255,255,255,.6);
    line-height: 1.8;
    margin-bottom: 34px;
    animation: slideUp .7s .2s ease both;
}

/* hero stats strip */
.ab-hero-stats {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp .7s .3s ease both;
}

.hs-item {
    text-align: center;
}

.hs-val {
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

    .hs-val span {
        color: var(--cyan);
    }

.hs-lbl {
    font-size: 11px;
    color: rgba(255,255,255,.4);
    margin-top: 3px;
}

/* ═══════════════ ABOUT CARDS ═══════════════ */
.ab-about {
    padding: 64px 20px;
    background: var(--gray);
}

.ab-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.ab-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

@media (max-width: 680px) {
    .ab-grid-2 {
        grid-template-columns: 1fr;
    }
}

.abt-card {
    background: var(--white);
    border: 1.5px solid var(--bdr);
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

    .abt-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 3px;
        transform: scaleX(0);
        transform-origin: right;
        background: linear-gradient(90deg, var(--blue), var(--cyan));
        transition: transform .3s;
    }

    .abt-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 48px rgba(22,72,212,.1);
        border-color: rgba(22,72,212,.22);
    }

        .abt-card:hover::before {
            transform: scaleX(1);
        }

.abt-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.abt-ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform .25s;
}

.abt-card:hover .abt-ic {
    transform: rotate(-8deg) scale(1.1);
}

.abt-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
}

.abt-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.85;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 4px;
}

    .why-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: var(--muted);
    }

        .why-list li i {
            color: var(--blue);
            font-size: 14px;
            flex-shrink: 0;
        }

/* ═══════════════ VALUES ═══════════════ */
.ab-values {
    padding: 64px 20px;
    background: var(--white);
}

.val-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .val-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.val-card {
    background: var(--gray);
    border: 1px solid var(--bdr);
    border-radius: 18px;
    padding: 28px 16px 22px;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
    cursor: default;
}

    .val-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 40px rgba(22,72,212,.09);
    }

.val-ic {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: transform .3s;
}

.val-card:hover .val-ic {
    transform: rotate(-8deg) scale(1.12);
}

.val-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 5px;
}

.val-text {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

/* ═══════════════ TIMELINE ═══════════════ */
.ab-timeline {
    padding: 64px 20px;
    background: var(--gray);
}

.timeline-track {
    max-width: 680px;
    margin: 40px auto 0;
}

.tl-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 0;
}

    .tl-row:not(:last-child) .tl-dot-col::after {
        content: '';
        position: absolute;
        top: 42px;
        right: 19px;
        width: 2px;
        bottom: -14px;
        background: linear-gradient(to bottom, var(--blue), rgba(22,72,212,.0));
    }

.tl-dot-col {
    position: relative;
    flex-shrink: 0;
    width: 40px;
    display: flex;
    justify-content: center;
}

.tl-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(22,72,212,.35);
    transition: transform .2s;
}

.tl-row:hover .tl-dot {
    transform: scale(1.15);
}

.tl-body {
    background: var(--white);
    border: 1px solid var(--bdr);
    border-radius: 14px;
    padding: 14px 18px;
    flex: 1;
    margin-bottom: 14px;
    transition: border-color .2s, box-shadow .2s;
}

.tl-row:hover .tl-body {
    border-color: rgba(22,72,212,.28);
    box-shadow: 0 6px 20px rgba(22,72,212,.06);
}

.tl-year {
    font-size: 11px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: .8px;
    margin-bottom: 3px;
}

.tl-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 3px;
}

.tl-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ═══════════════ TEAM / COUNTERS ═══════════════ */
.ab-counters {
    padding: 56px 20px;
    background: var(--blue);
    position: relative;
    overflow: hidden;
}

    .ab-counters::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 75% 50%, rgba(0,212,255,.18) 0%, transparent 55%);
        pointer-events: none;
    }

.counters-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

@media (max-width: 560px) {
    .counters-row {
        grid-template-columns: 1fr 1fr;
    }
}

.cnt-item {
    padding: 16px 8px;
}

.cnt-num {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

    .cnt-num .c-suf {
        font-size: .55em;
        color: rgba(255,255,255,.7);
    }

.cnt-lbl {
    font-size: 12px;
    color: rgba(255,255,255,.65);
    margin-top: 5px;
}

/* ═══════════════ CTA ═══════════════ */
.ab-cta {
    background: var(--ink);
    padding: 72px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .ab-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 50% 100%, rgba(22,72,212,.2) 0%, transparent 60%);
        pointer-events: none;
    }

.ab-cta-inner {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gold-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(240,165,0,.14);
    border: 1px solid rgba(240,165,0,.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.ab-cta-h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.ab-cta-p {
    font-size: 15px;
    color: rgba(255,255,255,.6);
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--ink);
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 800;
    padding: 13px 26px;
    border-radius: var(--r);
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(240,165,0,.35);
    transition: transform .15s, box-shadow .2s;
}

    .btn-gold:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 32px rgba(240,165,0,.5);
    }

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 800;
    padding: 13px 26px;
    border-radius: var(--r);
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(37,211,102,.3);
    transition: transform .15s;
}

    .btn-wa:hover {
        transform: translateY(-3px);
        color: #fff;
    }

/* ═══════════════ HELPERS ═══════════════ */
.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(22,72,212,.07);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.sec-h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 8px;
}

.sec-p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
}

.sec-hdr {
    text-align: center;
    margin-bottom: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

.stagger > *:nth-child(1) {
    transition-delay: .04s;
}

.stagger > *:nth-child(2) {
    transition-delay: .11s;
}

.stagger > *:nth-child(3) {
    transition-delay: .18s;
}

.stagger > *:nth-child(4) {
    transition-delay: .25s;
}

