/* Global Reset and Base Styles */
        html, body {
            height: 100vh;
            min-height: 100vh;
            margin: 0;
            padding: 0;
        }

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

        body {
            font-family: 'Fira Code', 'Courier New', monospace;
            background: #0a0a0a;
            color: #00ff41;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Matrix Background */
        .matrix-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #000000 0%, #001100 50%, #000000 100%);
            z-index: -2;
        }

        .matrix-rain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .matrix-column {
            position: absolute;
            top: -100px;
            font-family: 'Share Tech Mono', monospace;
            font-size: 14px;
            color: #00ff41;
            animation: matrix-fall linear infinite;
            text-shadow: 0 0 3px #00ff41;
            opacity: 0.4;
            will-change: transform;
        }

        @keyframes matrix-fall {
            to {
                transform: translateY(100vh);
            }
        }

        .matrix-char {
            display: block;
            opacity: 1;
            animation: matrix-fade 2s ease-in-out infinite;
        }

        @keyframes matrix-fade {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 0.2; }
        }

        /* Terminal Grid Pattern */
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 255, 65, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 65, 0.03) 1px, transparent 1px);
            background-size: 20px 20px;
            z-index: -1;
            pointer-events: none;
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #00ff41, #ff0040, #00ff41);
            z-index: 9999;
            transition: width 0.1s ease;
            box-shadow: 0 0 10px #00ff41;
        }

        /* Sections */
        section {
            min-height: 100vh;
            padding: 6rem 2rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Section Titles */
        .section-title {
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #00ff41;
            position: relative;
            font-family: 'Share Tech Mono', monospace;
            text-shadow: 0 0 15px #00ff41;
        }

        .section-title::before {
            content: '# ';
            color: #666;
        }

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

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #000;
        }

        ::-webkit-scrollbar-thumb {
            background: #00ff41;
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #ff0040;
        }

        .noscroll { 
            overflow: hidden !important; 
            height: 100vh !important; 
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 255, 65, 0.2);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(0, 0, 0, 0.98);
            padding: 0.5rem 2rem;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #00ff42;
            text-decoration: none;
            font-family: 'Share Tech Mono', monospace;
            text-shadow: 0 0 10px #00ff41;
            letter-spacing: 2px;
        }

        .logo::before {
            content: '> ';
            color: #ff0040;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #00ff41;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border: 1px solid transparent;
            border-radius: 4px;
            font-family: 'Fira Code', monospace;
        }

        .nav-links a:hover {
            color: #ff0040;
            border-color: #ff0040;
            box-shadow: 0 0 10px rgba(255, 0, 64, 0.3);
            text-shadow: 0 0 5px #ff0040;
        }

        .nav-links a.active {
            color: #ff0040;
            border-color: #ff0040;
            box-shadow: 0 0 15px rgba(255, 0, 64, 0.5);
        }

        /* Navigation Right Side */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Version Display */
        .version-display {
            position: relative;
            display: flex;
            align-items: center;
            padding: 0.5rem 0.8rem;
            background: rgba(0, 255, 65, 0.1);
            border: 1px solid rgba(0, 255, 65, 0.3);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
            backdrop-filter: blur(5px);
        }

        .version-display:hover {
            background: rgba(0, 255, 65, 0.2);
            border-color: #00ff41;
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
            transform: translateY(-2px);
        }

        .version-label {
            color: #ff0040;
            font-weight: bold;
            margin-right: 0.2rem;
        }

        .version-number {
            color: #00ff41;
            font-weight: bold;
            text-shadow: 0 0 3px #00ff41;
        }

        /* Version Tooltip */
        .version-tooltip {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            border: 1px solid #00ff41;
            border-radius: 8px;
            padding: 1rem;
            min-width: 300px;
            box-shadow: 0 5px 20px rgba(0, 255, 65, 0.2);
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .version-display:hover .version-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .version-details {
            color: #00ff41;
            font-family: 'Fira Code', monospace;
            font-size: 0.8rem;
            line-height: 1.5;
        }

        .version-title {
            font-size: 1rem;
            font-weight: bold;
            color: #ff0040;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 3px #ff0040;
        }

        .version-date {
            color: #00ff41;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .version-changes {
            border-top: 1px solid rgba(0, 255, 65, 0.2);
            padding-top: 0.8rem;
        }

        .change-title {
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: #00ff41;
        }

        .version-changes ul {
            list-style: none;
            padding-left: 0;
        }

        .version-changes li {
            margin-bottom: 0.3rem;
            padding-left: 1rem;
            position: relative;
        }

        .version-changes li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #ff0040;
            font-weight: bold;
        }

        /* Mobile Menu Toggle */
        .mobile-menu,
        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            background: rgba(0, 255, 65, 0.1);
            border: 1px solid rgba(0, 255, 65, 0.3);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .mobile-menu:hover,
        .mobile-toggle:hover {
            background: rgba(0, 255, 65, 0.2);
            border-color: #00ff41;
        }

        .mobile-menu i,
        .mobile-toggle span {
            color: #00ff41;
            font-size: 1.2rem;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: #00ff41;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 1px;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Hero Section */
        .hero {
            position: relative;
            flex-direction: column;
            text-align: center;
            padding: 3rem 2rem;
            margin: 2rem auto;
            max-width: 1200px;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            width: 100%;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00ff41, #ff0040, #00ff41);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 3s ease-in-out infinite;
            font-family: 'Share Tech Mono', monospace;
            text-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
            letter-spacing: 1px;
            text-align: center;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            display: block;
        }

        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: #888;
            font-family: 'Fira Code', monospace;
        }

        .typing-effect {
            border-right: 2px solid #00ff41;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { border-color: #00ff41; }
            51%, 100% { border-color: transparent; }
        }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 1rem 2rem;
            border: 2px solid #00ff41;
            background: transparent;
            color: #00ff41;
            text-decoration: none;
            border-radius: 6px;
            font-family: 'Fira Code', monospace;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before, .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before, .btn-secondary:hover::before {
            left: 100%;
        }

        .btn-primary:hover, .btn-secondary:hover {
            color: #000;
            background: #00ff41;
            box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
            transform: translateY(-2px);
        }

        .btn-secondary {
            border-color: #ff0040;
            color: #ff0040;
        }

        .btn-secondary:hover {
            background: #ff0040;
            box-shadow: 0 0 20px rgba(255, 0, 64, 0.5);
        }

        /* Quick Actions */
        .quick-actions {
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 998;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .quick-action {
            width: 50px;
            height: 50px;
            border: 2px solid #00ff41;
            background: rgba(0, 0, 0, 0.8);
            color: #00ff41;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            text-decoration: none;
        }

        .quick-action:hover {
            background: #00ff41;
            color: #000;
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
        }

        /* About Section */
        .about {
            flex-direction: column;
            margin: 2rem auto;
            padding: 3rem;
            max-width: 1200px;
            text-align: center;
            align-items: center;
            justify-content: center;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            width: 100%;
        }

        .about-text {
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .about-text h3::before {
            content: 'def ';
            color: #ff0040;
        }

        .about-text h3::after {
            content: '():';
            color: #ffff00;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: #ccc;
            padding-left: 2rem;
        }

        .highlight {
            color: #00ff41;
            font-weight: bold;
            text-shadow: 0 0 5px #00ff41;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .skill-category {
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid #00ff41;
            border-radius: 10px;
            padding: 1.5rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .skill-category:hover {
            border-color: #ff0040;
            box-shadow: 0 0 15px rgba(255, 0, 64, 0.3);
        }

        .skill-category h4 {
            color: #00ff41;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            font-family: 'Share Tech Mono', monospace;
        }

        .skill-category h4::before {
            content: 'export ';
            color: #ff0040;
        }

        .skill-category h4::after {
            content: '=(';
            color: #ffff00;
        }

        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .skill-tags::after {
            content: ')';
            color: #ffff00;
            font-family: 'Fira Code', monospace;
            font-weight: bold;
            margin-left: 0.5rem;
        }

        .skill-tag {
            background: rgba(0, 255, 65, 0.2);
            color: #00ff41;
            padding: 0.4rem 0.8rem;
            border-radius: 3px;
            font-size: 0.85rem;
            font-weight: 500;
            font-family: 'Fira Code', monospace;
            border: 1px solid rgba(0, 255, 65, 0.5);
        }

        .skill-item {
            background: rgba(0, 255, 65, 0.1);
            border: 1px solid #00ff41;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .skill-item:hover {
            background: rgba(0, 255, 65, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 255, 65, 0.3);
        }

        .skill-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: #00ff41;
        }

        /* Experience Section */
        .experience {
            flex-direction: column;
            position: relative;
            z-index: 5;
            text-align: center;
            align-items: center;
            justify-content: center;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 3rem;
        }

        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 2rem auto;
            z-index: 6;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, #00ff41, #ff0040, #00ff41);
            box-shadow: 0 0 10px #00ff41;
        }

        .timeline-item {
            position: relative;
            margin: 3rem 0;
            width: 50%;
            padding: 0 2rem;
            cursor: pointer;
            z-index: 10;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            text-align: left;
        }

        .timeline-content {
            background: rgba(0, 0, 0, 0.9);
            border: 2px solid #00ff41;
            border-radius: 10px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            z-index: 11;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 10px;
            right: 10px;
            width: 10px;
            height: 10px;
            background: #ff0040;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .timeline-content:hover {
            border-color: #ff0040;
            box-shadow: 0 0 20px rgba(255, 0, 64, 0.3);
            transform: scale(1.02);
        }

        .timeline-dot {
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: #00ff41;
            border: 3px solid #000;
            border-radius: 50%;
            z-index: 1;
            box-shadow: 0 0 10px #00ff41;
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            right: -10px;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            left: -10px;
        }

        .job-title {
            color: #00ff41;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-family: 'Share Tech Mono', monospace;
        }

        .company {
            color: #ffff00;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            font-family: 'Fira Code', monospace;
        }

        .date-location {
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            font-style: italic;
            font-family: 'Fira Code', monospace;
        }

        .job-description {
            color: #cccccc;
            line-height: 1.6;
            font-family: 'Fira Code', monospace;
        }

        /* Education Section */
        .education {
            flex-direction: column;
            text-align: center;
            align-items: center;
            justify-content: center;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 3rem;
        }

        .education-card {
            background: rgba(0, 0, 0, 0.6);
            border: 2px solid #00ff41;
            border-radius: 15px;
            padding: 3.5rem;
            backdrop-filter: blur(10px);
            max-width: 800px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .education-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 255, 65, 0.3);
            border-color: #ff0040;
        }

        .education-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: #001a0a;
            z-index: -1;
            border-radius: 15px;
            box-shadow: 0 0 30px 5px #00ff41;
            opacity: 0.7;
        }

        .education-content {
            position: relative;
            z-index: 1;
        }

        .university-name {
            font-size: 2.2rem;
            color: #00ff41;
            margin-bottom: 1rem;
            font-weight: 600;
            font-family: 'Share Tech Mono', monospace;
            text-shadow: 0 0 15px #00ff41;
            line-height: 1.2;
        }

        .degree {
            font-size: 1.5rem;
            color: #ffff00;
            margin-bottom: 2rem;
            font-weight: 500;
            font-family: 'Fira Code', monospace;
            line-height: 1.4;
        }

        .education-stats {
            display: flex;
            justify-content: space-around;
            margin: 3rem 0;
            flex-wrap: wrap;
            gap: 2.5rem;
            padding: 2rem 0;
            border-top: 1px solid rgba(0, 255, 65, 0.3);
            border-bottom: 1px solid rgba(0, 255, 65, 0.3);
        }

        .edu-stat {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .edu-stat:hover {
            transform: scale(1.1);
        }

        .edu-stat .value {
            font-size: 2.5rem;
            color: #00ff41;
            font-weight: bold;
            display: block;
            font-family: 'Share Tech Mono', monospace;
            text-shadow: 0 0 15px #00ff41;
            margin-bottom: 0.5rem;
        }

        .edu-stat .label {
            color: #cccccc;
            font-family: 'Fira Code', monospace;
        }

        .coursework {
            margin-top: 3rem;
            text-align: left;
            padding-top: 2rem;
        }

        .coursework h4 {
            color: #00ff41;
            margin-bottom: 1.5rem;
            font-family: 'Share Tech Mono', monospace;
            font-size: 1.2rem;
            text-shadow: 0 0 5px #00ff41;
        }

        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1rem;
        }

        .course {
            background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 255, 65, 0.2));
            padding: 0.8rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-family: 'Fira Code', monospace;
            border: 1px solid rgba(0, 255, 65, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .course:hover {
            background: linear-gradient(135deg, rgba(0, 255, 65, 0.2), rgba(0, 255, 65, 0.3));
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 255, 65, 0.2);
        }

        /* Projects Section */
        .projects {
            flex-direction: column;
            margin: 2rem auto;
            padding: 3rem;
            max-width: 1200px;
            text-align: center;
            align-items: center;
            justify-content: center;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            width: 100%;
        }

        .project-card {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(0, 255, 65, 0.3);
            border-radius: 12px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(8px);
            cursor: pointer;
            z-index: 1;
            margin-bottom: 1rem;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
            transition: left 0.5s;
        }

        .project-card:hover::before {
            left: 100%;
        }

        .project-card:hover {
            border-color: #ff0040;
            box-shadow: 0 0 20px rgba(255, 0, 64, 0.3);
            transform: translateY(-5px);
        }

        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .project-card h3 {
            color: #00ff41;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            position: relative;
            z-index: 1;
            font-family: 'Share Tech Mono', monospace;
            line-height: 1.4;
        }

        .project-status {
            background: rgba(255, 0, 64, 0.2);
            color: #ff0040;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            font-family: 'Fira Code', monospace;
            border: 1px solid #ff0040;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .project-title {
            font-size: 1.5rem;
            color: #00ff41;
            margin-bottom: 1.2rem;
            font-family: 'Share Tech Mono', monospace;
        }

        .project-description {
            color: #cccccc;
            margin-bottom: 2rem;
            line-height: 1.7;
            font-size: 0.95rem;
            font-family: 'Fira Code', monospace;
        }

        .project-card p {
            color: #cccccc;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-family: 'Fira Code', monospace;
            font-size: 0.95rem;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 2rem 0;
            padding: 1rem 0;
            border-top: 1px solid rgba(0, 255, 65, 0.2);
            border-bottom: 1px solid rgba(0, 255, 65, 0.2);
        }

        .tech-tag {
            background: linear-gradient(135deg, rgba(0, 255, 65, 0.2), rgba(0, 255, 65, 0.3));
            color: #00ff41;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.8rem;
            font-family: 'Fira Code', monospace;
            border: 1px solid rgba(0, 255, 65, 0.5);
            font-weight: 500;
            transition: all 0.3s ease;
            text-shadow: 0 0 3px rgba(0, 255, 65, 0.5);
        }

        .tech-tag:hover {
            background: linear-gradient(135deg, rgba(0, 255, 65, 0.4), rgba(0, 255, 65, 0.5));
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 255, 65, 0.3);
        }

        .project-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
            padding-top: 1rem;
        }

        .project-links a {
            color: #00ff41;
            text-decoration: none;
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            font-weight: 500;
            text-transform: lowercase;
        }

        .project-links a:hover {
            color: #ff0040;
            text-shadow: 0 0 5px rgba(255, 0, 64, 0.5);
        }

        /* Terminal Section */
        .terminal-section {
            flex-direction: column;
            background: rgba(0, 0, 0, 0.9);
            padding: 4rem 2rem;
        }

        .terminal-container {
            max-width: 900px;
            width: 100%;
            background: #000;
            border: 2px solid #00ff41;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
        }

        .terminal-header {
            background: rgba(0, 255, 65, 0.1);
            padding: 1rem;
            border-bottom: 1px solid #00ff41;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .terminal-controls {
            display: flex;
            gap: 0.5rem;
        }

        .terminal-button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .btn-close { background: #ff5555; }
        .btn-minimize { background: #ffb86c; }
        .btn-maximize { background: #50fa7b; }

        .terminal-title {
            color: #00ff41;
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
        }

        .terminal-body {
            padding: 1.5rem;
            height: 400px;
            overflow-y: auto;
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
            background: #000;
        }

        .terminal-line {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .terminal-neo-container {
            position: absolute;
            top: 50px;
            right: 25px;
            z-index: 5;
        }

        .terminal-neo-image {
            width: 140px;
            height: 140px;
            object-fit: cover;
            border-radius: 10px;
            border: 2px solid #00ff41;
            display: block;
        }

        .terminal-prompt {
            color: #00ff41;
            margin-right: 0.5rem;
        }

        .terminal-input {
            background: transparent;
            border: none;
            color: #00ff41;
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
            flex: 1;
            outline: none;
            caret-color: #00ff41;
        }

        .terminal-output {
            color: #ccc;
            white-space: pre-wrap;
            margin-left: 2rem;
        }

        .terminal-error {
            color: #ff5555;
        }

        .terminal-success {
            color: #50fa7b;
        }

        /* AI Chat Section */
        .ai-chat {
            flex-direction: column;
            background: rgba(0, 17, 0, 0.5);
            padding: 4rem 2rem;
        }

        .chat-container {
            max-width: 800px;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid #00ff41;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
        }

        .chat-header {
            background: rgba(0, 255, 65, 0.1);
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #00ff41;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .ai-status {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #00ff41;
            animation: pulse 2s infinite;
        }

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

        .chat-title {
            color: #00ff41;
            font-family: 'Share Tech Mono', monospace;
            font-size: 1.1rem;
        }

        .chat-messages {
            height: 400px;
            overflow-y: auto;
            padding: 1rem;
            background: #000;
        }

        .message {
            margin-bottom: 1rem;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            max-width: 80%;
            word-wrap: break-word;
        }

        .message.user {
            background: rgba(0, 255, 65, 0.1);
            border: 1px solid rgba(0, 255, 65, 0.3);
            margin-left: auto;
            color: #00ff41;
        }

        .message.ai {
            background: rgba(255, 0, 64, 0.1);
            border: 1px solid rgba(255, 0, 64, 0.3);
            color: #ff0040;
        }

        .message-time {
            font-size: 0.7rem;
            opacity: 0.7;
            margin-top: 0.3rem;
        }

        .chat-input-container {
            padding: 1rem;
            background: rgba(0, 0, 0, 0.5);
            border-top: 1px solid rgba(0, 255, 65, 0.3);
            display: flex;
            gap: 1rem;
        }

        .chat-input {
            flex: 1;
            background: transparent;
            border: 1px solid #00ff41;
            color: #00ff41;
            padding: 0.8rem;
            border-radius: 6px;
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .chat-input:focus {
            border-color: #ff0040;
            box-shadow: 0 0 10px rgba(255, 0, 64, 0.3);
        }

        .chat-send {
            background: transparent;
            border: 2px solid #00ff41;
            color: #00ff41;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-family: 'Fira Code', monospace;
            transition: all 0.3s ease;
        }

        .chat-send:hover {
            background: #00ff41;
            color: #000;
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
        }

        /* Contact Section */
        .contact {
            flex-direction: column;
            margin: 2rem auto;
            padding: 3rem;
            max-width: 1200px;
            text-align: center;
            align-items: center;
            justify-content: center;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            width: 100%;
            align-items: start;
        }

        .contact-info {
            color: #ccc;
        }

        .contact-info h3 {
            color: #00ff41;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-family: 'Share Tech Mono', monospace;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(0, 255, 65, 0.05);
            border: 1px solid rgba(0, 255, 65, 0.2);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(0, 255, 65, 0.1);
            border-color: #00ff41;
            transform: translateX(10px);
        }

        .contact-icon {
            font-size: 1.5rem;
            color: #00ff41;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            color: #00ff41;
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            background: transparent;
            border: 2px solid rgba(0, 255, 65, 0.3);
            color: #00ff41;
            padding: 1rem;
            border-radius: 6px;
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
            outline: none;
            transition: all 0.3s ease;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #00ff41;
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
        }

        .form-group textarea {
            min-height: 120px;
        }

        /* Footer */
        footer {
            background: #000;
            border-top: 1px solid rgba(0, 255, 65, 0.3);
            padding: 3rem 2rem 1rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .social-link {
            color: #00ff41;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            color: #ff0040;
            transform: translateY(-3px);
            text-shadow: 0 0 10px #ff0040;
        }

        .footer-text {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .easter-egg {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .easter-egg:hover {
            color: #00ff41;
            text-shadow: 0 0 5px #00ff41;
        }        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-right {
                gap: 0.5rem;
            }

            .version-display {
                font-size: 0.8rem;
                padding: 0.4rem 0.6rem;
            }

            .version-tooltip {
                right: -10px;
                min-width: 280px;
                font-size: 0.75rem;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 2rem;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-menu,
            .mobile-toggle {
                display: flex;
            }

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

            .hero .subtitle {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .quick-actions {
                right: 1rem;
            }

            .quick-action {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .terminal-container,
            .chat-container {
                margin: 0 1rem;
            }

            .modal-content {
                margin: 10% auto;
                width: 95%;
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 4rem 1rem 2rem;
            }

            .hero {
                padding: 6rem 1rem 3rem;
            }

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

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

            .project-card {
                padding: 1.5rem;
            }

            .skills-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }

            .nav-container {
                padding: 0 1rem;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus Styles */
        button:focus,
        input:focus,
        textarea:focus,
        a:focus {
            outline: 2px solid #00ff41;
            outline-offset: 2px;
        }

        /* Selection Styles */
        ::selection {
            background: rgba(0, 255, 65, 0.3);
            color: #00ff41;
        }

        /* Print Styles */
        @media print {
            .matrix-bg,
            .matrix-rain,
            .grid-overlay,
            nav,
            .quick-actions {
                display: none !important;
            }
            
            body {
                background: white !important;
                color: black !important;
            }
        }

        .professional-stats {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 2rem;
        }

        @media (max-width: 700px) {
          .professional-stats {
            flex-direction: column;
            align-items: center;
            gap: 1.2rem;
          }
        }

        /* Engineer Type Typing Animation */
        #engineerType, #engineerTypeAbout {
            position: relative;
            color: #00ff41;
            font-weight: bold;
        }

        #engineerTypeAbout {
            display: inline-block;
            min-width: 120px;
            max-width: 160px;
            text-align: left;
            white-space: nowrap;
        }

        #engineerType::after, #engineerTypeAbout::after {
            content: '|';
            color: #00ff41;
            animation: blink 1s infinite;
            font-weight: normal;
        }

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

        /* Slight color emphasis for the typing text */
        #engineerType {
            text-shadow: 0 0 5px #00ff41;
        }

        #engineerTypeAbout {
            color: #00ff41;
            text-shadow: 0 0 3px #00ff41;
        }
