.opportunity-section{
    padding:80px 0;
    background:#f8f9fa;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:#0b7a3b;
    font-size:40px;
    font-weight:700;
}

.section-title p{
    color:#666;
    margin-top:10px;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.gallery-item{
    background:#fff;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    padding:10px;
    text-align:center;
}

.gallery-item img{
    width:100%;
    aspect-ratio:3/4;      /* Uniform poster size */
    object-fit:contain;    /* Entire image visible */
    background:#fff;
    border-radius:10px;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.03);
}

.gallery-item:hover{
    transform:translateY(-8px);
}

.gallery-item:hover img{
    transform:scale(1.08);
}

@media(max-width:992px){
    .gallery{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .gallery{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:auto;
    }

    .section-title h2{
        font-size:30px;
    }
}