/* MAIN SECTION */
.clients-section {
  display: flex;
  height: 115vh; /* full screen */
}

/* LEFT SIDE */
.clients-left {
  width: 18%;
  background: #e10600;
  color: #fff;
  padding: 35px 25px;
  overflow: hidden;
}

.clients-left h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.clients-left ul {
  list-style: disc;
  padding-left: 20px;
}

.clients-left li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* RIGHT SIDE */
.clients-right {
  width: 82%;
  padding: 40px;
  background: #f5f5f5;
  overflow-y: auto;
}

/* GRID (4 per row) */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* LOGO CARDS */
.logo-grid img {
  width: 100%;
  height: 140px;              /* balanced size */
  object-fit: contain;
  background: #fff;
  padding: 0px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.logo-grid img:hover {
  transform: scale(1.05);
}