
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Sparkle Trail */
        .sparkle {
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, #64ffda 0%, transparent 70%);
            border-radius: 50%;
            animation: sparkleAnimation 0.8s ease-out forwards;
        }

        @keyframes sparkleAnimation {
            0% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
                box-shadow: 0 0 8px #64ffda;
            }
            100% {
                opacity: 0;
                transform: scale(0.3) rotate(180deg);
                box-shadow: 0 0 15px #64ffda;
            }
        }

        /* Professional Particle Background */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.4;
        }

        .particle {
            position: absolute;
            width: auto;
            height: auto;
            background: transparent;
            border-radius: 0;
            animation: float 8s infinite ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #64ffda;
            opacity: 0.6;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0) rotate(0deg); 
                opacity: 0.3; 
            }
            25% { 
                transform: translateY(-50px) rotate(90deg); 
                opacity: 0.8; 
            }
            50% { 
                transform: translateY(-100px) rotate(180deg); 
                opacity: 1; 
            }
            75% { 
                transform: translateY(-150px) rotate(270deg); 
                opacity: 0.8; 
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Enhanced Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(100, 255, 218, 0.1);
        }

        nav.scrolled {
            padding: 10px 0;
            background: rgba(10, 10, 10, 0.98);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 40px;
            flex: 1;
        }

        nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            padding: 8px 16px;
            border-radius: 25px;
        }

        nav a:hover {
            color: #64ffda;
            background: rgba(100, 255, 218, 0.1);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(100, 255, 218, 0.2);
        }

        nav a.active {
            color: #64ffda;
            background: rgba(100, 255, 218, 0.15);
            transform: scale(1.1);
        }

        .nav-controls {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .theme-toggle, .resume-btn {
            background: rgba(100, 255, 218, 0.15);
            border: 2px solid rgba(100, 255, 218, 0.3);
            color: #64ffda;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
        }

        .theme-toggle:hover, .resume-btn:hover {
            background: rgba(100, 255, 218, 0.25);
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 25px rgba(100, 255, 218, 0.3);
        }

        .resume-btn {
            background: linear-gradient(135deg, #64ffda 0%, #00bcd4 100%);
            color: #000000;
            border: none;
            font-weight: 600;
        }

        .resume-btn:hover {
            background: linear-gradient(135deg, #00bcd4 0%, #64ffda 100%);
            box-shadow: 0 10px 30px rgba(100, 255, 218, 0.4);
            transform: scale(1.1) rotate(-5deg);
        }

/* Light Mode Styles - Purple Theme */
body.light-mode {
    background: linear-gradient(135deg, #fafbff 0%, #f3f4ff 30%, #ede7ff 70%, #e8e0ff 100%);
    color: #2d1b69;
}

body.light-mode nav {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(139, 92, 246, 0.12);
    box-shadow: 0 2px 20px rgba(139, 92, 246, 0.08);
}

body.light-mode nav a {
    color: #4c1d95;
}

body.light-mode nav a:hover {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

body.light-mode nav a.active {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.12);
}

body.light-mode .theme-toggle {
    background: rgba(124, 58, 237, 0.12);
    border: 2px solid rgba(124, 58, 237, 0.25);
    color: #7c3aed;
}

body.light-mode .theme-toggle:hover {
    background: rgba(124, 58, 237, 0.2);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
}

body.light-mode .resume-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    color: #ffffff;
}

body.light-mode .resume-btn:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.35);
}

body.light-mode .timeline-content,
body.light-mode .project-card,
body.light-mode .skill-category,
body.light-mode .stat-item,
body.light-mode .contact-item {
    background: linear-gradient(135deg, rgba(248, 245, 255, 0.95) 0%, rgba(243, 232, 255, 0.9) 50%, rgba(237, 220, 255, 0.85) 100%);
    color: #2d1b69;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

body.light-mode .timeline-content::before,
body.light-mode .skill-category::before {
    background: linear-gradient(90deg, #7c3aed, #8b5cf6);
}

body.light-mode .project-card::before {
    background: linear-gradient(90deg, transparent, #7c3aed, transparent);
}

body.light-mode .timeline-content:hover,
body.light-mode .project-card:hover,
body.light-mode .skill-category:hover,
body.light-mode .stat-item:hover,
body.light-mode .contact-item:hover {
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.22);
    background: linear-gradient(135deg, rgba(245, 243, 255, 0.98) 0%, rgba(237, 233, 254, 0.95) 50%, rgba(230, 221, 255, 0.9) 100%);
}

body.light-mode .particle {
    color: #8b5cf6;
    opacity: 0.5;
}

body.light-mode .section-title {
    background: linear-gradient(135deg, #2d1b69 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .hero-content h1 {
    background: linear-gradient(135deg, #2d1b69 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .hero-content .subtitle {
    color: #7c3aed;
}

body.light-mode .hero-content p {
    color: #64748b;
}

body.light-mode .hero-content p:hover {
    color: #2d1b69;
}

body.light-mode .about-text p {
    color: #64748b;
}

body.light-mode .about-text p:hover {
    color: #2d1b69;
}

body.light-mode .timeline-date,
body.light-mode .project-title,
body.light-mode .skill-category h3,
body.light-mode .stat-number,
body.light-mode .contact-info-text h4 {
    color: #7c3aed;
}

body.light-mode .project-title a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

body.light-mode .project-title a:hover {
    color: #0066ff;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.6);
    transform: scale(1.05);
}

body.light-mode .timeline-date a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

body.light-mode .timeline-date a:hover {
    color: #0066ff;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.6);
    transform: scale(1.05);
}
        
body.light-mode .timeline-title {
    color: #2d1b69;
}

body.light-mode .timeline-company,
body.light-mode .project-description,
body.light-mode .stat-label,
body.light-mode .contact-info-text p {
    color: #64748b;
}

body.light-mode .timeline-content:hover .timeline-title,
body.light-mode .project-card:hover .project-description,
body.light-mode .stat-item:hover .stat-label,
body.light-mode .contact-item:hover .contact-info-text h4,
body.light-mode .contact-item:hover .contact-info-text p,
body.light-mode .timeline-content:hover .timeline-company {
    color: #2d1b69;
}

body.light-mode .tech-tag {
    background: rgba(124, 58, 237, 0.12);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

body.light-mode .tech-tag:hover {
    background: rgba(124, 58, 237, 0.2);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

body.light-mode .skill-item {
    background: linear-gradient(135deg, rgba(250, 245, 255, 0.9) 0%, rgba(243, 232, 255, 0.8) 100%);
    color: #2d1b69;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

body.light-mode .skill-item:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(139, 92, 246, 0.12) 100%);
    color: #7c3aed;
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 6px 15px rgba(124, 58, 237, 0.2);
}

body.light-mode .project-accuracy  {
    color: #2d1b69;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    
}

body.light-mode .project-card:hover .project-accuracy   {
    color: #7c3aed;
}

body.light-mode .contact-icon {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(124, 58, 237, 0.25);
}

body.light-mode .contact-item:hover .contact-icon {
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

body.light-mode .social-link {
    background: linear-gradient(135deg, rgba(250, 245, 255, 0.9) 0%, rgba(243, 232, 255, 0.8) 100%);
    color: #2d1b69;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

body.light-mode .social-link::before {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

body.light-mode .contact-form-section {
    background: linear-gradient(135deg, rgba(248, 245, 255, 0.95) 0%, rgba(243, 232, 255, 0.9) 50%, rgba(237, 220, 255, 0.85) 100%);
    color: #2d1b69;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

body.light-mode .contact-form-section::before {
    background: linear-gradient(90deg, #7c3aed, #8b5cf6);
}

body.light-mode .contact-form-section:hover {
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.22);
    background: linear-gradient(135deg, rgba(245, 243, 255, 0.98) 0%, rgba(237, 233, 254, 0.95) 50%, rgba(230, 221, 255, 0.9) 100%);
}

body.light-mode .contact-form-section h3 {
    color: #7c3aed;
}

body.light-mode .contact-form-section p {
    color: #64748b;
}

body.light-mode .contact-form-section p[style*="color: #64ffda"] {
    color: #7c3aed !important;
}

body.light-mode .contact-form-section:hover p {
    color: #2d1b69;
}

body.light-mode .availability-badge {
    background: rgba(124, 58, 237, 0.12);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.25);
}

body.light-mode .availability-dot {
    background: #7c3aed;
}

body.light-mode .scroll-progress {
    background: linear-gradient(90deg, #7c3aed, #8b5cf6);
}

body.light-mode .sparkle {
    background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
    box-shadow: 0 0 8px #7c3aed;
}

body.light-mode .btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
}

body.light-mode .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
}

body.light-mode .btn-secondary {
    border: 2px solid #7c3aed;
    color: #7c3aed;
}

body.light-mode .btn-secondary:hover {
    background: #7c3aed;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.25);
}

body.light-mode .image-container::before {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    opacity: 0.75;
}

body.light-mode .image-container:hover::before {
    opacity: 0.9;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0 50px;
            position: relative;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 60px;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-content {
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #64ffda 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideInLeft 1s ease;
            line-height: 1.1;
            transition: all 0.3s ease;
        }

        .hero-content h1:hover {
            transform: scale(1.02);
            filter: drop-shadow(0 0 20px rgba(100, 255, 218, 0.5));
        }

        .hero-content .subtitle {
            font-size: 1.6rem;
            color: #64ffda;
            margin-bottom: 25px;
            animation: slideInLeft 1s ease 0.2s both;
            font-weight: 300;
            transition: all 0.3s ease;
        }

        .hero-content .subtitle:hover {
            transform: translateX(10px);
            text-shadow: 0 0 15px rgba(100, 255, 218, 0.6);
        }

        .hero-content p {
            font-size: 1.1rem;
            color: #b0b0b0;
            margin-bottom: 35px;
            animation: slideInLeft 1s ease 0.4s both;
            line-height: 1.7;
            transition: all 0.3s ease;
        }

        .hero-content p:hover {
            color: #ffffff;
            transform: translateX(5px);
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            animation: slideInLeft 1s ease 0.6s both;
        }

        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, #64ffda 0%, #00bcd4 100%);
            color: #000000;
            box-shadow: 0 8px 25px rgba(100, 255, 218, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.1) rotate(-2deg);
            box-shadow: 0 15px 40px rgba(100, 255, 218, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #ffffff;
            border: 2px solid #64ffda;
        }

        .btn-secondary:hover {
            background: #64ffda;
            color: #000000;
            transform: translateY(-5px) scale(1.1) rotate(2deg);
            box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
        }

        /* Updated Hero Image Styles */
        .hero-image {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            z-index: 1;
            position: relative;
        }

        .image-container {
            width: 350px;
            height: 400px;
            position: relative;
            animation: complexFloat 6s ease-in-out infinite;
            overflow: visible;
            transition: all 0.3s ease;
        }

        .image-container:hover {
            transform: scale(1.05) rotate(2deg);
        }

        .image-container::before {
            content: '';
            position: absolute;
            top: 20px;
            left: -20px;
            right: 20px;
            bottom: -20px;
            background: linear-gradient(135deg, #64ffda 0%, #0066cc 100%);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.8;
            transform: rotate(-5deg);
            animation: bgFloat 8s ease-in-out infinite;
            transition: all 0.3s ease;
        }

        .image-container:hover::before {
            opacity: 1;
            transform: rotate(-3deg) scale(1.1);
        }

        @keyframes complexFloat {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            25% {
                transform: translateY(-10px) scale(1.01);
            }
            50% {
                transform: translateY(-5px) scale(1.02);
            }
            75% {
                transform: translateY(-15px) scale(1.01);
            }
        }

        @keyframes bgFloat {
            0%, 100% {
                transform: rotate(-5deg) translateY(0);
            }
            50% {
                transform: rotate(-3deg) translateY(-10px);
            }
        }

        .profile-image {
            width: 100%;
            height: 100%;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: #fff;
            transition: all 0.4s ease;
        }

        .profile-image:hover {
            box-shadow: 0 30px 60px rgba(100, 255, 218, 0.3);
            transform: translateY(-5px);
        }

        .profile-image img {
            width: 100%;
            height:100%;
            object-fit: cover;
            border-radius: 15px;
            transition: all 0.4s ease;
        }

        .profile-image:hover img {
            transform: scale(1.1);
        }

        .profile-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(100, 255, 218, 0.1), transparent 70%);
            animation: pulse 3s ease-in-out infinite;
            pointer-events: none;
            z-index: 1;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.7; }
        }

        .profile-image .hover-text {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: #64ffda;
            font-size: 1rem;
            text-align: center;
            padding: 10px;
            opacity: 0;
            transform: translateY(100%);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 2;
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
        }

        .profile-image:hover .hover-text {
            opacity: 1;
            transform: translateY(0) scale(1.05);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: rgba(255, 255, 255, 0.02);
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            position: relative;
            color: transparent;
            background: linear-gradient(135deg, #ffffff 0%, #64ffda 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: titleGlow 3s ease-in-out infinite alternate;
            transition: all 0.3s ease;
        }

        .section-title:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 25px rgba(100, 255, 218, 0.6));
        }

        @keyframes titleGlow {
            from { filter: drop-shadow(0 0 8px rgba(100, 255, 218, 0.3)); }
            to { filter: drop-shadow(0 0 16px rgba(100, 255, 218, 0.6)); }
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #64ffda, transparent);
            transform: translateX(-50%);
            animation: lineExpand 2s ease-in-out;
        }

        @keyframes lineExpand {
            from { width: 0; }
            to { width: 80px; }
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text {
            animation: slideInRight 1s ease;
        }

        .about-text p {
            margin-bottom: 20px;
            color: #b0b0b0;
            font-size: 1.05rem;
            line-height: 1.7;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
            transition: all 0.3s ease;
        }

        .about-text p:hover {
            color: #ffffff;
            transform: translateX(10px);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .about-text p:nth-child(1) { animation-delay: 0.2s; }
        .about-text p:nth-child(2) { animation-delay: 0.4s; }
        .about-text p:nth-child(3) { animation-delay: 0.6s; }
        .about-text p:nth-child(4) { animation-delay: 0.8s; }

        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            animation: slideInLeft 1s ease;
        }

        .stat-item {
            background: rgba(100, 255, 218, 0.06);
            padding: 30px;
            border-radius: 18px;
            text-align: center;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(100, 255, 218, 0.15);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.08), transparent);
            transition: left 0.6s ease;
        }

        .stat-item:hover::before {
            left: 100%;
        }

        .stat-item:hover {
            transform: translateY(-12px) scale(1.08) rotate(2deg);
            box-shadow: 0 20px 40px rgba(100, 255, 218, 0.2);
            border-color: rgba(100, 255, 218, 0.4);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #64ffda;
            margin-bottom: 8px;
            line-height: 1.2;
            transition: all 0.3s ease;
        }

        .stat-item:hover .stat-number {
            transform: scale(1.1);
            text-shadow: 0 0 15px rgba(100, 255, 218, 0.8);
        }

        .stat-label {
            color: #b0b0b0;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .stat-item:hover .stat-label {
            color: #ffffff;
            transform: scale(1.05);
        }

        /* Experience Section */
        .experience {
            padding: 100px 0;
            position: relative;
        }

        .timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 60px;
            position: relative;
            opacity: 0;
            animation: timelineSlide 1s ease forwards;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.2s; }
        .timeline-item:nth-child(2) { animation-delay: 0.6s; }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        @keyframes timelineSlide {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .timeline-content {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 18px;
            margin: 0 30px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #64ffda, #00bcd4);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .timeline-content:hover::before {
            transform: scaleX(1);
        }

        .timeline-content:hover {
            transform: translateY(-12px) scale(1.03) rotate(1deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            border-color: rgba(100, 255, 218, 0.2);
        }

        .timeline-date {
            color: #64ffda;
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .timeline-date a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .timeline-date a:hover {
            color: #0066ff;
            text-decoration: none;
            text-shadow: 0 0 10px rgba(0, 102, 255, 0.6);
            transform: scale(1.05);
        }

        .timeline-content:hover .timeline-date {
            transform: translateX(5px);
            text-shadow: 0 0 10px rgba(100, 255, 218, 0.6);
        }

        .timeline-title {
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: #ffffff;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .timeline-content:hover .timeline-title {
            color: #64ffda;
            transform: scale(1.05);
        }

        .timeline-company {
            color: #b0b0b0;
            margin-bottom: 15px;
            font-style: italic;
            transition: all 0.3s ease;
        }

        .timeline-content:hover .timeline-company {
            color: #ffffff;
            transform: translateX(3px);
        }

        /* Projects Section */
        .projects {
            padding: 100px 0;
            background: rgba(255, 255, 255, 0.02);
        }


        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            opacity: 0;
            transform: translateY(40px);
            animation: cardReveal 0.8s ease forwards;
        }

        .project-card:nth-child(1) { animation-delay: 0.1s; }
        .project-card:nth-child(2) { animation-delay: 0.3s; }
        .project-card:nth-child(3) { animation-delay: 0.5s; }
        .project-card:nth-child(4) { animation-delay: 0.7s; }

        @keyframes cardReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #64ffda, transparent);
            transition: left 0.6s ease;
        }

        .project-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(100, 255, 218, 0.08), transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .project-card:hover::before {
            left: 100%;
        }

        .project-card:hover::after {
            opacity: 1;
        }

        .project-card:hover {
            transform: translateY(-18px) rotateX(5deg) rotateY(3deg) scale(1.03);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            border-color: rgba(100, 255, 218, 0.3);
        }

        .project-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #64ffda;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .project-card:hover .project-title {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(100, 255, 218, 0.6);
        }

        .project-title a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .project-title a:hover {
            color: #0066ff;
            text-decoration: none;
            text-shadow: 0 0 10px rgba(0, 102, 255, 0.6);
            transform: scale(1.05);
        }

        .project-description {
            color: #b0b0b0;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .project-card:hover .project-description {
            color: #ffffff;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .tech-tag {
            background: rgba(100, 255, 218, 0.12);
            color: #64ffda;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid rgba(100, 255, 218, 0.2);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .tech-tag:hover {
            background: rgba(100, 255, 218, 0.2);
            transform: scale(1.1) rotate(3deg);
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
        }

        .project-accuracy  {
            color: #ffffff;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        .project-card:hover .project-accuracy  {
            color: #64ffda;
            transform: scale(1.05);
        }

        /* Skills Section */
        .skills {
            padding: 100px 0;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .skill-category {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.95);
            animation: skillsReveal 0.8s ease forwards;
            cursor: pointer;
        }

        .skill-category:nth-child(1) { animation-delay: 0.1s; }
        .skill-category:nth-child(2) { animation-delay: 0.2s; }
        .skill-category:nth-child(3) { animation-delay: 0.3s; }
        .skill-category:nth-child(4) { animation-delay: 0.4s; }
        .skill-category:nth-child(5) { animation-delay: 0.5s; }

        @keyframes skillsReveal {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .skill-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #64ffda, #00bcd4);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .skill-category:hover::before {
            transform: scaleX(1);
        }

        .skill-category:hover {
            transform: translateY(-12px) scale(1.05) rotate(2deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .skill-category h3 {
            color: #64ffda;
            margin-bottom: 20px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .skill-category:hover h3 {
            transform: scale(1.1);
            text-shadow: 0 0 15px rgba(100, 255, 218, 0.6);
        }

        .skill-category h3 i {
            transition: all 0.4s ease;
        }

        .skill-category:hover h3 i {
            transform: rotate(360deg) scale(1.2);
        }

        .skill-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .skill-item {
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .skill-item:hover {
            background: rgba(100, 255, 218, 0.15);
            color: #64ffda;
            transform: scale(1.15) rotate(5deg);
            border-color: rgba(100, 255, 218, 0.2);
            box-shadow: 0 8px 20px rgba(100, 255, 218, 0.2);
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 60px;
            align-items: start;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(255, 255, 255, 0.08);
            opacity: 0;
            transform: translateX(-40px);
            animation: contactSlide 0.8s ease forwards;
            cursor: pointer;
        }

        .contact-item:nth-child(1) { animation-delay: 0.1s; }
        .contact-item:nth-child(2) { animation-delay: 0.3s; }
        .contact-item:nth-child(3) { animation-delay: 0.5s; }

        @keyframes contactSlide {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-item:hover {
            transform: translateX(15px) scale(1.05);
            box-shadow: 0 15px 35px rgba(100, 255, 218, 0.15);
            border-color: rgba(100, 255, 218, 0.2);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #64ffda, #00bcd4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            font-size: 1.2rem;
            box-shadow: 0 8px 16px rgba(100, 255, 218, 0.2);
            transition: all 0.4s ease;
        }

        .contact-item:hover .contact-icon {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 12px 25px rgba(100, 255, 218, 0.3);
        }

        .contact-info-text h4 {
            color: #64ffda;
            font-size: 1.1rem;
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }

        .contact-info-text p {
            color: #b0b0b0;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-info-text h4 {
            color: #ffffff;
            transform: translateX(5px);
        }

        .contact-item:hover .contact-info-text p {
            color: #ffffff;
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #64ffda, #00bcd4);
            transition: top 0.4s ease;
        }

        .social-link i {
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
            font-size: 1.2rem;
        }

        .social-link:hover::before {
            top: 0;
        }

        .social-link:hover i {
            color: #000000;
            transform: rotate(360deg) scale(1.2);
        }

        .social-link:hover {
            transform: translateY(-8px) scale(1.15) rotate(10deg);
            box-shadow: 0 15px 30px rgba(100, 255, 218, 0.25);
        }

        /* LinkedIn specific styling */
        .social-link.linkedin:hover {
            background: #20beff;
        }

        .social-link.linkedin:hover::before {
            background: #20beff;
        }

        /* GitHub specific styling */
        .social-link.github:hover {
            background: #20beff;
        }

        .social-link.github:hover::before {
            background: #20beff;
        }
        
        .contact-form-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 18px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .contact-form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #64ffda, #00bcd4);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .contact-form-section:hover {
            transform: translateY(-12px) scale(1.03) rotate(1deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            border-color: rgba(100, 255, 218, 0.2);
        }

        .contact-form-section:hover::before {
            transform: scaleX(1);
        }

        .contact-form-section h3 {
            color: #64ffda;
            margin-bottom: 15px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .contact-form-section p {
            color: #b0b0b0;
            line-height: 1.6;
            transition: all 0.3s ease;
        }

        .contact-form-section:hover h3 {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(100, 255, 218, 0.6);
        }

        .contact-form-section:hover p {
            color: #ffffff;
        }

        .availability-badge {
            background: rgba(100, 255, 218, 0.12);
            color: #64ffda;
            border: 1px solid rgba(100, 255, 218, 0.25);
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            font-weight: 500;
            margin: 20px 0;
            transition: all 0.3s ease;
        }

        .availability-badge:hover {
            background: rgba(100, 255, 218, 0.2);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
        }

        .availability-dot {
            width: 8px;
            height: 8px;
            background: #64ffda;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }
        
        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #64ffda, #00bcd4);
            z-index: 1001;
            transition: width 0.1s ease;
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(25px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .sparkle {
                display: none; /* Disable sparkles on mobile for performance */
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .image-container {
                width: 280px;
                height: 320px;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .nav-controls {
                flex-direction: column;
                gap: 10px;
            }

            nav .container {
                flex-direction: column;
                gap: 15px;
            }

            nav ul {
                flex-wrap: wrap;
                gap: 20px;
            }

            .timeline-item {
                flex-direction: column;
            }

            .timeline-item:nth-child(even) {
                flex-direction: column;
            }

            .timeline-content {
                margin: 0;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .skills-grid {
                grid-template-columns: 1fr;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .social-links {
                justify-content: center;
            }
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .loading-overlay.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(100, 255, 218, 0.3);
            border-top: 3px solid #64ffda;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }

        .loading-text {
            color: #64ffda;
            font-size: 1.1rem;
            text-align: center;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Desktop Mode Warning Popup */
        .desktop-warning {
            display: none;
            position: fixed;
            top: 60px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ff3b3b;
            color: white;
            padding: 10px 18px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            font-size: 0.9rem;
            z-index: 9999;
            animation: fadeIn 0.4s ease;
            text-align: center;
        }

        .desktop-warning.fade-out {
            animation: fadeOut 0.5s ease forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px) translateX(-50%); }
            to { opacity: 1; transform: translateY(0) translateX(-50%); }
        }

        @keyframes fadeOut {
            from { opacity: 1; transform: translateY(0) translateX(-50%); }
            to { opacity: 0; transform: translateY(-10px) translateX(-50%); }
        }

        /* Floating Professional Icons Animation */
        @keyframes floatUp {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Ripple Effect */
        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }