.portfolio-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.portfolio-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.portfolio-image-wrapper {
    position: relative;
    height: 220px;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #13AE6F;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-card-body {
    padding: 1.5rem;
}

.portfolio-card-body h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #333;
}

.portfolio-card-body h5 a {
    text-decoration: none;
    color: inherit;
}

.portfolio-card-body h5 a:hover {
    color: #13AE6F;
}