

/* Background pattern */
.client-page-section {
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  background-repeat: repeat;
  background-size: auto;
 
}

/* Section Headings */
.client-page-section h2,
.client-page-section h3 {
  color: #310101;
  font-weight: bold;
}

/* Client Cards */
.client-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.client-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: #ff9900;
}

.client-card img {
  max-width: 100%;
  height: 100px;
  object-fit: contain;
}

/* CTA Button */
.btn-orange {
  background-color: #ff9900;
  color: #fff;
  border-radius: 25px;
  font-weight: 500;
  border: none;
  transition: 0.3s ease;
}

.btn-orange:hover {
  background-color: #e68200;
}
