/* Service section enhancements — clean, modern, subtle motion */

.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.08);
}

.service-card .service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(108, 117, 125, 0.12);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-tagline {
  min-height: 2.5rem;
  color: #6c757d;
  font-size: 1.15rem;
}

.hero-tagline .tagline-item {
  display: none;
  animation: taglineFade 0.5s ease;
}

.hero-tagline .tagline-item.active {
  display: block;
}

@keyframes taglineFade {
  from { opacity: 0; transform: translateY(0.5rem); }
  to   { opacity: 1; transform: translateY(0); }
}

.examples-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #dee2e6;
}

.example-card {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1.5rem;
  height: 100%;
}

.example-card .example-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6c757d;
  background: #f8f9fa;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
}

.example-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.example-card p {
  color: #495057;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.example-carousel .carousel-indicators {
  position: static;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.example-carousel .carousel-indicators [data-bs-target] {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #adb5bd;
}

.example-carousel .carousel-indicators .active {
  background-color: #495057;
}

.stats-row .stat-item {
  text-align: center;
  padding: 1rem;
}

.stats-row .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
}

.stats-row .stat-label {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

.tech-pills .badge {
  font-weight: 500;
  font-size: 0.8rem;
  padding: 0.45em 0.75em;
  margin: 0.15rem;
}

.service-row-gap {
  margin-bottom: 1.5rem;
}