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

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(43, 108, 176, 0.2);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-card h2,
.vision-card h2 {
    color: #1a365d;
    margin-bottom: 25px;
    font-size: 2rem;
}

.mission-card p,
.vision-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.125rem;
}

/* Core Values */
.core-values {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-item:hover {
    background: #f7fafc;
    border-color: #2b6cb0;
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(43, 108, 176, 0.15);
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-item h3 {
    color: #1a365d;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.value-item p {
    color: #718096;
    line-height: 1.6;
}

/* Leadership Team */
.leadership-team {
    padding: 100px 0;
    background: #f7fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.member-info {
    padding: 30px;
}

.member-info h3 {
    color: #1a365d;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.member-title {
    color: #2b6cb0;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.member-bio {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Company History */
.company-history {
    padding: 100px 0;
    background: white;
}

.timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2b6cb0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-left: 40px;
}

.timeline-year {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2b6cb0;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50px;
    height: 60px;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-content h3 {
    color: #1a365d;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Certifications */
.certifications {
    padding: 100px 0;
    background: #f7fafc;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.cert-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: #2b6cb0;
}

.cert-item img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.cert-item h4 {
    color: #1a365d;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-card,
    .vision-card {
        padding: 40px 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-item .timeline-content {
        text-align: left !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        flex: none;
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }

    .mission-card h2,
    .vision-card h2 {
        font-size: 1.75rem;
    }

    .value-item {
        padding: 30px 20px;
    }

    .member-info {
        padding: 25px 20px;
    }

    .timeline-item .timeline-content {
        padding-left: 70px !important;
    }

    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }

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