* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFD700;
    --gold-light: #FFE55C;
    --gold-dark: #E6C300;
    --blue: #1DA1F2;
    --dark-bg: #0A0A14;
    --dark-card: #12121F;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--dark-bg);
    color: white;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

/* Animated Background */
        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(ellipse at 20% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(29, 161, 242, 0.06) 0%, transparent 50%),
                linear-gradient(135deg, #0A0A14 0%, #1A1A2E 50%, #0F0F1E 100%);
        }

        .mesh-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.4;
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 215, 0, 0.03) 2px, rgba(255, 215, 0, 0.03) 4px),
                repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(29, 161, 242, 0.03) 2px, rgba(29, 161, 242, 0.03) 4px);
        }


@keyframes floatParticle {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(100vw, 100vh) rotate(360deg);
    }
}

/* Header */
.teams-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 60px;
    overflow: hidden;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: black;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.header-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.header-badge:hover::before {
    left: 100%;
}

.header-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
    position: relative;
}

.header-title-main {
    display: block;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.header-title-sub {
    display: block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    margin-top: 10px;
}

.header-description {
    max-width: 800px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.header-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--blue));
}

/* Teams Section */
.teams-section {
    padding: 80px 40px;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Team Member Card */
.team-card {
    position: relative;
    background: linear-gradient(145deg, 
        rgba(18, 18, 31, 0.8) 0%, 
        rgba(18, 18, 31, 0.9) 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.1),
        inset 0 0 50px rgba(255, 215, 0, 0.05);
}

.member-photo {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.member-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, 
        rgba(18, 18, 31, 0.9) 0%,
        rgba(18, 18, 31, 0.5) 50%,
        transparent 100%);
    z-index: 1;
}

.member-info {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.member-name {
    font-size: 1.8rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-role {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-role i {
    font-size: 0.9rem;
}

.member-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}


.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

   .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
        overflow: hidden;
}  

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.social-link:hover::before {
    opacity: 1;
} */

/* Specific social colors on hover */
.social-link[href*="linkedin"]:hover { background: #0077B5; }
.social-link[href*="twitter"]:hover { background: #1DA1F2; }
.social-link[href*="github"]:hover { background: #333; }
.social-link[href*="instagram"]:hover { background: #E4405F; }
.social-link[href*="facebook"]:hover { background: #1877F2; }
.social-link[href*="youtube"]:hover { background: #FF0000; }

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.expertise-tag {
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 500;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 40px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    background: linear-gradient(145deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        rgba(18, 18, 31, 0.9) 100%);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.1);
}

.leader-header {
    padding: 40px 40px 20px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.leader-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    flex-shrink: 0;
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leader-info .role {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
}

.leader-details {
    padding: 0 40px 40px;
}

.leader-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.leader-social {
    display: flex;
    gap: 15px;
}

/* Advisory Board */
.advisory-section {
    padding: 100px 40px;
    position: relative;
}

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

.advisor-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.4s ease;
}

.advisor-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
}

.advisor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 2px solid var(--gold);
}

.advisor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.advisor-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.advisor-org {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Join Team CTA */
.join-section {
    padding: 100px 40px;
    position: relative;
    text-align: center;
}

.join-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: linear-gradient(145deg, 
        rgba(18, 18, 31, 0.9) 0%, 
        rgba(18, 18, 31, 0.95) 100%);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.join-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.join-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: black;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.join-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.join-cta:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4);
    gap: 20px;
    padding-left: 55px;
}

.join-cta:hover::before {
    left: 100%;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
    transform-origin: 0%;
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-title {
        font-size: 3.5rem;
    }
    
    .header-title-sub {
        font-size: 2.8rem;
    }
    
    .teams-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .teams-header,
    .teams-section,
    .leadership-section,
    .advisory-section,
    .join-section {
        padding: 60px 20px;
    }
    
    .header-title {
        font-size: 2.8rem;
    }
    
    .header-title-sub {
        font-size: 2.2rem;
    }
    
    .header-description {
        padding: 25px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .leader-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 30px 20px;
    }
    
    .leader-avatar {
        width: 80px;
        height: 80px;
    }
    
    .leader-details {
        padding: 0 30px 30px;
    }
    
    .join-container {
        padding: 40px 30px;
    }
    
    .join-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .teams-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .advisory-grid {
        grid-template-columns: 1fr;
    }
    
    .header-title {
        font-size: 2.3rem;
    }
    
    .header-title-sub {
        font-size: 1.8rem;
    }
    
    .join-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
}