/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 04 2025 | 12:29:44 */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
}

.clients-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.clients-section h2 {
  font-size: 2rem;
  color: #034a83;
  margin-bottom: 10px;
}

.clients-section p {
  color: #777;
  margin-bottom: 30px;
  font-size: 1rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
/*   border-top: 1px solid #ddd;
  border-left: 1px solid #ddd; */
}

/* each logo block */
.logo-cell {
  position: relative;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  height: 170px;
  margin: 10px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0
}

/* logo image */
.logo-cell img {
  max-height: 80px;
  max-width: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
  z-index: 1;
}

/* orange overlay text */
/* SLIDE IN FROM LEFT */
.logo-cell::after {
  content: attr(data-name);
  position: absolute;
  inset: 0;
  background-color: #f72e22; /* orange */
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 2;
  text-align: center;
  padding: 10px;
}

.logo-cell:hover::after {
  transform: translateX(0%);
}


/* optional: zoom effect */
.logo-cell:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-cell {
    height: 100px;
  }

  .l
}