/* About Story */
.about-story {
    padding: 6rem 0;
    background: white;
}

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

.story-text {
    padding-right: 2rem;
}

.story-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Mission & Vision */
.mission-vision {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

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

.mv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 85, 48, 0.1);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #407b98, #5286a4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.mv-icon i {
    font-size: 2.5rem;
    color: white;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1);
}

.mv-title {
    color: #3d7092;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mv-description {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: white;
}

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

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 85, 48, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 85, 48, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

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

.member-overlay .social-links {
    display: flex;
    gap: 1rem;
}

.member-overlay .social-link {
    width: 45px;
    height: 45px;
    background: white;
    color: #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-overlay .social-link:hover {
    background: #2c5530;
    color: white;
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-name {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-title {
    color: #4a7c59;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Achievements */
.achievements {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4a6d8c 0%, #629cb9 100%);
    color: white;
}

.achievements .section-title {
    color: white;
}

.achievements .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.achievement-item {
    text-align: center;
    padding: 2rem 1rem;
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.achievement-icon i {
    font-size: 2.5rem;
    color: white;
}

.achievement-item:hover .achievement-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.achievement-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-text {
        padding-right: 0;
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 2.5rem 2rem;
    }

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

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .achievement-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .mv-card {
        padding: 2rem 1.5rem;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
    }

    .mv-icon i {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .achievement-item {
        padding: 1.5rem 1rem;
    }

    .achievement-number {
        font-size: 2rem;
    }
}