/* Leadership Section */
.leadership-section {
    background: var(--secondary-color);
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.team-member {
    margin-bottom: 2rem;
}

.team-member .card {
    background: #fff;
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

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

.team-member img {
    width: 160px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: #f8f9fa;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.placeholder-image {
    width: 120px;
    height: 120px;
    background-color: #f8f9fa;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-member .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.team-member .card-subtitle {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-member .organization {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

/* Social media brand colors */
.social-link.twitter:hover {
    color: #1DA1F2;
    background: rgba(29, 161, 242, 0.1);
}

.social-link.linkedin:hover {
    color: #0077B5;
    background: rgba(0, 119, 181, 0.1);
}

.social-link.facebook:hover {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}

.social-link.instagram:hover {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}

.social-link.website:hover {
    color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.1);
}

.social-link.email:hover {
    color: #EA4335;
    background: rgba(234, 67, 53, 0.1);
}

.social-link.phone:hover {
    color: #34A853;
    background: rgba(52, 168, 83, 0.1);
}

/* Partners Section */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.partner-item {
    width: 200px;
    height: 200px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (min-width: 768px) {
    .partners-grid {
        max-width: 600px;
    }
}

@media (min-width: 992px) {
    .partners-grid {
        max-width: none;
    }
}

.partner-item img {
    position: absolute;
    inset: 0;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-item img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 767px) {
    .team-member img,
    .placeholder-image {
        width: 120px;
    }
    
    .team-member .card {
        padding: 1.5rem 1rem;
    }
    
    .team-member .card-title {
        font-size: 1.25rem;
    }
    
    .partner-item {
        height: 100px;
        padding: 1rem;
    }
}