.card-section {
  overflow: hidden;
}

/* Wrapper untuk area gambar + overlay + tombol */
.image-wrapper {
  position: relative;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

/* Overlay putih transparan */
.overlay-white {
  position: absolute;
  border-radius: 4px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 95, 169, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  backdrop-filter: blur(1px);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

/* Tombol di tengah gambar */
.button-detail {
  transition: all 0.5s ease;
  background-color: #0d6efd;
  padding: 10px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

/* Hover hanya di dalam area gambar */
.image-wrapper:hover .overlay-white,
.image-wrapper:hover .button-detail {
  opacity: 1;
}

.social-icons a {
  color: #555;
  margin: 0 8px;
  font-size: 1.25rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #0d6efd;
}
