/* Hero Section */
        .hero {
            position: center;
            width: 100%;
            height: 120vh;
         overflow: hidden;
     }
        .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(5, 5, 16, 0.85), rgba(5, 5, 16, 0.9)),
        url('../assets/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This creates parallax effect */
    z-index: -2;
    }
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 50px 50px;
            position: relative;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            width: 100%;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text h1 span {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #cccccc;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--accent));
            color: var(--dark);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 204, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 204, 0.3);
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .profile-card {
            width: 350px;
            height: 450px;
            padding: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .profile-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 20px;
            border: 3px solid var(--primary);
            padding: 5px;
            position: relative;
        }

        .profile-img::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            z-index: -1;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .profile-img img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .profile-card h2 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .profile-card p {
            color: #cccccc;
            margin-bottom: 20px;
        }

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

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--glass);
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-3px);
        }

        /* Sections */
        section {
            padding: 100px 50px;
        }

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

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .section-title p {
            color: #cccccc;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                padding: 80px 40px 40px;
            }

            .hero-content {
                gap: 40px;
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

            .profile-card {
                width: 300px;
                height: 400px;
            }

            .profile-img {
                width: 160px;
                height: 160px;
            }

            .profile-card h2 {
                font-size: 1.5rem;
            }

            section {
                padding: 80px 40px;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 60px 30px 40px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text p {
                font-size: 0.95rem;
            }

            .cta-buttons {
                gap: 15px;
            }

            .btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }

            .hero-image {
                order: -1;
            }

            .profile-card {
                width: 280px;
                height: 380px;
            }

            .profile-img {
                width: 140px;
                height: 140px;
            }

            .profile-card h2 {
                font-size: 1.3rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            section {
                padding: 60px 30px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 40px 20px 30px;
            }

            .hero-content {
                gap: 20px;
            }

            .hero-text h1 {
                font-size: 1.5rem;
            }

            .hero-text p {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.85rem;
                width: 100%;
                text-align: center;
            }

            .profile-card {
                width: 100%;
                max-width: 250px;
                height: 320px;
                padding: 15px;
            }

            .profile-img {
                width: 120px;
                height: 120px;
                margin-bottom: 15px;
            }

            .profile-card h2 {
                font-size: 1.1rem;
            }

            .profile-card p {
                font-size: 0.85rem;
            }

            .social-links {
                gap: 10px;
            }

            .social-links a {
                width: 35px;
                height: 35px;
            }

            .section-title h2 {
                font-size: 1.5rem;
            }

            section {
                padding: 40px 20px;
            }
        }
