.project-item {
    display: block;
    text-decoration: none;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.project-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.project-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    transition: bottom 0.3s ease;
}

.project-info h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.project-category {
    color: #0b7d8c;
    font-size: 0.9rem;
}

.project-item:hover .project-info {
    bottom: 0;
}

.project-item:hover img {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .project-wrap img {
        height: 250px;
    }
}
