/* Project Cards Overlay Style */
.pbmit-portfolio-style-1 .pbmit-featured-img-wrapper {
    position: relative;
    overflow: hidden;
}

.pbmit-portfolio-style-1 .pbmit-featured-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pbmit-portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pbmit-portfolio-overlay .pbmit-portfolio-title {
    margin: 0;
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
}

.pbmit-portfolio-overlay .pbmit-portfolio-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 35px;
    font-weight: 400;
    line-height: 45px;
}

.pbmit-portfolio-overlay .pbmit-portfolio-title a:hover {
    color: #cccccc;
}

.pbmit-portfolio-style-1:hover .pbmit-featured-wrapper img {
    transform: scale(1.1);
}

.pbmit-portfolio-style-1:hover .pbmit-portfolio-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pbmit-portfolio-style-1 .pbmit-featured-wrapper img {
        height: 300px;
    }

    .pbmit-portfolio-overlay .pbmit-portfolio-title {
        font-size: 20px;
    }
}