.productss {
    /* background-color: #f5f0fa; */
    padding: 80px 0;
  }
  .containerr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #4b0082;
  }
  .cards-carousell {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cardd {
    width: calc(33.33% - 20px);
    margin-bottom: 40px;
    background-color: #ffffff;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  .cardd:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
  }
  .cardd img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .cardd h3 {
    font-size: 24px;
    margin: 20px;
    color: #4b0082;
  }
  .cardd p {
    font-size: 16px;
    margin: 0 20px 20px;
    color: #666666;
  }
  .btnn {
    display: block;
    margin: 0 20px 20px;
    padding: 12px 24px;
    background-color: #4b0082;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }

  .btnn:hover {
    background-color:blueviolet;
  }


  /* For mobile devices */
@media screen and (max-width: 767px) {
  .cards-carousell {
    display: block;
  }
  .cardd {
    width: 100%;
    margin-bottom: 40px;
  }
}
/* For mobile devices */
@media screen and (max-width: 767px) {
  h2 {
    font-size: 36px;
    padding: 0 10px;
    margin-bottom: 30px;
  }
}
