/* About Page Specific Styles */

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 60px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat h3 {
    font-size: 36px;
    color: #007bff;
    margin-bottom: 5px;
}

.stat p {
    color: #666;
    font-weight: 500;
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Mission Vision */
.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-card i {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.mv-card p {
    color: #666;
    line-height: 1.7;
}

/* Values */
.values {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: #007bff;
    box-shadow: 0 5px 20px rgba(0,123,255,0.1);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.member-info p {
    color: #007bff;
    font-weight: 500;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #0056b3;
    transform: translateY(-3px);
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 18px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    .stat h3 {
        font-size: 28px;
    }
    
    .mv-card h3 {
        font-size: 20px;
    }
    
    .mv-card p {
        font-size: 16px;
    }
    
    .about-cta h2 {
        font-size: 28px;
    }
    
    .about-cta p {
        font-size: 18px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 250px;
    }
    
    .about-hero h1 {
        font-size: 28px;
    }
    
    .about-hero p {
        font-size: 16px;
    }
    
    .about-content, .mission-vision, .values, .team {
        padding: 40px 0;
    }
    
    .mv-card, .value-card {
        padding: 25px 20px;
    }
    
    .about-cta h2 {
        font-size: 24px;
    }
    
    .about-cta p {
        font-size: 16px;
    }
    
    .cta-buttons .btn {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .member-info h3 {
        font-size: 20px;
    }
    
    .member-info p {
        font-size: 14px;
    }
}