* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        :root {
            --primary: #0a0a0a;
            --secondary: #1a1a1a;
            --accent: #00d9ff;
            --accent-glow: rgba(0, 217, 255, 0.6);
            --text: #ffffff;
            --text-secondary: #b0b0b0;
        }

        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
            cursor: none;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* NEW: Magnetic Button Effect */
        .magnetic-btn {
            position: relative;
            overflow: hidden;
            transition: transform 0.3s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .magnetic-btn:hover {
            transform: scale(1.05);
        }

        /* NEW: Floating Particles */
        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background-color: var(--accent);
            border-radius: 50%;
            opacity: 0.7;
            animation: float-particle 20s infinite linear;
        }

        @keyframes float-particle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.7;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* NEW: Holographic Effect */
        .holographic {
            position: relative;
            overflow: hidden;
        }

        .holographic::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(0, 217, 255, 0.1),
                transparent,
                rgba(0, 217, 255, 0.1),
                transparent
            );
            transform: rotate(45deg);
            animation: hologram 8s linear infinite;
            z-index: 1;
        }

        @keyframes hologram {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        /* NEW: Glitch Text Effect */
        .glitch-text {
            position: relative;
            display: inline-block;
        }

        .glitch-text::before,
        .glitch-text::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .glitch-text::before {
            left: 2px;
            text-shadow: -2px 0 #ff00c1;
            clip: rect(44px, 450px, 56px, 0);
            animation: glitch-anim 5s infinite linear alternate-reverse;
        }

        .glitch-text::after {
            left: -2px;
            text-shadow: -2px 0 #00fff9;
            clip: rect(44px, 450px, 56px, 0);
            animation: glitch-anim2 5s infinite linear alternate-reverse;
        }

        @keyframes glitch-anim {
            0% {
                clip: rect(42px, 9999px, 44px, 0);
            }
            5% {
                clip: rect(12px, 9999px, 59px, 0);
            }
            10% {
                clip: rect(48px, 9999px, 29px, 0);
            }
            15% {
                clip: rect(42px, 9999px, 73px, 0);
            }
            20% {
                clip: rect(63px, 9999px, 27px, 0);
            }
            25% {
                clip: rect(34px, 9999px, 55px, 0);
            }
            30% {
                clip: rect(86px, 9999px, 73px, 0);
            }
            35% {
                clip: rect(20px, 9999px, 20px, 0);
            }
            40% {
                clip: rect(26px, 9999px, 60px, 0);
            }
            45% {
                clip: rect(25px, 9999px, 66px, 0);
            }
            50% {
                clip: rect(57px, 9999px, 98px, 0);
            }
            55% {
                clip: rect(5px, 9999px, 46px, 0);
            }
            60% {
                clip: rect(82px, 9999px, 31px, 0);
            }
            65% {
                clip: rect(54px, 9999px, 27px, 0);
            }
            70% {
                clip: rect(28px, 9999px, 99px, 0);
            }
            75% {
                clip: rect(45px, 9999px, 69px, 0);
            }
            80% {
                clip: rect(23px, 9999px, 85px, 0);
            }
            85% {
                clip: rect(54px, 9999px, 84px, 0);
            }
            90% {
                clip: rect(45px, 9999px, 47px, 0);
            }
            95% {
                clip: rect(37px, 9999px, 20px, 0);
            }
            100% {
                clip: rect(4px, 9999px, 91px, 0);
            }
        }

        @keyframes glitch-anim2 {
            0% {
                clip: rect(65px, 9999px, 100px, 0);
            }
            5% {
                clip: rect(52px, 9999px, 74px, 0);
            }
            10% {
                clip: rect(79px, 9999px, 85px, 0);
            }
            15% {
                clip: rect(75px, 9999px, 5px, 0);
            }
            20% {
                clip: rect(67px, 9999px, 61px, 0);
            }
            25% {
                clip: rect(14px, 9999px, 79px, 0);
            }
            30% {
                clip: rect(1px, 9999px, 66px, 0);
            }
            35% {
                clip: rect(86px, 9999px, 30px, 0);
            }
            40% {
                clip: rect(23px, 9999px, 98px, 0);
            }
            45% {
                clip: rect(85px, 9999px, 72px, 0);
            }
            50% {
                clip: rect(71px, 9999px, 75px, 0);
            }
            55% {
                clip: rect(2px, 9999px, 48px, 0);
            }
            60% {
                clip: rect(30px, 9999px, 16px, 0);
            }
            65% {
                clip: rect(59px, 9999px, 50px, 0);
            }
            70% {
                clip: rect(41px, 9999px, 62px, 0);
            }
            75% {
                clip: rect(2px, 9999px, 82px, 0);
            }
            80% {
                clip: rect(47px, 9999px, 73px, 0);
            }
            85% {
                clip: rect(3px, 9999px, 27px, 0);
            }
            90% {
                clip: rect(26px, 9999px, 55px, 0);
            }
            95% {
                clip: rect(42px, 9999px, 97px, 0);
            }
            100% {
                clip: rect(38px, 9999px, 49px, 0);
            }
        }

        /* NEW: Matrix Rain Effect */
        .matrix-rain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -2;
            opacity: 0.1;
        }

        .matrix-column {
            position: absolute;
            top: -100%;
            color: var(--accent);
            font-family: 'Courier New', monospace;
            font-size: 14px;
            animation: matrix-rain-fall linear infinite;
        }

        @keyframes matrix-rain-fall {
            0% {
                transform: translateY(-100%);
            }
            100% {
                transform: translateY(100vh);
            }
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
            mix-blend-mode: difference;
        }

        .cursor-follower {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.15s ease;
        }

        /* Enhanced Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
            animation: gradientShift 8s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { 
                background-position: 0% 50%, 100% 50%, 50% 100%; 
            }
            50% { 
                background-position: 100% 50%, 0% 50%, 50% 0%; 
            }
        }

        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            background: rgba(0, 217, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }

        .shape:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 70%;
            animation-delay: 6s;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0) rotate(0deg) scale(1);
            }
            50% { 
                transform: translateY(-20px) rotate(10deg) scale(1.1);
            }
        }

        /* Enhanced Header & Navigation */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 15px 0;
            background-color: rgba(10, 10, 10, 0.98);
            box-shadow: 0 5px 20px rgba(0, 217, 255, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .logo:hover::after {
            transform: translateX(0);
        }

        /* NEW: Glitch effect for NAVARRO */
        .logo.glitch-text {
            position: relative;
            display: inline-block;
        }

        .logo.glitch-text::before,
        .logo.glitch-text::after {
            content: "NAVARRO";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .logo.glitch-text::before {
            left: 2px;
            text-shadow: -1px 0 #ff00c1;
            clip: rect(24px, 350px, 30px, 0);
            animation: glitch-anim 5s infinite linear alternate-reverse;
        }

        .logo.glitch-text::after {
            left: -2px;
            text-shadow: -1px 0 #00fff9;
            clip: rect(24px, 350px, 30px, 0);
            animation: glitch-anim2 5s infinite linear alternate-reverse;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
            position: relative;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
            overflow: hidden;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text);
        }

        /* Enhanced Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-content {
            max-width: 600px;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 10px;
            background: linear-gradient(to right, var(--accent), #ffffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
            line-height: 1.2;
            min-height: 120px;
        }

        .typed-cursor {
            color: var(--accent);
            font-weight: 300;
        }

        .hero h2 {
            font-size: 2rem;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-secondary);
        }

        .btn {
            display: inline-block;
            background-color: transparent;
            color: var(--accent);
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--accent);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent);
            transition: all 0.3s;
            z-index: -1;
        }

        .btn:hover {
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 217, 255, 0.3);
        }

        .btn:hover::before {
            left: 0;
        }

        /* NEW: Resume Download Button */
        .resume-btn {
            margin-left: 15px;
            background-color: var(--accent);
            color: var(--primary);
        }

        .resume-btn::before {
            background: var(--primary);
        }

        .resume-btn:hover {
            color: var(--accent);
        }

        /* Floating Action Buttons */
        .floating-actions {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .floating-btn {
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
        }

        .floating-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 217, 255, 0.5);
        }

        /* Section Styling with AOS */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 2.5rem;
            position: relative;
            font-weight: 700;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
            box-shadow: 0 0 10px var(--accent-glow);
        }

        /* Enhanced About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
            align-items: center;
        }

        .about-img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            object-fit: cover;
            height: 400px;
            transition: transform 0.5s;
        }

        .about-img:hover {
            transform: scale(1.03);
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .about-text p {
            margin-bottom: 15px;
            color: var(--text-secondary);
        }

        /* NEW: Improved Resume/CV Section */
        .resume-container {
            background-color: var(--secondary);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .resume-header {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .resume-photo {
            width: 180px;
            height: 180px;
            border-radius: 10px;
            object-fit: cover;
            border: 3px solid var(--accent);
            box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
            transition: transform 0.3s;
        }

        .resume-photo:hover {
            transform: scale(1.05);
        }

        .resume-intro {
            flex: 1;
        }

        .resume-name {
            font-size: 2.2rem;
            color: var(--accent);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .resume-title {
            font-size: 1.4rem;
            color: var(--text);
            margin-bottom: 15px;
            font-weight: 500;
        }

        .resume-summary {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .resume-body {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
        }

        .resume-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-info-card {
            background-color: var(--primary);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .contact-info-card h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(0, 217, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-details {
            flex: 1;
        }

        .contact-details h4 {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 3px;
        }

        .contact-details p {
            font-size: 0.95rem;
        }

        .social-links-card {
            background-color: var(--primary);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .social-links-card h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
        }

        .social-link {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            text-decoration: none;
            color: var(--text);
            transition: color 0.3s;
        }

        .social-link:hover {
            color: var(--accent);
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(0, 217, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            margin-right: 15px;
            flex-shrink: 0;
        }

        .skills-card {
            background-color: var(--primary);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .skills-card h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
        }

        .skill-tag {
            display: inline-block;
            background-color: rgba(0, 217, 255, 0.1);
            color: var(--accent);
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            border: 1px solid rgba(0, 217, 255, 0.2);
            transition: all 0.3s;
        }

        .skill-tag:hover {
            background-color: rgba(0, 217, 255, 0.2);
            transform: translateY(-2px);
        }

        .resume-main {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .resume-section {
            background-color: var(--primary);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .resume-section h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
        }

        .download-section {
            text-align: center;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* NEW: Education Section */
        .education-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .education-item {
            background-color: var(--secondary);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s;
        }

        .education-item:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 10px 20px rgba(0, 217, 255, 0.1);
        }

        .education-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .education-title {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 5px;
        }

        .education-institution {
            font-size: 1rem;
            color: var(--text);
            font-weight: 500;
        }

        .education-date {
            background-color: rgba(0, 217, 255, 0.1);
            color: var(--accent);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .education-details {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .achievements-list {
            margin-top: 15px;
            padding-left: 20px;
        }

        .achievements-list li {
            margin-bottom: 8px;
            color: var(--text-secondary);
            position: relative;
        }

        .achievements-list li::before {
            content: "•";
            color: var(--accent);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        /* NEW: Experience Section */
        .experience-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .experience-item {
            background-color: var(--secondary);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s;
        }

        .experience-item:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 10px 20px rgba(0, 217, 255, 0.1);
        }

        .experience-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .experience-title {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 5px;
        }

        .experience-company {
            font-size: 1rem;
            color: var(--text);
            font-weight: 500;
        }

        .experience-date {
            background-color: rgba(0, 217, 255, 0.1);
            color: var(--accent);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .experience-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .responsibilities-list {
            margin-top: 15px;
            padding-left: 20px;
        }

        .responsibilities-list li {
            margin-bottom: 8px;
            color: var(--text-secondary);
            position: relative;
        }

        .responsibilities-list li::before {
            content: "•";
            color: var(--accent);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        /* UPDATED: Skills Section with Progress Bars */
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .skill-item {
            background-color: var(--secondary);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .skill-item:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 217, 255, 0.1);
        }

        .skill-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .skill-name {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text);
        }

        .skill-percentage {
            font-size: 1rem;
            font-weight: 600;
            color: var(--accent);
        }

        .skill-bar {
            height: 10px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            overflow: hidden;
            position: relative;
        }

        .skill-progress {
            height: 100%;
            background-color: var(--accent);
            border-radius: 5px;
            width: 0;
            transition: width 1.5s ease-in-out;
            position: relative;
        }

        .skill-progress::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background-image: linear-gradient(
                -45deg,
                rgba(255, 255, 255, 0.2) 25%,
                transparent 25%,
                transparent 50%,
                rgba(255, 255, 255, 0.2) 50%,
                rgba(255, 255, 255, 0.2) 75%,
                transparent 75%,
                transparent
            );
            background-size: 15px 15px;
            animation: progress-stripes 1s linear infinite;
        }

        @keyframes progress-stripes {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 15px 0;
            }
        }

        
        /* NEW: Projects Section Styles */
        .projects-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .project-card {
            background-color: var(--secondary);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            transform-style: preserve-3d;
        }

        .project-card:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 20px rgba(0, 217, 255, 0.2);
            transform: translateY(-5px);
        }

        .project-header {
            width: 100%;
            height: 200px;
            background-color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .project-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .project-card:hover .project-header img {
            transform: scale(1.05);
        }

        .project-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .project-card:hover .project-header::after {
            opacity: 1;
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 2;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-overlay a {
            color: var(--text);
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
            width: 50px;
            height: 50px;
            background: rgba(0, 217, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .project-overlay a:hover {
            color: var(--primary);
            background: var(--accent);
            transform: scale(1.1);
        }

        .project-content {
            padding: 20px;
        }

        .project-content h3 {
            margin-bottom: 10px;
            color: var(--accent);
        }

        .project-content p {
            color: var(--text-secondary);
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .tech-tag {
            background-color: rgba(0, 217, 255, 0.1);
            color: var(--accent);
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(0, 217, 255, 0.2);
        }

        .project-links {
            display: flex;
            gap: 15px;
        }

        .project-links a {
            color: var(--accent);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .project-links a:hover {
            color: #ffffff;
        }

        /* NEW: Flappy Bird Game Styles */
        .flappy-bird-container {
            width: 100%;
            max-width: 400px;
            height: 600px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        #flappy-bird-canvas {
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, #87CEEB, #1E90FF);
        }

        .game-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .game-btn {
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .game-btn:hover {
            background-color: #00b8e6;
            transform: translateY(-2px);
        }

        .game-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            color: var(--text);
            font-weight: 600;
        }

        /* Enhanced Activities Section */
        .activities-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .activity-card {
            background-color: var(--secondary);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            transform-style: preserve-3d;
        }

        .activity-card:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 20px rgba(0, 217, 255, 0.2);
        }

        .activity-header {
            width: 100%;
            height: 200px;
            background-color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .activity-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .activity-card:hover .activity-header::after {
            opacity: 1;
        }

        .activity-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 2;
        }

        .activity-card:hover .activity-overlay {
            opacity: 1;
        }

        .activity-overlay a {
            color: var(--text);
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .activity-overlay a:hover {
            color: var(--accent);
        }

        .activity-content {
            padding: 20px;
        }

        .activity-content h3 {
            margin-bottom: 10px;
            color: var(--accent);
        }

        .activity-content p {
            color: var(--text-secondary);
            margin-bottom: 15px;
        }

        .activity-links {
            display: flex;
            gap: 15px;
        }

        .activity-links a {
            color: var(--accent);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .activity-links a:hover {
            color: #ffffff;
        }

        /* Activity Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1001;
            overflow-y: auto;
            padding: 20px;
        }

        .modal-content {
            background-color: var(--secondary);
            margin: 50px auto;
            padding: 30px;
            border-radius: 15px;
            max-width: 800px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(0, 217, 255, 0.2);
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .close-modal:hover {
            color: var(--accent);
            background: rgba(0, 217, 255, 0.1);
        }

        .activity-demo {
            background-color: var(--primary);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            overflow-x: auto;
        }

        /* Activity-specific styles */
        .demo-card {
            width: 250px;
            text-align: center;
            background: rgb(255, 255, 255);
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 0 auto;
        }

        .demo-card:hover {
            transform: translateY(-5px);
        }

        .demo-card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
        }

        .demo-card p {
            margin-top: 15px;
            color: black;
            line-height: 1.4;
        }

        .demo-card .hidden-text {
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.3s ease, max-height 0.3s ease;
        }

        .demo-card:hover .hidden-text {
            opacity: 1;
            max-height: 100px;
        }

        .hide {
            display: none;
        }

        .demo-btn {
            background-color: chocolate;
            color: wheat;
            border: none;
            padding: 10px 20px;
            margin-top: 15px;
            cursor: pointer;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s;
        }

        .demo-btn:hover {
            background-color: coral;
            transform: translateY(-2px);
        }

        /* Dark Mode Styles for Activity 3 */
        .dark-mode-demo {
            background-color: white;
            color: black;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.5s ease;
            margin: 0 auto;
            max-width: 500px;
        }

        .dark-mode-demo.dark-mode {
            background-color: black;
            color: white;
        }

        .dark-mode-demo img {
            width: auto;
            height: 200px;
            border-radius: 10%;
            margin: 20px 0;
        }

        .dark-mode-btn {
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            padding: 12px 24px;
            margin-top: 15px;
            cursor: pointer;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .dark-mode-btn:hover {
            background-color: #00b8e6;
            transform: translateY(-2px);
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border-radius: 10px;
            transition: background 0.3s;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.2rem;
            transition: transform 0.3s;
        }

        .contact-item:hover .contact-icon {
            transform: scale(1.1);
        }

        .contact-text h3 {
            margin-bottom: 5px;
        }

        .contact-text p {
            color: var(--text-secondary);
        }

        .contact-form {
            background-color: var(--secondary);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-secondary);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            background-color: var(--primary);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: var(--text);
            font-size: 1rem;
            transition: border 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 5px var(--accent-glow);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Form Validation Styles */
        .form-control.error {
            border-color: #ff3860;
        }

        .form-control.success {
            border-color: #23d160;
        }

        .error-message {
            color: #ff3860;
            font-size: 0.8rem;
            margin-top: 5px;
            display: none;
        }

        .success-message {
            background-color: rgba(35, 209, 96, 0.1);
            color: #23d160;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
            text-align: center;
            display: none;
        }

        /* Footer */
        footer {
            background-color: var(--secondary);
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent);
            transition: left 0.3s;
            z-index: -1;
        }

        .social-links a:hover::before {
            left: 0;
        }

        .social-links a:hover {
            color: var(--primary);
            transform: translateY(-5px);
        }

        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
        }

        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 217, 255, 0.5);
        }

        /* Particle Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        /* NEW: Loading Animation */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--primary);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(0, 217, 255, 0.3);
            border-radius: 50%;
            border-top-color: var(--accent);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* NEW: Dynamic Content Animation */
        .dynamic-content {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .dynamic-content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* NEW: Progress Bar Animation */
        .progress-bar {
            height: 4px;
            background: var(--accent);
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            z-index: 1001;
            transition: width 0.3s ease;
        }

        /* NEW: Parallax Scrolling Effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* NEW: Text Reveal Animation */
        .reveal-text {
            overflow: hidden;
            position: relative;
        }

        .reveal-text::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent);
            transform: translateX(-100%);
            animation: text-reveal 1.5s ease-in-out forwards;
        }

        @keyframes text-reveal {
            0% {
                transform: translateX(-100%);
            }
            50% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(100%);
            }
        }

        /* NEW: Liquid Button Effect */
        .liquid-btn {
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }

        .liquid-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent);
            transform: translateX(-100%);
            transition: transform 0.5s;
            z-index: -1;
        }

        .liquid-btn:hover::before {
            transform: translateX(0);
        }

        .liquid-btn:hover {
            color: var(--primary);
        }

        /* NEW: Neon Glow Effect */
        .neon-glow {
            text-shadow: 
                0 0 5px var(--accent),
                0 0 10px var(--accent),
                0 0 15px var(--accent),
                0 0 20px var(--accent);
            animation: neon-flicker 2s infinite alternate;
        }

        @keyframes neon-flicker {
            0%, 18%, 22%, 25%, 53%, 57%, 100% {
                text-shadow: 
                    0 0 5px var(--accent),
                    0 0 10px var(--accent),
                    0 0 15px var(--accent),
                    0 0 20px var(--accent);
            }
            20%, 24%, 55% {
                text-shadow: none;
            }
        }

        /* NEW: Morphing Background */
        .morphing-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
            background-size: 400% 400%;
            animation: gradient-morph 15s ease infinite;
        }

        @keyframes gradient-morph {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 10px 0;
            }

            .menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
                min-height: 90px;
            }

            .hero h2 {
                font-size: 1.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .resume-header {
                flex-direction: column;
                text-align: center;
            }

            .resume-photo {
                align-self: center;
            }

            .resume-body {
                grid-template-columns: 1fr;
            }

            .education-header, .experience-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .education-date, .experience-date {
                margin-top: 10px;
            }

            .section-title {
                font-size: 2rem;
            }

            .floating-actions {
                bottom: 20px;
                left: 20px;
            }

            .flappy-bird-container {
                height: 500px;
            }

            body {
                cursor: auto;
            }
            
            .cursor, .cursor-follower {
                display: none;
            }
        }