/* Our Services Section Styling */

.our-services-section {
  padding: 3rem 15px;
  background-color: #fff;
  overflow: hidden;
}

.services-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.services-content {
  padding-left: 30px;
}

.services-eyebrow {
  color: #3B3663;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 0px;
  padding-left: 2px;
}

.services-heading {
  font-size: 48px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 57px;
  margin-bottom: 2px;
}

.services-description {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 19px;
}

/* Service Stat Item Styles */
.services-stats {
  margin-bottom: 50px;
}

.service-stat-item {
  margin-bottom: 30px;
}

.stat-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.stat-title {
  font-size: 22px;
  font-weight: 500;
}

.stat-percentage {
  font-size: 16px;
  font-weight: 700;
}

.stat-bar-container {
  width: 100%;
  height: 6px;
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: visible; /* To allow glow effect */
  position: relative;
}

.stat-bar-fill {
  height: 100%;
  border-radius: 10px;
  position: relative;
  transition: width 1.5s ease-in-out;
}

/* Color Styles */
.service-stat-item.teal .stat-bar-fill {
  background: linear-gradient(90deg, #00f2fe 0%, #63e4d3 100%);
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4);
}
.service-stat-item.teal .stat-percentage {
  color: #00f2fe;
}

.service-stat-item.blue .stat-bar-fill {
  background: linear-gradient(90deg, #809ef4 0%, #809ef4 100%);
  box-shadow: 0 4px 15px rgba(106, 130, 251, 0.4);
}
.service-stat-item.blue .stat-percentage {
  color: #6a82fb;
}

.service-stat-item.pink .stat-bar-fill,
.service-stat-item.pink-red .stat-bar-fill {
  background: linear-gradient(90deg, #ff4873 0%, #ff4873 100%);
  box-shadow: 0 4px 15px rgba(255, 88, 88, 0.4);
}
.service-stat-item.pink .stat-percentage,
.service-stat-item.pink-red .stat-percentage {
  color: #ff5858;
}

/* CTA Styles */
.services-cta .field--name-field-cta-link a {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(90deg, #36d1dc 0%, #5b86e5 100%);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(91, 134, 229, 0.3);
}

.services-cta .field--name-field-cta-link a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(91, 134, 229, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
  .services-content {
    padding-left: 0;
    margin-top: 50px;
  }
  .services-heading {
    font-size: 36px;
  }
}
