/* assets/css/industries-served.css */
.industries-served-section .ul-section-heading {
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.industries-served-section .ul-section-heading .left {
  max-width: 850px;
}

.industries-served-section .ul-service-details-descr {
  margin-top: 12px;
  max-width: 760px;
  color: #666;
  line-height: 1.7;
}

.industry-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px 15px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
}

.industry-card .ul-offering-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3C72FC 0%, #C700B1 100%);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-card .ul-offering-title {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
  color: #111;
  font-weight: 600;
}

.industry-card .ul-offering-title a {
  color: inherit;
  text-decoration: none;
}

.industry-card .ul-offering-title a:hover {
  color: #3C72FC;
}

.industries-bottom-text {
  text-align: center;
  margin-top: 35px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}