/* Custom Category Section Styling */
.custom-category-section {
  background: linear-gradient(135deg, #eef5fb 0%, #ffffff 100%);
  padding: 80px 20px;
}

.custom-category-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.custom-category-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.custom-category-title span {
  /* color: #0072ed; Blue color */
  background: linear-gradient(95.76deg, #03D382 -0.95%, #0171E7 116.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-category-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #000;
}

.custom-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.custom-category-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  transition: transform 10s, box-shadow 10s;
  opacity: 0;
  transform: translateY(50px);
}

.custom-category-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.custom-category-item p {
  margin: 0;
  font-weight: 500;
  color: #333;
}

.custom-category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-category-title {
    font-size: 1.5rem; /* smaller heading for tablet */
  }
  .custom-category-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .custom-category-title {
    font-size: 1rem; /* even smaller heading for mobile */
    line-height: 1.2;
  }
  .custom-category-subtitle {
    font-size: 0.8rem;
  }

  .custom-category-section {
    background: linear-gradient(135deg, #eef5fb 0%, #ffffff 100%);
    padding: 0px 20px;
  }

}
