.clients-hero {
  background: #fff;
  padding: 3rem 1rem;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.clients .card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clients .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.clients .card img {
  object-fit: contain;
  height: 200px;
  padding: 1rem;
}

.clients .card .card-body {
  padding: 1.5rem;
}

.card .contact-info {
  font-size: 0.95rem;
}

.card-footer {
  background: none;
  border-top: none;
}

.card-footer button {
  padding: 0;
  background: none;
  border: none;
}

/* BUTTON STYLES */
.primary-btn {
  background: #0072ff;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: #005bd1;
  color: #fff;
  transform: translateY(-1px);
}

/* TESTIMONIALS */
.testimonial {
  padding: 3rem 0;
}

.testimonial .card {
  border: none;
  transition: all 0.3s ease;
}

.testimonial .card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.testimonial img {
  border-radius: 50%;
  height: 60px;
  width: 60px;
  object-fit: cover;
}

/* TESTIMONIAL FORM */
.testimonial-form {
  padding: 3rem 0;
}

.testimonial-form form {
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-form .form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
}

.testimonial-form textarea {
  min-height: 120px;
}
.test-btn{
background: linear-gradient(to right, #659599, #3A5661);  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1.fs-70 {
    font-size: 2.2rem;
  }

  .fs-24, .fs-30, .fs-40 {
    font-size: 1.2rem;
  }

  .clients .card {
    margin-bottom: 1.5rem;
  }
}