    #category{
      cursor:pointer;
    }
    .category-card {
      background:rgb(127, 177, 193);
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      text-align: center;
      padding: 25px 12px;
      height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      margin-block: 10px;
  }

  .category-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  }

  .category-card figure {
      margin: 0 auto;
      width: 100px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
  }

  .category-card img {
      width: 100%;
      height: auto;
      object-fit: contain;
      background: none !important;
      mix-blend-mode: darken;
  }

  .category-card h2 {
      font-size: 16px;
      margin: 0;
      color: #ffff;
      font-weight: 500;
      padding-top: 8px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  .full-bg {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.full-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('/asset/image/image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(0.5);
}
.full-bg h1 {
    position: relative;
    z-index: 2;
    font-size: 40px;
    font-weight: bold;
}