/* ============================================================
   ABOUT PAGE - about.css
   ============================================================ */

/* Page Hero */
.page-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #fff;
    padding: 0 1rem;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 800;
    letter-spacing: -.5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
    margin-bottom: .5rem;
}

.page-hero-content .breadcrumb {
    justify-content: flex-start;
}

.page-hero-content .breadcrumb-item,
.page-hero-content .breadcrumb-item.active,
.page-hero-content .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .85);
    font-size: .9rem;
}

.page-hero-content .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

/* Shared */

.section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #1e40af, #dc2626);
    margin: .5rem auto 0;
}

.section-title.text-start h2::after {
    margin: .5rem 0 0;
}

.section-title p {
    color: #6b7280;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Overview */
.about-overview {
    padding: 90px 0 80px;
    background: #fff;
}

.about-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.vm-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem 1.25rem;
    border-radius: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    transition: box-shadow .25s;
}

.vm-card:hover {
    box-shadow: 0 8px 24px rgba(30, 64, 175, .1);
}

.vm-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.vm-card h6 {
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: .25rem;
    color: #1f2937;
}

.vm-card p {
    font-size: .8rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.about-img-wrap img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.about-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1e40af, #dc2626);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.badge-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.badge-lbl {
    font-size: .72rem;
    opacity: .9;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Values */
.values-section {
    padding: 90px 0 80px;
    background: #f8faff;
}

.value-card {
    padding: 2rem 1.5rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(30, 64, 175, .12);
    border-color: transparent;
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--icon-bg, #eff6ff);
    color: var(--icon-color, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.value-card h5 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: .5rem;
    font-size: 1.05rem;
}

.value-card p {
    color: #6b7280;
    font-size: .88rem;
    line-height: 1.6;
    margin: 0;
}

/* Stats */
.stats-about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}

.astat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(6px);
    transition: background .3s;
}

.astat-card:hover {
    background: rgba(255, 255, 255, .14);
}

.astat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: var(--icon-bg, linear-gradient(135deg, #fbbf24, #f59e0b));
    color: #fff;
    margin: 0 auto 1.1rem;
}

.astat-number {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: inline;
}

.astat-suffix {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fbbf24;
    display: inline;
}

.astat-label {
    display: block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .75);
    margin-top: .4rem;
}

/* Team */
.team-section {
    padding: 90px 0 80px;
    background: #fff;
}

.leadership-card {
    border-radius: 20px;
    background: #fff;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.leadership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(30, 64, 175, .14);
    border-color: #1e40af;
}

.leadership-header {
    padding: 1.75rem 1.75rem 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.leadership-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--icon-color, #1e40af);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    border: 2px solid var(--icon-color, #1e40af);
}

.leadership-header h5 {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1f2937;
    line-height: 1.2;
}

.leadership-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: var(--badge-bg, #eff6ff);
    color: var(--badge-color, #1e40af);
    padding: .3rem .75rem;
    border-radius: 12px;
}

.leadership-body {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.leadership-desc {
    font-size: .88rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.leadership-responsibilities {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.leadership-responsibilities h6 {
    font-size: .85rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
}

.leadership-responsibilities h6 i {
    color: #1e40af;
}

.leadership-responsibilities ul {
    margin: 0;
    padding-left: 1.25rem;
    list-style: none;
}

.leadership-responsibilities ul li {
    font-size: .82rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: .5rem;
    position: relative;
}

.leadership-responsibilities ul li:last-child {
    margin-bottom: 0;
}

.leadership-responsibilities ul li::before {
    content: '✓';
    position: absolute;
    left: -1.25rem;
    color: #16a34a;
    font-weight: 700;
}

.leadership-contact {
    font-size: .85rem;
    color: #1e40af;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    padding: .5rem 0;
    transition: color .2s;
}

.leadership-contact:hover {
    color: #dc2626;
}

.leadership-contact i {
    font-size: .9rem;
}

/* Certifications */
.cert-section {
    padding: 90px 0 80px;
    background: #f8faff;
}

.cert-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: transform .3s, box-shadow .3s;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(30, 64, 175, .12);
    border-color: transparent;
}

.cert-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eff6ff;
    color: #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.cert-card h5 {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.05rem;
    margin-bottom: .6rem;
}

.cert-card p {
    font-size: .88rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cert-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: #eff6ff;
    color: #1e40af;
    padding: .28rem .8rem;
    border-radius: 20px;
}

/* CTA */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, .92), rgba(220, 38, 38, .85)),
        url('../images/hero/About%20Hero%201.png') center/cover no-repeat;
}

/* Scroll reveal */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .about-img-wrap img {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 280px;
    }

    .about-overview,
    .values-section,
    .team-section,
    .cert-section,
    .about-cta-section {
        padding: 60px 0 50px;
    }

    .stats-about-section {
        padding: 60px 0;
    }

    .leadership-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .leadership-icon {
        margin: 0 auto;
    }

    .leadership-responsibilities h6 {
        justify-content: center;
    }

    .leadership-contact {
        justify-content: center;
        font-size: .8rem;
    }
}

@media (max-width: 768px) {

    .team-section .row,
    .cert-section .row {
        row-gap: 1.5rem;
    }

    .stats-about-section .row {
        row-gap: 1.5rem;
    }

    .about-cta-section .d-flex {
        flex-direction: column;
        align-items: stretch !important;
    }

    .about-cta-section .btn {
        width: 100%;
        text-align: center;
    }

    .vm-card {
        padding: 1.25rem;
    }

    .leadership-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .leadership-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.5rem;
    }

    .leadership-body {
        padding: 1.5rem;
    }

    .leadership-responsibilities {
        padding: 1rem;
    }

    .leadership-responsibilities ul li {
        font-size: .8rem;
    }
}