.single-team-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.single-team-item:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 10px 20px rgba(0,0,0,0.2); */
}

/* Modal Style */
.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.img-modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  animation: zoom 0.3s ease-in-out;
}

@keyframes zoom {
  from {transform: scale(0.8);}
  to {transform: scale(1);}
}

.img-modal .close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
