.image-zoom-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-zoom-container.active {
  display: flex;
  opacity: 1;
}

.image-zoom-container img {
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.image-zoom-container.active img {
  transform: scale(1);
}

.portfolio-image {
  transition: transform 0.3s ease;
}

.portfolio-image:hover {
  transform: scale(1.05);
}
