/* Projects Section */
.projects {
    padding: 120px 0;
    background-color: #FFFFFF;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1280px;

    @media (max-width: 1024px) {
        padding: 100px 0;
    }

    @media (max-width: 768px) {
        padding: 60px 0;
    }
}

.projects-grid {
    display: flex;
    gap: 36px;
    width: calc(6 * 394px); /* 6 cards * (358x card width + 36px gap) */
    animation: slideLeft 30s infinite linear;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-3 * (394px + 24px))); /* Move by width of 3 cards */
  }
}

.project-card {
    background: #FFFFFF;
    border-radius: 16px;
    transition: transform 0.3s ease;
    max-width: 358px;
    min-width: 358px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.project-image {
    width: 100%;
    height: 476px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.48px;
    color: #000000;
}

.project-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    color: #828282;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: -0.24px;
    padding: 4px 8px;
    border: 1px solid #828282;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-description {
    color: rgba(0, 0, 0, 0.60);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.09px;
}