/* Team Page Styles */

.team-hero-section {
    background-color: #0c3043;
    color: #fff;
    padding: 160px 0 60px 0;
    text-align: center;
}

.team-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.team-hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.team-leadership-section {
    padding: 100px 0;
    background: #fff;
}

.team-section-header h2 {
    color: #0c3043;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 36px 24px 28px 24px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}

.team-member:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.team-member-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: #0c3043;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.team-member-title {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-member-bio {
    font-size: 0.98rem;
    color: #333;
    line-height: 1.6;
}

.team-cta-section {
    background: #0c3043;
    color: #fff;
    padding: 80px 0 60px 0;
    text-align: center;
}

.team-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.team-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.team-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.92;
}

.team-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-hero-section h1 {
        font-size: 2.1rem;
    }
}

/* Animation Classes */
.fade-up-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Our Philosophy Section */
.team-philosophy-section {
    background: #fff;
    padding: 80px 0 40px 0;
}
.team-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.team-philosophy-text h2 {
    color: #18314f;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.team-philosophy-text p {
    color: #18314f;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 540px;
}
.team-philosophy-media {
    display: flex;
    justify-content: center;
    align-items: center;
}
.team-philosophy-media-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(24,49,79,0.08);
}
.team-philosophy-media-wrapper img {
    width: 100%;
    display: block;
    border-radius: 12px;
}
.team-philosophy-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 2;
}
.team-philosophy-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
}
.team-philosophy-media .about-image-overlap-img {
    display: block;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(24,49,79,0.10);
    object-fit: cover;
}
@media (max-width: 1024px) {
    .team-philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .team-philosophy-media-wrapper {
        max-width: 100%;
    }
    .team-philosophy-text h2 {
        font-size: 2rem;
    }
    .team-philosophy-media .about-image-overlap-img {
        max-width: 100%;
    }
}
@media (max-width: 700px) {
    .team-philosophy-section {
        padding: 48px 0 24px 0;
    }
    .team-philosophy-text p {
        font-size: 1rem;
    }
} 