@tailwind base;
@tailwind components;
@tailwind utilities;

.capability-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.capability-card:hover {
  transform: translateY(-15px) rotate(2deg);
  box-shadow: 0 25px 50px -12px rgb(139 92 246);
}

#gallery img {
  transition: all 0.4s ease;
}
#gallery img:hover {
  transform: scale(1.08) rotate(3deg);
  filter: brightness(1.2);
}