.gallery-container {
  text-align: center;
  overflow: hidden;
  width: 100%;
  padding-top: 140px;
}

.gallery-heading {
  font-size: 34px;
  font-weight: bold;
  color: rgb(224, 137, 22);
  padding-bottom: 20px;
}
.gallery-grid img {
  width: 100%;
}

.gallery-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
  align-items: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

