:root {
  --plainclr:#fff;
  --gradientone: linear-gradient(135deg, #f8f8f8, #eaeaea);
  --darkclr:#000;
  --lightbg:#f8f9fa;
  --main-border:rgb(101, 102, 105);
}

.infinite-carousel {
  background: var(--gradientone);
  padding: 20px 0;
}

.brand-card {
  width: 200px; /* Increased width */
  height: 200px; /* Fixed equal height */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: var(--plainclr);
  position: relative;
  transition: all 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.brand-img-container {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 10px;
}

.brand-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* Keeps image proportion while covering */
}

.brand-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  background: var(--darkclr);
  text-align: center;
}

.brand-name {
  color: var(--plainclr);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
}

.main-div {
  padding: 30px;
}/*# sourceMappingURL=ourBrandsDesign4.css.map */