.gallery-section{

    padding:140px 0;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.gallery-item{

    position:relative;

    aspect-ratio:1/1;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}
.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.9);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.lightbox img{

    width:70%;

    max-height:85vh;

    object-fit:contain;

}

.close{

    position:absolute;

    top:30px;

    right:50px;

    color:white;

    font-size:50px;

    cursor:pointer;

}

#prevBtn,#nextBtn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    background:white;

    border:none;

    width:60px;

    height:60px;

    border-radius:50%;

    cursor:pointer;

    font-size:30px;

}

#prevBtn{

    left:50px;

}

#nextBtn{

    right:50px;

}