.project-liquid.active {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 240, 255, 0.2),
    inset 0 0 35px rgba(125, 249, 255, 0.1);
  border-color: rgba(125, 249, 255, 0.25);
  z-index: 2;
}

/* Enhanced glow effect for active slide */
.project-liquid.active::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    45deg,
    rgba(125, 249, 255, 0.15),
    transparent 30%,
    transparent 70%,
    rgba(125, 249, 255, 0.15)
  );
  border-radius: 20px;
  z-index: -1;
  filter: blur(4px);
  animation: activeGlow 4s infinite alternate;
}

@keyframes activeGlow {
  0% {
    opacity: 0.5;
    transform: rotate(0deg);
  }
  100% {
    opacity: 0.8;
    transform: rotate(180deg);
  }
}
