/* ============================================================
   AAROGYOM - About Page Styles
   about.css
   ============================================================ */

.about-hero {
    background: linear-gradient(135deg, rgba(10,35,81,0.92) 0%, rgba(230,93,10,0.85) 100%),
                url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
    min-height: 55vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.about-hero::before {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px; right: -80px;
    animation: pulse 4s ease-in-out infinite;
}

.about-mission-section { padding: 90px 0; background: white; }

.mv-card {
    border-radius: 22px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.mv-card-mission {
    background: linear-gradient(135deg, var(--dark-blue), var(--mid-blue));
    color: white;
}
.mv-card-vision {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
}
.mv-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,0.2); }
.mv-card-icon {
    font-size: 3rem;
    opacity: 0.25;
    position: absolute;
    top: 20px; right: 25px;
}
.mv-card h3 { font-weight: 800; margin-bottom: 1rem; }
.mv-card p { opacity: 0.88; line-height: 1.75; font-size: 0.93rem; }

.values-section { padding: 80px 0; background: linear-gradient(135deg, #f8f9fa, var(--light-bg)); }
.value-card {
    background: white;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}
.value-card:hover { transform: translateY(-8px); border-color: rgba(230,93,10,0.15); box-shadow: 0 20px 50px rgba(230,93,10,0.12); }
.value-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, rgba(230,93,10,0.1), rgba(255,133,52,0.08));
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
}
.value-card:hover .value-icon { background: linear-gradient(135deg, var(--primary-orange), var(--light-orange)); color: white; }
.value-card h5 { font-weight: 700; color: var(--dark-blue); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--text-muted-custom); margin: 0; }

/* Founder section */
.founder-section { padding: 90px 0; background: white; }
.founder-card {
    background: linear-gradient(135deg, var(--dark-blue), var(--mid-blue));
    border-radius: 24px;
    overflow: hidden;
    color: white;
    box-shadow: 0 30px 80px rgba(10,35,81,0.3);
}
.founder-img-wrap {
    background: linear-gradient(135deg, rgba(230,93,10,0.3), rgba(10,35,81,0.5));
    display: flex; align-items: flex-end; justify-content: center;
    padding: 2rem 2rem 0;
    min-height: 260px;
}
.founder-img {
    width: 160px; height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.founder-avatar {
    width: 160px; height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
    color: white;
    border: 5px solid rgba(255,255,255,0.2);
}
.founder-body { padding: 2rem 2.5rem 2.5rem; }
.founder-body h3 { font-weight: 800; }
.founder-body .role { color: var(--light-orange); font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
.founder-body blockquote {
    border-left: 3px solid var(--primary-orange);
    padding-left: 1.2rem;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    line-height: 1.75;
    font-size: 0.95rem;
}
.founder-qual { margin-top: 1.5rem; }
.founder-qual .qual-item {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 0.6rem;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.8);
}
.founder-qual .qual-item i { color: var(--light-orange); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .about-hero { min-height: 45vh; padding: 60px 0; }
    .mv-card { padding: 2rem 1.5rem; }
}
