


.section-header h2 {
    text-align: center;
    font-size: 36px;
   
    padding-bottom: 10px;
}



.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

}

.portfolio-item {
    width: 30%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;

}



.portfolio-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.5s ease, opacity 0.5s ease;

}
.portfolio-wrap:hover{
    transform: scale(1.1);


}

.portfolio-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.portfolio-wrap figure {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    text-align: left;
}

.portfolio-wrap figure p {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.portfolio-wrap figure span {
    font-size: 14px;
}

@media (max-width: 992px) {
    .portfolio-item {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .portfolio-item {
        width: 100%;
    }
}


