/* About Hero Section */
.about-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
    z-index: 1;
}

.about-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(58, 147, 180, 0.8) 0%, rgba(42, 122, 143, 0.8) 100%);
    display: flex;
    align-items: center;
}

.about-hero__title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero__subtitle {
    color: #fff;
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.about-content-wrapper {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 1;
}

.mission-card, .vision-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mission-card__icon, .vision-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3a93b4 0%, #2a7a8f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-card__icon i, .vision-card__icon i {
    color: #fff;
    font-size: 32px;
}

.mission-card__content h4, .vision-card__content h4 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.mission-card__content p, .vision-card__content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3a93b4 0%, #2a7a8f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-card__icon i {
    color: #fff;
    font-size: 32px;
}

.stat-card__content h4 {
    color: #3a93b4;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-card__content p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 1;
}

.why-choose-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-choose-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.team-wrapper {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        min-height: 300px;
        margin-top: 0;
    }
    
    .about-hero__title {
        font-size: 2.5rem;
    }
    
    .about-hero__subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content-section {
        padding: 60px 0;
    }
    
    .about-content-wrapper {
        padding: 30px 20px;
    }
    
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-card, .vision-card {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .stats-section {
        padding: 60px 0;
    }
    
    .stat-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .stat-card__content h4 {
        font-size: 2rem;
    }
    
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-wrapper {
        padding: 30px 20px;
    }
    
    .team-section {
        padding: 60px 0;
    }
    
    .team-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .about-hero__title {
        font-size: 2rem;
    }
    
    .about-hero__subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .mission-card__icon, .vision-card__icon, .stat-card__icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-card__icon i, .vision-card__icon i, .stat-card__icon i {
        font-size: 24px;
    }
} 