/* templates/core/about.html */

.hero-about {
        background: linear-gradient(rgba(128, 0, 32, 0.85), rgba(128, 0, 32, 0.85)),
            url('https://images.unsplash.com/photo-1551698618-1dfe5d97d256?q=80&w=2070');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        padding: 150px 0 100px;
        color: white;
        margin-top: 76px;
    }

    .mission-card {
        border: none;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        height: 100%;
    }

    .mission-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .icon-box {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin: 0 auto 1.5rem;
    }

    .timeline {
        position: relative;
        padding: 0;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #800020, #FF6B35);
    }

    .timeline-item {
        position: relative;
        margin-bottom: 3rem;
    }

    .timeline-dot {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #FF6B35;
        border: 4px solid white;
        box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
        z-index: 1;
    }

    .team-member {
        text-align: center;
        margin-bottom: 2rem;
    }

    .team-member img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid #FF6B35;
        margin-bottom: 1rem;
    }

    .differentiator-card {
        background: white;
        border: 1px solid rgba(255, 107, 53, 0.35);
        border-top: 3px solid #FF6B35;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        margin-bottom: 1.5rem;
        transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
    }

    .differentiator-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    }

    .stats-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 4rem 0;
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: bold;
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .testimonial-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        margin-bottom: 2rem;
        position: relative;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: 20px;
        font-size: 5rem;
        color: #FF6B35;
        opacity: 0.3;
        line-height: 1;
    }

    .cta-section {
        background: linear-gradient(135deg, #800020 0%, #FF6B35 100%);
        color: white;
        padding: 5rem 0;
        text-align: center;
    }
