.category-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
  }
  
  .category-box {
    flex: 1 1 calc(20% - 10px); /* 5 per row on large screens */
    min-width: 120px;
    text-align: center;
    padding: 20px;
    background-color:darkmagenta; /* uniform base color */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s, background-color 0.2s;
    cursor: pointer;
  }
  
  /* Hover effect */
  .category-box:hover {
    background-color: #2980b9;
    transform: scale(1.05);
  }
  
  /* Active (when clicked) */
  .category-box:active,
  .category-box:focus {
    background-color: #1abc9c;
    outline: none;
  }
  
  /* Example scroll sections */
  [id^="section"] {
    height: 400px;
    margin: 40px 0;
    padding: 20px;
    background: #ecf0f1;
    border: 1px solid #ccc;
  }
  
  