/* category section start here */
.categories-container {
  background: linear-gradient(145deg, #f2fdf4, #e4f2ec);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.category-card {
  background-color: #ecf0f3;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  padding: 2rem 1.5rem;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.category-card img {
  height: 80px;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.1) rotate(3deg);
}

.category-card h5 {
  margin-top: 1rem;
  font-weight: 600;
  color: #333;
}
/* category section end here */
