.cases-container {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  min-height: 100vh;
  color: white;
}

.cases-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #66c0f4;
}

.cases-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.case-card {
  background-color: #1b2838;
  padding: 1rem;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #66c0f4;
}

.case-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.case-card button {
  background-color: #66c0f4;
  color: #fff;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.animation-box {
  margin-top: 3rem;
}

.case-animation {
  animation: drop-in 0.5s ease-out;
}

@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden {
  display: none;
}
