/* ===== About Us Page Styles ===== */

/* ---------- Hero Section ---------- */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(1,23,44,.78) 0%, rgba(25,109,219,.55) 100%);
}
.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
.about-hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.about-hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,.85);
    margin: 0;
    font-weight: 400;
}

/* ---------- Section Shared ---------- */
.about-section {
    padding: 60px 0;
}
.about-section:nth-child(even) {
    background: #f7fbff;
}
.about-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #0f1f3c;
    margin-bottom: 8px;
}
.about-section-title span {
    color: #196ddb;
}
.about-divider {
    width: 60px;
    height: 4px;
    background: #196ddb;
    border-radius: 4px;
    margin-bottom: 24px;
}
.about-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a4a5e;
}
.about-img {
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ---------- Feature Cards ---------- */
.about-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 6px 30px rgba(0,0,0,.06);
    border: 1px solid #eaf0f9;
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}
.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(25,109,219,.12);
    border-color: #c5d9f5;
}
.about-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #196ddb, #44b0ff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.about-card-icon i {
    font-size: 26px !important;
    color: #fff !important;
    padding: 0 !important;
}
.about-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #0f1f3c;
    margin-bottom: 12px;
}
.about-card p {
    font-family: 'Poppins', sans-serif;
    font-size: .92rem;
    line-height: 1.7;
    color: #5a6b80;
    margin: 0;
}

/* ---------- Founder Section ---------- */
.founder-section {
    background: #0f1f3c;
    color: #fff;
    padding: 60px 0;
}
.founder-section .about-section-title {
    color: #fff;
}
.founder-section .about-divider {
    background: #44b0ff;
}
.founder-section .about-text {
    color: rgba(255,255,255,.8);
}

/* ---------- Bottom CTA ---------- */
.about-cta {
    background-image: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), url('https://amforus.com/public/assets/images/banner-home.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
}
.about-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 24px;
}
.about-cta .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 1rem;
    letter-spacing: .5px;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
    .about-hero-content h1 { font-size: 2rem; }
    .about-section { padding: 40px 0; }
    .about-section-title { font-size: 1.5rem; }
    .about-img { margin-top: 24px; }
}
