/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(22, 106, 234, 0.9), rgba(13, 79, 156, 0.9)), 
                url('https://images.unsplash.com/photo-1523289333742-be1143f6b766?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    text-align: center;
    padding: 100px 0;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* About Content Sections */
.about-section {
    padding: 80px 0;
}

.about-section:nth-child(even) {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro h2 {
    color: var(--primary-dark);
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

/* Organization History */
.history-content {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.history-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
}

.history-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
}

/* Mission & Vision Cards */
.mv-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mv-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.mv-card.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.mv-card.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
}

.mv-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 30px;
}

.mv-card h3 {
    color: var(--primary-dark);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.mv-card p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
}

/* Goals Section */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.goal-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.goal-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(22, 106, 234, 0.1);
}

.goal-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 25px;
}

.goal-item h4 {
    color: var(--primary-dark);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(22, 106, 234, 0.1);
}

.value-item i {
    color: var(--primary-color);
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease;
}

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

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

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

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

.member-info h4 {
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 5px;
}

.member-info .position {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

/* About Page Responsive */
@media (max-width: 1200px) {
    .history-content {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 42px;
    }
    
    .about-hero p {
        font-size: 18px;
    }
    
    .section-intro h2 {
        font-size: 32px;
    }
    
    .mv-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .history-content {
        padding: 30px;
    }
    
    .history-content p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .mv-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .mv-card h3 {
        font-size: 24px;
    }
    
    .mv-card p {
        font-size: 16px;
    }
    
    .goals-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 30px;
    }
    
    .about-hero p {
        font-size: 16px;
    }
    
    .section-intro h2 {
        font-size: 28px;
    }
    
    .history-content {
        padding: 25px 20px;
    }
    
    .mv-card {
        padding: 30px 25px;
    }
    
    .member-info {
        padding: 20px;
    }
}

/* About Page Animations */
.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}