@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        :root {
            --primary: #FF3366;
            --secondary: #6C63FF;
            --accent: #00F5A0;
            --dark: #13111C;
            --darker: #0C0A13;
            --light: #ffffff;
            --gray: #9CA3AF;
        }

        body {
            background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }

/* Updated Navigation */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    padding: 10px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

/* Logo Pill */
.logo {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 8px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    box-shadow: 
        0 4px 24px -1px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.3s ease;
}

.logo img {
    height: 32px;
    width: auto;
}

/* Navigation Links Pill */
.nav-links {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px;
    display: flex;
    gap: 4px;
    position: relative;
    box-shadow: 
        0 4px 24px -1px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.3s ease;
}

        .nav-links a {
            color: var(--gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            padding: 8px 20px;
            border-radius: 100px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
            z-index: 1;
        }

        /* Active marker */
        .nav-marker {
            position: absolute;
            height: calc(100% - 12px);
            top: 6px;
            left: 6px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 100px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 12px -2px rgba(255, 51, 102, 0.4);
        }

        /* Hover effect */
        .nav-links a:hover {
            color: var(--light);
        }

        /* Active state */
        .nav-links a.active {
            color: var(--light);
        }

        /* Position the marker based on active link */
        .nav-links a:nth-child(1).active ~ .nav-marker {
            width: 80px;
            transform: translateX(0);
        }

        .nav-links a:nth-child(2).active ~ .nav-marker {
            width: 88px;
            transform: translateX(68px);
        }

        .nav-links a:nth-child(3).active ~ .nav-marker {
            width: 82px;
            transform: translateX(160px);
        }

        .nav-links a:nth-child(4).active ~ .nav-marker {
            width: 72px;
            transform: translateX(302px);
        }

        .nav-links a:nth-child(5).active ~ .nav-marker {
            width: 82px;
            transform: translateX(322px);
        }

        .nav-links a:nth-child(6).active ~ .nav-marker {
            width: 64px;
            transform: translateX(408px);
        }

        /* Scroll Effect - Updated */
nav.scrolled .logo,
nav.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px -1px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

        .about-hero {
            min-height: 30vh;
            padding: 160px 40px 80px;
            background: radial-gradient(circle at top right, 
                rgba(255, 51, 102, 0.1), 
                rgba(108, 99, 255, 0.1),
                transparent 60%);
        }

        .about-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-header {
            text-align: center;

        }

        .about-header h1 {
            font-size: 48px;
            margin-bottom: 24px;
        }

        .about-header p {
            font-size: 18px;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .team-section {
            padding: 80px 40px;
        }

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

        .team-member {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
        }

        .team-member:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
        }

        .member-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .member-info h3 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .member-info .role {
            color: var(--primary);
            font-size: 16px;
            margin-bottom: 16px;
        }

        .member-info p {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        .social-links a {
            color: var(--gray);
            font-size: 20px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            color: var(--primary);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .about-hero {
                padding: 120px 20px 60px;
            }

            .about-header h1 {
                font-size: 36px;
            }

            .team-section {
                padding: 40px 20px;
            }
        }
        /* Enhanced Mobile Navigation Styles */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 20px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
}

.mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active i {
    transform: rotate(90deg);
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: block;
        position: fixed;
        top: -100%;
        left: 0;
        right: 0;
        background: rgba(19, 17, 28, 0.95);
        backdrop-filter: blur(20px);
        padding: 80px 20px 30px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        visibility: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        top: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        padding: 16px 24px;
        margin: 8px 0;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        transition: all 0.3s ease;
        transform: translateX(-20px);
        opacity: 0;
    }

    .nav-links.active a {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links a:nth-child(4) { transition-delay: 0.25s; }
    .nav-links a:nth-child(5) { transition-delay: 0.3s; }
    .nav-links a:nth-child(6) { transition-delay: 0.35s; }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.06);
        transform: translateX(5px);
    }

    .nav-links a.active {
        background: linear-gradient(45deg, rgba(255, 51, 102, 0.1), rgba(108, 99, 255, 0.1));
        border-color: rgba(255, 51, 102, 0.2);
    }

    .nav-links a::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--primary);
        border-radius: 50%;
        margin-right: 12px;
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s ease;
    }

    .nav-links a:hover::before,
    .nav-links a.active::before {
        opacity: 1;
        transform: scale(1);
    }

    .nav-marker {
        display: none;
    }
}