/* Showitem class: Display with rounded corners */
.showitem {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.showitem:hover {
  transform: scale(1.05);
}

/* Floating circle with arrow icon */
.showitem .circle {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background-color: #114a8a;
  color: #FFF;
  border-radius: 50%;
  border: 10px solid #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.showitem .icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  color: #bcbcbc;
}

.showitem .circle:hover .icon {
  transform: scale(1.2);
  color: #FFF;
  cursor: pointer;
}

/* Showimg class: Display with rounded corners and smooth zoom effect */
.showimg {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: white;
  transition: transform 0.5s ease-in-out;
}

.showimg img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}

.showimg:hover img {
  transform: scale(1.1);
}

/* Title overlay */
.showimg .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  font-size: 16px;
  text-align: left;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.showimg:hover .title {
  opacity: 1;
}
