/* About Page CSS - SEO & Mobile Optimized */
.about-hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #4a90e2 100%);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
}

.about-stats-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 60px 0;
    border-top: 1px solid #e8ecf1;
    border-bottom: 1px solid #e8ecf1;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #e8ecf1;
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 50%, #4a90e2 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.about-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 60, 114, 0.15);
    border-color: #2a5298;
}

.about-stat-card:hover::before {
    opacity: 1;
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.about-stat-label {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 600;
}

.about-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-content-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.08);
}

.about-content-card h2,
.about-content-card h3,
.about-content-card h5 {
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content-card h2 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content-card h3 {
    font-size: 1.8rem;
    border-bottom: 3px solid #2a5298;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.about-content-card h5 {
    font-size: 1.4rem;
    color: #2a5298;
}

.about-content-card p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.about-content-card strong {
    color: #1e3c72;
    font-weight: 700;
}

.about-content-card hr {
    border: none;
    border-top: 2px solid #e8ecf1;
    margin: 30px 0;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 60px 0 50px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-stat-card {
        padding: 30px 20px;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
    }
    
    .about-content-card {
        padding: 25px 20px;
    }
    
    .about-content-card h2 {
        font-size: 1.8rem;
    }
    
    .about-content-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-content-card {
        padding: 20px 15px;
    }
}

