.fact-container {
  width: 92%;
  max-width: 900px;  
}

.trusted-section {
  padding: 100px 0;
  background: #f8faf9;
}

.trusted-header {
  text-align: center;
  margin-bottom: 70px;
}

.logo-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 900px;
}

.logo-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.logo-item {
  min-width: 200px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item img {
  max-height: 60px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.carousel-btn {
  background: #005f2e;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: #59ae34;
}
