        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        /* Noise Texture Overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* Spotlight Cursor Effect */
        .spotlight {
            position: fixed;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .spotlight.active {
            opacity: 1;
        }

        /* Parallax Section Backgrounds */
        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.03) 0%, transparent 70%);
            pointer-events: none;
            will-change: transform;
            overflow: hidden;
        }

        :root {
            --primary: #ff6b00;
            --secondary: #2ecc71;
            --accent: #d4af37;
            --dark: #0a0a0a;
            --dark-800: #1a1a1a;
            --dark-700: #2a2a2a;
            --light: #FAF8F5;
            --glass: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --bg: var(--dark);
            --bg-light: var(--dark-700);
            --bg-lighter: var(--dark-800);
            --text: var(--light);
            --text-muted: rgba(250, 248, 245, 0.7);
            --success: var(--secondary);
            --border: var(--glass-border);
            --education-color: 255, 107, 0;
            --civic-color: 46, 204, 113;
            --productivity-color: 52, 152, 219;
            --analytics-color: 212, 175, 55;
            --security-color: 231, 76, 60;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        /* Skip to Content Link */
        .skip-to-content {
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 1rem 2rem;
            border-radius: 0 0 8px 8px;
            text-decoration: none;
            font-weight: 600;
            z-index: 10000;
            transition: top 0.3s ease;
        }
        .skip-to-content:focus {
            top: 0;
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }
        /* Focus States */
        *:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }
        *:focus:not(:focus-visible) {
            outline: none;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--dark-800);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        /* Particles Background */
        #particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 20s infinite linear;
        }
        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.3; }
            90% { opacity: 0.3; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        nav.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            padding: 1rem 5%;
        }
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }
        .nav-links a:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 4px;
            border-radius: 4px;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }
        .nav-links a.active::after {
            width: 100%;
            box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
        }

        /* Enhanced Active Section Indicator */
        .nav-links a.active {
            text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
        }

        /* Search Component */
        .search-container {
            position: relative;
            flex: 0 0 auto;
            min-width: 280px;
            max-width: 360px;
        }

        .search-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-icon-btn {
            position: absolute;
            left: 12px;
            width: 36px;
            height: 36px;
            min-width: 36px;
            min-height: 36px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: color 0.3s ease;
            border-radius: 50%;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .search-icon-btn:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }

        .search-icon-btn:hover {
            color: var(--primary);
            background: rgba(255, 107, 0, 0.1);
        }

        .search-icon-btn svg {
            width: 18px;
            height: 18px;
        }

        .search-input {
            width: 100%;
            padding: 10px 44px 10px 44px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            color: var(--light);
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .search-input::placeholder {
            color: var(--text-muted);
            opacity: 0.7;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 107, 0, 0.08);
            box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15), 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .search-input:not(:placeholder-shown) {
            padding-right: 80px;
        }

        .search-clear-btn {
            position: absolute;
            right: 8px;
            width: 32px;
            height: 32px;
            min-width: 32px;
            min-height: 32px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
            border-radius: 50%;
        }

        .search-clear-btn.visible {
            opacity: 1;
            visibility: visible;
        }

        .search-clear-btn:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }

        .search-clear-btn:hover {
            color: var(--light);
            background: rgba(255, 255, 255, 0.1);
        }

        .search-clear-btn svg {
            width: 16px;
            height: 16px;
        }

        /* Search Results Dropdown */
        .search-results {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: var(--dark-800);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            max-height: 400px;
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            z-index: 1002;
        }

        .search-results.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .search-results-header {
            padding: 12px 16px 8px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            border-bottom: 1px solid var(--glass-border);
        }

        .search-result-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 16px;
            text-decoration: none;
            color: var(--light);
            transition: background 0.2s ease;
            cursor: pointer;
            border-bottom: 1px solid transparent;
        }

        .search-result-item:last-child {
            border-bottom: none;
        }

        .search-result-item:hover,
        .search-result-item.highlighted {
            background: rgba(255, 107, 0, 0.1);
        }

        .search-result-item:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: -3px;
        }

        .search-result-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            min-height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            font-size: 0.9rem;
        }

        .search-result-icon.page {
            background: rgba(52, 152, 219, 0.15);
            color: #3498db;
        }

        .search-result-icon.project {
            background: rgba(255, 107, 0, 0.15);
            color: var(--primary);
        }

        .search-result-icon.blog {
            background: rgba(46, 204, 113, 0.15);
            color: var(--secondary);
        }

        .search-result-icon.vibes {
            background: rgba(212, 175, 55, 0.15);
            color: var(--accent);
        }

        .search-result-content {
            flex: 1;
            min-width: 0;
        }

        .search-result-title {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .search-result-title .highlight {
            background: rgba(255, 107, 0, 0.3);
            color: var(--primary);
            padding: 1px 4px;
            border-radius: 4px;
        }

        .search-result-description {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .search-result-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-top: 6px;
        }

        .search-result-tag {
            font-size: 0.7rem;
            padding: 2px 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            color: var(--text-muted);
        }

        .search-result-arrow {
            color: var(--text-muted);
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .search-result-item:hover .search-result-arrow {
            opacity: 1;
        }

        .search-result-arrow svg {
            width: 16px;
            height: 16px;
        }

        /* No Results */
        .search-no-results {
            padding: 24px 16px;
            text-align: center;
            color: var(--text-muted);
        }

        .search-no-results-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 12px;
            opacity: 0.5;
        }

        .search-no-results-text {
            font-size: 0.9rem;
        }

        /* Search Loading */
        .search-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .search-spinner {
            width: 24px;
            height: 24px;
            border: 2px solid var(--glass-border);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Search Keyboard Hints */
        .search-shortcuts {
            display: flex;
            gap: 8px;
            padding: 8px 16px;
            border-top: 1px solid var(--glass-border);
            justify-content: flex-end;
        }

        .search-shortcut {
            font-size: 0.7rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .search-shortcut kbd {
            padding: 2px 6px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--glass-border);
            border-radius: 4px;
            font-family: inherit;
        }

        /* Search Suggestions */
        .search-suggestions {
            padding: 12px 16px;
            border-top: 1px solid var(--glass-border);
        }

        .search-suggestions-label,
        .search-tips-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .search-suggestion-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .search-suggestion-tag {
            padding: 6px 12px;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid rgba(255, 107, 0, 0.3);
            border-radius: 20px;
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .search-suggestion-tag:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .search-suggestion-tag:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }

        /* Search Tips */
        .search-tips {
            padding: 12px 16px;
            border-top: 1px solid var(--glass-border);
            background: rgba(255, 255, 255, 0.02);
        }

        .search-tips ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .search-tips li {
            font-size: 0.8rem;
            color: var(--text-muted);
            padding: 4px 0;
            padding-left: 16px;
            position: relative;
        }

        .search-tips li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
        }

        /* Search Overlay Backdrop */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
            z-index: 1001;
        }

        .search-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Search Trigger */
        .mobile-search-trigger {
            display: none;
            position: absolute;
            right: 60px;
            width: 44px;
            height: 44px;
            min-width: 44px;
            min-height: 44px;
            background: transparent;
            border: none;
            cursor: pointer;
            color: var(--light);
            transition: color 0.3s ease;
            border-radius: 50%;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-search-trigger:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }

        .mobile-search-trigger:hover {
            color: var(--primary);
            background: rgba(255, 107, 0, 0.1);
        }

        .mobile-search-trigger svg {
            width: 20px;
            height: 20px;
        }

        /* Mobile Search Modal */
        .mobile-search-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--dark-800);
            padding: 1rem;
            z-index: 1002;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-search-modal.active {
            display: block;
            transform: translateY(0);
        }

        .mobile-search-input-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            padding: 8px 8px 8px 44px;
        }

        .mobile-search-back {
            position: absolute;
            left: 1rem;
            width: 44px;
            height: 44px;
            min-width: 44px;
            min-height: 44px;
            background: transparent;
            border: none;
            cursor: pointer;
            color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-search-back:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }

        .mobile-search-back svg {
            width: 20px;
            height: 20px;
        }

        .mobile-search-input {
            flex: 1;
            background: transparent;
            border: none;
            color: var(--light);
            font-size: 1rem;
            padding: 8px 0;
        }

        .mobile-search-input:focus {
            outline: none;
        }

        .mobile-search-input::placeholder {
            color: var(--text-muted);
        }

        .mobile-search-close {
            width: 36px;
            height: 36px;
            min-width: 36px;
            min-height: 36px;
            background: transparent;
            border: none;
            cursor: pointer;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .mobile-search-close:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }

        .mobile-search-close svg {
            width: 18px;
            height: 18px;
        }

        /* Responsive Search */
        @media (max-width: 1024px) {
            .search-container {
                min-width: 200px;
                max-width: 280px;
            }
        }

        @media (max-width: 900px) {
            .search-container {
                display: none;
            }

            .mobile-search-trigger {
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                display: none;
            }
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 44px;
            height: 44px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1001;
            padding: 10px;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }
        .hamburger:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 4px;
            border-radius: 8px;
        }
        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background: var(--light);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background: var(--light);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Mobile Navigation Overlay */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .mobile-nav-overlay.active {
            display: block;
            opacity: 1;
        }
        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            max-height: 100vh;
            background: var(--dark);
            border-left: 1px solid var(--glass-border);
            z-index: 1000;
            padding: 5rem 2rem 2rem;
            transition: right 0.3s ease;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        .mobile-nav.active {
            display: flex;
            flex-direction: column;
            right: 0;
        }
        .mobile-nav-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 48px;
            height: 48px;
            min-width: 48px;
            min-height: 48px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--light);
            transition: all 0.3s ease;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }
        .mobile-nav-close:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 4px;
        }
        .mobile-nav-close:hover {
            background: var(--primary);
            border-color: var(--primary);
        }
        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            flex-shrink: 0;
        }
        .mobile-nav-links a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            display: block;
            padding: 0.75rem 0.5rem;
            transition: color 0.3s ease;
            border-bottom: 1px solid transparent;
            min-height: 44px;
            display: flex;
            align-items: center;
        }
        .mobile-nav-links a:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 4px;
            border-radius: 4px;
            background: rgba(255, 107, 0, 0.1);
        }
        .mobile-nav-links a:hover,
        .mobile-nav-links a.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), #ff9500);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
        }

        .back-to-top svg {
            width: 24px;
            height: 24px;
            color: white;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 3rem 5% 0;
        }
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            width: 100%;
        }
        .hero-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.9rem;
            color: var(--primary);
            margin-bottom: 1rem;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            min-height: 1.5rem;
        }

        /* Typing Animation Styles */
        .typing-text {
            display: inline-block;
            white-space: nowrap;
            overflow: hidden;
        }

        .typing-cursor {
            display: inline-block;
            width: 3px;
            height: 1.2em;
            background: var(--primary);
            margin-left: 2px;
            animation: blink 1s step-end infinite;
            vertical-align: middle;
        }

        .typing-cursor.typing-complete {
            animation: blink 3s step-end infinite;
            opacity: 1;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--light), var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-subtitle {
            font-size: clamp(0.9rem, 2vw, 1.25rem);
            color: rgba(250, 248, 245, 0.7);
            margin-bottom: 2rem;
            max-width: 800px;
            line-height: 1.7;
        }
        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            justify-content: flex-start;
        }
        /* Desktop: Left aligned stats */
        @media (min-width: 769px) {
            .hero-stats {
                justify-content: flex-start;
            }
            .stat {
                text-align: left;
            }
        }
        /* Mobile: Center aligned stats */
        @media (max-width: 768px) {
            .hero-stats {
                justify-content: center;
                gap: 2rem;
                margin-bottom: 2rem;
            }
            .stat {
                text-align: center;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
        /* Small Mobile */
        @media (max-width: 480px) {
            .hero-stats {
                gap: 1.5rem;
            }
            .stat {
                flex: 0 0 100%;
            }
            .stat-number {
                font-size: 2.2rem;
            }
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            font-family: 'JetBrains Mono', monospace;
        }
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero-tech-preview {
            margin-bottom: 2rem;
        }
        .tech-preview-label {
            font-size: 0.9rem;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        .tech-preview-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .tech-preview-tag {
            padding: 0.5rem 1rem;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid rgba(255, 107, 0, 0.3);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--light);
            transition: all 0.3s ease;
        }
        .tech-preview-tag:hover {
            background: var(--primary);
            transform: scale(1.05);
        }
        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            min-height: 48px;
        }

        .btn:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 4px;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #ff9500);
            color: white;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
        }
        .btn-secondary {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #ff9500);
            color: white;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
        }
        .btn-secondary {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }

        /* Download Resume Button - Matching Orange Theme */
        .btn-resume {
            background: linear-gradient(135deg, var(--primary), #ff9500);
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
        }

        .btn-resume:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
        }

        .btn-resume .btn-icon {
            transition: transform 0.3s ease;
        }

        .btn-resume:hover .btn-icon {
            transform: translateY(2px);
        }

        .btn-icon {
            display: inline-flex;
            flex-shrink: 0;
        }

        /* Section Styles */
        section {
            padding: 6rem 5%;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        /* Tablet Section Styles */
        @media (max-width: 1024px) and (min-width: 769px) {
            section {
                padding: 4rem 4%;
            }
            .section-header {
                margin-bottom: 3rem;
            }
            .section-title {
                font-size: clamp(2rem, 4vw, 3rem);
            }
            .section-subtitle {
                font-size: 1.1rem;
            }
            .category-tabs {
                gap: 0.75rem;
                margin-bottom: 2rem;
            }
            .tab-btn {
                padding: 0.875rem 1.25rem;
                font-size: 0.85rem;
            }
            .projects-grid {
                column-count: 2;
                column-gap: 1.5rem;
            }
        }
        /* Mobile Section Styles */
        @media (max-width: 768px) {
            section {
                padding: 3rem 4%;
            }
            .section-header {
                margin-bottom: 2rem;
            }
            .section-label {
                font-size: 0.8rem;
                letter-spacing: 2px;
            }
            .section-title {
                font-size: clamp(1.8rem, 5vw, 2.5rem);
                margin-bottom: 0.75rem;
            }
            .section-subtitle {
                font-size: 1rem;
                opacity: 0.8;
            }
            .category-tabs {
                overflow-x: auto;
                flex-wrap: nowrap;
                justify-content: flex-start;
                scrollbar-width: none;
                -ms-overflow-style: none;
                gap: 0.5rem;
                margin-bottom: 1.5rem;
                padding-bottom: 0.5rem;
            }
            .category-tabs::-webkit-scrollbar {
                display: none;
            }
            .tab-btn {
                flex-shrink: 0;
                padding: 0.75rem 1.25rem;
                font-size: 0.85rem;
                min-height: 44px;
            }
            .projects-grid {
                column-count: 1;
                column-gap: 1rem;
            }
        }
        /* Small Mobile Section Styles */
        @media (max-width: 480px) {
            section {
                padding: 2.5rem 3%;
            }
            .section-title {
                font-size: clamp(1.5rem, 5vw, 2rem);
            }
            .section-subtitle {
                font-size: 0.9rem;
            }
        }
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.9rem;
            color: var(--primary);
            margin-bottom: 1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
        }
        .section-subtitle {
            font-size: 1.2rem;
            opacity: 0.7;
            max-width: 600px;
            margin: 0 auto;
        }
        /* Hot Picks */
        .hot-picks {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        /* Tablet Hot Picks */
        @media (max-width: 1024px) and (min-width: 769px) {
            .hot-picks {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            .hot-card {
                min-height: 350px;
                padding: 1.75rem;
            }
            .hot-title {
                font-size: 1.5rem;
            }
            .hot-description {
                font-size: 0.95rem;
            }
        }
        /* Mobile Hot Picks */
        @media (max-width: 768px) {
            .hot-picks {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-bottom: 2rem;
            }
            .hot-card {
                min-height: auto;
                padding: 1.25rem;
                border-radius: 12px;
                margin-bottom: 0;
            }
            .hot-badge {
                padding: 0.4rem 0.75rem;
                font-size: 0.75rem;
            }
            .hot-title {
                font-size: 1.4rem;
            }
            .hot-description {
                font-size: 0.9rem;
                line-height: 1.6;
                margin-bottom: 1rem;
            }
            .tech-stack {
                margin-bottom: 0.75rem;
            }
            .hot-impact {
                margin-top: 1rem;
                padding-top: 1rem;
            }
            .impact-value {
                font-size: 1.25rem;
            }
            .impact-label {
                font-size: 0.65rem;
            }
        }
        /* Small Mobile Hot Picks */
        @media (max-width: 480px) {
            .hot-card {
                padding: 1.25rem;
            }
            .hot-title {
                font-size: 1.25rem;
            }
            .tech-tag {
                padding: 0.25rem 0.6rem;
                font-size: 0.7rem;
            }
        }
        .hot-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: 400px;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        .hot-card:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 4px;
        }
        .hot-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
            transition: left 0.5s ease;
        }
        .hot-card:hover::before {
            left: 100%;
        }
        .hot-card:hover {
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
        }
        .hot-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--primary);
            color: white;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Category-Based Badge Colors */
        .hot-badge[data-category="research"] {
            background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }
        .hot-card:has(.hot-badge[data-category="research"]):hover {
            border-color: #FF6B6B;
            box-shadow: 0 25px 50px rgba(255, 107, 107, 0.25);
        }
        .hot-badge[data-category="civic"] {
            background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
        }
        .hot-card:has(.hot-badge[data-category="civic"]):hover {
            border-color: #10B981;
            box-shadow: 0 25px 50px rgba(16, 185, 129, 0.25);
        }
        .hot-badge[data-category="productivity"] {
            background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
        }
        .hot-card:has(.hot-badge[data-category="productivity"]):hover {
            border-color: #F59E0B;
            box-shadow: 0 25px 50px rgba(245, 158, 11, 0.25);
        }
        .hot-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .hot-description {
            opacity: 0.8;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            flex-grow: 1;
        }
        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .tech-tag {
            padding: 0.3rem 0.8rem;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid rgba(255, 107, 0, 0.3);
            border-radius: 15px;
            font-size: 0.75rem;
            font-family: 'JetBrains Mono', monospace;
        }
        .hot-impact {
            display: flex;
            justify-content: space-between;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--glass-border);
        }
        .impact-item {
            text-align: center;
        }
        .impact-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
        }
        .impact-label {
            font-size: 0.7rem;
            opacity: 0.7;
            text-transform: uppercase;
        }
        .hot-link {
            display: inline-block;
            margin-top: auto;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            padding: 0.75rem 0;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }
        .hot-link:hover {
            color: var(--secondary);
        }
        #dataCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        /* Project Categories */
        .category-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        .tab-btn {
            padding: 1rem 1.5rem;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            color: var(--light);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            min-height: 48px;
        }
        .tab-btn:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 4px;
        }
        .tab-btn:hover, .tab-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
        }
        .projects-grid {
            column-count: 3;
            column-gap: 2rem;
        }
        @media (max-width: 1024px) {
            .projects-grid {
                column-count: 2;
            }
        }
        @media (max-width: 768px) {
            .projects-grid {
                column-count: 1;
                column-gap: 0;
            }
            .project-card {
                padding: 1.25rem;
                margin-bottom: 0.5rem;
                border-radius: 12px;
            }
            .category-tabs {
                overflow-x: auto;
                flex-wrap: nowrap;
                justify-content: flex-start;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .category-tabs::-webkit-scrollbar {
                display: none;
            }
            .tab-btn {
                flex-shrink: 0;
                padding: 1rem 2rem;
                font-size: 1rem;
            }
            #alex-demo {
                padding: 3rem 1rem;
            }
            .alex-demo-card {
                padding: 2rem;
            }
            .alex-demo-title {
                font-size: 1.5rem;
            }
            .alex-demo-description {
                font-size: 1rem;
            }
        }
        .project-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            break-inside: avoid;
            margin-bottom: 2rem;
            display: inline-block;
            width: 100%;
            min-height: 320px;
            opacity: 0;
            transform: translateY(30px);
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }
        /* Tablet Project Cards */
        @media (max-width: 1024px) and (min-width: 769px) {
            .project-card {
                padding: 1.25rem;
                margin-bottom: 1.5rem;
            }
        }
        .project-card:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 4px;
        }
        .project-card.animate-in {
            animation: fadeInUp 0.6s ease forwards;
        }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Filter Animation Classes */
        .project-card.filter-hide {
            animation: filterFadeOut 0.3s ease forwards;
        }

        .project-card.filter-show {
            animation: filterFadeIn 0.4s ease forwards;
        }

        @keyframes filterFadeOut {
            from {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            to {
                opacity: 0;
                transform: translateY(-20px) scale(0.95);
            }
        }

        @keyframes filterFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Staggered animation for cards */
        .project-card.filter-show:nth-child(1) { animation-delay: 0ms; }
        .project-card.filter-show:nth-child(2) { animation-delay: 50ms; }
        .project-card.filter-show:nth-child(3) { animation-delay: 100ms; }
        .project-card.filter-show:nth-child(4) { animation-delay: 150ms; }
        .project-card.filter-show:nth-child(5) { animation-delay: 200ms; }
        .project-card.filter-show:nth-child(6) { animation-delay: 250ms; }
        .project-card.filter-show:nth-child(7) { animation-delay: 300ms; }
        .project-card.filter-show:nth-child(8) { animation-delay: 350ms; }
        .project-card.filter-show:nth-child(9) { animation-delay: 400ms; }
        .project-card.filter-show:nth-child(10) { animation-delay: 450ms; }
        .project-card.filter-show:nth-child(11) { animation-delay: 500ms; }
        .project-card.filter-show:nth-child(12) { animation-delay: 550ms; }

        .project-card:hover {
            transform: translateY(-5px) scale(1.02);
            border-color: rgba(255, 107, 0, 0.5);
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
        }
        .project-tech-stack {
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }
        .project-card:hover .project-tech-stack {
            opacity: 1;
        }
        .project-card.featured {
            min-height: 400px;
        }
        .project-card[data-category="education"] {
            background: linear-gradient(135deg, rgba(var(--education-color), 0.1), rgba(var(--education-color), 0.05)), var(--glass);
        }
        .project-card[data-category="civic"] {
            background: linear-gradient(135deg, rgba(var(--civic-color), 0.1), rgba(var(--civic-color), 0.05)), var(--glass);
        }
        .project-card[data-category="productivity"] {
            background: linear-gradient(135deg, rgba(var(--productivity-color), 0.1), rgba(var(--productivity-color), 0.05)), var(--glass);
        }
        .project-card[data-category="analytics"] {
            background: linear-gradient(135deg, rgba(var(--analytics-color), 0.1), rgba(var(--analytics-color), 0.05)), var(--glass);
        }
        .project-card[data-category="security"] {
            background: linear-gradient(135deg, rgba(var(--security-color), 0.1), rgba(var(--security-color), 0.05)), var(--glass);
        }
        .project-category {
            font-size: 0.75rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }
        .project-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .project-desc {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        .project-tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .tech-pill {
            background: rgba(0, 0, 0, 0.6);
            color: var(--text);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .project-view-more {
            display: inline-block;
            margin-top: auto;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            padding: 0.75rem 0;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }
        .project-view-more:hover {
            color: var(--secondary);
        }
        /* Alex Demo Landing Pages Section */
        #alex-demo {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .alex-demo-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 3rem;
            max-width: 800px;
            margin: 0 auto;
            transition: all 0.3s ease;
        }
        .alex-demo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(255, 107, 0, 0.2);
        }
        .alex-demo-content {
            text-align: center;
        }
        .alex-demo-badge {
            display: inline-block;
            background: rgba(255, 107, 0, 0.2);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 107, 0, 0.3);
        }
        .alex-demo-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text);
        }
        .alex-demo-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }
        .alex-demo-content .tech-stack {
            justify-content: center;
            margin-bottom: 2rem;
        }
        .alex-demo-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        .arrow-icon {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s ease;
        }
        .project-card:hover .arrow-icon {
            transform: translateX(5px);
        }
        /* Bento Grid */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .bento-card {
            background: rgba(20, 20, 20, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 107, 0, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            /* Disable 3D transform on touch devices for better performance */
            transform: none !important;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }
        .bento-card:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 4px;
        }
        .bento-card:hover {
            border-color: rgba(255, 107, 0, 0.6);
            transform: translateY(-5px);
            box-shadow:
                0 10px 30px -10px rgba(255, 107, 0, 0.15),
                0 0 30px rgba(255, 107, 0, 0.1),
                inset 0 0 20px rgba(255, 107, 0, 0.05);
        }

        /* Subtle Glow Border Animation on Hover */
        .bento-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, transparent, rgba(255, 107, 0, 0.3), transparent);
            border-radius: 22px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.4s ease;
        }

        .bento-card:hover::before {
            opacity: 1;
        }
        /* Enable 3D tilt only on non-touch devices */
        @media (hover: hover) {
            .bento-card {
                transform-style: preserve-3d;
            }
        }
        .bento-large { grid-column: span 4; }
        .bento-xl { grid-column: span 8; }
        .bento-medium { grid-column: span 4; }
        .bento-full { grid-column: span 12; }
        /* Bento Grid Mobile Responsive */
        @media (max-width: 1024px) {
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .bento-large, 
            .bento-xl, 
            .bento-medium, 
            .bento-full {
                grid-column: span 2;
            }
            
            .bento-flex {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }
            
            .bento-info {
                max-width: 100%;
            }
            
            .bento-platforms {
                width: 100%;
                justify-content: flex-start;
            }
        }
        @media (max-width: 640px) {
            .bento-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .bento-large, 
            .bento-xl, 
            .bento-medium, 
            .bento-full {
                grid-column: span 1;
            }
            
            .bento-card {
                padding: 1.5rem;
                border-radius: 16px;
            }
            
            .bento-title {
                font-size: 1.1rem;
            }
            
            .bento-desc {
                font-size: 0.8rem;
                margin-bottom: 1rem;
            }
            
            .bento-icon {
                width: 2rem;
                height: 2rem;
                margin-bottom: 1rem;
            }
        }
        .bento-header {
            margin-bottom: 1.5rem;
        }
        .bento-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid rgba(255, 107, 0, 0.2);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .bento-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--light);
        }
        .bento-desc {
            color: #9ca3af;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }
        .bento-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .bento-tag {
            padding: 0.375rem 0.75rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--light);
            transition: all 0.3s ease;
            cursor: default;
        }
        .bento-tag:hover {
            background: rgba(255, 107, 0, 0.1);
            border-color: var(--primary);
            color: var(--primary);
            transform: scale(1.05);
        }
        .bento-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        .bento-info {
            max-width: 20rem;
        }
        .bento-platforms {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .platform-tag {
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }
        /* Platform Icons with SVG */
        .platform-icon {
            width: 1.25rem;
            height: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .platform-icon svg {
            width: 100%;
            height: 100%;
        }

        .platform-icon.green {
            color: #22c55e;
            filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.5));
        }

        .platform-icon.blue {
            color: #3b82f6;
            filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.5));
        }

        .platform-icon.purple {
            color: #a855f7;
            filter: drop-shadow(0 0 4px rgba(168, 85, 247, 0.5));
        }

        .platform-icon.orange {
            color: #f97316;
            filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.5));
        }

        .platform-icon.pink {
            color: #ec4899;
            filter: drop-shadow(0 0 4px rgba(236, 72, 153, 0.5));
        }

        /* Legacy platform-dot support */
        .platform-dot {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
        }

        .platform-dot.green {
            background: #22c55e;
            box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
        }

        .platform-dot.blue {
            background: #3b82f6;
        }

        .platform-dot.purple {
            background: #a855f7;
        }

        .platform-dot.orange {
            background: #f97316;
        }

        .platform-dot.pink {
            background: #ec4899;
            box-shadow: 0 0 8px rgba(236, 72, 153, 0.6);
        }
        .platform-tag:hover {
            background: rgba(255, 107, 0, 0.1);
            border-color: var(--primary);
        }
        /* Glow dots for particles */
        .glow-dot {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.3;
            pointer-events: none;
        }
        /* Jigsaw puzzle animations */
        .animate-slide-in-left {
            animation: slideInLeft 0.8s ease-out forwards;
            opacity: 0;
            transform: translateX(-100px);
        }
        .animate-slide-in-right {
            animation: slideInRight 0.8s ease-out forwards;
            opacity: 0;
            transform: translateX(100px);
        }
        .animate-slide-in-up {
            animation: slideInUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(-100px);
        }
        .animate-slide-in-down {
            animation: slideInDown 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(100px);
        }
        .delay-100 { animation-delay: 0.1s; }
        .delay-200 { animation-delay: 0.2s; }
        .delay-300 { animation-delay: 0.3s; }
        .delay-400 { animation-delay: 0.4s; }
        .delay-500 { animation-delay: 0.5s; }
        .delay-600 { animation-delay: 0.6s; }
        .delay-700 { animation-delay: 0.7s; }
        @keyframes slideInLeft {
            0% {
                opacity: 0;
                transform: translateX(-100px) translateY(-20px) scale(0.8) rotate(-5deg);
            }
            100% {
                opacity: 1;
                transform: translateX(0) translateY(0) scale(1) rotate(0deg);
            }
        }
        @keyframes slideInRight {
            0% {
                opacity: 0;
                transform: translateX(100px) translateY(20px) scale(0.8) rotate(5deg);
            }
            100% {
                opacity: 1;
                transform: translateX(0) translateY(0) scale(1) rotate(0deg);
            }
        }
        @keyframes slideInUp {
            0% {
                opacity: 0;
                transform: translateY(-100px) translateX(-20px) scale(0.8) rotate(3deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) translateX(0) scale(1) rotate(0deg);
            }
        }
        @keyframes slideInDown {
            0% {
                opacity: 0;
                transform: translateY(100px) translateX(20px) scale(0.8) rotate(-3deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) translateX(0) scale(1) rotate(0deg);
            }
        }
        /* Responsive */
        @media (max-width: 768px) {
            .bento-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .bento-large,
            .bento-xl,
            .bento-medium,
            .bento-full {
                grid-column: span 1;
            }
            .bento-content {
                flex-direction: column;
                gap: 1.5rem;
            }
            .bento-flex {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }
        }
        /* Footer */
        .education-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 2rem;
            max-width: 600px;
            margin: 0 auto;
            transition: all 0.3s ease;
        }
        .education-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 107, 0, 0.5);
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
        }
        .education-degree {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--light);
            margin-bottom: 0.5rem;
        }
        .education-university {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        .education-details {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .education-graduation, .education-grade {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        /* Footer */
        footer {
            text-align: center;
            padding: 3rem 5%;
            border-top: 1px solid var(--glass-border);
            opacity: 0.7;
        }
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.75rem;
            height: 2.75rem;
            min-width: 44px;
            min-height: 44px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }
        .social-icon:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 4px;
            transform: scale(1.1);
        }
        .social-icon:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        .social-icon svg {
            width: 1rem;
            height: 1rem;
        }
        /* Roadmap Tree */
        .roadmap-tree {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 0;
        }
        .tree {
            list-style: none;
            padding-left: 0;
        }
        .tree-item {
            position: relative;
            margin-bottom: 1rem;
        }
        .tree-node {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .tree-node:hover {
            transform: translateY(-2px);
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
        }
        .tree-node h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        .tree-node p {
            margin-bottom: 1rem;
            opacity: 0.8;
        }
        .tree-node .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .tree-children {
            list-style: none;
            padding-left: 2rem;
            margin-top: 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }
        .tree-item.expanded .tree-children {
            max-height: 1000px; /* Adjust as needed */
        }
        .tree-children .tree-node {
            padding: 1rem;
            margin-bottom: 0.5rem;
            cursor: default;
        }
        .tree-children .tree-node:hover {
            transform: none;
            box-shadow: none;
        }
        .tree-children .tree-node h3 {
            font-size: 1.2rem;
            margin-bottom: 0;
        }
        .current {
            border-left: 4px solid var(--primary);
            background: rgba(255, 107, 0, 0.1);
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-links {
                display: none;
            }
            .hero-stats {
                gap: 1.5rem;
            }
            .stat-number {
                font-size: 2rem;
            }
            .hero-cta {
                flex-direction: column;
                width: 100%;
            }
            .hero-cta .btn {
                width: 100%;
                text-align: center;
            }
            .hot-picks {
                grid-template-columns: 1fr;
            }
            .hot-card {
                min-height: auto;
                padding: 1.5rem;
            }
            .projects-grid {
                grid-template-columns: 1fr;
            }
            section {
                padding: 4rem 5%;
            }
            .section-title {
                font-size: clamp(2rem, 5vw, 3rem);
            }
        }
        /* Achievements */
        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        /* Blog Hero */
        .blog-hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 3rem 5% 0;
            text-align: center;
        }
        .blog-hero-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            width: 100%;
        }
        .blog-hero .hero-subtitle {
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        /* Blog Section */
        .blog-section {
            padding: 4rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        /* Blog Card */
        .blog-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .blog-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 107, 0, 0.4);
            box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
        }
        .blog-card:hover::before {
            opacity: 1;
        }
        .blog-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        .blog-category {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.35rem 0.75rem;
            background: rgba(255, 107, 0, 0.15);
            border: 1px solid rgba(255, 107, 0, 0.3);
            border-radius: 20px;
            color: var(--primary);
        }
        .blog-read-time {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }
        .blog-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        .blog-title a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .blog-title a:hover {
            color: var(--primary);
        }
        .blog-excerpt {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        .blog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.25rem;
            border-top: 1px solid var(--glass-border);
        }
        .blog-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .author-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
            color: white;
        }
        .author-name {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--light);
        }
        .blog-date {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-family: 'JetBrains Mono', monospace;
        }
        /* Newsletter Section */
        .newsletter-section {
            margin-top: 3rem;
        }
        .newsletter-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        .newsletter-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        .newsletter-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem;
            background: rgba(255, 107, 0, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .newsletter-icon svg {
            width: 28px;
            height: 28px;
            color: var(--primary);
        }
        .newsletter-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--light);
        }
        .newsletter-text {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 450px;
            margin: 0 auto;
        }
        .newsletter-input {
            flex: 1;
            padding: 0.875rem 1.25rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            color: var(--light);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .newsletter-input::placeholder {
            color: var(--text-muted);
        }
        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
        }
        .newsletter-form .btn {
            white-space: nowrap;
        }
        /* Blog Responsive */
        @media (max-width: 1024px) {
            .blog-grid {
                grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .blog-hero {
                min-height: 50vh;
                margin: 2rem 5% 0;
            }
            .blog-hero .hero-title {
                font-size: clamp(2rem, 8vw, 3.5rem);
            }
            .blog-section {
                padding: 3rem 5%;
            }
            .blog-grid {
                grid-template-columns: 1fr;
            }
            .blog-card {
                padding: 1.5rem;
            }
            .blog-title {
                font-size: 1.25rem;
            }
            .newsletter-card {
                padding: 2rem 1.5rem;
            }
            .newsletter-form {
                flex-direction: column;
            }
            .newsletter-form .btn {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .blog-meta {
                gap: 0.5rem;
            }
            .blog-category {
                font-size: 0.7rem;
                padding: 0.3rem 0.6rem;
            }
            .blog-read-time {
                font-size: 0.8rem;
            }
            .blog-footer {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
            .blog-date {
                order: -1;
            }
        }
        .achievement-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .achievement-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
        }
        .achievement-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        .achievement-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        .achievement-card p {
            opacity: 0.8;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        .achievement-date {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-family: 'JetBrains Mono', monospace;
        }
        @media (max-width: 768px) {
            .achievements-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* New styles from example */
        .navbar {
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 1rem 0;
        }
        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }
        .nav-back {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }
        .nav-back:hover {
            color: var(--primary);
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a.active {
            color: var(--primary);
        }
        .nav-links a.active::after {
            width: 100%;
        }
        /* Glass wipe effect for completed counters */
        @keyframes glassWipe {
            0% {
                background-position: -200% center;
            }
            100% {
                background-position: 200% center;
            }
        }
        .stat-number.glass-shine {
            background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.8), transparent);
            background-size: 200% 100%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-color: var(--light);
            animation: glassWipe 1.2s ease-in-out;
        }
        .stat-label.glass-shine {
            background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.6), transparent);
            background-size: 200% 100%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-color: rgba(250, 248, 245, 0.7);
            animation: glassWipe 1.2s ease-in-out;
        }
        .hero-title.glass-shine {
            background: linear-gradient(135deg, var(--light), var(--primary), var(--accent));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5));
        }
        .hero {
            background: var(--bg);
            padding: 2rem;
            margin-bottom: 3rem;
        }
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .hero-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .nav-back {
            font-size: 1.5rem;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }
        .nav-back:hover {
            color: var(--primary);
        }
        .project-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .project-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }
        .tech-stack {
            margin-bottom: 2rem;
        }
        .tech-label {
            font-size: 0.9rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        .tech-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .tech-pill {
            padding: 0.5rem 1rem;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid rgba(255, 107, 0, 0.3);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--light);
            transition: all 0.3s ease;
        }
        .tech-pill:hover {
            background: var(--primary);
            transform: scale(1.05);
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }
        .meta-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        .meta-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .meta-value {
            color: white;
            font-weight: 600;
        }
        .live-badge {
            background: linear-gradient(135deg, var(--primary), #0066ff);
            color: white;
            font-weight: 600;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        .cta-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-primary {
            background: white;
            color: var(--primary);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
        }
        .section {
            margin-bottom: 4rem;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .section-title::before {
            content: '';
            width: 4px;
            height: 2rem;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            border-radius: 999px;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .feature-card {
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 1rem;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }
        .feature-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
        }
        .feature-icon {
            width: 3rem;
            height: 3rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .feature-description {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .terminal {
            background: var(--bg-lighter);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            padding: 2.5rem;
            font-family: 'JetBrains Mono', monospace;
        }
        .terminal-line {
            color: var(--text);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        .terminal-prompt {
            color: var(--primary);
            margin-right: 0.75rem;
            font-weight: bold;
        }
        .terminal-separator {
            border: none;
            border-top: 1px dashed var(--primary);
            margin: 1.5rem 0;
            opacity: 0.7;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .stat-card {
            background: linear-gradient(135deg, var(--bg-light), var(--bg-lighter));
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid var(--border);
            text-align: center;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        footer {
            text-align: center;
            padding: 2rem;
            background: var(--bg-lighter);
            color: var(--text-muted);
        }
        @media (max-width: 768px) {
            .project-title {
                font-size: 2rem;
            }
            .project-subtitle {
                font-size: 1.25rem;
            }
            .meta-info {
                flex-direction: column;
                gap: 1rem;
            }
            .cta-buttons {
                flex-direction: column;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
        .fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }
        .stagger-1 { animation-delay: 0.1s; opacity: 0; }
        .stagger-2 { animation-delay: 0.2s; opacity: 0; }
        .stagger-3 { animation-delay: 0.3s; opacity: 0; }
        .stagger-4 { animation-delay: 0.4s; opacity: 0; }
        /* ============================================
           ABOUT PAGE STYLES (moved from inline styles)
           ============================================ */
        
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
        }
        .about-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 4rem;
        }
        .about-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .about-content p {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        .about-highlights {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }
        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 107, 0, 0.05);
            border-left: 3px solid var(--primary);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .highlight-item:hover {
            background: rgba(255, 107, 0, 0.1);
            transform: translateX(5px);
        }
        .highlight-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .highlight-text h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--light);
            margin-bottom: 0.25rem;
        }
        .highlight-text p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
        }
        .about-image {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .about-image-box {
            width: 100%;
            max-width: 400px;
            border: 2px solid var(--glass-border);
            border-radius: 20px;
            overflow: hidden;
        }
        .about-image-box img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }
        .about-image-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 107, 0, 0.1), transparent);
            animation: shimmer 3s infinite;
        }
        @keyframes shimmer {
            0% { transform: translate(-100%, -100%) rotate(0deg); }
            100% { transform: translate(100%, 100%) rotate(360deg); }
        }
        /* Academic Background */
        .academic-section {
            margin-bottom: 4rem;
        }
        .section-title-divider {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--glass-border);
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .section-title-divider i {
            color: var(--primary);
        }
        .education-timeline {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .education-item {
            display: grid;
            grid-template-columns: 150px 1fr;
            gap: 2rem;
            padding: 2rem;
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .education-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
            transition: left 0.5s ease;
        }
        .education-item:hover::before {
            left: 100%;
        }
        .education-item:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
        }
        .education-year {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            font-family: 'JetBrains Mono', monospace;
            position: relative;
            z-index: 1;
        }
        .education-details {
            position: relative;
            z-index: 1;
        }
        .education-degree {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--light);
            margin-bottom: 0.5rem;
        }
        .education-institution {
            font-size: 1.05rem;
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 0.75rem;
        }
        .education-description {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        .education-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .education-tag {
            padding: 0.4rem 0.8rem;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid rgba(255, 107, 0, 0.3);
            border-radius: 15px;
            font-size: 0.8rem;
            color: var(--light);
            font-family: 'JetBrains Mono', monospace;
        }
        /* Contact Section */
        .contact-section {
            margin-top: 4rem;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .contact-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        .contact-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
        }
        .contact-icon svg {
            width: 32px;
            height: 32px;
            color: white;
        }
        .contact-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--light);
            margin-bottom: 0.75rem;
        }
        .contact-card p {
            color: var(--text-muted);
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        .contact-link {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid var(--primary);
            border-radius: 20px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }
        .contact-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            transform: translate(-50%, -50%);
            border: 1px solid var(--primary);
            animation: pulse-wave 2s ease-out infinite;
            opacity: 0;
            pointer-events: none;
        }
        @keyframes pulse-wave {
            0% {
                width: 100%;
                height: 100%;
                opacity: 0.8;
            }
            100% {
                width: 200%;
                height: 200%;
                opacity: 0;
            }
        }
        .contact-link:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }
        .contact-link:hover::before {
            animation: none;
        }
        /* Contact Form */
        .contact-form-section {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 3rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .contact-form-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 2rem;
            text-align: center;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--light);
            margin-bottom: 0.5rem;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 8px;
            color: var(--light);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 107, 0, 0.05);
            box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        .form-submit {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary), #ff9500);
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
        }
        /* Support Section */
        .support-section {
            margin-top: 4rem;
        }
        .support-description {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .support-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .support-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
        }
        .support-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .support-card:hover::before {
            transform: scaleX(1);
        }
        .support-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #f7931a, #ffad33);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(247, 147, 26, 0.3);
        }
        .support-icon svg {
            width: 28px;
            height: 28px;
            color: white;
        }
        .support-icon.eth-icon {
            background: linear-gradient(135deg, #627eea, #8da0f0);
            box-shadow: 0 5px 15px rgba(98, 126, 234, 0.3);
        }
        .support-icon.usdt-icon {
            background: linear-gradient(135deg, #26a17b, #4bc89a);
            box-shadow: 0 5px 15px rgba(38, 161, 123, 0.3);
        }
        .support-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .support-info h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--light);
            margin: 0;
        }
        .support-network {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.05);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            border: 1px solid var(--glass-border);
        }
        .support-address {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            padding: 0.75rem 1rem;
            border: 1px solid var(--glass-border);
        }
        .address-text {
            flex: 1;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            color: var(--light);
            background: none;
            border: none;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .copy-btn {
            width: 36px;
            height: 36px;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .copy-btn svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
        }
        .copy-btn:hover {
            background: var(--primary);
        }
        .copy-btn:hover svg {
            color: white;
        }
        .copy-feedback {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--secondary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .copy-feedback.show {
            opacity: 1;
        }
        /* Support Section Responsive */
        @media (max-width: 768px) {
            .support-grid {
                grid-template-columns: 1fr;
            }
            .support-card {
                padding: 1.25rem;
            }
            .address-text {
                font-size: 0.8rem;
            }
        }
        /* About Page Responsive */
        @media (max-width: 768px) {
            .about-hero {
                grid-template-columns: 1fr;
            }
            .education-item {
                grid-template-columns: 1fr;
            }
            .education-year {
                font-size: 0.9rem;
            }
            .contact-form-section {
                padding: 2rem;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Responsive Navigation */
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
        }
        /* Tablet Styles (768px - 1024px) */
        @media (max-width: 1024px) and (min-width: 769px) {
            nav {
                padding: 1rem 3%;
            }
            .hero {
                margin: 2rem 3% 0;
                padding: 2rem;
            }
            .hero-title {
                font-size: clamp(2rem, 5vw, 4rem);
            }
            .hero-stats {
                gap: 2rem;
            }
            .stat-number {
                font-size: 2rem;
            }
            .achievements-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            .about-hero {
                gap: 2rem;
            }
            .education-item {
                grid-template-columns: 120px 1fr;
                gap: 1.5rem;
                padding: 1.5rem;
            }
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .container {
                padding: 0 1.5rem 3rem;
            }
        }
        /* Mobile Styles (up to 768px) */
        @media (max-width: 768px) {
            /* Navigation */
            nav {
                padding: 1rem 5%;
            }
            .nav-links {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            /* Hero Section */
            .hero {
                min-height: auto;
                margin: 2rem 4% 0;
                padding: 2rem 0;
            }
            .hero-content {
                padding: 0;
            }
            .hero-label {
                font-size: 0.8rem;
                margin-bottom: 0.75rem;
            }
            .hero-title {
                font-size: clamp(1.8rem, 6vw, 2.5rem);
                line-height: 1.2;
                margin-bottom: 1rem;
            }
            .hero-subtitle {
                font-size: clamp(0.85rem, 2.5vw, 1rem);
                margin-bottom: 1.5rem;
            }
            .hero-stats {
                gap: 1.5rem;
                margin-bottom: 2rem;
            }
            .stat-number {
                font-size: 2rem;
            }
            .stat-label {
                font-size: 0.8rem;
            }
            .hero-cta {
                flex-direction: column;
                gap: 0.75rem;
            }
            .btn {
                padding: 0.875rem 2rem;
                width: 100%;
                justify-content: center;
            }
            /* Tech Preview */
            .tech-preview-tags {
                gap: 0.5rem;
            }
            .tech-preview-tag {
                padding: 0.4rem 0.75rem;
                font-size: 0.8rem;
            }
            /* Achievements */
            .achievements-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                margin-bottom: 2rem;
            }
            .achievement-card {
                padding: 1.5rem;
            }
            .achievement-icon {
                font-size: 2.5rem;
            }
            .achievement-card h3 {
                font-size: 1.1rem;
            }
            /* About Page */
            .about-container {
                padding: 1rem 0;
            }
            .about-hero {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-bottom: 3rem;
            }
            .about-content h3 {
                font-size: 1.5rem;
            }
            .about-content p {
                font-size: 1rem;
                line-height: 1.7;
            }
            .about-image-box {
                max-width: 100%;
            }
            /* Education Timeline */
            .education-item {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 1.5rem;
            }
            .education-year {
                font-size: 0.9rem;
            }
            .education-degree {
                font-size: 1.1rem;
            }
            .education-institution {
                font-size: 1rem;
            }
            /* Contact Section */
            .contact-section {
                margin-top: 3rem;
            }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            .contact-card {
                padding: 1.5rem;
            }
            .contact-icon {
                width: 50px;
                height: 50px;
            }
            .contact-icon svg {
                width: 28px;
                height: 28px;
            }
            .contact-form-section {
                padding: 1.5rem;
                margin: 0 1rem;
            }
            /* Features Grid */
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .feature-card {
                padding: 1.25rem;
            }
            /* Terminal */
            .terminal {
                padding: 1.5rem;
            }
            .terminal-line {
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }
            /* Stats Grid */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .stat-card {
                padding: 1.5rem;
            }
            .stat-value {
                font-size: 2rem;
            }
            /* Section Titles */
            .section-title {
                font-size: 1.5rem;
            }
            .section-title-divider {
                font-size: 1.5rem;
            }
            /* Footer */
            footer {
                padding: 1.5rem;
                font-size: 0.9rem;
            }
            /* Container */
            .container {
                padding: 0 1rem 2rem;
            }
            .section {
                margin-bottom: 2rem;
            }
            /* Project Page */
            .project-title {
                font-size: 1.8rem;
            }
            .project-subtitle {
                font-size: 1.1rem;
            }
            .cta-buttons {
                flex-direction: column;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .meta-info {
                flex-direction: column;
                gap: 1rem;
            }
        }
        /* Small Mobile Styles (up to 480px) */
        @media (max-width: 480px) {
            .hero {
                margin: 1.5rem 3% 0;
                padding: 1.5rem 0;
            }
            .hero-title {
                font-size: clamp(1.5rem, 7vw, 2rem);
            }
            .hero-stats {
                gap: 1rem;
                justify-content: center;
            }
            .stat-number {
                font-size: 1.75rem;
            }
            .achievement-card {
                padding: 1.25rem;
            }
            .education-item {
                padding: 1.25rem;
            }
            .contact-card {
                padding: 1.25rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .stat-card {
                padding: 1.25rem;
            }
            .about-image-box {
                font-size: 2.5rem;
            }
        }

        /* ========================================
           IMMERSIVE HERO SECTION - ABOUT PAGE
        ======================================== */
        .immersive-hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 0;
            padding: 6rem 5% 4rem;
            overflow: hidden;
        }

        /* Full-width ambient particle background integration */
        .immersive-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
            pointer-events: none;
            z-index: 1;
        }

        .immersive-hero-content {
            position: relative;
            z-index: 10;
            max-width: 1000px;
            width: 100%;
            text-align: center;
        }

        /* Gradient Text Animation for "Let's Talk" */
        .immersive-hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 10vw, 7rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .gradient-text {
            background: linear-gradient(
                135deg,
                var(--primary) 0%,
                var(--accent) 25%,
                var(--secondary) 50%,
                var(--primary) 75%,
                var(--accent) 100%
            );
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 8s ease infinite;
            display: inline-block;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Rotating Subtext Container */
        .rotating-subtext-container {
            height: 2.5rem;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .rotating-subtext {
            font-family: 'JetBrains Mono', monospace;
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            color: var(--primary);
            font-weight: 500;
            letter-spacing: 1px;
            display: inline-block;
            animation: fadeSlideUp 0.5s ease forwards;
        }

        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeSlideDown {
            from {
                opacity: 1;
                transform: translateY(0);
            }
            to {
                opacity: 0;
                transform: translateY(-20px);
            }
        }

        .rotating-subtext.fade-out {
            animation: fadeSlideDown 0.5s ease forwards;
        }

        /* Hero Description */
        .immersive-hero-description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: rgba(250, 248, 245, 0.8);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* Hero CTA Buttons */
        .immersive-hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            opacity: 0.7;
            animation: bounce 2s ease infinite;
            z-index: 10;
        }

        .scroll-mouse {
            width: 24px;
            height: 38px;
            border: 2px solid rgba(255, 107, 0, 0.5);
            border-radius: 12px;
            position: relative;
        }

        .scroll-wheel {
            width: 4px;
            height: 8px;
            background: var(--primary);
            border-radius: 2px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 2s ease infinite;
        }

        @keyframes scrollWheel {
            0% { opacity: 1; transform: translateX(-50%) translateY(0); }
            50% { opacity: 0.5; transform: translateX(-50%) translateY(8px); }
            100% { opacity: 1; transform: translateX(-50%) translateY(0); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

        .scroll-text {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Responsive Styles for Immersive Hero */
        @media (max-width: 768px) {
            .immersive-hero {
                padding: 5rem 4% 3rem;
                min-height: 90vh;
            }

            .rotating-subtext-container {
                height: 2rem;
            }

            .immersive-hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .immersive-hero-cta .btn {
                width: 100%;
                max-width: 280px;
            }

            .scroll-indicator {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .immersive-hero {
                padding: 4rem 3% 2rem;
            }

            .gradient-text {
                font-size: clamp(2.5rem, 12vw, 4rem);
            }

            .rotating-subtext-container {
                height: 1.75rem;
            }
        }

        /* Certification Link Button */
        .cert-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid var(--primary);
            border-radius: 20px;
            color: var(--primary);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cert-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
        }

        .cert-link i {
            font-size: 0.75rem;
        }
