<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }

        ::selection {
  background-color: black; /* Highlight background color */
  color: gold;            /* Highlight text color */
}
        body {
            font-family: 'Courier New', monospace;
            background: black;
            background-image: 
                radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
            background-size: 20px 20px;
            color: whitesmoke;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Header */
        header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .name {
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            letter-spacing: -1px;
        }

        .title {
            font-size: 1rem;
            color: #666;
            font-weight: 300;
        }

        /* Navigation */
        nav {
            margin: 3rem 0;
            text-align: center;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

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

        nav a {
            color: gold;
            text-decoration: none;
            font-size: 0.9rem;
            position: relative;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: silver;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: #333;
            transition: width 0.3s ease;
        }

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

        /* Sections */
        section {
            margin-bottom: 5rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }

        /* Adjust animation delay for new sections */
        section:nth-child(3) { animation-delay: 0.4s; } /* About */
        section:nth-child(4) { animation-delay: 0.6s; } /* Skills */
        section:nth-child(5) { animation-delay: 0.8s; } /* Work */
        section:nth-child(6) { animation-delay: 1.0s; } /* Contact */


        .section-title {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: gold;
            font-weight: 400;
        }

        /* About */
        .about-text {
            font-size: 0.95rem;
            color: silver;
            max-width: 600px;
            margin: 0 auto;
            /* text-align: center; */
        }

        /* Technical Skills */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            justify-content: center;
            text-align: center;
        }

        

        

        /* Projects */
        .project {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 1.5rem 0;
            border-bottom: 1px solid silver;
            transition: background 0.3s ease;
        }

        .project:hover {
            background: brown;
            margin: 0 -1rem;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .project:last-child {
            border-bottom: none;
        }

        .project-info h3 {
            font-size: 1rem;
            font-weight: 400;
            margin-bottom: 0.3rem;
            color: gold;
        }

        .project-info p {
            font-size: 0.85rem;
            color: lightyellow;
            margin-bottom: 0.5rem;
        }

        .project-tech {
            font-size: 0.8rem;
            color: white;
        }
        
        .project-links {
            margin-top: 0.5rem;
            font-size: 0.8rem;
        }

        .project-links a {
            color:gold; 
            text-decoration: none;
            margin-right: 0.8rem;
            transition: color 0.3s ease;
        }

        .project-links a:hover {
            color:whitesmoke;
        }

        

        /* Contact */
        .contact-info {
            text-align: center;
        }

        .contact-info a {
            color:lightyellow;
            text-decoration: none;
            font-size: 0.9rem;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: gold;
        }

        /* Footer */
        footer {
            text-align: center;
            margin-top: 5rem;
            padding: 2rem 0;
            font-size: 0.8rem;
            color: #999;
            border-top: 1px solid #eee;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }
            
            .name {
                font-size: 2rem;
            }
            
            nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            
            .project {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .contact-info a {
                display: block;
                margin: 0.5rem 0;
            }

            .skills-grid {
                grid-template-columns: 1fr; /* Stack skills categories on small screens */
            }
        }
    </style>