/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(26, 95, 158, 0.7), rgba(26, 95, 158, 0.7)), 
                url('../images/logo.jpg') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.divider {
    width: 100px;
    height: 3px;
    background-color: var(--secondary-blue);
    margin: 0 auto;
}

.mission-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.mission-text {
    flex: 1;
    min-width: 300px;
}

.mission-text h3 {
    color: var(--primary-blue);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.values-list {
    list-style: none;
    margin-top: 1.5rem;
}

.values-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.values-list i {
    color: var(--secondary-blue);
    margin-right: 10px;
    font-size: 1.2rem;
}

.mission-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* History Section */
.history-section {
    padding: 5rem 0;
    background-color: var(--light-blue);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--secondary-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-year {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-content {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-top: 0;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 95, 158, 0.7);
    display: flex;
    justify-content: center;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-member:hover .social-links {
    transform: translateY(0);
}

.social-links a {
    color: var(--white);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-blue);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.volunteers {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background-color: var(--light-blue);
    border-radius: 10px;
}

.volunteers h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
}

.approach-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/approach-bg.jpg');
            background-size: cover;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .approach-content {
            max-width: 800px;
            margin: 0 auto;
        }

.impact-section {
            background-color: #f9f9f9;
            padding: 60px 0;
        }
        
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .impact-item {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .impact-item:hover {
            transform: translateY(-5px);
        }
        
        .impact-item i {
            font-size: 2.5rem;
            color:#1a5f9e;
            margin-bottom: 20px;
        }