   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #ff2d55;
            --secondary: #5e17eb;
            --accent: #00d9ff;
            --bg-dark: #050505;
            --bg-card: #0f0f0f;
            --text-light: #ffffff;
            --text-gray: #8a8a8a;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
        }

        /* Animated Particles Background */
        .particles-bg {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            background: radial-gradient(ellipse at top, #1a0b2e 0%, #050505 60%);
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            animation: float 20s infinite ease-in-out;
            opacity: 0.15;
            filter: blur(2px);
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(100px, -100px) scale(1.2); }
            50% { transform: translate(-50px, 100px) scale(0.8); }
            75% { transform: translate(150px, 50px) scale(1.1); }
        }

        /* Navigation */
        .navbar {
            background: rgba(5, 5, 5, 0.85) !important;
            backdrop-filter: blur(20px);
            padding: 25px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 10px 40px rgba(255, 45, 85, 0.1);
        }

        .navbar-brand {
            font-size: 32px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05) rotate(-2deg);
        }

        .nav-link {
            color: var(--text-light) !important;
            margin: 0 20px;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -8px;
            left: 0;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 10px;
        }

        .nav-link:hover::before {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-badge {
            display: inline-block;
            padding: 10px 25px;
            background: rgba(255, 45, 85, 0.1);
            border: 1px solid rgba(255, 45, 85, 0.3);
            border-radius: 50px;
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
            animation: fadeInUp 0.8s ease;
        }

        .hero h1 {
            font-size: 5.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            animation: fadeInUp 0.8s ease 0.2s backwards;
            letter-spacing: -2px;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .hero p {
            font-size: 1.4rem;
            color: var(--text-gray);
            margin-bottom: 40px;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .btn-hero {
            padding: 18px 45px;
            font-size: 18px;
            font-weight: 700;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 20px 40px rgba(255, 45, 85, 0.3);
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

        .btn-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn-hero:hover::before {
            left: 100%;
        }

        .btn-hero:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 25px 50px rgba(255, 45, 85, 0.5);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styling */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            letter-spacing: -1px;
        }

        .section-title span {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Skills Section */
        .skill-item {
            background: var(--bg-card);
            padding: 35px;
            border-radius: 25px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .skill-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .skill-item:hover::before {
            transform: scaleX(1);
        }

        .skill-item:hover {
            transform: translateY(-15px) scale(1.03);
            border-color: rgba(255, 45, 85, 0.3);
            box-shadow: 0 25px 60px rgba(255, 45, 85, 0.2);
            background: linear-gradient(135deg, rgba(255, 45, 85, 0.05), rgba(0, 217, 255, 0.05));
        }

        .skill-icon {
            font-size: 3.5rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            transition: transform 0.5s ease;
        }

        .skill-item:hover .skill-icon {
            transform: scale(1.15) rotateY(360deg);
        }

        .skill-item h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        /* Projects Section */
        .project-card {
            background: var(--bg-card);
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            height: 100%;
            backdrop-filter: blur(10px);
        }

        .project-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
            border-radius: 30px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .project-card:hover::after {
            opacity: 1;
        }

        .project-card:hover {
            transform: translateY(-20px) scale(1.02);
            box-shadow: 0 30px 80px rgba(255, 45, 85, 0.4);
        }

        .project-header {
            height: 280px;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .project-header::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,45,85,0.1) 0%, transparent 70%);
            animation: rotate 15s linear infinite;
        }

        .project-icon {
            font-size: 5rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            z-index: 1;
            position: relative;
            transition: transform 0.6s ease;
        }

        .project-card:hover .project-icon {
            transform: scale(1.2) rotate(5deg);
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .project-body {
            padding: 35px;
        }

        .project-title {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .project-desc {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }

        .tech-badge {
            padding: 8px 18px;
            background: rgba(255, 45, 85, 0.1);
            border: 1px solid rgba(255, 45, 85, 0.3);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .tech-badge:hover {
            background: rgba(255, 45, 85, 0.2);
            transform: translateY(-3px);
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-right: 20px;
        }

        .project-link:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        /* Contact Section */
        .contact-card {
            background: var(--bg-card);
            padding: 50px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
        }

        .form-control {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            padding: 18px 20px;
            border-radius: 15px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--primary);
            box-shadow: 0 0 30px rgba(255, 45, 85, 0.2);
            color: var(--text-light);
            outline: none;
        }

        .form-control::placeholder {
            color: var(--text-gray);
        }

        /* Footer */
        .footer {
            background: var(--bg-card);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1.3rem;
            margin: 0 10px;
            transition: all 0.4s ease;
        }

        .social-icons a:hover {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-color: transparent;
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 15px 30px rgba(255, 45, 85, 0.3);
        }

        /* Scroll Animation */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 3rem; }
            .section-title { font-size: 2.5rem; }
            .navbar-brand { font-size: 24px; }
            .project-header { height: 200px; }
            .project-icon { font-size: 3.5rem; }
        }