.vmv-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: auto;
}

.vmv-card {
  position: relative;
  border-radius: 20px;
  padding: 40px 30px;
  width: 280px;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: transform 0.5s, box-shadow 0.5s;
  overflow: hidden;
}

.vmv-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgba(255,255,255,0.1);
  top: -10%;
  left: -10%;
  transform: rotate(25deg);
  pointer-events: none;
}

.vmv-card:hover {
  transform: translateY(-15px) rotate(-2deg);
  box-shadow: 0 30px 50px rgba(0,0,0,0.3);
}

.vmv-card h3 { font-size: 1.8rem; margin-bottom: 15px; font-weight: 700; letter-spacing: 1px; }
.vmv-card p { font-size: 1rem; line-height: 1.5; }

.vmv-icon { font-size: 50px; margin-bottom: 20px; display: inline-block; animation: float 3s ease-in-out infinite; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 900px) { .vmv-container { gap: 20px; } }
@media (max-width: 600px) { .vmv-card { width: 90%; padding: 30px 20px; } }
