/* ---------- SERVICES (repeater grid) ---------- */
.services-content .its-services {
  background-image: url("https://ignitevisibility.com/wp-content/uploads/2023/08/bg-sth-new.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
}
.services-content .its-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.services-content .its-services .service-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.services-content .its-services .service-item img {
  max-width: 50px;
  margin-bottom: 10px;
}
.services-content .its-services .service-item h3 {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 700;
}
.services-content .its-services .service-item p {
  font-size: 0.95em;
  color: #2f3a5c;
}
