/* About Page Styles */

.about-hero {
    background: #f0faf5;
    position: relative;
    overflow: hidden;
}

.about-hero h1 {
    color: #2c3e50;
}

.about-hero p.lead {
    color: #6c757d;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    margin: 0;
    font-size: 2rem;
}

.stat-item small {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Mission & Vision Cards */
.mission-card,
.vision-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    display: inline-block;
}

.mission-card {
    border-left: 5px solid var(--bs-primary);
}

.vision-card {
    border-left: 5px solid var(--bs-info);
}

/* Approach Section */
.approach-pillar {
    padding: 1.5rem;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.approach-pillar:hover .pillar-icon {
    transform: scale(1.1);
}

.approach-pillar h4 {
    margin: 1rem 0;
    color: #2c3e50;
}

/* Story Section */
.story-stats .stat-card {
    transition: transform 0.3s ease;
}

.story-stats .stat-card:hover {
    transform: translateY(-3px);
}

.story-stats h3 {
    margin-bottom: 0.5rem;
}

/* Values Section */
.value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

.value-icon {
    display: inline-block;
}

.value-card h4 {
    color: #2c3e50;
    margin: 1rem 0;
}

/* CTA Section */
.cta-section {
    background: #f0faf5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.approach-pillar,
.value-card,
.mission-card,
.vision-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .stat-item h4 {
        font-size: 1.5rem;
    }
    
    .pillar-icon {
        width: 60px;
        height: 60px;
    }
    
    .pillar-icon i {
        font-size: 1.5rem !important;
    }
    
    .story-stats .col-6 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        text-align: center;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .value-card {
        margin-bottom: 1.5rem;
    }
}