/* About Page Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content .lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Mission, Vision, Values Icons */
.mission-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.vision-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.values-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Team Member Circles */
.team-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
}

/* Card Enhancements */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Statistics Cards */
.stats-card {
    text-align: center;
    padding: 2rem;
}

.stats-card h5 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stats-card small {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Feature Lists */
.feature-list .d-flex {
    margin-bottom: 0.75rem;
}

.feature-list i {
    color: #28a745;
    margin-right: 0.5rem;
}

/* Background Light Section */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: #28a745 !important;
}

.text-muted {
    color: #6c757d !important;
} 