/* Services Section Styles */
.services-section {
  background: #fff;
  padding: 48px 0;
  text-align: center;
  animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.services-header {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
}
.services-title {
  font-size: 2.2rem;
  color: #e65100;
  margin-bottom: 32px;
}
.services-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.service-card {
  background: #f7f7f7;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 32px 24px;
  width: 280px;
  text-align: left;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(33,150,243,0.18);
  transform: scale(1.04);
}
.services-overlay {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.services-overlay img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}