.bradman-client-gallery {
  padding: 40px 20px;
  background-color: #ffffff;
}

.bradman-client-gallery-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.bradman-client-gallery-title {
  font-size: 2.2rem;
  color: #c41e3a;
  margin-bottom: 10px;
  font-weight: bold;
}

.bradman-client-gallery-subtitle {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 45px;
}

.bradman-client-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  align-items: center;
}

.bradman-client-gallery-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bradman-client-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.bradman-client-gallery-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.bradman-client-gallery-item:hover img {
  filter: grayscale(0%);
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .bradman-client-gallery-title {
    font-size: 1.7rem;
  }
  .bradman-client-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
}


/*gallery*/
.brandmangallery-auto-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center; /* ✅ centers gallery */
}

.brandmangallery-auto-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  max-width: 1200px;  /* ✅ control width */
  width: 100%;
}



/* Hover effect */
.brandmangallery-auto-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .brandmangallery-auto-grid {
    gap: 12px;
  }
}


