/* About Page Specific Styles */

.about-hero {
    background: #ffffff;
    padding: 8rem 0 4rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.about-hero p {
    font-size: 1.3rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 6rem 0;
    background: #F9FAFB;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1F2937;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #6B7280;
}

.story-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.story-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.story-card i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.story-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.story-card p {
    color: #6B7280;
    font-size: 0.9rem;
}

.mission-vision {
    padding: 6rem 0;
    background: #ffffff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: #F9FAFB;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    text-align: center;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.mission-card p,
.vision-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6B7280;
}

.team {
    padding: 6rem 0;
    background: #F9FAFB;
}

.team .section-title {
    color: #111827;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    color: white;
    font-size: 3rem;
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.member-role {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #F3F4F6;
    border-radius: 50%;
    color: #4B5563;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
}

.values {
    padding: 6rem 0;
    background: #ffffff;
}

.values .section-title {
    color: #111827;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #F9FAFB;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: #3b82f6;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.value-card p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

.stats {
    padding: 6rem 0;
    background: #3b82f6;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} 