/* ============================================
           ROOT VARIABLES & RESET
        ============================================ */
        :root {
            --primary: #6c5ce7;
            --primary-light: #a29bfe;
            --primary-dark: #17132e;
            --secondary: #00cec9;
            --accent: #fd79a8;
            --accent-2: #ffeaa7;
            --dark: #0a0a0f;
            --dark-light: #13131a;
            --dark-lighter: #1a1a24;
            --text: #ffffff;
            --text-muted: #a0a0b0;
            --gradient-1: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 50%, #00cec9 100%);
            --gradient-2: linear-gradient(135deg, #fd79a8 0%, #6c5ce7 100%);
            --gradient-3: linear-gradient(135deg, #00cec9 0%, #6c5ce7 100%);
            --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #13131a 100%);
            --glow-primary: 0 0 40px rgba(108, 92, 231, 0.5);
            --glow-secondary: 0 0 40px rgba(0, 206, 201, 0.5);
            --glow-accent: 0 0 40px rgba(253, 121, 168, 0.5);
            --border-radius: 20px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

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

        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--dark);
        }

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

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

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-1);
            border-radius: 10px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ============================================
           CUSTOM CURSOR
        ============================================ */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10000;
            transition: transform 0.15s ease, background 0.15s ease;
            transform: translate(-50%, -50%);
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            background: rgba(108, 92, 231, 0.1);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
            transform: translate(-50%, -50%);
        }

        .cursor.active {
            transform: translate(-50%, -50%) scale(1.5);
            background: rgba(108, 92, 231, 0.3);
        }

        /* ============================================
           PRELOADER
        ============================================ */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 100000;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            position: relative;
            width: 120px;
            height: 120px;
        }

        .loader-circle {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 4px solid transparent;
            border-radius: 50%;
            animation: rotate 1.5s linear infinite;
        }

        .loader-circle:nth-child(1) {
            border-top-color: var(--primary);
            animation-delay: 0s;
        }

        .loader-circle:nth-child(2) {
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            border-right-color: var(--secondary);
            animation-delay: 0.2s;
            animation-direction: reverse;
        }

        .loader-circle:nth-child(3) {
            width: 60%;
            height: 60%;
            top: 20%;
            left: 20%;
            border-bottom-color: var(--accent);
            animation-delay: 0.4s;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loader-text {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Orbitron', sans-serif;
            font-size: 14px;
            letter-spacing: 4px;
            color: var(--primary);
            animation: pulse 1.5s ease-in-out infinite;
        }

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

        /* ============================================
           BACKGROUND EFFECTS
        ============================================ */
        .background-effects {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: float 20s ease-in-out infinite;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: var(--primary);
            top: -200px;
            right: -200px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: var(--secondary);
            bottom: -150px;
            left: -150px;
            animation-delay: 5s;
        }

        .orb-3 {
            width: 400px;
            height: 400px;
            background: var(--accent);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(50px, -50px) scale(1.1); }
            50% { transform: translate(-30px, 30px) scale(0.9); }
            75% { transform: translate(30px, 50px) scale(1.05); }
        }

        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(108, 92, 231, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(108, 92, 231, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { background-position: 0 0; }
            100% { background-position: 50px 50px; }
        }

        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            animation: particleFloat 15s linear infinite;
        }

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

        /* ============================================
           NAVIGATION
        ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(10, 10, 15, 0.9);
            backdrop-filter: blur(20px);
            padding: 15px 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 28px;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .logo:hover::after {
            transform: scaleX(1);
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 15px;
            letter-spacing: 1px;
            position: relative;
            padding: 10px 0;
            transition: var(--transition);
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: var(--transition);
            transform: translateX(-50%);
        }

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

        .nav-links a:hover::before {
            width: 100%;
        }

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

        .nav-cta {
            padding: 12px 30px;
            background: var(--gradient-1);
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 1px;
        }

        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: var(--glow-primary);
        }

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

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: var(--text);
            border-radius: 3px;
            transition: var(--transition);
        }

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

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

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

        /* ============================================
           HERO SECTION
        ============================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 100px 50px;
            overflow: hidden;
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            max-width: 1000px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 25px;
            background: rgba(108, 92, 231, 0.1);
            border: 1px solid rgba(108, 92, 231, 0.3);
            border-radius: 50px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .hero-badge-dot {
            width: 10px;
            height: 10px;
            background: #ff0000;
            border-radius: 50%;
            animation: blink 1.5s ease-in-out infinite;
        }

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

        .hero-badge-text {
            font-size: 14px;
            color: var(--text-muted);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(48px, 8vw, 100px);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-title-line {
            display: block;
            overflow: hidden;
        }

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

        .hero-title .outline-text {
            -webkit-text-stroke: 2px var(--primary);
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: clamp(18px, 2.5vw, 24px);
            color: var(--text-muted);
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .typed-text {
            color: var(--secondary);
        }

        .typed-cursor {
            color: var(--primary);
            animation: cursorBlink 1s infinite;
        }

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

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        .btn {
            padding: 18px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: var(--gradient-1);
            border: none;
            color: white;
            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.3), transparent);
            transition: 0.5s;
        }

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

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-primary);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--text);
        }

        .btn-secondary:hover {
            background: var(--primary);
            transform: translateY(-5px);
            box-shadow: var(--glow-primary);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }

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

        .stat-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 48px;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            animation: bounce 2s infinite;
        }

        .scroll-indicator span {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .scroll-indicator i {
            font-size: 24px;
            color: var(--primary);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* ============================================
           SECTION STYLES
        ============================================ */
        section {
            padding: 120px 50px;
            position: relative;
            z-index: 10;
        }

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

        .section-tag {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(108, 92, 231, 0.1);
            border: 1px solid rgba(108, 92, 231, 0.3);
            border-radius: 50px;
            font-size: 13px;
            color: var(--primary);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            margin-bottom: 20px;
        }

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

        .section-description {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ============================================
           ABOUT SECTION
        ============================================ */
        .about {
            background: var(--dark-light);
        }

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

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

        .about-image {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0.2;
            z-index: 1;
        }

        .about-image-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid var(--primary);
            border-radius: var(--border-radius);
            top: 20px;
            left: 20px;
            z-index: -1;
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10;
            animation: rotateIn 1s ease-out;
        }

        .experience-badge .number {
            font-family: 'Orbitron', sans-serif;
            font-size: 48px;
            font-weight: 700;
        }

        .experience-badge .text {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        @keyframes rotateIn {
            from {
                transform: rotate(-180deg) scale(0);
                opacity: 0;
            }
            to {
                transform: rotate(0) scale(1);
                opacity: 1;
            }
        }

        .about-content h3 {
            font-size: 32px;
            margin-bottom: 20px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .about-content p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.8;
        }

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

        .about-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(108, 92, 231, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(108, 92, 231, 0.1);
            transition: var(--transition);
        }

        .about-feature:hover {
            border-color: var(--primary);
            transform: translateX(10px);
        }

        .about-feature i {
            font-size: 24px;
            color: var(--primary);
        }

        .about-feature span {
            font-weight: 500;
        }

        /* ============================================
           TECH STACK SECTION
        ============================================ */
        .tech-stack {
            background: var(--dark);
        }

        .tech-categories {
            max-width: 1400px;
            margin: 0 auto;
        }

        .tech-category {
            margin-bottom: 60px;
        }

        .tech-category-title {
            font-size: 24px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .tech-category-title i {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 25px;
        }

        .tech-card {
            background: var(--dark-light);
            border: 1px solid rgba(108, 92, 231, 0.1);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: var(--transition);
        }

        .tech-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: var(--glow-primary);
        }

        .tech-card:hover::before {
            opacity: 0.05;
        }

        .tech-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            background: rgba(108, 92, 231, 0.1);
            border-radius: 16px;
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .tech-card:hover .tech-icon {
            background: var(--gradient-1);
            transform: scale(1.1) rotate(5deg);
        }

        .tech-name {
            font-weight: 600;
            margin-bottom: 5px;
            position: relative;
            z-index: 1;
        }

        .tech-level {
            font-size: 12px;
            color: var(--text-muted);
            position: relative;
            z-index: 1;
        }

        .tech-progress {
            width: 100%;
            height: 4px;
            background: rgba(108, 92, 231, 0.1);
            border-radius: 2px;
            margin-top: 15px;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        .tech-progress-bar {
            height: 100%;
            background: var(--gradient-1);
            border-radius: 2px;
            transition: width 1s ease;
        }

        /* ============================================
           PROJECTS SECTION
        ============================================ */
        .projects {
            background: var(--dark-light);
        }

        .projects-filter {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 30px;
            background: transparent;
            border: 1px solid rgba(108, 92, 231, 0.3);
            border-radius: 50px;
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--gradient-1);
            border-color: transparent;
            color: white;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .project-card {
            background: var(--dark);
            border-radius: var(--border-radius);
            overflow: hidden;
            position: relative;
            transition: var(--transition);
        }

        .project-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }

        .project-image {
            position: relative;
            height: 280px;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, transparent 100%);
            display: flex;
            align-items: flex-end;
            padding: 30px;
            opacity: 0;
            transition: var(--transition);
        }

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

        .project-links {
            display: flex;
            gap: 15px;
        }

        .project-link {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            transform: translateY(20px);
            opacity: 0;
        }

        .project-card:hover .project-link {
            transform: translateY(0);
            opacity: 1;
        }

        .project-card:hover .project-link:nth-child(2) {
            transition-delay: 0.1s;
        }

        .project-link:hover {
            transform: scale(1.2);
        }

        .project-content {
            padding: 30px;
        }

        .project-category {
            display: inline-block;
            padding: 5px 15px;
            background: rgba(108, 92, 231, 0.1);
            border-radius: 50px;
            font-size: 12px;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .project-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .project-description {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .project-tech {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .project-tech span {
            padding: 5px 12px;
            background: rgba(0, 206, 201, 0.1);
            border: 1px solid rgba(0, 206, 201, 0.2);
            border-radius: 5px;
            font-size: 12px;
            color: var(--secondary);
        }

        /* Featured Project */
        .featured-project {
            grid-column: span 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .featured-project .project-image {
            height: 100%;
        }

        .featured-project .project-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 50px;
            background: var(--dark-lighter);
        }

        .featured-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 15px;
            background: var(--gradient-2);
            border-radius: 50px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            width: fit-content;
        }

        .featured-project .project-title {
            font-size: 32px;
        }

        .featured-project .project-description {
            font-size: 16px;
        }

        
        /* ============================================
           CONTACT SECTION
        ============================================ */
        .contact {
            background: var(--dark-light);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-info h3 {
            font-size: 36px;
            margin-bottom: 20px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .contact-info > p {
            color: var(--text-muted);
            margin-bottom: 40px;
            font-size: 16px;
            line-height: 1.8;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: var(--dark);
            border-radius: 16px;
            border: 1px solid rgba(108, 92, 231, 0.1);
            transition: var(--transition);
            text-decoration: none;
            color: var(--text);
        }

        .contact-method:hover {
            border-color: var(--primary);
            transform: translateX(10px);
            box-shadow: var(--glow-primary);
        }

        .contact-method-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .contact-method-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .contact-method-text span {
            color: var(--text-muted);
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 40px;
        }

        .social-link {
            width: 55px;
            height: 55px;
            background: var(--dark);
            border: 1px solid rgba(108, 92, 231, 0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--gradient-1);
            border-color: transparent;
            transform: translateY(-5px) rotate(5deg);
        }

        .contact-form-wrapper {
            background: var(--dark);
            border-radius: var(--border-radius);
            padding: 50px;
            border: 1px solid rgba(108, 92, 231, 0.1);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

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

        .form-group {
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            font-size: 14px;
            color: var(--text);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 18px 20px;
            background: var(--dark-light);
            border: 2px solid rgba(108, 92, 231, 0.1);
            border-radius: 12px;
            color: var(--text);
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            transition: var(--transition);
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(108, 92, 231, 0.2);
        }

        .form-group textarea {
            resize: none;
            height: 150px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        .submit-btn {
            padding: 20px 50px;
            background: var(--gradient-1);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-primary);
        }

        .submit-btn i {
            transition: var(--transition);
        }

        .submit-btn:hover i {
            transform: translateX(5px);
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 40px;
        }

        .form-success.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .form-success i {
            font-size: 80px;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .form-success h3 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .form-success p {
            color: var(--text-muted);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ============================================
           FOOTER
        ============================================ */
        footer {
            background: var(--dark);
            padding: 80px 50px 30px;
            border-top: 1px solid rgba(108, 92, 231, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto 60px;
        }

        .footer-brand .logo {
            display: inline-block;
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 10px;
        }

        .footer-newsletter input {
            width: 100%;
            padding: 15px 20px;
            background: var(--dark-light);
            border: 1px solid rgba(108, 92, 231, 0.2);
            border-radius: 10px;
            color: var(--text);
            margin-bottom: 15px;
            outline: none;
        }

        .footer-newsletter input:focus {
            border-color: var(--primary);
        }

        .footer-newsletter button {
            width: 100%;
            padding: 15px 30px;
            background: var(--gradient-1);
            border: none;
            border-radius: 10px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .footer-newsletter button:hover {
            transform: translateY(-3px);
            box-shadow: var(--glow-primary);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid rgba(108, 92, 231, 0.1);
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 14px;
        }

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

        .footer-bottom-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
        }

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

        /* ============================================
           BACK TO TOP
        ============================================ */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: var(--gradient-1);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-primary);
        }

        /* ============================================
           RESPONSIVE DESIGN
        ============================================ */
        @media (max-width: 1200px) {
            .featured-project {
                grid-column: span 1;
                grid-template-columns: 1fr;
            }

            .featured-project .project-image {
                height: 280px;
            }
        }

        @media (max-width: 992px) {
            section {
                padding: 80px 30px;
            }

            .navbar {
                padding: 20px 30px;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--dark);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
            }

            .nav-links.active {
                opacity: 1;
                visibility: visible;
            }

            .nav-links a {
                font-size: 24px;
            }

            .menu-toggle {
                display: flex;
            }

            .nav-cta {
                display: none;
            }

            .about-grid,
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 100px 20px;
            }

            .hero-stats {
                gap: 30px;
            }

            .stat-number {
                font-size: 36px;
            }

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

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .cursor,
            .cursor-follower {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .contact-form-wrapper {
                padding: 30px 20px;
            }

            .experience-badge {
                width: 100px;
                height: 100px;
                bottom: -20px;
                right: -10px;
            }

            .experience-badge .number {
                font-size: 32px;
            }
        }

        /* ============================================
           ADDITIONAL ANIMATIONS
        ============================================ */
        .reveal-text {
            overflow: hidden;
        }

        .reveal-text span {
            display: inline-block;
            transform: translateY(100%);
            animation: revealText 0.8s ease forwards;
        }

        @keyframes revealText {
            to {
                transform: translateY(0);
            }
        }

        .magnetic-btn {
            position: relative;
            transition: transform 0.3s ease;
        }

        .glitch {
            position: relative;
        }

        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .glitch::before {
            animation: glitch-1 0.3s linear infinite;
            clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
            color: var(--accent);
        }

        .glitch::after {
            animation: glitch-2 0.3s linear infinite;
            clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
            color: var(--secondary);
        }

        @keyframes glitch-1 {
            0%, 100% { transform: translateX(0); }
            20% { transform: translateX(-2px); }
            40% { transform: translateX(2px); }
            60% { transform: translateX(-1px); }
            80% { transform: translateX(1px); }
        }

        @keyframes glitch-2 {
            0%, 100% { transform: translateX(0); }
            20% { transform: translateX(2px); }
            40% { transform: translateX(-2px); }
            60% { transform: translateX(1px); }
            80% { transform: translateX(-1px); }
        }

        .tilt-card {
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

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

        /* Image loading placeholder */
        .img-placeholder {
            background: linear-gradient(90deg, var(--dark-light) 25%, var(--dark-lighter) 50%, var(--dark-light) 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }