.category-section {
  /* max-width: 1200px; */
  margin: 100px auto;
  /* padding: 0 24px; */
}

.category-section a {
    text-decoration: none;
}


.section-head {
  text-align: center;
  margin-bottom: 70px;
}

.section-head h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}


.category-card {
  /* background: var(--card); */
  background: linear-gradient(180deg, var(--mint-bg), #f7fff9);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.06),
    0 2px 6px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 270px;
}


.category-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.12),
    0 6px 12px rgba(15, 23, 42, 0.08);
}


.category-card img {
  width: 100%;
  /* height: 200px; */
  object-fit: cover;
}


.card-body {
  padding: 15px;
}

.card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #658C11;
  text-decoration: none;
}

.card-body span {
  font-size: 14px;
  color: #658C11;
  text-decoration: none;
}


@media (max-width: 768px) {
  .section-head h1 {
    font-size: 32px;
  }
}
