.shw-crd {
  position: relative;
  box-shadow:
    0 6px 15px rgba(0, 0, 0, 0.12),
    0 12px 30px rgba(0, 0, 0, 0.10);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s cubic-bezier(.2,.8,.2,1);
  transform: translateZ(0);
  overflow: hidden;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: cardReveal 0.8s ease-out forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

/* Bottom subtle green glow */
.shw-crd::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(to top, rgba(254, 232, 240, 0.25), transparent);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
  opacity: 0.9;
}

/* 3D hover lift */
.shw-crd:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.22),
    0 20px 60px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

/* Content stays above gradient */
.shw-crd > * {
  position: relative;
  z-index: 1;
}

/* 🔥 Scroll reveal keyframes */
@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.badge-highlight {
  display: inline-block;
  background-color: rgba(252, 215, 151); /* 50% transparent */
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  padding: 4px 18px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

.fit-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



