/* CSS Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-white: #ffffff;
            --color-pearl-gray: #f8fafc;
            --color-ice-blue: #e8f4fd;
            --color-aqua-neon: #00e5ff;
            --color-lavender: #f3f4ff;
            --color-primary-text: #0f172a;
            --color-secondary-text: #64748b;
            --color-accent: #3b82f6;
            --color-success: #10b981;
            --glassmorphism-bg: rgba(255, 255, 255, 0.15);
            --glassmorphism-border: rgba(255, 255, 255, 0.25);
            --shadow-soft: 0 8px 32px rgba(31, 38, 135, 0.12);
            --shadow-hover: 0 20px 40px rgba(31, 38, 135, 0.2);
            --blur-amount: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--color-pearl-gray) 0%, var(--color-ice-blue) 30%, var(--color-lavender) 70%, var(--color-pearl-gray) 100%);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 60% 40%, rgba(243, 244, 255, 0.1) 0%, transparent 50%);
            animation: breathe 8s ease-in-out infinite;
            z-index: -2;
        }

        @keyframes breathe {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }

        /* Floating Light Elements */
        .floating-lights {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .light {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--color-aqua-neon);
            border-radius: 50%;
            opacity: 0.6;
            animation: float-light 6s ease-in-out infinite;
            box-shadow: 0 0 10px var(--color-aqua-neon);
        }

        .light:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .light:nth-child(2) { top: 60%; left: 85%; animation-delay: 2s; }
        .light:nth-child(3) { top: 40%; left: 30%; animation-delay: 4s; }
        .light:nth-child(4) { top: 80%; left: 70%; animation-delay: 1s; }

        @keyframes float-light {
            0%, 100% { transform: translateY(0px) opacity(0.6); }
            50% { transform: translateY(-20px) opacity(1); }
        }

        /* Projects Section */
        .projects-section {
            padding: 120px 0;
            position: relative;
            z-index: 1;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Section Title */
        .section-header {
            text-align: center;
            margin-bottom: 100px;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            background: linear-gradient(135deg, var(--color-primary-text) 0%, var(--color-accent) 50%, var(--color-aqua-neon) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px;
            position: relative;
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: -0.02em;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-aqua-neon), transparent);
            animation: glow-line 3s ease-in-out infinite;
        }

        @keyframes glow-line {
            0%, 100% { box-shadow: 0 0 5px var(--color-aqua-neon); }
            50% { box-shadow: 0 0 20px var(--color-aqua-neon), 0 0 30px var(--color-aqua-neon); }
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--color-secondary-text);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Projects Grid */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        /* Project Card */
        .project-card {
            background: var(--glassmorphism-bg);
            backdrop-filter: blur(var(--blur-amount));
            border: 1px solid var(--glassmorphism-border);
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-soft);
            cursor: pointer;
            height: 480px;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-aqua-neon), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .project-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 229, 255, 0.4);
        }

        .project-card:hover::before {
            opacity: 1;
        }

        /* Project Image */
        .project-image {
            height: 260px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--color-ice-blue), var(--color-lavender));
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s ease;
            filter: brightness(0.9);
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 229, 255, 0.1), rgba(59, 130, 246, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        /* Project Content */
        .project-content {
            padding: 32px;
            height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .project-header {
            margin-bottom: 16px;
        }

        .project-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--color-primary-text);
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .project-card:hover .project-title {
            color: var(--color-accent);
        }

        .project-type {
            font-size: 0.875rem;
            color: var(--color-secondary-text);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 500;
        }

        .project-description {
            color: var(--color-secondary-text);
            line-height: 1.6;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .project-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .project-tech {
            display: flex;
            gap: 8px;
        }

        .tech-tag {
            padding: 4px 12px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 12px;
            font-size: 0.75rem;
            color: var(--color-accent);
            font-weight: 500;
        }

        .project-link {
            width: 48px;
            height: 48px;
            background: var(--glassmorphism-bg);
            backdrop-filter: blur(8px);
            border: 1px solid var(--glassmorphism-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .project-link:hover {
            background: var(--color-aqua-neon);
            border-color: var(--color-aqua-neon);
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
        }

        .project-link i {
            font-size: 20px;
            color: var(--color-accent);
            transition: color 0.3s ease;
        }

        .project-link:hover i {
            color: white;
        }

        /* Status Badge */
        .status-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 6px 12px;
            background: var(--glassmorphism-bg);
            backdrop-filter: blur(8px);
            border: 1px solid var(--glassmorphism-border);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--color-success);
            z-index: 2;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .projects-section {
                padding: 80px 0;
            }
            
            .container {
                padding: 0 16px;
            }
            
            .section-header {
                margin-bottom: 60px;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                margin-top: 60px;
            }
            
            .project-card {
                height: 450px;
            }
            
            .project-content {
                padding: 24px;
            }
            
            .project-image {
                height: 240px;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stagger Animation Delays */
        .project-card:nth-child(1) { animation-delay: 0.1s; }
        .project-card:nth-child(2) { animation-delay: 0.2s; }
        .project-card:nth-child(3) { animation-delay: 0.3s; }
        .project-card:nth-child(4) { animation-delay: 0.4s; }
        .project-card:nth-child(5) { animation-delay: 0.5s; }
        .project-card:nth-child(6) { animation-delay: 0.6s; }

.card-link{
    text-decoration: none;
}