/* Header Styles */
        .navbar {
            background: rgba(15, 23, 42, 0.98) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid #334155;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: rgba(15, 23, 42, 1) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
            z-index: 30;
            background: #1e293b !important;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .navbar * {
            color: #e2e8f0;
        }
        
        .navbar .nav-link {
            color: #d1d5db !important;
        }
        
        .navbar .nav-link:hover {
            color: #60a5fa !important;
        }
        
        .navbar .nav-link.active {
            color: #60a5fa !important;
        }
        
        /* Team Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .team-card {
            transform-style: preserve-3d;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .team-card:hover {
            transform: translateY(-15px) scale(1.02);
        }
        
        .team-image {
            transition: all 0.5s ease;
        }
        
        .team-card:hover .team-image {
            transform: scale(1.1);
        }
        
        .social-icon {
            transition: all 0.3s ease;
        }
        
        .float { animation: float 3s ease-in-out infinite; }