﻿@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@400;500&display=swap');

/* ── Shared ── */
.ab-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.ab-section-head {
    text-align: center;
    margin-bottom: 56px;
}

.ab-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #00e5ff;
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 100px;
    padding: 6px 18px;
    background: rgba(0,229,255,0.05);
    margin-bottom: 16px;
}

    .ab-section-tag::before {
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #00e5ff;
        display: inline-block;
    }

.ab-section-h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #e8eaf6;
    line-height: 1.25;
    margin: 0;
}

/* ── Buttons ── */
.ab-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: linear-gradient(135deg, #7b5ef8, #00e5ff);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    transition: opacity 0.25s, transform 0.25s;
}

    .ab-btn-primary:hover {
        opacity: 0.88;
        transform: translateY(-2px);
        color: #fff;
    }

.ab-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: #9ca3af;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s;
}

    .ab-btn-outline:hover {
        border-color: rgba(0,229,255,0.4);
        color: #00e5ff;
    }

/* ══ HERO ══ */
.ab-hero {
    background: #040711;
    padding: 100px 32px 80px;
    position: relative;
    overflow: hidden;
}

.ab-hero-glow1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123,94,248,0.14) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    pointer-events: none;
}

.ab-hero-glow2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,229,255,0.09) 0%, transparent 70%);
    bottom: -100px;
    right: 0;
    pointer-events: none;
}

.ab-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ab-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a78bfa;
    border: 1px solid rgba(167,139,250,0.25);
    border-radius: 100px;
    padding: 6px 18px;
    background: rgba(167,139,250,0.07);
    margin-bottom: 20px;
}

.ab-hero-h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 20px;
}

    .ab-hero-h1 span {
        background: linear-gradient(135deg, #00e5ff, #a78bfa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.ab-hero-sub {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 36px;
}

.ab-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ab-hero-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab-hero-img-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(0,229,255,0.1);
    animation: ab-spin 20s linear infinite;
}

    .ab-hero-img-ring::before {
        content: '';
        position: absolute;
        top: -4px;
        left: 50%;
        width: 8px;
        height: 8px;
        background: #00e5ff;
        border-radius: 50%;
        box-shadow: 0 0 12px #00e5ff;
    }

@keyframes ab-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ab-hero-img {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.07);
    display: block;
    position: relative;
    z-index: 1;
}

/* ══ STATS BAR ══ */
.ab-stats-bar {
    background: rgba(255,255,255,0.018);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 32px;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.ab-stat-item {
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    text-align: center;
    padding: 16px 24px;
    border-right: 1px solid rgba(255,255,255,0.06);
}

    .ab-stat-item:last-child {
        border-right: none;
    }

.ab-stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab-stat-sfx {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #00e5ff;
}

.ab-stat-lbl {
    display: block;
    font-size: 0.78rem;
    color: #6b7280;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ══ STORY ══ */
.ab-story {
    background: #040711;
    padding: 100px 0;
    position: relative;
}

    .ab-story::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(123,94,248,0.3), transparent);
    }

.ab-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.ab-story-img-wrap {
    position: relative;
}

.ab-story-img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.07);
    display: block;
}

.ab-story-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #7b5ef8, #00e5ff);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid #040711;
}

.ab-story-year {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.ab-story-badge-lbl {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ab-story-loc {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #e8eaf6;
    background: rgba(4,7,17,0.85);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 6px 14px;
    backdrop-filter: blur(8px);
}

    .ab-story-loc i {
        color: #00e5ff;
        font-size: 0.75rem;
    }

.ab-story-text-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ab-story-body {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.9;
    margin: 20px 0 28px;
}

.ab-story-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ab-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: #9ca3af;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.03);
}

    .ab-chip i {
        color: #00e5ff;
        font-size: 0.75rem;
    }

/* ══ MISSION/VISION/VALUES ══ */
.ab-mvv {
    background: #060a14;
    padding: 100px 0;
    position: relative;
}

    .ab-mvv::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0,229,255,0.25), transparent);
    }

.ab-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ab-mvv-card {
    padding: 40px 32px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.3s;
}

    .ab-mvv-card[data-color="cyan"] {
        --ac: #00e5ff;
        --acr: 0,229,255;
    }

    .ab-mvv-card[data-color="purple"] {
        --ac: #a78bfa;
        --acr: 167,139,250;
    }

    .ab-mvv-card[data-color="pink"] {
        --ac: #f472b6;
        --acr: 244,114,182;
    }

    .ab-mvv-card[data-color="green"] {
        --ac: #34d399;
        --acr: 52,211,153;
    }

    .ab-mvv-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--ac), transparent);
        opacity: 0.6;
    }

    .ab-mvv-card:hover {
        transform: translateY(-8px);
        border-color: rgba(var(--acr), 0.3);
        box-shadow: 0 20px 50px rgba(var(--acr), 0.1);
    }

.ab-mvv-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(var(--acr), 0.1);
    border: 1px solid rgba(var(--acr), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

    .ab-mvv-icon i {
        font-size: 1.4rem;
        color: var(--ac);
    }

.ab-mvv-type {
    font-size: 0.7rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ac);
    display: block;
    margin-bottom: 10px;
}

.ab-mvv-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #e8eaf6;
    margin: 0 0 14px;
}

.ab-mvv-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

/* ══ TEAM ══ */
.ab-team {
    background: #040711;
    padding: 100px 0;
    position: relative;
}

    .ab-team::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(123,94,248,0.3), transparent);
    }

.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ab-team-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}

    .ab-team-card:hover {
        transform: translateY(-6px);
        border-color: rgba(0,229,255,0.2);
        box-shadow: 0 20px 50px rgba(0,229,255,0.07);
    }

.ab-team-photo-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.ab-team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ab-team-card:hover .ab-team-photo {
    transform: scale(1.05);
}

.ab-team-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(0deg, rgba(4,7,17,0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.ab-team-card:hover .ab-team-socials {
    transform: translateY(0);
}

.ab-tsoc {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0,229,255,0.1);
    border: 1px solid rgba(0,229,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #00e5ff;
    font-size: 0.78rem;
    transition: background 0.2s;
}

    .ab-tsoc:hover {
        background: rgba(0,229,255,0.22);
        color: #00e5ff;
    }

.ab-team-info {
    padding: 24px;
}

.ab-team-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #e8eaf6;
    margin: 0 0 6px;
}

.ab-team-role {
    font-size: 0.8rem;
    color: #00e5ff;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 10px;
}

.ab-team-bio {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ══ WHY CHOOSE US ══ */
.ab-why {
    background: #060a14;
    padding: 100px 0;
    position: relative;
}

    .ab-why::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0,229,255,0.25), transparent);
    }

.ab-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ab-why-card {
    padding: 32px 28px;
    background: rgba(255,255,255,0.018);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    transition: transform 0.3s ease, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

    .ab-why-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0,229,255,0.4), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .ab-why-card:hover {
        transform: translateY(-5px);
        border-color: rgba(0,229,255,0.18);
    }

        .ab-why-card:hover::after {
            opacity: 1;
        }

.ab-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0,229,255,0.07);
    border: 1px solid rgba(0,229,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .ab-why-icon i {
        font-size: 1.2rem;
        color: #00e5ff;
    }

.ab-why-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #e8eaf6;
    margin: 0 0 10px;
}

.ab-why-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

/* ══ CTA ══ */
.ab-cta {
    background: #040711;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .ab-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(123,94,248,0.5), rgba(0,229,255,0.5), transparent);
    }

.ab-cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(123,94,248,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.ab-cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.ab-cta-h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}

.ab-cta-sub {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 36px;
}

.ab-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
    .ab-mvv-grid, .ab-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ab-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab-hero-img-wrap {
        display: none;
    }

    .ab-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab-story-badge {
        bottom: 10px;
        right: 10px;
    }

    .ab-mvv-grid {
        grid-template-columns: 1fr;
    }

    .ab-team-grid {
        grid-template-columns: 1fr;
    }

    .ab-why-grid {
        grid-template-columns: 1fr;
    }

    .ab-stats-bar {
        gap: 0;
    }

    .ab-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .ab-section-h2 {
        font-size: 1.7rem;
    }

    .ab-cta-h2 {
        font-size: 1.8rem;
    }
}
