/* All CSS from the previous file is included here */
        /* For brevity, I'm not duplicating all CSS, but in a real project, you would link to a common CSS file */
        :root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --accent: #ff6b8b;
            --accent2: #00d2ff;
            --dark: #0f0f23;
            --darker: #0a0a18;
            --light: #f0f2ff;
            --neon: #00ff9d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #fff;
            background-color: var(--darker);
            overflow-x: hidden;
            position: relative;
        }
        
        /* Include all the CSS from the previous file here */
        /* For this example, I'll keep it brief and just include what's needed for the about page */
        
        /* Particle Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
        }
        
        /* Animated Background Elements */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        /* ... Include all other CSS from the previous file ... */
        
        /* Team Cards */
        .team-card {
            background: rgba(15, 15, 35, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(106, 17, 203, 0.2);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(106, 17, 203, 0.4);
            border-color: rgba(106, 17, 203, 0.6);
        }
        
        .team-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            font-weight: 800;
        }
        
        .team-social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(106, 17, 203, 0.2);
            border-radius: 50%;
            color: white;
            line-height: 40px;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .team-social a:hover {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            transform: translateY(-5px);
        }