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

        :root {
            --bg-primary: #0a0a0f;
            --bg-secondary: #12121a;
            --bg-tertiary: #1a1a2e;
            --bg-card: #16162a;
            --accent-primary: #6c63ff;
            --accent-secondary: #00d4ff;
            --accent-tertiary: #ff6b9d;
            --text-primary: #e8e8f0;
            --text-secondary: #9898b0;
            --text-muted: #5a5a78;
            --gradient-1: linear-gradient(135deg, #6c63ff, #00d4ff);
            --gradient-2: linear-gradient(135deg, #ff6b9d, #c44dff);
            --gradient-3: linear-gradient(135deg, #00d4ff, #00ff88);
            --shadow-glow: 0 0 40px rgba(108, 99, 255, 0.3);
            --border-subtle: rgba(255, 255, 255, 0.06);
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.7;
        }

        ::selection {
            background: var(--accent-primary);
            color: white;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent-primary);
            border-radius: 4px;
        }

        /* Custom Cursor */
        .cursor-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-primary);
            border-radius: 50%;
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 10000;
            transition: transform 0.1s ease;
        }

        .cursor-ring {
            width: 40px;
            height: 40px;
            border: 2px solid rgba(108, 99, 255, 0.5);
            border-radius: 50%;
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 10000;
            transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
        }

        .cursor-ring.hover {
            width: 60px;
            height: 60px;
            border-color: var(--accent-secondary);
        }

        /* Loader */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        .loader-wrapper.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
        }

        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid var(--bg-tertiary);
            border-top-color: var(--accent-primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .loader-text {
            font-family: 'Fira Code', monospace;
            color: var(--accent-primary);
            font-size: 14px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.4s ease;
            backdrop-filter: blur(0px);
        }

        .navbar.scrolled {
            padding: 14px 60px;
            background: rgba(10, 10, 15, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
        }

        .nav-logo {
            font-size: 1.6rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
            border-radius: 1px;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--text-primary);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s ease;
            border-radius: 1px;
        }

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

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

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

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 15, 0.97);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            z-index: 999;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu a {
            text-decoration: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            font-weight: 700;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .mobile-menu.active a {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }
        .mobile-menu.active a:nth-child(5) { transition-delay: 0.5s; }
        .mobile-menu.active a:nth-child(6) { transition-delay: 0.6s; }

        /* Floating Particles */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            animation: floatParticle linear infinite;
            opacity: 0.15;
        }

        @keyframes floatParticle {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.15; }
            90% { opacity: 0.15; }
            100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
        }

        /* Hero Section */
         .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 0 60px;
        }

        .hero-bg-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            width: 50%;
            align-content: flex-start;
            order: 2;
        }

        .hero-image-section {
            position: absolute;
            right: 60px;
            top: 150px;
            transform: translateX(-20%);
            z-index: 2;
            order: 1;
        }

        .hero-gradient-orb {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            z-index: 0;
        }

        .hero-gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
        }

        .hero-gradient-orb:nth-child(1) {
            width: 600px;
            height: 600px;
            background: var(--accent-primary);
            top: -100px;
            right: -100px;
            opacity: 0.15;
        }

        .hero-gradient-orb:nth-child(2) {
            width: 400px;
            height: 400px;
            background: var(--accent-secondary);
            bottom: -50px;
            left: -50px;
            opacity: 0.1;
        }

        .hero-gradient-orb:nth-child(3) {
            width: 300px;
            height: 300px;
            background: var(--accent-tertiary);
            top: 50%;
            left: 50%;
            opacity: 0.08;
        }

        .hero-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(108, 99, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(108, 99, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 0;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(108, 99, 255, 0.1);
            border: 1px solid rgba(108, 99, 255, 0.2);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--accent-primary);
            margin-bottom: 30px;
            font-family: 'Fira Code', monospace;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 10px;
            letter-spacing: -2px;
        }

        .hero-title .highlight {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-weight: 400;
        }

        .hero-degree {
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
            color: var(--accent-secondary);
            margin-bottom: 40px;
            padding: 10px 20px;
            background: rgba(0, 212, 255, 0.08);
            border-left: 3px solid var(--accent-secondary);
            border-radius: 0 8px 8px 0;
            display: inline-block;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 14px 36px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

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

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(108, 99, 255, 0.4);
        }

        .btn-secondary {
            padding: 14px 36px;
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--accent-primary);
            background: rgba(108, 99, 255, 0.08);
            transform: translateY(-3px);
        }

        .hero-image-section {
            position: absolute;
            right: 60px;
            top: 150px;
            transform: translateX(-20%);
            z-index: 2;
        }

        .hero-image-wrapper {
            width: 400px;
            height: 400px;
            position: relative;
        }

        .hero-image-frame {
            width: 100%;
            height: 100%;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            border: 2px solid rgba(108, 99, 255, 0.2);
            background: var(--bg-secondary);
        }

        .hero-image-frame::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(108, 99, 255, 0.2) 100%);
            z-index: 1;
        }

        .hero-image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-floating-card {
            position: absolute;
            background: rgba(22, 22, 42, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 16px 20px;
            z-index: 3;
            animation: float 6s ease-in-out infinite;
        }

        .hero-floating-card:nth-child(2) {
            top: 20px;
            left: -60px;
            animation-delay: -2s;
        }

        .hero-floating-card:nth-child(3) {
            bottom: 40px;
            right: -40px;
            animation-delay: -4s;
        }

        .hero-floating-card:nth-child(4) {
            bottom: -20px;
            left: -30px;
            animation-delay: -1s;
        }

        .floating-card-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .floating-card-value {
            font-size: 1.1rem;
            font-weight: 700;
        }

        .floating-card-value.accent-1 { color: var(--accent-primary); }
        .floating-card-value.accent-2 { color: var(--accent-secondary); }
        .floating-card-value.accent-3 { color: var(--accent-tertiary); }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            z-index: 3;
        }

        .scroll-text {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, var(--accent-primary), transparent);
            animation: scrollDown 2s ease infinite;
        }

        @keyframes scrollDown {
            0% { transform: scaleY(0); transform-origin: top; }
            50% { transform: scaleY(1); transform-origin: top; }
            50.01% { transform: scaleY(1); transform-origin: bottom; }
            100% { transform: scaleY(0); transform-origin: bottom; }
        }

        /* Section Common */
        section {
            padding: 120px 60px;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            font-family: 'Fira Code', monospace;
            font-size: 0.85rem;
            color: var(--accent-primary);
            margin-bottom: 12px;
            display: block;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }

        .section-desc {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.05rem;
        }

        .section-divider {
            width: 60px;
            height: 3px;
            background: var(--gradient-1);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        /* Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal-scale.active {
            opacity: 1;
            transform: scale(1);
        }

        /* About Section */
        .about {
            background: var(--bg-secondary);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-image-container {
            position: relative;
        }

        .about-image {
            width: 100%;
            max-width: 450px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-subtle);
        }

        .about-image img {
            width: 100%;
            display: block;
        }

        .about-image::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            border: 1px solid rgba(108, 99, 255, 0.3);
        }

        .about-exp-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--gradient-1);
            color: white;
            padding: 20px;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow-glow);
        }

        .about-exp-number {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1;
        }

        .about-exp-label {
            font-size: 0.8rem;
            opacity: 0.9;
        }

        .about-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .about-content p {
            color: var(--text-secondary);
            margin-bottom: 16px;
            font-size: 1rem;
        }

        .about-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin: 30px 0;
        }

        .about-info-item {
            padding: 16px;
            background: var(--bg-tertiary);
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }

        .about-info-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .about-info-value {
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .skill-category {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 36px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .skill-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            border-radius: 20px 20px 0 0;
        }

        .skill-category:nth-child(1)::before { background: var(--gradient-1); }
        .skill-category:nth-child(2)::before { background: var(--gradient-2); }
        .skill-category:nth-child(3)::before { background: var(--gradient-3); }
        .skill-category:nth-child(4)::before { background: linear-gradient(135deg, #ffaa00, #ff6b00); }
        .skill-category:nth-child(5)::before { background: var(--gradient-1); }
        .skill-category:nth-child(6)::before { background: var(--gradient-2); }

        .skill-category:hover {
            transform: translateY(-8px);
            border-color: rgba(108, 99, 255, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .skill-category-icon {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .skill-category:nth-child(1) .skill-category-icon { background: rgba(108, 99, 255, 0.15); }
        .skill-category:nth-child(2) .skill-category-icon { background: rgba(255, 107, 157, 0.15); }
        .skill-category:nth-child(3) .skill-category-icon { background: rgba(0, 212, 255, 0.15); }
        .skill-category:nth-child(4) .skill-category-icon { background: rgba(255, 170, 0, 0.15); }
        .skill-category:nth-child(5) .skill-category-icon { background: rgba(0, 255, 136, 0.15); }
        .skill-category:nth-child(6) .skill-category-icon { background: rgba(196, 77, 255, 0.15); }

        .skill-category h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .skill-item {
            margin-bottom: 16px;
        }

        .skill-item:last-child {
            margin-bottom: 0;
        }

        .skill-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .skill-name {
            font-size: 0.9rem;
            font-weight: 500;
        }

        .skill-percentage {
            font-size: 0.85rem;
            color: var(--accent-primary);
            font-weight: 600;
            font-family: 'Fira Code', monospace;
        }

        .skill-bar {
            height: 6px;
            background: var(--bg-tertiary);
            border-radius: 3px;
            overflow: hidden;
        }

        .skill-fill {
            height: 100%;
            border-radius: 3px;
            width: 0;
            transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .skill-category:nth-child(1) .skill-fill { background: var(--gradient-1); }
        .skill-category:nth-child(2) .skill-fill { background: var(--gradient-2); }
        .skill-category:nth-child(3) .skill-fill { background: var(--gradient-3); }
        .skill-category:nth-child(4) .skill-fill { background: linear-gradient(135deg, #ffaa00, #ff6b00); }
        .skill-category:nth-child(5) .skill-fill { background: linear-gradient(135deg, #00ff88, #00d4ff); }
        .skill-category:nth-child(6) .skill-fill { background: linear-gradient(135deg, #c44dff, #6c63ff); }

        /* Services Section */
        .services {
            background: var(--bg-secondary);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(108, 99, 255, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2rem;
            position: relative;
            z-index: 1;
        }

        .service-card:nth-child(1) .service-icon { background: rgba(108, 99, 255, 0.12); }
        .service-card:nth-child(2) .service-icon { background: rgba(0, 212, 255, 0.12); }
        .service-card:nth-child(3) .service-icon { background: rgba(255, 107, 157, 0.12); }
        .service-card:nth-child(4) .service-icon { background: rgba(0, 255, 136, 0.12); }

        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .service-features {
            list-style: none;
            margin-top: 20px;
            text-align: left;
            position: relative;
            z-index: 1;
        }

        .service-features li {
            padding: 6px 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-features li::before {
            content: '✓';
            color: var(--accent-primary);
            font-weight: 700;
        }

        /* Projects Section */
        .projects-filter {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 24px;
            background: transparent;
            border: 1px solid var(--border-subtle);
            border-radius: 50px;
            color: var(--text-secondary);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
            color: white;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .project-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            border-color: rgba(108, 99, 255, 0.3);
        }

        .project-image {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 10, 15, 0.9), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 20px;
            gap: 12px;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-overlay-btn {
            padding: 8px 20px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .project-overlay-btn.primary {
            background: var(--accent-primary);
            color: white;
            border: none;
        }

        .project-overlay-btn.secondary {
            background: transparent;
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .project-content {
            padding: 24px;
        }

        .project-tags {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .project-tag {
            padding: 4px 12px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 6px;
            font-size: 0.75rem;
            color: var(--accent-primary);
            font-weight: 500;
        }

        .project-content h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .project-content p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            background: var(--bg-secondary);
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Experience Timeline */
        .experience {
            background: var(--bg-primary);
        }

        .timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
        }

        .timeline-item {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-item:nth-child(even) .timeline-content {
            text-align: right;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: var(--accent-primary);
            border-radius: 50%;
            border: 3px solid var(--bg-primary);
            z-index: 1;
            box-shadow: 0 0 20px rgba(108, 99, 255, 0.5);
        }

        .timeline-content {
            flex: 1;
            padding: 24px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            border-color: rgba(108, 99, 255, 0.3);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .timeline-date {
            font-family: 'Fira Code', monospace;
            font-size: 0.85rem;
            color: var(--accent-primary);
            margin-bottom: 8px;
        }

        .timeline-content h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .timeline-company {
            color: var(--accent-secondary);
            font-size: 0.9rem;
            margin-bottom: 12px;
        }

        .timeline-content p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .timeline-spacer {
            flex: 1;
        }

        /* Contact Section */
        .contact {
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 80%, rgba(108, 99, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .contact-info p {
            color: var(--text-secondary);
            margin-bottom: 30px;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .contact-detail-icon {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            background: rgba(108, 99, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-detail-text {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .contact-detail-value {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
            color: white;
            transform: translateY(-4px);
        }

        .contact-form {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 24px;
            padding: 40px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-secondary);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
        }

        .form-group textarea {
            height: 140px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(108, 99, 255, 0.4);
        }

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

        .form-submit:hover::before {
            left: 100%;
        }

        /* Footer */
        .footer {
            padding: 40px 60px;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-text {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-text span {
            color: var(--accent-primary);
            font-weight: 600;
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-primary);
        }

        /* Back to top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 14px;
            background: var(--accent-primary);
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-4px);
        }

        /* Parallax layers */
        .parallax-layer {
            transition: transform 0.1s linear;
            will-change: transform;
        }

        /* Responsive */
        @media (min-width: 767px) {
            .hero {
                align-items: flex-start;
                padding-top: 120px;
            }
            .hero-content {
                width: 50%;
            }
        }

        @media (min-width: 768px) and (max-width: 1024px) {
            .hero-image-section {
                width: 30%;
                height: auto;
            }
        }
         @media (max-width: 1024px) {
            .hero-image-section {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                width: 100%;
                max-width: 350px;
                margin: 0 auto;
                order: 1;
            }
            .hero-content {
                width: 100%;
                text-align: left;
                order: 2;
            }
        }

        @media (max-width: 767px) {
            .hero-image-section {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                width: 100%;
                max-width: 280px;
                margin: 120px auto 30px auto;
                order: 1;
            }
            .hero-image-wrapper {
                width: 100%;
                height: auto;
                aspect-ratio: 1;
            }
            .hero-content {
                width: 100%;
                text-align: left;
                order: 2;
            }
        }

        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .about-image-container {
                display: flex;
                justify-content: center;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .timeline::before {
                left: 20px;
            }
            .timeline-item,
            .timeline-item:nth-child(even) {
                flex-direction: column;
                padding-left: 50px;
            }
            .timeline-item:nth-child(even) .timeline-content {
                text-align: left;
            }
            .timeline-dot {
                left: 20px;
            }
            .timeline-spacer {
                display: none;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 80px 24px;
            }
            .navbar {
                padding: 16px 24px;
            }
            .navbar.scrolled {
                padding: 12px 24px;
            }
            .nav-links {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .hero {
                padding: 0 24px;
            }
            .hero-title {
                letter-spacing: -1px;
            }
            .skills-grid {
                grid-template-columns: 1fr;
            }
            .projects-grid {
                grid-template-columns: 1fr;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .footer {
                flex-direction: column;
                gap: 16px;
                text-align: center;
                padding: 30px 24px;
            }
            .stats-section {
                padding: 60px 24px;
            }
            .about-info-grid {
                grid-template-columns: 1fr;
            }
            .cursor-dot, .cursor-ring {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column;
            }
            .btn-primary, .btn-secondary {
                justify-content: center;
            }
        }

        /* Stagger animation delays */
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }
        .stagger-6 { transition-delay: 0.6s; }

        /* Tech stack floating icons */
        .tech-float {
            position: absolute;
            font-size: 1.5rem;
            opacity: 0.15;
            animation: techFloat 20s linear infinite;
        }

        @keyframes techFloat {
            0% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-20px) rotate(90deg); }
            50% { transform: translateY(0) rotate(180deg); }
            75% { transform: translateY(20px) rotate(270deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }

        /* Toast notification */
        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--bg-card);
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 12px;
            padding: 16px 28px;
            color: white;
            font-weight: 500;
            z-index: 10001;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
        }

        .toast-icon {
            font-size: 1.2rem;
        }