.image-container {
  position: relative;
  overflow: hidden;
}

.zoom-image {
  transition: transform 0.3s ease;
}

.zoom-image:hover {
  transform: scale(1.6); /* Adjust the zoom level as desired */
  cursor: pointer;
}

#zoom-modal {
  display: none;
  position: fixed ;
  top: 88%;
  left: 50%;
  width: 70%;
  height: auto;
  background-color: rgba(194, 229, 212, 0.3);
  z-index: 9999;
  text-align: center;
  animation: modal-open 0.3s ease forwards;
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
@keyframes modal-open {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.modal-image {
  max-width: 80%;
  max-height: 90%;
  margin-top: 10%;
  margin-left: 10%;
  margin-bottom: 10%;
  transition: 1s;
}
.modal-image:hover {
  transform: scale(1.3); /* Adjust the zoom level as desired */
  cursor: pointer;
  transition: 1s;
}

.close {
  color: green;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 30px;
  cursor: pointer;
}
