.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: auto;
  }
  
  .carousel {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.5s ease-in-out;
    gap: 2px;
    transform: translateX(-100%);
  }
  
  .carousel-item {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 40px);
    margin: 0 10px;
  }
  
  .carousel-item img {
    height: 520px;
    width: auto;
    object-fit: contain;
    /* border-radius: 10px; */
    max-width: 100%;
  }
  
  .carousel-prev,
  .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: black;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    transition: background-color 0.3s ease;
  }
  
  .carousel-prev {
    left: 1px;
  }
  
  .carousel-next {
    right: 15px;
  }
  
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
  }
  .carousel-dot:hover {
    background-color: #FF0095;
   }
  .carousel-dot.active {
    background-color: #333;
  }
  
  @media (max-width: 768px) {
    .carousel-container {
      width: 100%;
      padding: 0 10px;
    }
  
    .carousel-item img {
      height: auto;
      width: 100%;
    }
  
    .carousel-prev,
    .carousel-next {
      width: auto;
      height: auto;
      font-size: 20px;
    }
  }