.carousels-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 2rem 0;
  max-width: 100%;
  margin: 0 ;
}

/* Carousel Wrapper Styles */
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  width: max-content;
}

.top-carousel .carousel-track {
  animation: scrollLeft 40s linear infinite;
}

.bottom-carousel .carousel-track {
  animation: scrollRight 40s linear infinite;
}

.carousel-slide {
  display: flex;
  gap: 20px;
  padding: 0 10px;
}

/* Unified Card Styles */
.card {
  background-color: #63c3d1;
  color: white;
  width: 360px;
  height: 150px;
  border-radius: 30px !important;
  padding: 20 20px ;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  flex-direction: row;
  overflow: hidden;
}

.card-icon {
padding: 0;
width: auto;
height: auto;
display: flex;
justify-content: center;
align-items: center;
flex-shrink: 0;
}


.card-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.card-text {
  flex: 1;
  overflow: hidden;
}

.title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;

  overflow: hidden;

}

.desc {
  font-size: 13px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Animations */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .card {
      width: 280px;
      height: auto;
      padding: 15px;
  }

  .card-icon {
      width: 45px;
      height: 45px;
      padding: 10px;
  }

  .title {
      font-size: 15px;
  }

  .desc {
      font-size: 12px;
  }
}