* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pcb-green: #00ff88;
    --pcb-dark: #0a0e1a;
    --circuit-blue: #00d4ff;
    --neon-purple: #b026ff;
    --text-light: #e0e0e0;
    --text-dark: #1a1a1a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--pcb-dark);
    color: var(--text-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
}

.section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 100%);
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

#pcb-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    position: relative;
    background: rgba(10, 14, 26, 0.6);
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
}

.glitch {
    position: relative;
    color: var(--pcb-green);
    animation: glitch-pulse 3s ease-in-out infinite;
}

@keyframes glitch-pulse {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
    50% { text-shadow: 0 0 30px rgba(0, 255, 136, 0.8), 0 0 50px rgba(0, 212, 255, 0.4); }
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    animation: glitch-1 2.5s infinite;
    color: var(--circuit-blue);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 3s infinite;
    color: var(--neon-purple);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); opacity: 0; }
    2% { transform: translate(-2px, 2px); opacity: 0.8; }
    4% { transform: translate(0); opacity: 0; }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); opacity: 0; }
    3% { transform: translate(2px, -2px); opacity: 0.8; }
    6% { transform: translate(0); opacity: 0; }
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--circuit-blue);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 0;
    background: rgba(10, 14, 26, 0.6);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
}

.scroll-indicator {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: float 2s ease-in-out infinite;
    z-index: 100;
    transition: opacity 0.3s ease;
}

.scroll-indicator span {
    display: block;
    color: var(--pcb-green);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: rgba(10, 14, 26, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.arrow-down {
    width: 2px;
    height: 30px;
    background: var(--pcb-green);
    margin: 0 auto;
    position: relative;
}

.arrow-down::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--pcb-green);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* IT/Code Section */
#it-section {
    background: transparent;
    overflow: hidden;
    position: relative;
    z-index: 10;
    margin-top: 100vh;
    width: 100vw;
}

#it-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--circuit-blue) 20%,
        var(--pcb-green) 50%,
        var(--circuit-blue) 80%,
        transparent 100%);
    box-shadow: 0 0 20px var(--pcb-green), 0 0 40px var(--circuit-blue);
    z-index: 100;
}

#it-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--circuit-blue) 20%,
        var(--pcb-green) 50%,
        var(--circuit-blue) 80%,
        transparent 100%);
    box-shadow: 0 0 20px var(--pcb-green), 0 0 40px var(--circuit-blue);
    z-index: 100;
}

#code-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* About Section */
#about {
    background: #0a0e1a;
    padding: 4rem 0;
    position: relative;
    z-index: 15;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--pcb-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--circuit-blue), transparent);
}

.about-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: stretch;
}

.about-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.headshot-container {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--pcb-green);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    position: relative;
}

.headshot-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.quick-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--circuit-blue);
    transform: translateX(5px);
}

.info-icon {
    font-size: 1.2rem;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.skill-item {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.skill-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.skill-item:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--pcb-green);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.skill-icon {
    font-size: 2rem;
}

.skill-item span:last-child {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Logo Band Section */
.logo-band-section {
    background: #0a0e1a;
    padding: 3rem 0;
    position: relative;
    z-index: 15;
    overflow: hidden;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.logo-track {
    display: flex;
    gap: 4rem;
    animation: scroll-logos 40s linear infinite;
    width: fit-content;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: invert(1) sepia(1) saturate(3) hue-rotate(130deg) brightness(0.8);
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-item:hover {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(130deg) brightness(1.1);
    opacity: 1;
    transform: scale(1.1);
}

/* Projects Section */
#projects {
    background: #0a0e1a;
    padding: 4rem 0;
    padding-bottom: 6rem;
    position: relative;
    z-index: 15;
    scroll-margin-top: -100px;
}

.project-filter {
    margin: 1rem 0 1rem 0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 0.8rem;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-option:hover::before {
    left: 100%;
}

.filter-option:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.filter-option.active {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
    border-color: var(--pcb-green);
    color: var(--pcb-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.filter-icon {
    font-size: 1.3rem;
}

/* Projects Wrapper */
.projects-wrapper {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Desktop - Two scrollable rows */
@media (min-width: 769px) {
    .projects-row-container {
        position: relative;
    }

    .scroll-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 212, 255, 0.08);
        border: 1px solid rgba(0, 212, 255, 0.3);
        color: var(--circuit-blue);
        width: 45px;
        height: 45px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.5rem;
        font-weight: 700;
        z-index: 20;
        opacity: 1;
        line-height: 1;
    }

    .scroll-arrow-left {
        left: -60px;
    }

    .scroll-arrow-right {
        right: -60px;
    }

    .scroll-arrow span {
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .scroll-arrow:hover {
        background: rgba(0, 212, 255, 0.15);
        border-color: var(--circuit-blue);
        transform: translateY(-50%) translateY(-2px);
    }

    .scroll-arrow.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .projects-scroll-row {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 212, 255, 0.3) rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .projects-scroll-row::-webkit-scrollbar {
        height: 8px;
    }

    .projects-scroll-row::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 4px;
    }

    .projects-scroll-row::-webkit-scrollbar-thumb {
        background: rgba(0, 212, 255, 0.3);
        border-radius: 4px;
    }

    .projects-scroll-row::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 212, 255, 0.5);
    }

    .projects-scroll-row .project-card-link {
        min-width: 380px;
        max-width: 380px;
        flex-shrink: 0;
    }

    /* Row 1 animation - left to right */
    .projects-scroll-row.row-1 .project-card {
        animation: slideInLeft 0.8s ease-out forwards;
    }

    /* Row 2 animation - right to left */
    .projects-scroll-row.row-2 .project-card {
        animation: slideInRight 0.8s ease-out forwards;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-300px) scale(0.8);
        }
        to {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(300px) scale(0.8);
        }
        to {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }
}

/* Mobile - Single continuous scrollable row */
@media (max-width: 768px) {
    /* Make container full width for projects section */
    #projects .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    
    #projects {
    scroll-margin-top: 0px;
    }

    /* Hide arrows on mobile */
    .scroll-arrow {
        display: none;
    }

    .projects-row-container {
        display: contents;
    }

    .projects-wrapper {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 212, 255, 0.3) rgba(0, 0, 0, 0.1);
        padding-bottom: 1rem;
        /* Break out of container to enable full-width scrolling */
        width: 100vw;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .projects-wrapper::-webkit-scrollbar {
        height: 6px;
    }

    .projects-wrapper::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 4px;
    }

    .projects-wrapper::-webkit-scrollbar-thumb {
        background: rgba(0, 212, 255, 0.3);
        border-radius: 4px;
    }

    /* Both rows display inline as ONE continuous horizontal row */
    .projects-scroll-row {
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    /* Add gap between the two row containers */
    .projects-scroll-row.row-1 {
        margin-right: 1rem;
    }

    .projects-scroll-row .project-card-link {
        min-width: 300px;
        max-width: 300px;
        flex-shrink: 0;
    }

    .projects-scroll-row .project-card {
        animation: fadeInUp 0.6s ease-out forwards;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card-link.hidden {
    display: none;
}

.project-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 212, 255, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    border-radius: 12px 12px 0 0;
    pointer-events: none;
}

.project-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Visible class no longer needed - animations handle this */

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    border-color: var(--circuit-blue);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.project-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 255, 136, 0.2);
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    line-height: 1;
    z-index: 1;
}

.project-card h3 {
    font-size: 1.25rem;
    color: var(--circuit-blue);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.project-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    flex: 1;
    font-size: 0.9rem;
}

.project-link-text {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--pcb-green);
    color: var(--pcb-green);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.project-card-link:hover .project-link-text {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    transform: translateX(5px);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.project-tags span {
    background: rgba(0, 255, 136, 0.1);
    color: var(--pcb-green);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Footer */
footer {
    background: #0a0e1a;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    position: relative;
    z-index: 15;
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    border: 2px solid var(--pcb-green);
    color: var(--pcb-green);
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-button:hover::before {
    width: 300px;
    height: 300px;
}

.contact-button:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2));
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    transform: translateY(-3px);
}

.contact-button span {
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--circuit-blue);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--pcb-green);
    transform: translateY(-3px) scale(1.1);
}

.social-link .svg-icon {
    width: 1.5rem;
    height: 1.5rem;
    /* Convert black SVG to circuit-blue (#00d4ff) */
    filter: brightness(0) saturate(100%) invert(53%) sepia(98%) saturate(2584%) hue-rotate(174deg) brightness(101%) contrast(101%);
    transition: all 0.3s ease;
}

.social-link:hover .svg-icon {
    /* Convert black SVG to pcb-green (#00ff88) on hover */
    filter: brightness(0) saturate(100%) invert(81%) sepia(61%) saturate(3449%) hue-rotate(92deg) brightness(104%) contrast(101%);
}

.social-icon {
    font-size: 1.2rem;
}

footer p {
    color: var(--text-light);
    opacity: 0.7;
    margin: 0;
    font-size: 0.85rem;
    width: 100%;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .social-links {
        gap: 1rem;
    }

    .contact-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .project-filter {
        flex-wrap: wrap;
    }
    .hero-content h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        letter-spacing: 0.2em;
    }

    .scroll-indicator {
        bottom: 2rem;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-left {
        align-items: center;
    }

    .headshot-container {
        width: 200px;
        height: 200px;
    }

    .about-text p {
        font-size: 1rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .skill-item {
        padding: 1rem;
    }

    .project-number {
        font-size: 2.5rem;
    }

    .container {
        padding: 1rem;
    }
}

/* Smooth scroll delay transitions */
.skill-item:nth-child(1) { transition-delay: 0.1s; }
.skill-item:nth-child(2) { transition-delay: 0.2s; }
.skill-item:nth-child(3) { transition-delay: 0.3s; }
.skill-item:nth-child(4) { transition-delay: 0.4s; }

/* Stagger project card animations */
.project-card-link:nth-child(1) .project-card { animation-delay: 0s; }
.project-card-link:nth-child(2) .project-card { animation-delay: 0.1s; }
.project-card-link:nth-child(3) .project-card { animation-delay: 0.2s; }
.project-card-link:nth-child(4) .project-card { animation-delay: 0.3s; }
.project-card-link:nth-child(5) .project-card { animation-delay: 0.4s; }
.project-card-link:nth-child(6) .project-card { animation-delay: 0.5s; }
