.gallery-section{
  padding:80px 0;
  background:#f9f9f9;
}

.gallery-title{
  text-align:center;
  font-size:34px;
  font-weight:700;
  margin-bottom:40px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.gallery-item{
  overflow:hidden;
  border-radius:10px;
}

.gallery-img{
  width:100%;
  height:250px;
  object-fit:cover;
  transition:0.4s;
}

.gallery-item:hover .gallery-img{
  transform:scale(1.08);
}

/* Tablet */
@media(max-width:992px){
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:576px){
  .gallery-grid{
    grid-template-columns:1fr;
  }
}