
        :root {
            --bg: #0d1117;
            --bg-secondary: #161b22;
            --bg-tertiary: #21262d;
            --border: #30363d;
            --border-hover: #484f58;
            --text: #c9d1d9;
            --text-muted: #8b949e;
            --keyword: #ff7b72;
            --string: #a5d6ff;
            --function: #d2a8ff;
            --comment: #8b949e;
            --number: #79c0ff;
            --operator: #ff7b72;
            --property: #7ee787;
            --tag: #7ee787;
            --attr: #79c0ff;
            --class: #ffa657;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'JetBrains Mono', monospace;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--bg);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--border-hover);
        }
        
        ::selection {
            background: rgba(255, 123, 114, 0.3);
            color: var(--text);
        }
        
        /* Syntax Colors */
        .keyword { color: var(--keyword); }
        .string { color: var(--string); }
        .function { color: var(--function); }
        .comment { color: var(--comment); font-style: italic; }
        .number { color: var(--number); }
        .operator { color: var(--operator); }
        .property { color: var(--property); }
        .tag { color: var(--tag); }
        .attr { color: var(--attr); }
        .class-name { color: var(--class); }
        
        /* Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Header */
        .header {
            border-bottom: 1px solid var(--border);
            background: rgba(13, 17, 23, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            text-decoration: none;
            color: var(--text);
        }
        
        .nav {
            display: flex;
            gap: 2rem;
        }
        
        .nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav a:hover {
            color: var(--text);
        }
        
        .nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--keyword);
            transition: width 0.3s;
        }
        
        .nav a:hover::after {
            width: 100%;
        }
        
        main {
            margin-top: 60px;
        }
        
        .section {
            padding: 5rem 0;
            border-bottom: 1px solid var(--border);
        }
        
        .section:last-child {
            border-bottom: none;
        }
        
        /* Code Block Styling */
        .code-block {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            margin: 1.5rem 0;
        }
        
        .code-header {
            background: var(--bg-tertiary);
            padding: 0.75rem 1rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .code-dots {
            display: flex;
            gap: 0.5rem;
        }
        
        .code-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        
        .code-dot.red { background: #ff5f56; }
        .code-dot.yellow { background: #ffbd2e; }
        .code-dot.green { background: #27c93f; }
        
        .code-filename {
            margin-left: auto;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        
        .code-content {
            padding: 1.5rem;
            overflow-x: auto;
            font-size: 0.9rem;
            line-height: 1.8;
        }
        
        .line-number {
            color: var(--text-muted);
            display: inline-block;
            width: 2rem;
            text-align: right;
            margin-right: 1rem;
            user-select: none;
            opacity: 0.5;
        }
        
        .code-line {
            display: flex;
            align-items: flex-start;
        }
        
        /* Hero */
        .hero {
            min-height: calc(100vh - 60px);
            display: flex;
            align-items: center;
            padding: 4rem 0;
        }
        
        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(255, 123, 114, 0.1);
            border: 1px solid rgba(255, 123, 114, 0.3);
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--keyword);
            margin-bottom: 1.5rem;
        }
        
        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .hero p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin-bottom: 2rem;
            font-family: 'Inter', sans-serif;
        }
        
        .cursor {
            display: inline-block;
            width: 10px;
            height: 1.2em;
            background: var(--keyword);
            animation: blink 1s infinite;
            vertical-align: middle;
            margin-left: 2px;
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        
        /* ============================================
           ENHANCED PROJECT SHOWCASE - MACBOOK WINDOW
           ============================================ */
        
        .projects-showcase {
            display: grid;
            gap: 3rem;
            margin-top: 2rem;
        }
        
        .project-window {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .project-window:hover {
            border-color: var(--border-hover);
            transform: translateY(-5px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }
        
        .window-header {
            background: var(--bg-tertiary);
            padding: 1rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid var(--border);
        }
        
        .window-controls {
            display: flex;
            gap: 0.5rem;
        }
        
        .window-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            transition: transform 0.2s;
        }
        
        .window-dot:hover {
            transform: scale(1.2);
        }
        
        .window-dot.close { background: #ff5f57; }
        .window-dot.minimize { background: #febc2e; }
        .window-dot.maximize { background: #28c840; }
        
        .window-title {
            margin-left: 1rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .window-actions {
            margin-left: auto;
            display: flex;
            gap: 0.75rem;
        }
        
        .window-btn {
            padding: 0.25rem 0.75rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 0.75rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .window-btn:hover {
            border-color: var(--keyword);
            color: var(--keyword);
        }
        
        .window-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            min-height: 400px;
        }
        
        @media (max-width: 968px) {
            .window-content {
                grid-template-columns: 1fr;
            }
        }
        
        /* Browser/Preview Area */
        .preview-area {
            background: linear-gradient(135deg, #1a1f2e 0%, #0d1117 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .browser-bar {
            background: var(--bg-tertiary);
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            border-bottom: 1px solid var(--border);
        }
        
        .browser-nav {
            display: flex;
            gap: 0.5rem;
        }
        
        .browser-btn {
            width: 24px;
            height: 24px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 0.75rem;
        }
        
        .browser-address {
            flex: 1;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 0.4rem 0.75rem;
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .browser-lock {
            color: var(--property);
        }
        
        .project-image-container {
            flex: 1;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        
        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid var(--border);
            transition: transform 0.5s;
        }
        
        .project-window:hover .project-image {
            transform: scale(1.02);
        }
        
        .image-placeholder {
            width: 100%;
            height: 100%;
            min-height: 250px;
            background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg) 100%);
            border: 2px dashed var(--border);
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            gap: 1rem;
        }
        
        .placeholder-icon {
            width: 64px;
            height: 64px;
            border: 3px solid var(--border);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        
        .placeholder-text {
            font-size: 0.9rem;
            text-align: center;
        }
        
        .placeholder-hint {
            font-size: 0.75rem;
            color: var(--comment);
        }
        
        /* Project Info Area */
        .info-area {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            border-left: 1px solid var(--border);
        }
        
        @media (max-width: 968px) {
            .info-area {
                border-left: none;
                border-top: 1px solid var(--border);
            }
        }
        
        .project-header-info {
            margin-bottom: 1.5rem;
        }
        
        .project-number {
            font-size: 0.75rem;
            color: var(--keyword);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .project-name {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text);
        }
        
        .project-role {
            font-size: 0.9rem;
            color: var(--function);
        }
        
        .project-desc {
            color: var(--text-muted);
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            flex: 1;
        }
        
        .project-tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .tech-pill {
            padding: 0.4rem 0.875rem;
            background: rgba(121, 192, 255, 0.1);
            border: 1px solid rgba(121, 192, 255, 0.2);
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--attr);
            transition: all 0.2s;
        }
        
        .tech-pill:hover {
            background: rgba(121, 192, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .project-links {
            display: flex;
            gap: 1rem;
        }
        
        .project-link {
            flex: 1;
            padding: 0.875rem;
            background: var(--bg-tertiary);
            border: 1px solid var(--border);
            border-radius: 8px;
            text-align: center;
            text-decoration: none;
            color: var(--text);
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .project-link:hover {
            border-color: var(--keyword);
            color: var(--keyword);
            background: rgba(255, 123, 114, 0.05);
        }
        
        .project-link.primary {
            background: var(--keyword);
            color: var(--bg);
            border-color: var(--keyword);
        }
        
        .project-link.primary:hover {
            background: transparent;
            color: var(--keyword);
        }
        
        /* ============================================
           SKILLS WITH CODE SNIPPETS
           ============================================ */
        
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .skill-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .skill-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-3px);
        }
        
        .skill-header {
            padding: 1rem 1.25rem;
            background: var(--bg-tertiary);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .skill-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--keyword), var(--function));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
            color: var(--bg);
        }
        
        .skill-title {
            font-weight: 600;
            font-size: 1rem;
        }
        
        .skill-level-text {
            margin-left: auto;
            font-size: 0.875rem;
            color: var(--number);
            font-weight: 600;
        }
        
        .skill-code {
            padding: 1rem 1.25rem;
            font-size: 0.8rem;
            line-height: 1.6;
            overflow-x: auto;
        }
        
        .skill-code code {
            font-family: 'JetBrains Mono', monospace;
        }
        
        .skill-bar-container {
            padding: 0 1.25rem 1.25rem;
        }
        
        .skill-bar {
            height: 6px;
            background: var(--bg-tertiary);
            border-radius: 3px;
            overflow: hidden;
        }
        
        .skill-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--keyword), var(--function));
            width: 0;
            transition: width 1s ease-out;
            border-radius: 3px;
        }
        
        /* Experience Timeline */
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border);
        }
        
        .timeline-item {
            position: relative;
            padding-bottom: 2.5rem;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 0.5rem;
            width: 10px;
            height: 10px;
            background: var(--bg);
            border: 2px solid var(--keyword);
            border-radius: 50%;
            transform: translateX(-4px);
        }
        
        .timeline-item.active::before {
            background: var(--keyword);
            box-shadow: 0 0 10px var(--keyword);
        }
        
        .timeline-date {
            font-size: 0.8rem;
            color: var(--keyword);
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .timeline-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }
        
        .timeline-company {
            color: var(--function);
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
        }
        
        .timeline-desc {
            color: var(--text-muted);
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            font-size: 0.95rem;
        }
        
        /* Contact */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .contact-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s;
            display: block;
        }
        
        .contact-card:hover {
            border-color: var(--string);
            transform: translateY(-3px);
        }
        
        .contact-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }
        
        .contact-value {
            font-size: 1rem;
            font-weight: 600;
            color: var(--string);
        }
        
        /* Footer */
        .footer {
            text-align: center;
            padding: 3rem 0;
            color: var(--text-muted);
            font-size: 0.875rem;
            border-top: 1px solid var(--border);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav {
                display: none;
            }
            
            .skills-grid {
                grid-template-columns: 1fr;
            }
            
            .window-content {
                grid-template-columns: 1fr;
            }
            
            .info-area {
                border-left: none;
                border-top: 1px solid var(--border);
            }
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }


          /* <!-- Project 1: DigiPulse360 -->
                            <div class="project-window fade-in">
                                <div class="window-header">
                                    <div class="window-controls">
                                        <div class="window-dot close"></div>
                                        <div class="window-dot minimize"></div>
                                        <div class="window-dot maximize"></div>
                                    </div>
                                    <div class="window-title">
                                        <span>🔴</span>
                                        <span>DigiPulse360 - ERP Platform</span>
                                    </div>
                                    <div class="window-actions">
                                        <button class="window-btn">Live Demo</button>
                                        <button class="window-btn">GitHub</button>
                                    </div>
                                </div>
                                <div class="window-content">
                                    <div class="preview-area">
                                        <div class="browser-bar">
                                            <div class="browser-nav">
                                                <div class="browser-btn">←</div>
                                                <div class="browser-btn">→</div>
                                                <div class="browser-btn">↻</div>
                                            </div>
                                            <div class="browser-address">
                                                <span class="browser-lock">🔒</span>
                                                <span>digipulse360.com/dashboard</span>
                                            </div>
                                        </div>
                                        <div class="project-image-container">
                                            <!-- REPLACE THIS WITH YOUR PROJECT IMAGE -->
                                            <div class="image-placeholder">
                                                <div class="placeholder-icon">🖼️</div>
                                                <div class="placeholder-text">DigiPulse360 Dashboard Screenshot</div>
                                                <div class="placeholder-hint">Replace src with: img/digipulse360.jpg</div>
                                            </div>
                                            <!-- <img src="img/digipulse360.jpg" alt="DigiPulse360" class="project-image"> -->
                                        </div>
                                    </div>
                                    <div class="info-area">
                                        <div class="project-header-info">
                                            <div class="project-number">PROJECT 01</div>
                                            <h3 class="project-name">DigiPulse360</h3>
                                            <div class="project-role">Full Stack Developer @ IFDA Institute</div>
                                        </div>
                                        <p class="project-desc">
                                            End-to-end ERP platform featuring real-time analytics dashboards, 
                                            comprehensive CMS, user management, and RESTful APIs. Built from 
                                            scratch using MERN stack with focus on scalability and performance.
                                        </p>
                                        <div class="project-tech-stack">
                                            <span class="tech-pill">MongoDB</span>
                                            <span class="tech-pill">Express</span>
                                            <span class="tech-pill">React</span>
                                            <span class="tech-pill">Node.js</span>
                                            <span class="tech-pill">REST APIs</span>
                                        </div>
                                        <div class="project-links">
                                            <a href="#" class="project-link primary">View Live →</a>
                                            <a href="#" class="project-link">GitHub</a>
                                        </div>
                                    </div>
                                </div>
                            </div> */