/* Custom Brand Logo Styling */
/* Ensures all brand logos have the same height and are aligned uniformly */

.brand-box {
  padding: 40px 20px !important;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: transparent !important;
}

.brand-box img {
  /* Fixed height for all logos - width adjusts automatically */
  height: 50px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
  mix-blend-mode: multiply; /* Removes white backgrounds from logos */
}

.brand-box:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .brand-box {
    padding: 35px 15px !important;
    min-height: 100px;
  }

  .brand-box img {
    height: 45px !important;
    max-width: 140px !important;
  }
}

@media (max-width: 767px) {
  .brand-box {
    padding: 30px 10px !important;
    min-height: 80px;
  }

  .brand-box img {
    height: 40px !important;
    max-width: 120px !important;
  }
}
