
.image-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  margin-top: 1rem;
}

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

.image-box .top-left {
  position: absolute;
  top: 10px;
  left: 10px;
}

.image-box .bottom-right {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.image-box .box2 {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  width: 100%;
}
