 /* CSS Variables - Revolutionary Theme */
        :root {
            --bg-primary: #000000;
            --bg-secondary: #0a0a0a;
            --bg-card: rgba(20, 20, 20, 0.8);
            --primary: #ff2a6d;
            --secondary: #05d9e8;
            --accent: #d1f7ff;
            --text-primary: #ffffff;
            --text-secondary: #b8b8b8;
            --gradient-1: linear-gradient(135deg, #ff2a6d, #ff5e3a);
            --gradient-2: linear-gradient(135deg, #05d9e8, #0056d3);
            --gradient-3: linear-gradient(135deg, #d1f7ff, #72ddf7);
            --neon-pink: #ff2a6d;
            --neon-cyan: #05d9e8;
            --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --navbar-height: 80px;
        }

        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
            cursor: none;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--neon-pink);
            border-radius: 50%;
            position: fixed;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
            transition-property: background, transform;
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            background: rgba(255, 42, 109, 0.1);
            border-radius: 50%;
            position: fixed;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9998;
            transition: all 0.3s ease;
        }

        .cursor.hover {
            background: var(--neon-pink);
            transform: translate(-50%, -50%) scale(1.5);
            box-shadow: 0 0 15px var(--neon-pink);
        }

        .cursor-follower.hover {
            transform: translate(-50%, -50%) scale(1.5);
            background: rgba(255, 42, 109, 0.2);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-1);
            border-radius: 4px;
        }

        /* Improved Preloader with Background Effects */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-primary);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.8s ease;
            overflow: hidden;
        }

        /* Preloader Background Effects */
        .preloader::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 42, 109, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(5, 217, 232, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(209, 247, 255, 0.1) 0%, transparent 70%);
            animation: preloader-bg-pulse 4s infinite alternate;
        }

        @keyframes preloader-bg-pulse {
            0% {
                opacity: 0.5;
            }
            100% {
                opacity: 1;
            }
        }

        .preloader-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .logo-loader {
            position: relative;
            width: 150px;
            height: 150px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-circle {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid transparent;
            border-top-color: var(--neon-pink);
            animation: spin 1.5s linear infinite;
        }

        .logo-circle:nth-child(2) {
            width: 85%;
            height: 85%;
            border-top-color: var(--neon-cyan);
            animation: spin 1.5s linear infinite reverse;
            animation-delay: 0.2s;
        }

        .logo-circle:nth-child(3) {
            width: 70%;
            height: 70%;
            border-top-color: var(--accent);
            animation: spin 1.5s linear infinite;
            animation-delay: 0.4s;
        }

        .logo-icon {
            font-size: 3rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            z-index: 1;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loader-text {
            font-family: 'Orbitron', monospace;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 2px;
            margin-top: 1rem;
            text-align: center;
        }

        .loader-subtitle {
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            color: var(--text-secondary);
            margin-top: 0.5rem;
            text-align: center;
        }

        .progress-container {
            width: 250px;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            margin-top: 1.5rem;
        }

        .progress {
            height: 100%;
            width: 0;
            background: var(--gradient-1);
            border-radius: 3px;
            transition: width 0.3s ease;
            box-shadow: 0 0 10px var(--neon-pink);
        }

        .progress-percentage {
            font-family: 'Orbitron', monospace;
            font-size: 1rem;
            color: var(--neon-pink);
            margin-top: 0.5rem;
            text-align: center;
        }

        /* Navigation - Enhanced Design */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(20px);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: var(--transition);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            height: var(--navbar-height);
        }

        .navbar.scrolled {
            padding: 1rem 5%;
            background: rgba(0, 0, 0, 0.95);
            box-shadow: 0 10px 30px rgba(255, 42, 109, 0.2);
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 0.5rem;
            font-size: 1.8rem;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
        }

        .logo:hover::after {
            width: 100%;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-item a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.5rem 0;
            font-family: 'Exo 2', sans-serif;
        }

        .nav-item a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: var(--transition);
        }

        .nav-item a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 10px rgba(255, 42, 109, 0.5);
        }

        .nav-item a:hover::before {
            width: 100%;
            box-shadow: 0 0 10px var(--neon-pink);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-primary);
            margin: 3px 0;
            transition: var(--transition);
        }

        /* Hero Section - Fixed Design */
        .hero {
            min-height: calc(100vh - var(--navbar-height));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem 5%;
            position: relative;
            overflow: hidden;
            margin-top: var(--navbar-height);
        }

        .hero-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            width: 100%;
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(4rem, 10vw, 8rem);
            font-weight: 900;
            margin-bottom: 1rem;
            line-height: 0.9;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
        }

        .hero-title span {
            display: inline-block;
            animation: glitch 2s infinite;
            position: relative;
        }

        .hero-title span::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: glitch-anim 2s infinite linear alternate-reverse;
        }

        .hero-title span:nth-child(1) {
            color: var(--neon-pink);
            animation-delay: 0s;
        }

        .hero-title span:nth-child(2) {
            color: var(--neon-cyan);
            animation-delay: 0.2s;
        }

        @keyframes glitch {
            0%, 100% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
        }

        @keyframes glitch-anim {
            0% { clip-path: inset(20% 0 30% 0); transform: translate(-2px, 2px); }
            20% { clip-path: inset(50% 0 20% 0); transform: translate(2px, -2px); }
            40% { clip-path: inset(10% 0 60% 0); transform: translate(-2px, 2px); }
            60% { clip-path: inset(70% 0 10% 0); transform: translate(2px, -2px); }
            80% { clip-path: inset(30% 0 40% 0); transform: translate(-2px, 2px); }
            100% { clip-path: inset(40% 0 20% 0); transform: translate(2px, -2px); }
        }

        .hero-subtitle {
            font-family: 'Roboto Mono', monospace;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--neon-cyan);
            letter-spacing: 3px;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeIn 1s ease 0.5s forwards;
        }

        .typing-subtitle {
            border-right: 3px solid var(--neon-cyan);
            animation: blink 0.8s infinite;
        }

        @keyframes blink {
            0%, 50% { border-color: var(--neon-cyan); }
            51%, 100% { border-color: transparent; }
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .hero-description {
            max-width: 800px;
            margin: 0 auto 3rem;
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 1.1rem;
            opacity: 0;
            animation: fadeIn 1s ease 0.7s forwards;
            font-family: 'Poppins', sans-serif;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeIn 1s ease 0.9s forwards;
        }

        .hero-tag {
            padding: 0.8rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            font-family: 'Exo 2', sans-serif;
        }

        .hero-tag::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: var(--transition);
        }

        .hero-tag:hover::before {
            left: 100%;
        }

        .hero-tag:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-color: var(--neon-pink);
            color: var(--neon-pink);
            text-shadow: 0 0 10px rgba(255, 42, 109, 0.5);
        }

        .hero-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            opacity: 0;
            animation: fadeIn 1s ease 1.1s forwards;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Exo 2', sans-serif;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: var(--bg-primary);
            box-shadow: 0 10px 30px rgba(255, 42, 109, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 42, 109, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--neon-cyan);
            border: 2px solid var(--neon-cyan);
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(5, 217, 232, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 0 30px rgba(5, 217, 232, 0.5);
        }

        /* Section Styles - Enhanced Design */
        .section {
            padding: 8rem 5%;
            position: relative;
            overflow: hidden;
        }

        .section-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.1;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 800;
            margin-bottom: 4rem;
            text-align: center;
            position: relative;
            color: var(--text-primary);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: var(--gradient-1);
            box-shadow: 0 0 10px var(--neon-pink);
        }

        /* About Section - Enhanced */
        .about-section {
            background: linear-gradient(135deg, rgba(255, 42, 109, 0.05) 0%, rgba(5, 217, 232, 0.05) 100%);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 5rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            transform: perspective(1000px) rotateY(-15deg);
            transition: var(--transition);
        }

        .about-image-wrapper:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 25px 60px rgba(255, 42, 109, 0.3);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image-wrapper:hover img {
            transform: scale(1.05);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0.3;
            mix-blend-mode: overlay;
            z-index: 1;
        }

        .about-text p {
            margin-bottom: 2rem;
            line-height: 1.8;
            color: var(--text-secondary);
            font-size: 1.1rem;
            font-family: 'Poppins', sans-serif;
        }

        .about-stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-card {
            flex: 1;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 42, 109, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: var(--transition);
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 42, 109, 0.2);
            border-color: var(--neon-pink);
        }

        .stat-number {
            font-family: 'Orbitron', monospace;
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Exo 2', sans-serif;
        }

        /* Skills Section - Enhanced */
        .skills-section {
            background: linear-gradient(135deg, rgba(5, 217, 232, 0.05) 0%, rgba(209, 247, 255, 0.05) 100%);
        }

        .skills-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .skill-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 42, 109, 0.1), rgba(5, 217, 232, 0.1));
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }

        .skill-card:hover::before {
            opacity: 1;
        }

        .skill-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 42, 109, 0.2);
            border-color: var(--neon-pink);
        }

        .skill-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: var(--transition);
        }

        .skill-card:hover .skill-icon {
            transform: scale(1.1);
            filter: drop-shadow(0 0 10px rgba(255, 42, 109, 0.5));
        }

        .skill-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .skill-list {
            list-style: none;
        }

        .skill-list li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }

        .skill-list li:hover {
            color: var(--neon-pink);
            transform: translateX(5px);
        }

        .skill-list li::before {
            content: '▸';
            color: var(--neon-pink);
            transition: var(--transition);
        }

        .skill-list li:hover::before {
            transform: scale(1.5);
        }

        .certified-badge {
            background: var(--gradient-1);
            color: var(--bg-primary);
            font-size: 0.7rem;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            margin-left: 0.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Exo 2', sans-serif;
        }

        /* Achievements Section - Enhanced */
        .achievements-section {
            background: linear-gradient(135deg, rgba(255, 94, 58, 0.05) 0%, rgba(255, 42, 109, 0.05) 100%);
        }

        .achievements-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .achievement-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .achievement-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(5, 217, 232, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }

        .achievement-card:hover::before {
            opacity: 1;
        }

        .achievement-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(5, 217, 232, 0.2);
            border-color: var(--neon-cyan);
        }

        .achievement-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gradient-2);
            color: var(--bg-primary);
            font-size: 0.7rem;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Exo 2', sans-serif;
        }

        .achievement-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            animation: float 3s ease-in-out infinite;
            transition: var(--transition);
        }

        .achievement-card:hover .achievement-icon {
            animation-play-state: paused;
            transform: scale(1.1);
            filter: drop-shadow(0 0 15px rgba(5, 217, 232, 0.5));
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .achievement-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .achievement-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-family: 'Poppins', sans-serif;
        }

        /* Projects Section - Enhanced */
        .projects-section {
            background: linear-gradient(135deg, rgba(0, 86, 211, 0.05) 0%, rgba(5, 217, 232, 0.05) 100%);
        }

        .projects-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 42, 109, 0.2);
            border-color: var(--neon-pink);
        }

        .project-header {
            background: var(--gradient-1);
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .project-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            animation: rotate 15s linear infinite;
        }

        @keyframes rotate {
            to { transform: rotate(360deg); }
        }

        .project-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
            color: white;
            transition: var(--transition);
        }

        .project-card:hover .project-icon {
            transform: scale(1.1);
        }

        .project-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            position: relative;
            z-index: 1;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .project-body {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .project-desc {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            flex-grow: 1;
            font-family: 'Poppins', sans-serif;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .tech-tag {
            background: rgba(255, 42, 109, 0.1);
            color: var(--neon-pink);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            border: 1px solid rgba(255, 42, 109, 0.3);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Exo 2', sans-serif;
            transition: var(--transition);
        }

        .tech-tag:hover {
            background: rgba(255, 42, 109, 0.2);
            transform: scale(1.05);
            box-shadow: 0 0 10px rgba(255, 42, 109, 0.3);
        }

        .project-footer {
            padding: 0 2rem 2rem;
        }

        .btn-project {
            width: 100%;
            justify-content: center;
            background: var(--gradient-1);
        }

        /* Certificates Section - New */
        .certificates-section {
            background: linear-gradient(135deg, rgba(209, 247, 255, 0.05) 0%, rgba(114, 221, 247, 0.05) 100%);
        }

        .certificates-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .certificates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .certificate-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .certificate-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(5, 217, 232, 0.2);
            border-color: var(--neon-cyan);
        }

        .certificate-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .certificate-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .certificate-card:hover .certificate-image img {
            transform: scale(1.05);
        }

        .certificate-body {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .certificate-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .certificate-issuer {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            font-size: 0.9rem;
            font-family: 'Poppins', sans-serif;
        }

        .certificate-date {
            color: var(--neon-cyan);
            font-size: 0.8rem;
            margin-top: auto;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Exo 2', sans-serif;
        }

        .certificate-footer {
            padding: 0 1.5rem 1.5rem;
        }

        .btn-certificate {
            width: 100%;
            justify-content: center;
            background: var(--gradient-2);
        }

        /* Shop Section - New */
        .shop-section {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
        }

        .shop-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .shop-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .shop-intro p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 1.1rem;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 2rem;
        }

        .shop-cta {
            display: inline-block;
            padding: 1rem 3rem;
            background: var(--gradient-1);
            color: var(--bg-primary);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Exo 2', sans-serif;
            z-index: 1;
        }

        .shop-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: var(--transition);
            z-index: -1;
        }

        .shop-cta:hover::before {
            left: 100%;
        }

        .shop-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 42, 109, 0.6);
        }

        .shop-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .shop-feature {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            transition: var(--transition);
        }

        .shop-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 42, 109, 0.2);
            border-color: var(--neon-pink);
        }

        .shop-feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: var(--transition);
        }

        .shop-feature:hover .shop-feature-icon {
            transform: scale(1.1);
            filter: drop-shadow(0 0 10px rgba(255, 42, 109, 0.5));
        }

        .shop-feature-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .shop-feature-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-family: 'Poppins', sans-serif;
        }

        /* Timeline Section - New */
        .timeline-section {
            background: linear-gradient(135deg, rgba(255, 42, 109, 0.05) 0%, rgba(255, 94, 58, 0.05) 100%);
        }

        .timeline-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--gradient-1);
            box-shadow: 0 0 10px var(--neon-pink);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 4rem;
            width: 50%;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            padding-right: 4rem;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 4rem;
        }

        .timeline-dot {
            position: absolute;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--gradient-1);
            box-shadow: 0 0 0 4px var(--bg-primary), 0 0 0 6px var(--neon-pink);
            animation: pulse 2s infinite;
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            right: -10px;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            left: -10px;
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 42, 109, 0.2);
            border-color: var(--neon-pink);
        }

        .timeline-date {
            color: var(--neon-cyan);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-family: 'Roboto Mono', monospace;
        }

        .timeline-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .timeline-description {
            color: var(--text-secondary);
            line-height: 1.6;
            font-family: 'Poppins', sans-serif;
        }

        /* Testimonials Section - New */
        .testimonials-section {
            background: linear-gradient(135deg, rgba(5, 217, 232, 0.05) 0%, rgba(0, 86, 211, 0.05) 100%);
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 42, 109, 0.2);
            border-color: var(--neon-pink);
        }

        .testimonial-quote {
            font-size: 1.2rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-style: italic;
            font-family: 'Poppins', sans-serif;
            position: relative;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 4rem;
            color: rgba(255, 42, 109, 0.2);
            position: absolute;
            top: -20px;
            left: -10px;
            font-family: serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--neon-pink);
            transition: var(--transition);
        }

        .testimonial-card:hover .testimonial-avatar {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(255, 42, 109, 0.5);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-info {
            flex-grow: 1;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.2rem;
            font-family: 'Exo 2', sans-serif;
        }

        .testimonial-position {
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-family: 'Poppins', sans-serif;
        }

        .testimonial-rating {
            color: #ffd700;
            margin-top: 0.5rem;
        }

        /* Contact Section - Enhanced */
        .contact-section {
            background: linear-gradient(135deg, rgba(255, 94, 58, 0.05) 0%, rgba(255, 42, 109, 0.05) 100%);
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 3rem;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            font-family: 'Exo 2', sans-serif;
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: var(--text-primary);
            transition: var(--transition);
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--neon-pink);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.3);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            transition: var(--transition);
            border: 2px solid transparent;
            font-size: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }

        .social-link:hover::before {
            width: 100%;
            height: 100%;
        }

        .social-link:hover {
            transform: scale(1.1) translateY(-10px);
        }

        .social-link.github:hover {
            background-color: #24292e;
            border-color: #24292e;
            color: white;
            box-shadow: 0 0 20px rgba(36, 41, 46, 0.5);
        }

        .social-link.linkedin:hover {
            background-color: #0077B5;
            border-color: #0077B5;
            color: white;
            box-shadow: 0 0 20px rgba(0, 119, 181, 0.5);
        }

        .social-link.email:hover {
            background-color: #EA4335;
            border-color: #EA4335;
            color: white;
            box-shadow: 0 0 20px rgba(234, 67, 53, 0.5);
        }

        .social-link.youtube:hover {
            background-color: #FF0000;
            border-color: #FF0000;
            color: white;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
        }

        .social-link.instagram:hover {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            border-color: transparent;
            color: white;
            box-shadow: 0 0 20px rgba(252, 175, 69, 0.5);
        }

        .social-link.twitter:hover {
            background-color: #1DA1F2;
            border-color: #1DA1F2;
            color: white;
            box-shadow: 0 0 20px rgba(29, 161, 242, 0.5);
        }

        /* Enhanced Footer */
        .footer {
            background-color: var(--bg-secondary);
            padding: 3rem 5%;
            text-align: center;
            color: var(--text-secondary);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .footer-description {
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.6;
            font-family: 'Poppins', sans-serif;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .footer-social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            transition: var(--transition);
            border: 2px solid transparent;
            font-size: 1.3rem;
            position: relative;
            overflow: hidden;
        }

        .footer-social-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }

        .footer-social-link:hover::before {
            width: 100%;
            height: 100%;
        }

        .footer-social-link:hover {
            transform: scale(1.1) translateY(-5px);
        }

        .footer-social-link.github:hover {
            background-color: #24292e;
            border-color: #24292e;
            color: white;
            box-shadow: 0 0 20px rgba(36, 41, 46, 0.5);
        }

        .footer-social-link.linkedin:hover {
            background-color: #0077B5;
            border-color: #0077B5;
            color: white;
            box-shadow: 0 0 20px rgba(0, 119, 181, 0.5);
        }

        .footer-social-link.email:hover {
            background-color: #EA4335;
            border-color: #EA4335;
            color: white;
            box-shadow: 0 0 20px rgba(234, 67, 53, 0.5);
        }

        .footer-social-link.youtube:hover {
            background-color: #FF0000;
            border-color: #FF0000;
            color: white;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
        }

        .footer-social-link.instagram:hover {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            border-color: transparent;
            color: white;
            box-shadow: 0 0 20px rgba(252, 175, 69, 0.5);
        }

        .footer-social-link.twitter:hover {
            background-color: #1DA1F2;
            border-color: #1DA1F2;
            color: white;
            box-shadow: 0 0 20px rgba(29, 161, 242, 0.5);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
            position: relative;
        }

        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: var(--transition);
        }

        .footer-link:hover {
            color: var(--neon-pink);
        }

        .footer-link:hover::after {
            width: 100%;
        }

        .footer-copyright {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            font-family: 'Poppins', sans-serif;
        }

        /* Back to Top Button - New */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-1);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 5px 15px rgba(255, 42, 109, 0.4);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 42, 109, 0.6);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Background Effects */
        .bg-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        /* Geometric Shapes for About Section */
        .geometric-shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-1);
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .geometric-shape:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .geometric-shape:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 70%;
            left: 80%;
            animation-delay: 2s;
        }

        .geometric-shape:nth-child(3) {
            width: 80px;
            height: 80px;
            top: 40%;
            left: 60%;
            animation-delay: 4s;
        }

        /* Code Rain for Skills Section */
        .code-rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .code-rain span {
            position: absolute;
            top: -10%;
            color: var(--neon-cyan);
            font-family: 'Roboto Mono', monospace;
            font-size: 1.2rem;
            animation: code-fall linear infinite;
        }

        @keyframes code-fall {
            to {
                transform: translateY(110vh);
            }
        }

        /* Confetti for Achievements Section */
        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--gradient-1);
            animation: confetti-fall linear infinite;
        }

        @keyframes confetti-fall {
            to {
                transform: translateY(100vh) rotate(360deg);
            }
        }

        /* Grid Lines for Projects Section */
        .grid-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 42, 109, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 42, 109, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: grid-move 20s linear infinite;
        }

        @keyframes grid-move {
            to {
                background-position: 50px 50px;
            }
        }

        /* Paper Float for Certificates Section */
        .paper-float {
            position: absolute;
            width: 60px;
            height: 80px;
            background: var(--gradient-2);
            opacity: 0.1;
            animation: paper-float 15s infinite ease-in-out;
        }

        @keyframes paper-float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        /* Shopping Icons for Shop Section */
        .shopping-icon {
            position: absolute;
            font-size: 2rem;
            color: var(--neon-pink);
            opacity: 0.1;
            animation: shopping-float 25s infinite ease-in-out;
        }

        @keyframes shopping-float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            25% {
                transform: translateY(-30px) translateX(20px);
            }
            50% {
                transform: translateY(0) translateX(40px);
            }
            75% {
                transform: translateY(30px) translateX(20px);
            }
        }

        /* Timeline Animation */
        .timeline-line {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 0;
            background: var(--gradient-1);
            transform: translateX(-50%);
            animation: timeline-grow 3s ease-out forwards;
        }

        @keyframes timeline-grow {
            to {
                height: 100%;
            }
        }

        /* Quote Marks for Testimonials Section */
        .quote-mark {
            position: absolute;
            font-size: 10rem;
            color: var(--neon-cyan);
            opacity: 0.05;
            font-family: serif;
            animation: quote-pulse 4s infinite ease-in-out;
        }

        @keyframes quote-pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.05;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.1;
            }
        }

        /* Envelope Icons for Contact Section */
        .envelope-icon {
            position: absolute;
            font-size: 2rem;
            color: var(--neon-pink);
            opacity: 0.1;
            animation: envelope-float 20s infinite ease-in-out;
        }

        @keyframes envelope-float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .about-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .about-image {
                display: flex;
                justify-content: center;
                margin-bottom: 3rem;
            }

            .timeline-container::before {
                left: 30px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 60px !important;
                padding-right: 0 !important;
                text-align: left !important;
            }

            .timeline-dot {
                left: 20px !important;
                right: auto !important;
            }
        }

        @media (max-width: 992px) {
            .nav-menu {
                gap: 1.5rem;
            }
            
            .nav-item a {
                font-size: 0.9rem;
            }
            
            .hero-title {
                font-size: clamp(3rem, 8vw, 6rem);
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: clamp(2.5rem, 6vw, 4rem);
            }
            
            .skills-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            
            .achievements-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .projects-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .certificates-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .shop-features {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: var(--navbar-height);
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(20px);
                width: 100%;
                text-align: center;
                transition: 0.5s;
                padding: 3rem 0;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active span:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .skills-grid {
                grid-template-columns: 1fr;
            }

            .achievements-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .certificates-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .shop-features {
                grid-template-columns: 1fr;
            }

            .footer-social {
                gap: 1rem;
            }

            .footer-links {
                gap: 1rem;
            }
        }

        @media (max-width: 576px) {
            .navbar {
                padding: 1rem 3%;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .typing-subtitle {
                font-size: 1rem;
            }
            
            .hero-buttons {
                width: 100%;
            }
            
            .btn {
                width: 100%;
            }

            .cursor, .cursor-follower {
                display: none;
            }

            body {
                cursor: auto;
            }

            .footer-social-link {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
            
            .section {
                padding: 5rem 3%;
            }
            
            .about-stats {
                flex-direction: column;
                gap: 1rem;
            }
            
            .social-links {
                gap: 1rem;
            }
            
            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

        }
 /* Add these styles to your styles.css file */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #ff2a6d, #05d9e8);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            font-weight: 500;
            animation: slideIn 0.3s ease;
            max-width: 350px;
        }
        
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        .notification.fade-out {
            animation: fadeOut 0.3s ease forwards;
        }
        
        @keyframes fadeOut {
            to {
                opacity: 0;
                transform: translateY(-20px);
            }
        }
        
        .back-button {
            position: fixed;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #ff2a6d, #05d9e8);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 500;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .back-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
