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

        :root {
            /* Dark Theme Colors */
            --primary-color: #00d4ff;
            --secondary-color: #0099ff;
            --accent-color: #0066cc;
            --glow-primary: #00d4ff;
            --glow-secondary: #0099ff;
            --glow-accent: #3366ff;
            
            /* Text Colors */
            --text-primary: #ffffff;
            --text-secondary: #b3d9ff;
            --text-light: #e6f3ff;
            --text-muted: #80bfff;
            
            /* Background Colors */
            --bg-primary: #0a0a0f;
            --bg-secondary: #0f0f1a;
            --bg-tertiary: #1a1a2e;
            --bg-card: rgba(26, 26, 46, 0.8);
            --bg-glass: rgba(0, 212, 255, 0.05);
            
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099ff 50%, #3366ff 100%);
            --gradient-secondary: linear-gradient(45deg, #0066cc, #00d4ff, #3366ff);
            --gradient-glow: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(0, 153, 255, 0.2) 50%, rgba(51, 102, 255, 0.1) 100%);
            --gradient-bg: linear-gradient(135deg, #0a0a0f 0%, #0f0f1a 25%, #1a1a2e 50%, #16213e 75%, #0d1929 100%);
            
            /* Shadows & Glows */
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
            --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.6);
            --glow-sm: 0 0 10px rgba(0, 212, 255, 0.3);
            --glow-md: 0 0 20px rgba(0, 212, 255, 0.4);
            --glow-lg: 0 0 30px rgba(0, 212, 255, 0.5);
            --glow-xl: 0 0 40px rgba(0, 212, 255, 0.6);
            --glow-pulse: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.4);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--gradient-bg);
            background-attachment: fixed;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated Background Particles */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(0, 153, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(51, 102, 255, 0.1) 0%, transparent 50%);
            animation: backgroundPulse 6s ease-in-out infinite alternate;
            z-index: -1;
            pointer-events: none;
        }

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

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 15, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
            padding: 1rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        header.scrolled {
            background: rgba(10, 10, 15, 0.95);
            box-shadow: var(--shadow-lg), var(--glow-sm);
            border-bottom-color: rgba(0, 212, 255, 0.4);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: var(--glow-sm);
            transition: all 0.3s ease;
        }

        .logo:hover {
            filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
            transform: scale(1.05);
        }

        .navlist {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .navlist a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        .navlist a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-glass);
            border-radius: 8px;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: -1;
        }

        .navlist a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
            box-shadow: var(--glow-sm);
        }

        .navlist a:hover,
        .navlist a.active {
            color: var(--text-primary);
            text-shadow: var(--glow-sm);
        }

        .navlist a:hover::before,
        .navlist a.active::before {
            opacity: 1;
        }

        .navlist a:hover::after,
        .navlist a.active::after {
            width: 80%;
        }

        .top-btn .h-btn {
            padding: 0.7rem 1.5rem;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md), var(--glow-sm);
            position: relative;
            overflow: hidden;
        }

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

        .top-btn .h-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg), var(--glow-md);
        }

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

        .menu-icon {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-primary);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 2rem;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(0, 153, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(51, 102, 255, 0.05) 0%, transparent 70%);
            animation: heroGlow 8s ease-in-out infinite alternate;
            z-index: 1;
        }

        @keyframes heroGlow {
            0% { opacity: 0.3; }
            100% { opacity: 0.8; }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .main-content h4 {
            font-size: 1.2rem;
            color: var(--glow-primary);
            margin-bottom: 0.5rem;
            font-weight: 500;
            text-shadow: var(--glow-sm);
            animation: textGlow 2s ease-in-out infinite alternate;
        }

        @keyframes textGlow {
            0% { text-shadow: 0 0 5px rgba(0, 212, 255, 0.5); }
            100% { text-shadow: 0 0 15px rgba(0, 212, 255, 0.8); }
        }

        .main-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .main-content h1 span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
        }

        .main-content p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .main-content p span {
            font-style: italic;
            color: var(--glow-primary);
            font-weight: 500;
            text-shadow: var(--glow-sm);
        }

        .social {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .social a {
            width: 45px;
            height: 45px;
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            color: var(--glow-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 212, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .social a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: -1;
        }

        .social a:hover {
            transform: translateY(-3px);
            box-shadow: var(--glow-md);
            color: white;
        }

        .social a:hover::before {
            opacity: 1;
        }

        .main-btn {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .btn {
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

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

        .btn:first-child {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-md), var(--glow-sm);
        }

        .btn2 {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            color: var(--glow-primary);
            border: 2px solid var(--glow-primary);
            box-shadow: var(--shadow-md);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg), var(--glow-md);
        }

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

        .coding {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .coding a {
            width: 50px;
            height: 50px;
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            color: var(--glow-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.5rem;
            border: 1px solid rgba(0, 212, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .coding a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: -1;
        }

        .coding a:hover {
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--glow-md);
        }

        .coding a:hover::before {
            opacity: 1;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 55px;
            padding-top: 60px;
        }

        .hero-avatar {
            width: 350px;
            height: 350px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-xl), var(--glow-pulse);
            animation: float 6s ease-in-out infinite, avatarGlow 3s ease-in-out infinite alternate;
            position: relative;
            overflow: hidden; 
        }

        .hero-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block; 
        }

        .hero-avatar::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: var(--gradient-primary);
            border-radius: 50%;
            opacity: 0.3;
            animation: spin 10s linear infinite;
            z-index: -1;
        }

        @keyframes avatarGlow {
            0% { box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 212, 255, 0.6); }
            100% { box-shadow: var(--shadow-xl), 0 0 60px rgba(0, 212, 255, 1); }
        }

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

        .hero-avatar i {
            font-size: 8rem;
            color: white;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        }

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

        /* Section Styles */
        section {
            padding: 5rem 2rem;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
            box-shadow: var(--glow-sm);
        }

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

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(0, 153, 255, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about-image {
            display: flex;
            justify-content: center;
            align-items: center;
            object-fit: contain;
        }

        .about-avatar {
            width: 300px;
            height: 300px;
            background: var(--gradient-secondary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-xl), var(--glow-lg);
            transform: rotate(-5deg);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            object-fit: contain;
        }
        .about-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block; 
        }

        .about-avatar::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-primary);
            border-radius: 22px;
            opacity: 0.3;
            z-index: -1;
            animation: borderGlow 2s ease-in-out infinite alternate;
        }

        @keyframes borderGlow {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }

        .about-avatar:hover {
            transform: rotate(0deg) scale(1.05);
            box-shadow: var(--shadow-xl), var(--glow-xl);
        }

        .about-avatar i {
            font-size: 6rem;
            color: white;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        }

        .about-text h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.3;
            color: var(--text-primary);
        }

        .exp-area {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .exp-item {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .exp-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-glow);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: -1;
        }

        .exp-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-md);
            border-color: rgba(0, 212, 255, 0.5);
        }

        .exp-item:hover::before {
            opacity: 1;
        }

        .exp-label {
            font-weight: 600;
            color: var(--glow-primary);
            margin-bottom: 0.5rem;
            text-shadow: var(--glow-sm);
        }

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

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            box-shadow: var(--glow-sm);
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-glow);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--glow-lg);
            border-color: rgba(0, 212, 255, 0.5);
        }

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

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            box-shadow: var(--glow-md);
            position: relative;
        }

        .service-icon::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-primary);
            border-radius: 22px;
            opacity: 0.3;
            z-index: -1;
            animation: iconGlow 2s ease-in-out infinite alternate;
        }

        @keyframes iconGlow {
            0% { opacity: 0.3; transform: scale(1); }
            100% { opacity: 0.7; transform: scale(1.05); }
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .service-card p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .service-link {
            color: var(--glow-primary);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            text-shadow: var(--glow-sm);
        }

        .service-link:hover {
            gap: 1rem;
            filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.8));
        }

        /* Portfolio Section */
        .portfolio {
            background: var(--bg-secondary);
            position: relative;
        }

        .portfolio::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(51, 102, 255, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
            z-index: 2;
        }

        .portfolio-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            object-fit: contain;
        }

        .portfolio-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-glow);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: -1;
        }

        .portfolio-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-lg);
            border-color: rgba(0, 212, 255, 0.5);
        }

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

        .portfolio-image {
            height: 200px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .portfolio-image img {
            height: 100%;
            width: auto; /* or 100% if you want full stretch */
            object-fit: cover; /* this works now */
        }
        .portfolio-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .portfolio-card:hover .portfolio-image::before {
            left: 100%;
        }

        .portfolio-content {
            padding: 1.5rem;
        }

        .portfolio-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .portfolio-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .portfolio-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--glow-primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            text-shadow: var(--glow-sm);
        }

        .portfolio-link:hover {
            gap: 1rem;
            filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.8));
        }

        /* Contact Section */
        .contact-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 212, 255, 0.3);
            box-shadow: var(--shadow-lg), var(--glow-md);
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-glow);
            opacity: 0.1;
            z-index: -1;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-input {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(0, 212, 255, 0.2);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--bg-tertiary);
            color: var(--text-primary);
            backdrop-filter: blur(5px);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--glow-primary);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2), var(--glow-sm);
            background: var(--bg-secondary);
        }

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

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

        .send-btn {
            width: 100%;
            padding: 1rem 2rem;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md), var(--glow-sm);
            position: relative;
            overflow: hidden;
        }

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

        .send-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg), var(--glow-md);
        }

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

        .send-btn:active {
            transform: translateY(0);
        }

        /* Footer */
        .footer {
            background: var(--bg-primary);
            color: var(--text-primary);
            text-align: center;
            padding: 2rem;
            position: relative;
            border-top: 1px solid rgba(0, 212, 255, 0.3);
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .scroll-top {
            position: absolute;
            top: -25px;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: var(--shadow-lg), var(--glow-md);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .scroll-top::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-primary);
            border-radius: 50%;
            opacity: 0.3;
            z-index: -1;
            animation: scrollGlow 2s ease-in-out infinite alternate;
        }

        @keyframes scrollGlow {
            0% { opacity: 0.3; transform: scale(1); }
            100% { opacity: 0.7; transform: scale(1.1); }
        }

        .scroll-top:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl), var(--glow-lg);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-icon {
                display: block;
            }

            .navlist {
                position: fixed;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 15, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow-lg), var(--glow-sm);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-top: 1px solid rgba(0, 212, 255, 0.3);
            }

            .navlist.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero-avatar {
                width: 250px;
                height: 250px;
            }

            .about-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .main-btn {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 250px;
            }

            .exp-area {
                grid-template-columns: 1fr;
            }

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

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

            .nav-container {
                padding: 0 1rem;
            }

            section {
                padding: 3rem 1rem;
            }

            .contact-form {
                padding: 2rem;
            }
            .portfolio-image img {
                object-fit: contain; 
            }
        }

        @media (max-width: 480px) {
            .hero-avatar {
                width: 200px;
                height: 200px;
            }
            .portfolio-image img {
                object-fit: contain; 
            }

            .about-avatar {
                width: 200px;
                height: 200px;
            }

            .main-content h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }

        /* Enhanced Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }

        .slide-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s ease;
        }

        .slide-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

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

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

        /* Coding Icons Animation */
        .coding a {
            animation: fadeInUp 0.6s ease forwards;
            animation-fill-mode: both;
        }

        .coding a:nth-child(1) { animation-delay: 0.1s; }
        .coding a:nth-child(2) { animation-delay: 0.2s; }
        .coding a:nth-child(3) { animation-delay: 0.3s; }
        .coding a:nth-child(4) { animation-delay: 0.4s; }
        .coding a:nth-child(5) { animation-delay: 0.5s; }
        .coding a:nth-child(6) { animation-delay: 0.6s; }
        .coding a:nth-child(7) { animation-delay: 0.7s; }

        /* Particle Effects */
        .particle {
            position: fixed;
            width: 4px;
            height: 4px;
            background: var(--glow-primary);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0.7;
            animation: particleFloat 8s linear infinite;
        }

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

        /* Glow Effects */
        .glow-text {
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
            animation: textPulse 2s ease-in-out infinite alternate;
        }

        @keyframes textPulse {
            0% { text-shadow: 0 0 5px rgba(0, 212, 255, 0.5); }
            100% { text-shadow: 0 0 20px rgba(0, 212, 255, 1), 0 0 30px rgba(0, 212, 255, 0.8); }
        }

        /* Interactive Hover Effects */
        .interactive-card {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .interactive-card:hover::before {
            left: 100%;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

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

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 4px;
            box-shadow: var(--glow-sm);
        }

        ::-webkit-scrollbar-thumb:hover {
            box-shadow: var(--glow-md);
        }