 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b3d 100%);
            color: white;
            overflow-x: hidden;
        }

        /* Animated background particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #00ffff;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 1; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 0.5; }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: rgba(15, 15, 35, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(15, 15, 35, 0.95);
            padding: 15px 50px;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #00ffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo:hover {
            text-shadow: 0 0 20px #00ffff;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #00ffff;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #00ffff;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 50px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            animation: slideInLeft 1s ease-out;
        }

        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 2s ease-in-out infinite alternate;
        }

        .hero-content h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #fff;
        }

        .hero-content .role {
            font-size: 20px;
            color: #00ffff;
            margin-bottom: 30px;
        }

        .hero-content p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 40px;
            color: #ccc;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
        }

        /* Hero Stats */
        .hero-stats {
            display: flex;
            gap: 40px;
            margin: 30px 0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h3 {
            font-size: 36px;
            color: #00ffff;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .stat-item p {
            font-size: 14px;
            color: #ccc;
            margin: 0;
        }

        /* Hero Buttons */
        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .cta-button.primary {
            background: linear-gradient(45deg, #00ffff, #ff00ff);
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid #00ffff;
            color: #00ffff;
        }

        .cta-button.secondary:hover {
            background: rgba(0, 255, 255, 0.1);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 255, 255, 0.5);
        }

        /* Profile Image */
        .profile-container {
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        .profile-image {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid transparent;
            background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
            padding: 5px;
            animation: rotate 10s linear infinite;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #00ffff;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-links a:hover {
            background: rgba(0, 255, 255, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
        }

        /* Profile Badges */
        .profile-badges {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .badge {
            background: rgba(0, 255, 255, 0.2);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            color: #00ffff;
            border: 1px solid rgba(0, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        /* Skills Section */
        .skills-section {
            padding: 100px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .skills-section h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 60px;
            color: #00ffff;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .skill-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.5s ease;
            opacity: 0;
        }

        .skill-card:hover::before {
            animation: shimmer 1s ease-in-out;
            opacity: 1;
        }

        .skill-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
        }

        .skill-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: #00ffff;
        }

        .skill-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #fff;
        }

        .skill-card p {
            color: #ccc;
            line-height: 1.6;
        }

        /* Skill Progress Bars */
        .skill-progress {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            margin-top: 15px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            border-radius: 3px;
            transition: width 2s ease-in-out;
            width: 0%;
        }

        .skill-card.animate .progress-bar {
            animation: fillProgress 2s ease-in-out forwards;
        }

        @keyframes fillProgress {
            from { width: 0%; }
            to { width: var(--progress-width); }
        }

        /* Projects Section */
        .projects-section {
            padding: 100px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .projects-section h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 60px;
            color: #ff00ff;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
        }

        .project-card-content {
            padding: 30px;
        }

        .project-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #ff00ff;
        }

        .project-card p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Enhanced Project Cards */
        .project-card.featured {
            border: 2px solid #00ffff;
            background: rgba(0, 255, 255, 0.05);
        }

        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 10px;
        }

        .project-status {
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 12px;
            color: white;
            font-weight: bold;
        }

        .project-role {
            color: #00ffff;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .project-description {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .project-features {
            margin-bottom: 20px;
        }

        .project-features ul {
            list-style: none;
            padding: 0;
        }

        .project-features li {
            color: #ccc;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .project-tech {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .tech-tag {
            background: rgba(0, 255, 255, 0.2);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            color: #00ffff;
            border: 1px solid rgba(0, 255, 255, 0.3);
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #00ffff;
        }

        .contact-info h3 {
            color: #ff00ff;
            margin-bottom: 30px;
        }

        .contact-info p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #ccc;
        }

        .contact-item i {
            color: #00ffff;
            font-size: 20px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00ffff;
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 20px #00ffff;
            }
            to {
                text-shadow: 0 0 30px #ff00ff;
            }
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        /* Social Link Icons */
        .social-icon {
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .facebook { color: #1877f2; }
        .youtube { color: #ff0000; }
        .instagram { color: #e4405f; }
        .linkedin { color: #0077b5; }
        .naukri { color: #4a90e2; }

        .social-links a:hover .social-icon {
            transform: scale(1.2);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #00ffff;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                padding: 0 30px;
            }

            .skills-section,
            .projects-section,
            .contact-section {
                padding: 80px 30px;
            }

            nav {
                padding: 15px 30px;
            }

            .hero-content h1 {
                font-size: 42px;
            }

            .profile-image {
                width: 300px;
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(15, 15, 35, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 20px;
                transform: translateY(-100vh);
                transition: transform 0.3s ease;
                border-radius: 0 0 15px 15px;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .nav-links li {
                margin: 10px 0;
            }

            .hero {
                flex-direction: column;
                text-align: center;
                padding: 120px 20px 50px;
                min-height: auto;
            }

            .hero-content {
                margin-bottom: 40px;
                max-width: 100%;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .hero-content h2 {
                font-size: 22px;
            }

            .hero-content .role {
                font-size: 18px;
            }

            .profile-image {
                width: 250px;
                height: 250px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .skills-section,
            .projects-section,
            .contact-section {
                padding: 60px 20px;
            }

            .skills-grid,
            .projects-grid {
                grid-template-columns: 1fr;
            }

            .social-links {
                justify-content: center;
                flex-wrap: wrap;
            }

            .contact-form {
                padding: 30px 20px;
            }

            nav {
                padding: 15px 20px;
            }

            .nav-container {
                position: relative;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 28px;
            }

            .hero-content h2 {
                font-size: 20px;
            }

            .hero-content .role {
                font-size: 16px;
            }

            .profile-image {
                width: 200px;
                height: 200px;
            }

            .skills-section h2,
            .projects-section h2,
            .contact-info h2 {
                font-size: 28px;
            }

            .skill-card,
            .project-card {
                padding: 20px;
            }

            .skill-card h3,
            .project-card h3 {
                font-size: 20px;
            }

            .social-links a {
                width: 45px;
                height: 45px;
            }

            .social-icon {
                font-size: 20px;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 14px;
            }

            .contact-form {
                padding: 20px 15px;
            }

            .form-group input,
            .form-group textarea {
                padding: 12px;
                font-size: 14px;
            }

            .submit-btn {
                padding: 12px;
                font-size: 14px;
            }
        }

        @media (max-width: 320px) {
            .hero-content h1 {
                font-size: 24px;
            }

            .hero-content h2 {
                font-size: 18px;
            }

            .profile-image {
                width: 180px;
                height: 180px;
            }

            .skills-section h2,
            .projects-section h2,
            .contact-info h2 {
                font-size: 24px;
            }

            .social-links {
                gap: 15px;
            }

            .social-links a {
                width: 40px;
                height: 40px;
            }

            .social-icon {
                font-size: 18px;
            }
        }