

.team-hero-section {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, 
                rgba(45, 80, 22, 0.85) 0%, 
                rgba(26, 48, 9, 0.95) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeInSlide 1.2s ease-out;
}

.team-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

.team-hero-content {
    position: relative;
    text-align: center;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.team-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    /* Removed glow animation */
}

.team-hero-badge i {
    font-size: 16px;
    color: #4ade80;
}

.team-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out 0.3s both;
}

.team-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    animation: slideInUp 1s ease-out 0.6s both;
}

/* Animations */
@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-hero-section {
        padding: 100px 0 60px;
        min-height: 60vh;
    }
    
    .team-hero-title {
        font-size: 2.5rem;
    }
    
    .team-hero-subtitle {
        font-size: 1rem;
    }
    
    .team-hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .team-hero-title {
        font-size: 2rem;
    }
    
    .team-hero-content {
        padding: 0 15px;
    }
}