 /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy: #0a192f;
            --light-navy: #112240;
            --lightest-navy: #233554;
            --slate: #8892b0;
            --light-slate: #a8b2d1;
            --lightest-slate: #ccd6f6;
            --white: #e6f1ff;
            --green: #64ffda;
            --green-tint: rgba(100, 255, 218, 0.1);
            --pink: #f57dff;
            --blue: #57cbff;
            --font-sans: "Inter", "San Francisco", "SF Pro Text", -apple-system, system-ui, sans-serif;
            --font-mono: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
            --fz-xxs: 12px;
            --fz-xs: 13px;
            --fz-sm: 14px;
            --fz-md: 16px;
            --fz-lg: 18px;
            --fz-xl: 20px;
            --fz-xxl: 22px;
            --fz-heading: 32px;
            --border-radius: 4px;
            --nav-height: 100px;
            --nav-scroll-height: 70px;
            --tab-height: 42px;
            --tab-width: 120px;
            --easing: cubic-bezier(0.645, 0.045, 0.355, 1);
            --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
            --hamburger-width: 30px;
            --ham-before: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
            --ham-before-active: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
            --ham-after: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
            --ham-after-active: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
        }

        html {
            box-sizing: border-box;
            width: 100%;
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            width: 100%;
            min-height: 100%;
            overflow-x: hidden;
            -moz-osx-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
            background-color: var(--navy);
            color: var(--slate);
            font-family: var(--font-sans);
            font-size: var(--fz-xl);
            line-height: 1.3;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            z-index: 11;
            padding: 0px 50px;
            width: 100%;
            height: var(--nav-height);
            background-color: rgba(10, 25, 47, 0.85);
            backdrop-filter: blur(10px);
            transition: var(--transition);
            filter: none !important;
            pointer-events: auto !important;
            user-select: auto !important;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            width: 100%;
            height: 100%;
            color: var(--lightest-slate);
            font-family: var(--font-mono);
            counter-reset: item 0;
            z-index: 12;
        }

        .nav-logo a {
            color: var(--green);
            font-family: var(--font-mono);
            text-decoration: none;
            font-size: 42px;
            font-weight: 400;
        }

        .nav-menu {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0;
            margin: 0;
            list-style: none;
            gap: 10px;
        }

        .nav-item {
            position: relative;
            counter-increment: item 1;
            font-size: var(--fz-xs);
        }

        .nav-link {
            padding: 10px;
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        .nav-link:hover,
        .nav-link:focus {
            color: var(--green);
        }

        .nav-item .nav-link:before {
            content: "0" counter(item) ".";
            margin-right: 5px;
            color: var(--green);
            font-size: var(--fz-xxs);
            text-align: right;
        }

        .resume-btn {
            color: var(--green) !important;
            background-color: transparent;
            border: 1px solid var(--green);
            border-radius: var(--border-radius);
            padding: 0.75rem 1rem;
            font-size: var(--fz-xs);
            font-family: var(--font-mono);
            line-height: 1;
            text-decoration: none;
            transition: var(--transition);
            margin-left: 15px;
        }

        .resume-btn:hover,
        .resume-btn:focus,
        .resume-btn:active {
            background-color: var(--green-tint);
            outline: none;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 15px 5px;
            z-index: 13;
        }

        .hamburger .bar {
            width: var(--hamburger-width);
            height: 2px;
            background-color: var(--green);
            margin: 3px 0;
            transition: 0.3s;
            transform-origin: center;
        }

        .hamburger.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Navigation Styles */
        @media (max-width: 768px) {
            .navbar {
                padding: 0px 25px;
            }

            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: var(--nav-height);
                flex-direction: column;
                background-color: var(--light-navy);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                backdrop-filter: blur(10px);
                min-height: calc(100vh - var(--nav-height));
                justify-content: flex-start;
                padding: 50px 0;
                gap: 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 16px 0;
                opacity: 0;
                animation: slideInRight 0.3s ease-in-out forwards;
            }

            .nav-item:nth-child(1) { animation-delay: 0.1s; }
            .nav-item:nth-child(2) { animation-delay: 0.2s; }
            .nav-item:nth-child(3) { animation-delay: 0.3s; }
            .nav-item:nth-child(4) { animation-delay: 0.4s; }
            .nav-item:nth-child(5) { animation-delay: 0.5s; }

            .nav-link {
                font-size: var(--fz-lg);
                padding: 20px;
                display: block;
                width: 100%;
            }

            .resume-btn {
                margin: 20px auto 0;
                display: inline-block;
                padding: 15px 25px;
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0px 15px;
            }

            .nav-logo a {
                font-size: 32px;
            }
        }

        /* Main Content */
        main {
            margin: 0 auto;
            width: 100%;
            max-width: 1600px;
            min-height: 100vh;
            padding: 0 150px;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Section Styles */
        section {
            margin: 0 auto;
            padding: 100px 0;
            max-width: 1000px;
        }

        .section-title {
            position: relative;
            margin: 10px 0 40px;
            width: 100%;
            font-size: clamp(26px, 5vw, var(--fz-heading));
            font-weight: 600;
            color: var(--lightest-slate);
            line-height: 1.1;
        }

        .section-number {
            margin-right: 10px;
            color: var(--green);
            font-family: var(--font-mono);
            font-size: clamp(var(--fz-md), 3vw, var(--fz-xl));
            font-weight: 400;
        }

        .section-title:after {
            content: "";
            display: block;
            position: relative;
            top: -5px;
            width: 300px;
            height: 1px;
            margin-left: 20px;
            background-color: var(--lightest-navy);
        }

        /* Hero Section */
        .hero {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            flex-direction: column;
            min-height: 100vh;
            padding: 0;
        }

        .hero-content {
            width: 100%;
        }

        .hero-intro {
            margin: 0 0 30px 4px;
            color: var(--green);
            font-family: var(--font-mono);
            font-size: var(--fz-md);
            font-weight: 400;
        }

        .hero-title {
            margin: 0;
            font-size: clamp(40px, 8vw, 80px);
            font-weight: 600;
            color: var(--lightest-slate);
            line-height: 1.1;
        }

        .hero-subtitle {
            margin: 0;
            font-size: clamp(20px, 8vw, 50px);
            font-weight: 600;
            color: var(--slate);
            line-height: 0.9;
        }

        .hero-description {
            margin: 20px 0 0;
            max-width: 540px;
            color: var(--slate);
        }

        .hero-description a {
            color: var(--green);
            text-decoration: none;
        }

        .cta-button {
            color: var(--green);
            background-color: transparent;
            border: 1px solid var(--green);
            border-radius: var(--border-radius);
            padding: 1.25rem 1.75rem;
            font-size: var(--fz-sm);
            font-family: var(--font-mono);
            line-height: 1;
            text-decoration: none;
            transition: var(--transition);
            margin-top: 50px;
            display: inline-block;
        }

        .cta-button:hover,
        .cta-button:focus,
        .cta-button:active {
            background-color: var(--green-tint);
            outline: none;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 50px;
        }

        .about-text {
            font-size: var(--fz-lg);
        }

        .about-text p {
            margin: 0 0 15px;
        }

        .about-text a {
            color: var(--green);
            text-decoration: none;
        }

        .skills-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(140px, 200px));
            gap: 0px 10px;
            padding: 0;
            margin: 20px 0 0;
            overflow: hidden;
            list-style: none;
        }

        .skills-list li {
            position: relative;
            margin-bottom: 10px;
            padding-left: 20px;
            font-family: var(--font-mono);
            font-size: var(--fz-xs);
        }

        .skills-list li:before {
            content: "▹";
            position: absolute;
            left: 0;
            color: var(--green);
            font-size: var(--fz-sm);
            line-height: 12px;
        }

        .about-pic {
            position: relative;
            max-width: 300px;
        }

        .wrapper {
            box-shadow: 0 10px 30px -15px var(--navy-shadow);
            transition: var(--transition);
            display: block;
            position: relative;
            width: 100%;
            border-radius: var(--border-radius);
            background-color: var(--green);
        }

        .wrapper:hover,
        .wrapper:focus {
            box-shadow: 0 20px 30px -15px var(--navy-shadow);
        }

        .wrapper:hover .profile-img,
        .wrapper:focus .profile-img {
            filter: none;
            mix-blend-mode: normal;
        }

        .profile-img {
            position: relative;
            border-radius: var(--border-radius);
            mix-blend-mode: multiply;
            filter: grayscale(100%) contrast(1);
            transition: var(--transition);
            width: 100%;
            height: auto;
            vertical-align: middle;
        }

        .wrapper:before,
        .wrapper:after {
            content: "";
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .wrapper:before {
            top: 0;
            left: 0;
            background-color: var(--navy);
            mix-blend-mode: screen;
        }

        .wrapper:after {
            border: 2px solid var(--green);
            top: 20px;
            left: 20px;
            z-index: -1;
        }

        /* Experience Section */
        .jobs-container {
            display: flex;
        }

        .jobs-tabs {
            position: relative;
            z-index: 3;
            width: max-content;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .tab-button {
            display: flex;
            align-items: center;
            width: 100%;
            height: var(--tab-height);
            padding: 0 20px 2px;
            border: none;
            border-left: 2px solid var(--lightest-navy);
            background-color: transparent;
            color: var(--slate);
            font-family: var(--font-mono);
            font-size: var(--fz-xs);
            text-align: left;
            white-space: nowrap;
            cursor: pointer;
            transition: var(--transition);
        }

        .tab-button:hover,
        .tab-button:focus {
            background-color: var(--light-navy);
            color: var(--green);
            outline: none;
        }

        .tab-button.active {
            color: var(--green);
            border-left-color: var(--green);
        }

        .jobs-content {
            position: relative;
            width: 100%;
            margin-left: 20px;
        }

        .tab-content {
            display: none;
            width: 100%;
            height: auto;
            padding: 10px 5px;
        }

        .tab-content.active {
            display: block;
        }

        .tab-content h3 {
            margin-bottom: 2px;
            font-size: var(--fz-xxl);
            font-weight: 500;
            line-height: 1.3;
            color: var(--lightest-slate);
        }

        .company {
            color: var(--green);
        }

        .job-range {
            margin-bottom: 25px;
            color: var(--light-slate);
            font-family: var(--font-mono);
            font-size: var(--fz-xs);
        }

        .job-details {
            padding: 0;
            margin: 0;
            list-style: none;
            font-size: var(--fz-lg);
        }

        .job-details li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 10px;
        }

        .job-details li:before {
            content: "▹";
            position: absolute;
            left: 0;
            color: var(--green);
            line-height: var(--fz-lg);
        }

        /* Projects Section */
        .projects-grid {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .featured-project {
            display: flex;
            align-items: flex-start;
            gap: 40px;
            margin-bottom: 100px;
        }

        .project-overline {
            margin: 10px 0;
            color: var(--green);
            font-family: var(--font-mono);
            font-size: var(--fz-xs);
            font-weight: 400;
        }

        /* Image */
        .project-image {
            flex: 1;
            max-width: 35%;
        }

        .project-image img {
            width: 100%;
            aspect-ratio: 16 / 15;
            object-fit: contain;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px -15px var(--navy-shadow);
            transition: transform 0.3s ease;
        }

        .project-image img:hover {
            transform: scale(1.03);
        }

        /* Content */
        .project-content {
            flex: 1;
            max-width: 65%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Title + links row */
        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .project-title {
            color: var(--lightest-slate);
            font-size: clamp(24px, 5vw, 28px);
            margin: 0;
        }

        /* Description box */
        .project-description {
            padding: 20px;
            border-radius: var(--border-radius);
            background-color: var(--light-navy);
            color: var(--light-slate);
            font-size: var(--fz-md);
            box-shadow: 0 10px 30px -15px var(--navy-shadow);
        }

        /* Tech stack as colored tags */
        .project-tech-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .project-tech-list li {
            background-color: rgba(100, 255, 218, 0.2);
            color: var(--green);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: var(--fz-xs);
            font-family: var(--font-mono);
            font-weight: 500;
        }

        /* Links */
        .project-links {
            display: flex;
            gap: 15px;
        }

        .project-links a {
            color: var(--lightest-slate);
            font-size: 18px;
            transition: color 0.2s ease;
        }

        .project-links a:hover {
            color: var(--green);
        }

        .project-links i {
            width: 20px;
            height: 20px;
        }

        /* Other Projects */
        .other-projects {
            margin-top: 80px;
        }

        .other-projects-title {
            margin: 0 auto 50px;
            font-size: var(--fz-heading);
            text-align: center;
            color: var(--lightest-slate);
        }

        .projects-archive-link {
            text-align: center;
            margin: 0 auto 50px;
        }

        .projects-archive-link a {
            color: var(--green);
            font-family: var(--font-mono);
            font-size: var(--fz-sm);
            text-decoration: none;
        }

        .projects-archive-link a:hover,
        .projects-archive-link a:focus {
            text-decoration: underline;
        }

        .other-projects-grid {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
            position: relative;
        }

        .project-card {
            position: relative;
            cursor: default;
            transition: var(--transition);
        }

        .project-card:hover,
        .project-card:focus-within {
            transform: translateY(-7px);
        }

        .project-card a {
            position: relative;
            z-index: 1;
        }

        .project-card .project-inner {
            box-shadow: 0 10px 30px -15px var(--navy-shadow);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            height: 100%;
            padding: 2rem 1.75rem;
            border-radius: var(--border-radius);
            background-color: var(--light-navy);
            transition: var(--transition);
            overflow: auto;
        }

        .project-card:hover .project-inner,
        .project-card:focus-within .project-inner {
            box-shadow: 0 20px 30px -15px var(--navy-shadow);
        }

        .project-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 35px;
        }

        .folder {
            color: var(--green);
        }

        .folder i {
            width: 40px;
            height: 40px;
        }

        .project-links {
            display: flex;
            align-items: center;
            margin-right: -10px;
            color: var(--light-slate);
        }

        .project-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5px 7px;
        }

        .project-links a:hover,
        .project-links a:focus {
            color: var(--green);
        }

        .project-card .project-title {
            margin: 0 0 10px;
            color: var(--lightest-slate);
            font-size: var(--fz-xxl);
        }

        .project-card .project-title a {
            position: static;
        }

        .project-card .project-title a:before {
            content: "";
            display: block;
            position: absolute;
            z-index: 0;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .project-card .project-description {
            color: var(--light-slate);
            font-size: 17px;
        }

        .project-card .project-description p {
            margin: 0;
        }

        .project-card .project-tech-list {
            display: flex;
            align-items: flex-end;
            flex-grow: 1;
            flex-wrap: wrap;
            padding: 0;
            margin: 20px 0 0;
            list-style: none;
        }

        .project-card .project-tech-list li {
            font-family: var(--font-mono);
            font-size: var(--fz-xxs);
            line-height: 1.75;
        }

        .project-card .project-tech-list li:not(:last-of-type) {
            margin-right: 15px;
        }

        /* Contact Section */
        .contact {
            max-width: 600px;
            margin: 0 auto 100px;
            text-align: center;
        }

        .contact .section-title {
            margin-bottom: 20px;
        }

        .contact-title {
            font-size: clamp(40px, 5vw, 60px);
            color: var(--lightest-slate);
        }

        .contact-description {
            margin-bottom: 50px;
        }

        .contact-button {
            color: var(--green);
            background-color: transparent;
            border: 1px solid var(--green);
            border-radius: var(--border-radius);
            padding: 1.25rem 1.75rem;
            font-size: var(--fz-sm);
            font-family: var(--font-mono);
            line-height: 1;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .contact-button:hover,
        .contact-button:focus,
        .contact-button:active {
            background-color: var(--green-tint);
            outline: none;
        }

        /* Footer */
        .footer {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            height: auto;
            min-height: 70px;
            padding: 15px;
            text-align: center;
        }

        .social-links {
            display: none;
        }

        .footer-text {
            color: var(--light-slate);
            font-family: var(--font-mono);
            font-size: var(--fz-xxs);
            line-height: 1;
        }

        .footer-text p {
            margin: 0;
        }

        .footer-text a {
            color: inherit;
            text-decoration: none;
        }

        .footer-text a:hover,
        .footer-text a:focus {
            color: var(--green);
        }

        /* Fixed Social Links */
        .social-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: fixed;
            bottom: 0;
            left: 40px;
            right: auto;
            z-index: 10;
            color: var(--light-slate);
        }

        .social-links:after {
            content: "";
            display: block;
            width: 1px;
            height: 90px;
            margin: 0 auto;
            background-color: var(--light-slate);
        }

        .social-links li {
            list-style: none;
        }

        .social-links a {
            padding: 10px;
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover,
        .social-links a:focus {
            color: var(--green);
            transform: translateY(-3px);
        }

        .social-links i {
            width: 20px;
            height: 20px;
        }

        /* Responsive Design */
        @media (max-width: 1080px) {
            main {
                padding: 0 100px;
            }
        }

        @media (max-width: 768px) {
            main {
                padding: 0 50px;
            }

            .navbar {
                padding: 0px 25px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .jobs-container {
                flex-direction: column;
            }

            .jobs-tabs {
                display: flex;
                overflow-x: auto;
                width: calc(100% + 100px);
                padding-left: 50px;
                margin-left: -50px;
                margin-bottom: 30px;
            }

            .tab-button {
                border-left: 0;
                border-bottom: 2px solid var(--lightest-navy);
                min-width: var(--tab-width);
                padding: 0 15px 2px;
            }

            .tab-button.active {
                border-left: 0;
                border-bottom-color: var(--green);
            }

            .jobs-content {
                margin-left: 0;
            }

            .featured-project {
                flex-direction: column;
                gap: 20px;
                margin-bottom: 70px;
            }

            .project-image,
            .project-content {
                max-width: 100%;
            }

            .project-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .project-links {
                justify-content: flex-start;
                margin-left: 0;
                margin-right: 0;
            }

            .other-projects-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }

            .social-links {
                display: none;
            }

            .footer .social-links {
                display: flex;
                flex-direction: row;
                position: relative;
                bottom: auto;
                left: auto;
                right: auto;
                z-index: auto;
                margin-bottom: 10px;
            }

            .footer .social-links:after {
                display: none;
            }
        }

        @media (max-width: 480px) {
            main {
                padding: 0 25px;
            }

            .navbar {
                padding: 0px 15px;
            }

            .other-projects-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Scroll animations fix */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }