        /* === Base Styles === */
        :root {
            --bg-dark: #0a0a0a;
            --bg-darker: #050505;
            --neon-blue: #00f2ff;
            --neon-pink: #ff00f2;
            --text-light: #e0e0e0;
            --text-lighter: #ffffff;
            --card-bg: #111111;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        ::selection {
            background: var(--neon-blue);
            color: var(--bg-dark);
        }

        /* === Scrollbar === */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-darker);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--neon-blue);
            border-radius: 10px;
        }

        /* === Header & Navigation === */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 242, 255, 0.1);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
        }

        nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        nav ul li a:hover {
            color: var(--neon-blue);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-blue);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* === Hero Section === */
        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
            margin-top: 85px;
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 5rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-text {
            flex: 1;
            z-index: 2;
        }

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

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

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
        }

        .typing-text {
            color: var(--neon-pink);
            border-right: 2px solid var(--neon-blue);
            animation: blink 0.7s infinite;
            display: inline-block;
            min-height: 1.5em;
            margin-bottom: 1rem;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

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

        .developer-portrait {
            width: 100%;
            max-width: 400px;
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(0, 242, 255, 0.3);
            border: 3px solid rgba(0, 242, 255, 0.2);
            position: relative;
            overflow: hidden;
            background: var(--bg-darker);
        }

        .developer-portrait::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 242, 255, 0.3) 0%, transparent 70%);
            animation: pulse 4s infinite alternate;
            z-index: 1;
        }

        .developer-portrait img {
            width: 100%;
            height: auto;
            display: block;
            position: relative;
            z-index: 0;
        }

        .experience-badge {
            position: absolute;
            bottom: 15px;
            right: 68px;
            background: var(--bg-dark);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            font-weight: 600;
            border: 2px solid var(--neon-blue);
            color: var(--neon-blue);
            z-index: 3;
        }

        .floating-tech {
            position: absolute;
            font-size: 1rem;
            opacity: 0.7;
            animation: float 6s infinite ease-in-out;
            color: var(--neon-blue);
            font-weight: bold;
            z-index: 3;
            text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            color: var(--bg-dark);
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--neon-blue);
            color: var(--neon-blue);
            margin-left: 1rem;
        }

        .btn-outline:hover {
            background: rgba(0, 242, 255, 0.1);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes pulse {
            0% { opacity: 0.3; transform: scale(0.95); }
            100% { opacity: 0.7; transform: scale(1.05); }
        }

        /* === About Section === */
        #about {
            padding: 5rem 5%;
            background: var(--bg-darker);
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 20px;
        }

        .about-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            max-width: 450px;
            box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
        }

        /* === Skills Section === */
        #skills {
            padding: 5rem 5%;
        }

        .skills-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin: auto;
            gap: 2rem;
            margin-top: 2rem;
        }

        .skill-card {
            background: var(--card-bg);
            padding: 1.5rem 2.5rem;
            border-radius: 10px;
            width: 200px;
            height: 150px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 242, 255, 0.1);
        }

        .skill-card:hover {
            transform: translateY(-5px);
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0, 242, 255, 0.1);
            border-color: var(--neon-blue);
        }

        .skill-card i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--neon-blue);
        }

        /* === Projects Section === */
        #projects {
            padding: 5rem 5%;
            background: var(--bg-darker);
            margin: auto;
        }

        .projects-container {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            flex-wrap: wrap;
            margin: auto;
            margin-top: 2rem;
        }

        .project-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 242, 255, 0.1);
            width: 300px;
            height: auto;
            margin-bottom: 50px;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
        }

        .project-img {
            height: 200px;
            overflow: hidden;
        }

        .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-img img {
            transform: scale(1.1);
        }

        .project-info {
            padding: 1.5rem;
        }

        .project-info h3 {
            margin-bottom: 0.5rem;
            color: var(--neon-blue);
        }

        .project-info p {
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .project-links a {
            color: var(--neon-pink);
            text-decoration: none;
            margin-right: 1rem;
            transition: all 0.3s ease;
        }

        .project-links a:hover {
            text-decoration: underline;
        }

        /* === Contact Section === */
        #contact {
            padding: 5rem 5%;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid rgba(0, 242, 255, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 242, 255, 0.2);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
        }

        /* === Footer === */
        footer {
            text-align: center;
            padding: 2rem;
            background: var(--bg-darker);
            border-top: 1px solid rgba(0, 242, 255, 0.1);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .social-links a {
            color: var(--text-light);
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: var(--neon-blue);
            transform: translateY(-3px);
        }

        .copyright {
            opacity: 0.7;
        }

        /* === Responsive Design === */
        @media (max-width: 1024px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
                padding-bottom: 100px;
                padding-top: 50px;
            }
            
            .hero-text {
                margin-bottom: 3rem;
            }
            
            .hero-text p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .experience-badge {
                right: 50%;
                transform: translateX(50%);
            }
            
            .btn-container {
                justify-content: center;
            }
        }

        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--bg-darker);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
            }

            nav ul.active {
                left: 0;
            }

            .menu-toggle {
                display: block;
            }

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

            .about-content {
                flex-direction: column;
            }

            .skills-container {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
    
            
        }