
        :root {
            --primary-color: #0a192f;
            --secondary-color: #64ffda;
            --text-color: #ccd6f6;
            --subtext-color: #8892b0;
            --background-color: #0a192f;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        header {
            padding: 1.5rem 0;
            position: fixed;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.9);
            backdrop-filter: blur(5px);
            z-index: 10;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--secondary-color);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--secondary-color);
        }
        
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            padding-top: 60px;
        }
        
        .greeting {
            color: var(--secondary-color);
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 4rem;
            margin-bottom: 0.5rem;
        }
        
        h2 {
            font-size: 2.5rem;
            color: var(--subtext-color);
            margin-bottom: 1.5rem;
        }
        
        .hero-text {
            max-width: 600px;
            color: var(--subtext-color);
            margin-bottom: 2rem;
        }
        
        .cta-button {
            display: inline-block;
            background-color: transparent;
            color: var(--secondary-color);
            border: 1px solid var(--secondary-color);
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            font-size: 0.9rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .cta-button:hover {
            background-color: rgba(100, 255, 218, 0.1);
            transform: translateY(-3px);
        }
        
        section {
            padding: 6rem 0;
        }
        
        .section-title {
            display: flex;
            align-items: center;
            margin-bottom: 2.5rem;
            font-size: 1.5rem;
        }
        
        .section-title::after {
            content: "";
            display: block;
            height: 1px;
            width: 300px;
            background-color: var(--subtext-color);
            margin-left: 1rem;
            opacity: 0.5;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 3rem;
            align-items: center;
        }
        
        .about-text p {
            margin-bottom: 1rem;
            color: var(--subtext-color);
        }
        
        .highlight {
            /* color: var(--secondary-color);
            font-weight: 500; */
        }
        
        .skills-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem;
            margin-top: 1.5rem;
        }
        
        .skills-list li {
            list-style: none;
            position: relative;
            padding-left: 1.2rem;
            font-family: monospace;
            font-size: 0.9rem;
            color: var(--subtext-color);
        }
        
        .skills-list li::before {
            content: "▹";
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        .profile-img {
            position: relative;
            max-width: 300px;
            margin: 0 auto;
        }
        
        .profile-img::after {
            content: "";
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid var(--secondary-color);
            top: 20px;
            left: 20px;
            z-index: -1;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .profile-img:hover::after {
            top: 15px;
            left: 15px;
        }
        
        .profile-img img {
            width: 100%;
            border-radius: 4px;
            filter: grayscale(100%) contrast(1.2);
            transition: all 0.3s;
            mix-blend-mode: multiply;
        }
        
        .profile-img:hover img {
            filter: none;
            mix-blend-mode: normal;
        }
        
        .experience-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .role {
            padding: 1.5rem;
            border-radius: 4px;
            background-color:rgb(0 0 0 / 8%);
            transition: transform 0.3s;
        }
        
        .role:hover {
            transform: translateY(-5px);
        }
        
        .role h3 {
            margin-bottom: 0.5rem;
            color: var(--text-color);
        }
        
        .role-details {
            color: var(--subtext-color);
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        .role p {
            color: var(--subtext-color);
        }
        
        footer {
            padding: 2rem 0;
            text-align: center;
            color: var(--subtext-color);
            font-size: 0.9rem;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .social-links a {
            color: var(--text-color);
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: var(--secondary-color);
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .profile-img {
                margin-top: 2rem;
                order: -1;
            }
            
            .nav-links {
                display: none;
            }
        }
    