.custom-cards .card {
  background: #408a71;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.4s ease;
  }

.custom-cards .card a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.custom-cards .card-img {
  height: 180px;
  overflow: hidden;
}

.custom-cards .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.custom-cards .card:hover {
  transform: translateY(-8px);
}

.custom-cards .card:hover img {
  transform: scale(1.08);
}

.custom-cards .card-title {
  padding: 12px;
  text-align: center;
  font-weight: 600;
}
.custom-cards {
    padding-bottom: 20px;
}