/* Scroll behavior is now handled by Lenis */

.team-section {
    position: relative;
    width: 100%;
    padding: 8rem 4rem;
    z-index: 1;
    background: transparent;
}

.team-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.team-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
}

.team-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.team-description {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Responsive Styles for Team Section */
@media screen and (max-width: 1200px) {
    .team-section {
        padding: 6rem 3rem;
    }
    
    .team-title {
        font-size: 4rem;
    }
}

@media screen and (max-width: 992px) {
    .team-section {
        margin-top: 50px;
        padding: 5rem 2.5rem;
    }
    
    .team-title {
        font-size: 3.5rem;
    }
    
    .team-subtitle {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 768px) {
    .team-section {
        padding: 4rem 2rem;
    }
    
    .team-title {
        font-size: 3rem;
    }
    
    .team-subtitle {
        font-size: 1.3rem;
    }
    
    .team-description {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .team-section {
        padding: 3rem 1.5rem;
    }
    
    .team-title {
        font-size: 2.5rem;
    }
    
    .team-subtitle {
        font-size: 1.2rem;
    }
    
    .team-description {
        font-size: 1rem;
    }
}

/* Organizer Spotlight Card Styles */
.organizer-card {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    background: rgba(255,255,255,0.08);
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(66,133,244,0.10), 0 1.5px 8px rgba(0,0,0,0.10);
    padding: 3rem 3rem 3rem 2.5rem;
    margin: 0 auto 4rem auto;
    max-width: 950px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255,255,255,0.18);
    transition: box-shadow 0.3s, transform 0.3s;
}
.organizer-card:hover {
    box-shadow: 0 16px 60px rgba(66,133,244,0.18), 0 4px 24px rgba(0,0,0,0.18);
    transform: translateY(-6px) scale(1.02);
}
.organizer-image {
    flex-shrink: 0;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #4285F4;
    box-shadow: 0 4px 24px rgba(66,133,244,0.18);
    /* background: linear-gradient(135deg, #4285F4 0%, #EA4335 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}
.organizer-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    filter: brightness(1.05) contrast(1.1);
}
.organizer-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.organizer-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}
.organizer-role {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #4285F4;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.organizer-vision {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    background: rgba(66,133,244,0.10);
    border-left: 4px solid #4285F4;
    padding: 1rem 1.5rem;
    border-radius: 0 18px 18px 0;
    margin: 0 0 0.5rem 0;
    font-style: italic;
    line-height: 1.7;
}
.organizer-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
}
.skill-tag {
    background: linear-gradient(90deg, #4285F4 0%, #34A853 100%);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.4rem 1.1rem;
    box-shadow: 0 2px 8px rgba(66,133,244,0.10);
    letter-spacing: 0.2px;
    transition: background 0.3s, color 0.3s;
    border: none;
}
.skill-tag:nth-child(2) { background: linear-gradient(90deg, #EA4335 0%, #FBBC05 100%); }
.skill-tag:nth-child(3) { background: linear-gradient(90deg, #FBBC05 0%, #34A853 100%); }
.skill-tag:nth-child(4) { background: linear-gradient(90deg, #34A853 0%, #4285F4 100%); }
.skill-tag:nth-child(5) { background: linear-gradient(90deg, #EA4335 0%, #4285F4 100%); }
.skill-tag:nth-child(6) { background: linear-gradient(90deg, #4285F4 0%, #EA4335 100%); }
.organizer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}
.organizer-social .social-link {
    color: #fff;
    font-size: 1.6rem;
    background: rgba(66,133,244,0.10);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    border: 1.5px solid rgba(255,255,255,0.12);
    box-shadow: 0 2px 8px rgba(66,133,244,0.10);
}
.organizer-social .social-link:hover {
    background: #4285F4;
    color: #fff;
    transform: translateY(-3px) scale(1.08);
    border-color: #4285F4;
}

/* Responsive Styles for Organizer Card */
@media screen and (max-width: 992px) {
    .organizer-card {
        flex-direction: column;
        align-items: center;
        padding: 2.2rem 1.5rem;
        gap: 1.5rem;
        max-width: 98vw;
    }
    .organizer-image {
        margin-right: 0;
        margin-bottom: 1.2rem;
        width: 140px;
        height: 140px;
    }
    .organizer-details {
        align-items: center;
        text-align: center;
    }
}
@media screen and (max-width: 576px) {
    .organizer-card {
        padding: 1.2rem 0.5rem;
        border-radius: 18px;
    }
    .organizer-image {
        width: 100px;
        height: 100px;
    }
    .organizer-name {
        font-size: 1.5rem;
    }
    .organizer-vision {
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
    }
    .skill-tag {
        font-size: 0.85rem;
        padding: 0.3rem 0.7rem;
    }
    .organizer-social .social-link {
        font-size: 1.2rem;
        width: 34px;
        height: 34px;
    }
}

/* Core Leadership Section Styles */
.core-leadership-section {
    margin: 4rem auto 0 auto;
    max-width: 1200px;
    padding: 0 1rem;
}
.core-leadership-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FBBC05;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #4285F4 0%, #EA4335 35%, #FBBC05 65%, #34A853 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.core-leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
    justify-items: center;
}
.core-member-card {
    background: rgba(255,255,255,0.07);
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(66,133,244,0.10), 0 1.5px 8px rgba(0,0,0,0.10);
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1.2px solid rgba(255,255,255,0.13);
    position: relative;
    min-width: 220px;
    max-width: 270px;
    width: 100%;
}
.core-member-card:hover {
    box-shadow: 0 12px 32px rgba(66,133,244,0.18), 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-6px) scale(1.03);
}
.core-member-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FBBC05;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 8px rgba(251,188,5,0.10);
    background: linear-gradient(135deg, #FBBC05 0%, #4285F4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.core-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.core-member-details {
    text-align: center;
    width: 100%;
}
.core-member-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}
.core-member-role {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #4285F4;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}
.core-member-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.8rem;
    min-height: 2.2em;
}
.core-member-linkedin {
    color: #fff;
    font-size: 1.3rem;
    background: rgba(66,133,244,0.10);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    border: 1.2px solid rgba(255,255,255,0.10);
    margin: 0 auto;
    text-decoration: none;
}
.core-member-linkedin:hover {
    background: #0077B5;
    color: #fff;
    transform: translateY(-2px) scale(1.08);
    border-color: #0077B5;
}

/* Responsive Styles for Core Leadership */
@media screen and (max-width: 1200px) {
    .core-leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@media screen and (max-width: 768px) {
    .core-leadership-title {
        font-size: 2rem;
    }
    .core-leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .core-member-card {
        min-width: 180px;
        max-width: 350px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 576px) {
    .core-leadership-section {
        margin-top: 2rem;
        padding: 0 0.2rem;
    }
    .core-leadership-title {
        font-size: 1.3rem;
    }
    .core-member-card {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    .core-member-image {
        width: 65px;
        height: 65px;
    }
    .core-member-name {
        font-size: 1rem;
    }
    .core-member-desc {
        font-size: 0.85rem;
    }
    .core-member-linkedin {
        font-size: 1rem;
        width: 28px;
        height: 28px;
    }
}

/* Departmental Lead Section Styles */
.departmental-lead-section {
    margin: 4rem auto 0 auto;
    max-width: 1400px;
    padding: 0 1rem;
}
.departmental-lead-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #34A853;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #4285F4 0%, #EA4335 35%, #FBBC05 65%, #34A853 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.departmental-lead-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-items: center;
}
.dept-member-card {
    background: rgba(255,255,255,0.07);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(66,133,244,0.10), 0 1.5px 8px rgba(0,0,0,0.10);
    padding: 2rem 1rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1.2px solid rgba(255,255,255,0.13);
    position: relative;
    min-width: 180px;
    max-width: 240px;
    width: 100%;
}
.dept-member-card:hover {
    box-shadow: 0 12px 32px rgba(66,133,244,0.18), 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-6px) scale(1.03);
}
.dept-member-image {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #34A853;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(52,168,83,0.10);
    background: linear-gradient(135deg, #FBBC05 0%, #34A853 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dept-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.dept-member-details {
    text-align: center;
    width: 100%;
}
.dept-member-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}
.dept-member-role {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #4285F4;
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
}
.dept-member-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.7rem;
    min-height: 2em;
}
.dept-member-linkedin {
    color: #fff;
    font-size: 1.1rem;
    background: rgba(66,133,244,0.10);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    border: 1.2px solid rgba(255,255,255,0.10);
    margin: 0 auto;
    text-decoration: none;
}
.dept-member-linkedin:hover {
    background: #0077B5;
    color: #fff;
    transform: translateY(-2px) scale(1.08);
    border-color: #0077B5;
}

/* Responsive Styles for Departmental Lead */
@media screen and (max-width: 1200px) {
    .departmental-lead-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media screen and (max-width: 768px) {
    .departmental-lead-title {
        font-size: 1.5rem;
    }
    .departmental-lead-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .dept-member-card {
        min-width: 140px;
        max-width: 350px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 576px) {
    .departmental-lead-section {
        margin-top: 2rem;
        padding: 0 0.2rem;
    }
    .departmental-lead-title {
        font-size: 1.1rem;
    }
    .dept-member-card {
        padding: 0.8rem 0.3rem 0.7rem 0.3rem;
    }
    .dept-member-image {
        width: 60px;
        height: 60px;
    }
    .dept-member-name {
        font-size: 0.95rem;
    }
    .dept-member-desc {
        font-size: 0.8rem;
    }
    .dept-member-linkedin {
        font-size: 0.9rem;
        width: 22px;
        height: 22px;
    }
}

/* Departmental Lead Slider Styles */
.dept-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0.5rem;
}
.dept-slider-container {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    position: relative;
}
.dept-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    gap: 2rem;
    will-change: transform;
}
.dept-member-card {
    flex: 0 0 23%; /* 4 cards per view, with gap */
    margin: 0;
    min-width: 220px;
    max-width: 270px;
}
.dept-slider-btn {
    background: rgba(66,133,244,0.12);
    border: none;
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    z-index: 2;
    margin: 0 0.5rem;
    box-shadow: 0 2px 8px rgba(66,133,244,0.10);
}
.dept-slider-btn:hover {
    background: #4285F4;
    color: #fff;
    transform: scale(1.08);
}
.dept-slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Hide scrollbar for slider track */
.dept-slider-track::-webkit-scrollbar {
    display: none;
}
.dept-slider-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Responsive: 2 cards per view on tablet, 1 on mobile */
@media screen and (max-width: 1200px) {
    .dept-member-card {
        flex: 0 0 45%;
        min-width: 180px;
        max-width: 350px;
    }
}
@media screen and (max-width: 768px) {
    .dept-member-card {
        flex: 0 0 90%;
        min-width: 140px;
        max-width: 350px;
    }
    .dept-slider-btn {
        font-size: 1.5rem;
        width: 38px;
        height: 38px;
    }
    .dept-slider-track {
        gap: 1rem;
    }
}
@media screen and (max-width: 576px) {
    .dept-slider-btn {
        font-size: 1.1rem;
        width: 28px;
        height: 28px;
    }
    .dept-slider-track {
        gap: 0.5rem;
    }
} 

.gradient-overlay,
.background,
.team-card,
.core-member-card,
.dept-member-card {
    will-change: transform, opacity;
} 