       @import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=IBM+Plex+Sans:wght@300;400;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #ff3333;
            --primary-dark: #cc2222;
            --secondary: #0a0a0a;
            --accent: #1a1a1a;
            --neon-pink: #ff1a4d;
            --neon-purple: #8b0000;
            --text-light: #f0f0f0;
            --text-muted: #888888;
            --background: #0f0f0f;
            --surface: #1a1a1a;
            --grid-color: rgba(255, 51, 51, 0.05);
        }

        body {
            font-family: 'IBM Plex Sans', sans-serif;
            background: linear-gradient(90deg, var(--grid-color) 1px, transparent 1px),
                        linear-gradient(var(--grid-color) 1px, transparent 1px),
                        #0f0f0f;
            background-size: 40px 40px;
            background-color: #0f0f0f;
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 1;
            pointer-events: none;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 1rem;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 4rem);
            max-width: 1200px;
            backdrop-filter: blur(20px);
            background: rgba(15, 15, 15, 0.8);
            border: 1px solid rgba(255, 51, 51, 0.2);
            border-radius: 50px;
            z-index: 2000;
            padding: 0.9rem 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        nav.scrolled {
            background: rgba(15, 15, 15, 0.95);
            border: 1px solid rgba(255, 51, 51, 0.35);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 0.5px;
            font-family: 'IBM Plex Sans', sans-serif;
            text-transform: lowercase;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .logo:hover {
            filter: brightness(1.1);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 3.5rem;
        }

        nav a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            position: relative;
            text-transform: uppercase;
            font-family: 'Space Mono', monospace;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--neon-pink));
            transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a:hover::after {
            width: 100%;
        }

        .cta-btn {
            background: transparent;
            color: var(--primary);
            padding: 0.8rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 2px solid var(--primary);
            font-family: 'IBM Plex Sans', sans-serif;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            display: inline-block;
        }

        .cta-btn:hover {
            background: var(--primary);
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 51, 51, 0.3);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 4rem 2rem;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }


        @keyframes pulse-glow {
            0%, 100% { transform: translate(-50%, 0) scale(1); opacity: 0.6; }
            50% { transform: translate(-50%, 0) scale(1.1); opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            animation: fade-in-up 1s ease-out;
            pointer-events: auto;
        }

        .tagline {
            color: var(--primary);
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-family: 'Space Mono', monospace;
            animation: fade-in 1s ease-out 0.2s both;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 9vw, 5rem);
            margin: 1.5rem 0;
            line-height: 1.15;
            font-weight: 700;
            font-family: 'IBM Plex Sans', sans-serif;
            letter-spacing: 0px;
            animation: fade-in-up 1s ease-out 0.4s both;
        }

        .hero-content h1 .highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--neon-pink) 50%, var(--neon-purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.3));
        }

        .hero-content p {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin: 1.5rem auto;
            max-width: 650px;
            font-weight: 300;
            line-height: 1.8;
            animation: fade-in-up 1s ease-out 0.6s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 3rem;
            flex-wrap: wrap;
            animation: fade-in 1s ease-out 0.8s both;
        }

        .btn-primary {
            background: var(--primary);
            color: #000;
            padding: 0.9rem 2.2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 2px solid var(--primary);
            font-family: 'IBM Plex Sans', sans-serif;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary-dark);
            transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: -1;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 51, 51, 0.3);
            color: #000;
        }

        .btn-primary:hover::before {
            left: 0;
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            padding: 0.9rem 2.2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid var(--primary);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-family: 'IBM Plex Sans', sans-serif;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: -1;
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 51, 51, 0.3);
            color: #000;
        }

        .btn-secondary:hover::before {
            left: 0;
        }

        .cta-btn {
            background: transparent;
            color: var(--primary);
            padding: 0.9rem 2.2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid var(--primary);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-family: 'IBM Plex Sans', sans-serif;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: -1;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 51, 51, 0.3);
            color: #000;
        }

        .cta-btn:hover::before {
            left: 0;
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fade-in {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Section Styling */
        section {
            padding: 6rem 2rem;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2.2rem, 6vw, 3.5rem);
            margin-bottom: 4rem;
            font-weight: 700;
            font-family: 'IBM Plex Sans', sans-serif;
            letter-spacing: -0.5px;
            opacity: 0;
            animation: scroll-fade-in 0.8s ease-out forwards;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            border-radius: 2px;
        }

        .section-title.in-view {
            animation: scroll-fade-in 0.8s ease-out forwards;
        }

        .section-title .highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--neon-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            font-family: 'Space Mono', monospace;
            letter-spacing: 0.5px;
        }

        @keyframes scroll-fade-in {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* About Section */
        .about {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            font-family: 'IBM Plex Sans', sans-serif;
            font-weight: 600;
            letter-spacing: -0.3px;
        }

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            line-height: 1.9;
            font-weight: 300;
        }

        .about-avatar {
            width: 350px;
            height: 350px;
            border: 2px solid var(--primary);
            border-radius: 15px;
            background: linear-gradient(135deg, rgba(255, 51, 51, 0.15), rgba(139, 0, 0, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 40px rgba(255, 51, 51, 0.15), inset 0 0 20px rgba(255, 51, 51, 0.08);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .about-avatar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: conic-gradient(from 0deg, var(--primary), var(--neon-pink), var(--neon-purple), var(--primary));
            opacity: 0;
            animation: spin-border 8s linear infinite;
            border-radius: 15px;
            z-index: -1;
        }

        @keyframes spin-border {
            0% { opacity: 0; transform: rotate(0deg); }
            50% { opacity: 0.2; }
            100% { opacity: 0; transform: rotate(360deg); }
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .stat {
            background: rgba(255, 51, 51, 0.08);
            border: 1px solid rgba(255, 51, 51, 0.2);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .stat::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 51, 51, 0.2), transparent);
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .stat:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 51, 51, 0.15);
        }

        .stat:hover::before {
            opacity: 1;
        }

        .stat-value {
            font-size: 2.5rem;
            color: var(--primary);
            font-weight: 700;
            font-family: 'IBM Plex Sans', sans-serif;
            letter-spacing: -1px;
            width: 100%;
            display: block;
            text-align: center;
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 0.5rem;
            font-family: 'Space Mono', monospace;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: rgba(255, 51, 51, 0.05);
            border: 1px solid rgba(255, 51, 51, 0.15);
            padding: 2.5rem;
            border-radius: 14px;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: scroll-fade-in 0.8s ease-out forwards;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 51, 51, 0.03);
            transition: top 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(255, 51, 51, 0.2);
            border-color: rgba(255, 51, 51, 0.4);
        }

        .service-card:hover::before {
            top: 0;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
            position: relative;
            z-index: 2;
        }

        .service-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.8rem;
            color: var(--primary);
            font-family: 'IBM Plex Sans', sans-serif;
            position: relative;
            z-index: 2;
            font-weight: 600;
            letter-spacing: -0.3px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            position: relative;
            z-index: 2;
            font-weight: 300;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            margin-top: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .tag {
            background: transparent;
            color: var(--primary);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-family: 'Space Mono', monospace;
            border: 1px solid rgba(255, 51, 51, 0.5);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .tag:hover {
            background: rgba(255, 51, 51, 0.15);
            border-color: var(--primary);
            color: var(--text-light);
            box-shadow: 0 4px 12px rgba(255, 51, 51, 0.2);
        }

        /* Portfolio Section */
        .portfolio {
            text-align: center;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .portfolio-item {
            background: rgba(255, 51, 51, 0.05);
            border: 1px solid rgba(255, 51, 51, 0.15);
            border-radius: 14px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            opacity: 0;
            animation: scroll-fade-in 0.8s ease-out forwards;
            position: relative;
        }

        .portfolio-item:hover {
            border-color: var(--primary);
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(255, 51, 51, 0.25), inset 0 0 30px rgba(255, 51, 51, 0.08);
        }

        .portfolio-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, rgba(255, 51, 51, 0.2), rgba(139, 0, 0, 0.15));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .portfolio-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 51, 51, 0.2), transparent);
            animation: pulse 5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0; }
            50% { transform: scale(1.4); opacity: 0.5; }
        }

        .portfolio-content {
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .portfolio-content h3 {
            margin-bottom: 0.7rem;
            color: var(--primary);
            font-family: 'IBM Plex Sans', sans-serif;
            font-weight: 600;
            letter-spacing: -0.3px;
        }

        .portfolio-content p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Tech Stack */
        .tech-stack {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    justify-items: center;
}

        .tech-item {
            background: rgba(255, 51, 51, 0.08);
			    width: 100%;

            border: 1px solid rgba(255, 51, 51, 0.2);
            padding: 1.5rem;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            animation: scroll-fade-in 0.8s ease-out forwards;
            position: relative;
            overflow: hidden;
        }

        .tech-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 51, 51, 0.15), transparent);
            transition: left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .tech-item:hover {
            border-color: var(--primary);
            background: rgba(255, 51, 51, 0.12);
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 51, 51, 0.2);
        }

        .tech-item:hover::before {
            left: 100%;
        }

        .tech-icon {
            font-size: 2.5rem;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tech-item:hover .tech-icon {
            transform: scale(1.25) rotate(15deg);
        }

        .tech-item span {
            font-size: 0.9rem;
            font-weight: 600;
            font-family: 'Space Mono', monospace;
            color: var(--text-light);
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, rgba(255, 51, 51, 0.08), rgba(139, 0, 0, 0.06));
            border: 1px solid rgba(255, 51, 51, 0.2);
            border-radius: 15px;
            padding: 4rem;
            margin-bottom: 5rem;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 40%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 51, 51, 0.08), transparent);
            pointer-events: none;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
            z-index: 2;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.7rem;
            font-weight: 600;
            color: var(--text-light);
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group textarea {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 51, 51, 0.2);
            padding: 1rem;
            border-radius: 8px;
            color: var(--text-light);
            font-family: 'IBM Plex Sans', sans-serif;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            backdrop-filter: blur(10px);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(136, 136, 136, 0.6);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 20px rgba(255, 51, 51, 0.2), inset 0 0 10px rgba(255, 51, 51, 0.03);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 180px;
        }

        .contact-methods {
            display: contents;
        }

        .contact-method {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            align-items: center;
            text-align: center;
            padding: 1.2rem;
            background: rgba(255, 51, 51, 0.05);
            border: 1px solid rgba(255, 51, 51, 0.15);
            border-radius: 8px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            min-height: 200px;
        }

        .contact-method:hover {
            border-color: rgba(255, 51, 51, 0.4);
            background: rgba(255, 51, 51, 0.08);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 51, 51, 0.1);
        }

        .contact-icon {
            font-size: 1.5rem;
            width: auto;
            flex-shrink: 0;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .contact-icon img {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        .contact-method:hover .contact-icon {
            transform: scale(1.15);
        }

        .contact-method h3 {
            margin: 0;
            font-family: 'IBM Plex Sans', sans-serif;
            color: var(--primary);
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: -0.3px;
        }

        .contact-method p {
            margin: 0;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .contact-method h3 {
            margin-bottom: 0.4rem;
            font-family: 'IBM Plex Sans', sans-serif;
            color: var(--primary);
            font-weight: 600;
            letter-spacing: -0.3px;
        }

        .contact-method p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .contact-method-telegram {
            grid-column: 1 / -1;
            max-width: 350px;
            margin: 0 auto;
        }

        .contact-btn {
            margin-top: auto;
            align-self: center;
            padding: 0.6rem 1.2rem;
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
            border-radius: 6px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            font-family: 'IBM Plex Sans', sans-serif;
            letter-spacing: 0.5px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
        }

        .contact-btn:hover {
            background: var(--primary);
            color: #000;
            box-shadow: 0 6px 16px rgba(255, 51, 51, 0.3);
            transform: translateY(-2px);
        }

        .contact-btn-email {
            color: #fff;
        }

        .contact-btn-email:hover {
            background: #fff;
            color: #000;
            box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
        }

        .contact-btn-oguser {
            color: #888888;
        }

        .contact-btn-oguser:hover {
            background: #888888;
            color: #000;
            box-shadow: 0 6px 16px rgba(136, 136, 136, 0.3);
        }

        .contact-btn-cracked {
            color: #888888;
        }

        .contact-btn-cracked:hover {
            background: #888888;
            color: #000;
            box-shadow: 0 6px 16px rgba(136, 136, 136, 0.3);
        }

        .contact-btn-telegram {
            color: #00a8e8;
        }

        .contact-btn-telegram:hover {
            background: #00a8e8;
            color: #000;
            box-shadow: 0 6px 16px rgba(0, 168, 232, 0.3);
        }

        .contact-method a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-weight: 600;
        }

        .contact-method a:hover {
            text-decoration: underline;
            filter: drop-shadow(0 0 8px var(--primary));
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.6);
            border-top: 1px solid rgba(255, 51, 51, 0.15);
            padding: 4rem 2rem 2rem;
            text-align: center;
            position: relative;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .footer-nav a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .social-link {
            width: 60px;
            height: 60px;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-decoration: none;
            font-size: 1.3rem;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--primary);
            border-radius: 50%;
            transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .social-link:hover {
            border-color: var(--primary);
            color: #0f0f0f;
        }

        .social-link:hover::before {
            width: 100%;
            height: 100%;
        }

        .social-link img {
            width: 45px;
            height: 45px;
            object-fit: contain;
        }

        .footer-text {
            color: var(--text-muted);
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        .footer-location {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-top: 1rem;
            font-family: 'Space Mono', monospace;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 1rem;
            }

            nav.scrolled {
                padding: 0.8rem 1rem;
            }

            nav ul {
                display: none;
            }

            .about {
                grid-template-columns: 1fr;
            }

            .about-avatar {
                width: 100%;
                max-width: 300px;
            }

            .stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact {
                padding: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
            }

            .footer-nav {
                gap: 1.5rem;
                font-size: 0.85rem;
            }

            section {
                padding: 4rem 1.5rem;
            }

            .portfolio-grid, .services-grid {
                grid-template-columns: 1fr;
            }
        }

@media (max-width: 1024px) {
    .tech-stack {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-title.align-left {
  text-align: left;
}

.section-title.align-left::after {
  margin-left: 0;
  margin-right: 0;
}
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(255, 51, 51, 0.05);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--primary), var(--neon-purple));
            border-radius: 5px;
            border: 2px solid rgba(15, 15, 15, 0.8);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, var(--primary-dark), #660000);
        }