
  .load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  /* Add the following CSS rule to center the "Load More" button horizontally */
  #loadMoreBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  /* Add this CSS rule to remove the default link color */
  .products a {
    color: inherit;
    text-decoration: none;
  }

  /* Rest of your existing CSS code */
  .products {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    background-color: #fafafa;
  }

  .cad {
    width: calc(16.6667% - 10px);
    background-color: #fff;
    margin-bottom: 20px;
    margin-right: 5px;
    margin-left: 5px;
    padding: 0;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Added box shadow */
  }

  .cad img {
    width: 100%;
    height: 150px; /* Update the image height as per your requirement */
    display: block;
  }

  .text-block {
    position: absolute;
    top: 65%;
    left: 80%;
    transform: translate(-50%, -50%);
    background-color: green;
    color: white;
    padding: 2px;
    width: auto;
    height: auto;
    text-align: center;
  }

  .cadcontent {
    padding: 0;
    text-align: center;
    margin-bottom: 0;
  }

  .cadcontent h6,
  .cadcontent p {
    margin: 0;
  }

  .text-block p {
    margin: 0;
    width: 100%;
    height: auto;
    color: white;
  }

  /* Add the following CSS rule to reduce the font size of h6 */
  .cadcontent h6 {
    font-size: 15px;
  } 

  @media (max-width: 767px) {
    .products {
      justify-content: center;
    }

    .cad {
      width: calc(50% - 26px);
      margin-right: 13px;
      margin-left: 13px;
    }
  }

  @media (min-width: 768px) {
    .cad.desktop-hidden {
      display: none;
    }
  }

  @media (max-width: 767px) {
    .cad.mobile-hidden {
      display: none;
    }
  }
