        /* ============================================
                   CSS VARIABLES & RESET
                   ============================================ */
        :root {
            --bg-primary: #0a0a0f;
            --bg-secondary: #111118;
            --bg-card: #16161f;
            --bg-glass: rgba(255, 255, 255, 0.03);
            --text-primary: #ffffff;
            --text-secondary: #a0a0b8;
            --text-muted: #8a8aa0;
            --accent-gradient: linear-gradient(135deg, #6e3eff, #a855f7, #ec4899);
            --accent-purple: #8b5cf6;
            --accent-pink: #ec4899;
            --accent-blue: #3b82f6;
            --accent-cyan: #06b6d4;
            --accent-green: #10b981;
            --accent-orange: #f59e0b;
            --border-color: rgba(255, 255, 255, 0.08);
            --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
            --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
            --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --border-radius: 16px;
            --border-radius-lg: 24px;
            --font-primary: 'Poppins', sans-serif;
            --font-secondary: 'Inter', sans-serif;
            --container-width: 1200px;
            --section-padding: 100px 0;
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-primary);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Animated background blobs */
        body::before,
        body::after {
            content: '';
            position: fixed;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.15;
            z-index: 0;
            pointer-events: none;
            animation: blobFloat 20s infinite ease-in-out;
        }

        body::before {
            background: var(--accent-purple);
            top: -200px;
            right: -200px;
        }

        body::after {
            background: var(--accent-pink);
            bottom: -200px;
            left: -200px;
            animation-delay: -10s;
        }

        @keyframes blobFloat {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(80px, -60px) scale(1.1);
            }
            66% {
                transform: translate(-40px, 40px) scale(0.9);
            }
        }

        /* ============================================
                   UTILITY CLASSES
                   ============================================ */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        .section {
            padding: var(--section-padding);
            position: relative;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 16px;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            background-clip: text;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin: 0 auto 50px auto;
            max-width: 600px;
            font-family: var(--font-secondary);
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            border: none;
            font-family: var(--font-primary);
            letter-spacing: 0.3px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary {
            background: var(--accent-gradient);
            color: #fff;
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        .glass-card {
            background: var(--bg-glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            transition: var(--transition-smooth);
        }

        .glass-card:hover {
            border-color: rgba(139, 92, 246, 0.3);
            box-shadow: var(--shadow-card);
            transform: translateY(-5px);
        }

        /* Reveal animation */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

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

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }
        .reveal-delay-2 {
            transition-delay: 0.2s;
        }
        .reveal-delay-3 {
            transition-delay: 0.3s;
        }
        .reveal-delay-4 {
            transition-delay: 0.4s;
        }
        .reveal-delay-5 {
            transition-delay: 0.5s;
        }
        .reveal-delay-6 {
            transition-delay: 0.6s;
        }

        /* ============================================
                   NAVIGATION
                   ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition-smooth);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(10, 10, 15, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            text-decoration: none;
            color: var(--text-primary);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo span {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

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

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

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

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

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-cta .btn {
            padding: 10px 22px;
            font-size: 0.85rem;
        }

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

        .hamburger span {
            width: 28px;
            height: 2.5px;
            background: var(--text-primary);
            border-radius: 4px;
            transition: var(--transition-smooth);
            display: block;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

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

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--accent-purple);
            letter-spacing: 1px;
            text-transform: uppercase;
            width: fit-content;
        }

        .hero-badge i {
            font-size: 0.9rem;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -2px;
            margin: 0;
        }

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

        .hero-role {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--text-secondary);
            min-height: 36px;
        }

        .hero-role .cursor {
            display: inline-block;
            width: 3px;
            height: 1.2em;
            background: var(--accent-purple);
            margin-left: 4px;
            animation: blink 0.8s infinite;
            vertical-align: middle;
        }

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

        .hero-description {
            color: var(--text-secondary);
            font-size: 1.05rem;
            max-width: 520px;
            font-family: var(--font-secondary);
            line-height: 1.7;
        }

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

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 20px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-image-wrapper {
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: var(--accent-gradient);
            padding: 5px;
            position: relative;
            animation: floatAnimation 6s infinite ease-in-out;
            box-shadow: 0 0 80px rgba(139, 92, 246, 0.4);
        }

        .hero-image-inner {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--bg-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 4px solid var(--bg-primary);
        }

        .hero-image-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .hero-avatar-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-purple);
            background: var(--bg-secondary);
        }

        @keyframes floatAnimation {
            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-15px) rotate(2deg);
            }
            75% {
                transform: translateY(10px) rotate(-2deg);
            }
        }

        .hero-image-wrapper::after {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent-pink);
            filter: blur(10px);
            opacity: 0.6;
            animation: pulseDot 3s infinite;
        }

        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            bottom: -15px;
            left: -25px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--accent-cyan);
            filter: blur(10px);
            opacity: 0.5;
            animation: pulseDot 3s infinite 1.5s;
        }

        @keyframes pulseDot {
            0%,
            100% {
                transform: scale(1);
                opacity: 0.6;
            }
            50% {
                transform: scale(1.5);
                opacity: 0.8;
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: bounceDown 2s infinite;
        }

        .scroll-indicator i {
            font-size: 1.2rem;
        }

        @keyframes bounceDown {
            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(10px);
            }
        }

        /* ============================================
                   ABOUT SECTION
                   ============================================ */
        .about-section {
            background: var(--bg-secondary);
            border-radius: 40px 40px 0 0;
            margin-top: -40px;
            padding-top: 80px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .about-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .about-content p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-size: 1rem;
            font-family: var(--font-secondary);
            line-height: 1.8;
        }

        .about-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 24px;
        }

        .tag {
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            cursor: default;
        }

        .tag:hover {
            background: rgba(139, 92, 246, 0.15);
            border-color: rgba(139, 92, 246, 0.3);
            color: var(--text-primary);
        }

        .about-image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-image {
            width: 100%;
            max-width: 380px;
            aspect-ratio: 1;
            border-radius: var(--border-radius-lg);
            background: var(--bg-card);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
            font-size: 6rem;
            color: var(--accent-purple);
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-card);
        }

        .about-image i {
            font-size: 8rem;
            opacity: 0.7;
        }

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

        /* ============================================
                   SERVICES SECTION
                   ============================================ */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            padding: 35px 30px;
            background: var(--bg-glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-lg);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: rgba(139, 92, 246, 0.3);
            box-shadow: var(--shadow-card);
        }

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

        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            background: rgba(139, 92, 246, 0.12);
            color: var(--accent-purple);
            transition: var(--transition-smooth);
        }

        .service-card:hover .service-icon {
            background: var(--accent-gradient);
            color: #fff;
            transform: scale(1.05);
        }

        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 0.92rem;
            font-family: var(--font-secondary);
            line-height: 1.7;
        }

        /* ============================================
                   PORTFOLIO SECTION
                   ============================================ */
        .portfolio-filter {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 24px;
            border-radius: 50px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            font-family: var(--font-primary);
        }

        .filter-btn:hover {
            border-color: rgba(139, 92, 246, 0.4);
            color: var(--text-primary);
        }

        .filter-btn.active {
            background: var(--accent-gradient);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .portfolio-item {
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            aspect-ratio: 4/3;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            transition: var(--transition-smooth);
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
            border-color: rgba(139, 92, 246, 0.4);
            box-shadow: var(--shadow-card);
        }

        .portfolio-item-inner {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
            font-size: 3rem;
            color: var(--accent-purple);
            transition: var(--transition-smooth);
            position: relative;
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: #fff;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }

        .portfolio-overlay h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .portfolio-overlay p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .portfolio-item .category-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 500;
            color: #fff;
            z-index: 2;
        }

        /* ============================================
                   SKILLS SECTION
                   ============================================ */
        .skills-section {
            background: var(--bg-secondary);
            border-radius: 40px;
            margin: 0 20px;
            padding: 80px 20px;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .skill-category h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-primary);
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .skill-category h3 i {
            color: var(--accent-purple);
        }

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

        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .skill-info span:first-child {
            color: var(--text-secondary);
        }

        .skill-info span:last-child {
            color: var(--accent-purple);
            font-weight: 600;
        }

        .skill-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .skill-bar-fill {
            height: 100%;
            border-radius: 10px;
            background: var(--accent-gradient);
            width: 0;
            transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
        }

        .skill-bar-fill::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 20px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            animation: shimmer 2s infinite;
        }

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

        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }

        .tech-tag {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.2);
            color: var(--accent-purple);
            transition: var(--transition-smooth);
        }

        .tech-tag:hover {
            background: rgba(139, 92, 246, 0.2);
        }

        /* ============================================
                   CONTACT SECTION
                   ============================================ */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: var(--bg-glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            transition: var(--transition-smooth);
        }

        .contact-item:hover {
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateX(5px);
        }

        .remove-styling{
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .contact-item-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            background: rgba(139, 92, 246, 0.12);
            color: var(--accent-purple);
            flex-shrink: 0;
        }

        .contact-item-content h4 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .contact-item-content p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-family: var(--font-secondary);
        }

        .contact-form {
            background: var(--bg-glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-lg);
            padding: 40px;
        }

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

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 0.95rem;
            font-family: var(--font-secondary);
            transition: var(--transition-smooth);
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--accent-purple);
            background: rgba(139, 92, 246, 0.05);
            box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
        }

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

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

        .form-submit {
            width: 100%;
            justify-content: center;
            font-size: 1rem;
            padding: 16px;
        }

        /* ============================================
                   FOOTER
                   ============================================ */
        .footer {
            padding: 40px 0;
            background: var(--bg-secondary);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 60px;
        }

        .footer-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

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

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition-smooth);
            font-size: 1rem;
        }

        .footer-social a:hover {
            background: var(--accent-gradient);
            color: #fff;
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
        }

        /* ============================================
                   RESPONSIVE DESIGN
                   ============================================ */
        @media screen and (max-width: 1024px) {
            .hero-title {
                font-size: 3.2rem;
            }
            .hero-image-wrapper {
                width: 340px;
                height: 340px;
            }
            .services-grid,
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media screen and (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            .section {
                padding: 70px 0;
            }
            .hero {
                padding: 100px 0 60px;
            }
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            .hero-text {
                align-items: center;
            }
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-role {
                font-size: 1.2rem;
            }
            .hero-description {
                text-align: center;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-stats {
                justify-content: center;
            }
            .hero-image-wrapper {
                width: 260px;
                height: 260px;
            }
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(10, 10, 15, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                transition: left 0.4s ease;
                z-index: 999;
            }
            .nav-links.open {
                left: 0;
            }
            .nav-links a {
                font-size: 1.2rem;
            }
            .nav-cta {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .services-grid,
            .portfolio-grid,
            .skills-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .about-image {
                display: none;
            }
            .skills-section {
                margin: 0 10px;
                padding: 60px 10px;
            }
            .contact-form {
                padding: 25px;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            body::before, body::after {
                width: 300px;
                height: 300px;
                filter: blur(60px);
            }
        }

        @media screen and (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            .hero-stats {
                gap: 20px;
                flex-wrap: wrap;
            }
            .stat-number {
                font-size: 1.5rem;
            }
            .glass-card {
                padding: 25px;
            }
            .portfolio-filter {
                gap: 8px;
            }
            .filter-btn {
                padding: 8px 16px;
                font-size: 0.75rem;
            }
        }