/* ============================================================
   ABOUT US PAGE STYLES
   ============================================================ */

/* ---- §1  Hero ---- */
.au-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.au-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(44, 115, 210, 0.55) 100%);
    z-index: 1;
}

.au-hero .container {
    position: relative;
    z-index: 2;
    margin-top: 80px;
}

.au-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 999px;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}

.au-hero h1 {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.au-hero h1 span {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.au-hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.au-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.au-stat-num {
    font-family: 'Lexend', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.au-stat-num span {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.au-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}


/* ---- §2  About Us (numbered + image grid) ---- */
.au-about-label {
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 10px;
}

.au-about-title {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 14px;
}

.au-about-desc {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 36px;
    max-width: 520px;
}

.au-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    margin-bottom: 38px;
}

.au-feature-item {}

.au-feature-num {
    font-family: 'Lexend', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 6px;
    opacity: 0.25;
}

.au-feature-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.au-feature-desc {
    font-size: 0.855rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* image grid — 2 flex columns so each image height is independent */
.au-img-grid {
    display: flex;
    gap: 12px;
}

.au-img-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.au-img-col img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Left column: img1 shorter (top), img3 taller (bottom) */
.au-img-col:first-child img:first-child  { height: 190px; border-radius: 20px 4px 20px 20px; }
.au-img-col:first-child img:last-child   { height:300px; border-radius: 20px 4px 4px 20px; }

/* Right column: img2 taller (top), img4 shorter (bottom) */
.au-img-col:last-child  img:first-child  { height: 300px; border-radius: 4px 20px 20px 4px; }
.au-img-col:last-child  img:last-child   { height: 190px; border-radius: 4px 20px 20px 4px; }


/* ---- §3  Mission & Vision ---- */
.au-mv-section {
    background: var(--bg-body);
}

.au-mv-card {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 32px;
    height: 100%;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.au-mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.au-mv-img {
    width: 200px;
    min-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

.au-mv-content {}

.au-mv-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.au-mv-icon.icon-mission {
    background: rgba(95, 10, 135, 0.08);
    border: 1px solid rgba(95, 10, 135, 0.15);
    color: var(--primary);
}

.au-mv-icon.icon-vision {
    background: rgba(44, 115, 210, 0.08);
    border: 1px solid rgba(44, 115, 210, 0.15);
    color: var(--secondary);
}

.au-mv-heading {
    font-family: 'Lexend', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.au-mv-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin: 0;
}

@media (max-width: 768px) {
    .au-mv-card {
        flex-direction: column;
    }

    .au-mv-img {
        width: 100%;
        min-width: unset;
        height: 200px;
    }
}


/* ---- §4  Our Values ---- */
.au-values-section {}

.au-val-card {
    background: #f7f8fb;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 34px 26px;
    text-align: center;
    height: 100%;
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1),
        box-shadow 0.35s cubic-bezier(.4, 0, .2, 1),
        border-color 0.3s ease,
        background 0.3s ease;
}

.au-val-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(44, 115, 210, 0.12), 0 4px 12px rgba(0, 0, 0, .05);
    border-color: rgba(44, 115, 210, 0.2);
    background: #fff;
}

.au-val-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    background: rgba(44, 115, 210, 0.08);
    border: 1px solid rgba(44, 115, 210, 0.15);
    color: var(--secondary);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.au-val-card:hover .au-val-icon {
    box-shadow: 0 0 20px rgba(44, 115, 210, 0.22);
    background: rgba(44, 115, 210, 0.13);
}

.au-val-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.au-val-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.72;
    margin: 0;
}


/* ---- §5  Leadership Team ---- */
.au-team-section {
    background: var(--bg-body);
}

.au-team-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.au-team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.au-team-photo-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
}

.au-team-photo {
    width: 130px;
    height: 130px;
    border-radius: 18px;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--border-color);
}
.au-team-initials {
    width: 130px;
    height: 130px;
    border-radius: 18px;
    background: var(--gradient-primary);
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.04em;
}

.au-team-name {
    font-family: 'Lexend', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.au-team-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.au-team-divider {
    width: 40px;
    height: 3px;
    border-radius: 999px;
    background: var(--gradient-primary);
    margin: 0 auto 16px;
}

.au-team-bio {
    font-size: 0.855rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

.au-team-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.au-team-social-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 15px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.au-team-social-link:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}


/* ---- §6  CTA ---- */
.au-cta-section {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* dark gradient overlay sits on top of the bg image */
.au-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10, 15, 35, 0.88) 0%,
        rgba(44, 115, 210, 0.72) 100%);
    z-index: 1;
}

/* purple glow orb — top-right */
.au-cta-section::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(95, 10, 135, 0.45), transparent 68%);
    z-index: 2;
    pointer-events: none;
}

/* blue glow orb — bottom-left, rendered via a child pseudo so we can have two */
.au-cta-glow {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 115, 210, 0.38), transparent 68%);
    z-index: 2;
    pointer-events: none;
}

.au-cta-section .container {
    position: relative;
    z-index: 3;
}

.au-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.au-cta-title {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.au-cta-title span {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.au-cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.au-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ---- Responsive tweaks ---- */
@media (max-width: 992px) {
    .au-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .au-img-col:first-child img:first-child { height: 155px; }
    .au-img-col:first-child img:last-child  { height: 215px; }
    .au-img-col:last-child  img:first-child { height: 215px; }
    .au-img-col:last-child  img:last-child  { height: 155px; }
}

@media (max-width: 576px) {
    .au-hero p {
        font-size: 0.95rem;
    }

    .au-hero-stats {
        gap: 24px;
    }

    .au-features-grid {
        grid-template-columns: 1fr;
    }

    .au-img-col:first-child img:first-child { height: 120px; }
    .au-img-col:first-child img:last-child  { height: 170px; }
    .au-img-col:last-child  img:first-child { height: 170px; }
    .au-img-col:last-child  img:last-child  { height: 120px; }
}