/* Positioning για spline background και περιεχόμενο */
.relative-z10 {
  position: relative;
  z-index: 10;
}

/* Πισω πλαισιο spline */
.services-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: #0c0f1a;
}
.spline-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.spline-bg {
  width: 100%;
  height: 100%;
}

/* 12 Modern cards */
.service-card {
  background: linear-gradient(135deg , #eef6ff, #ffeef0);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.service-card img {
  width: 96px;
  height: 96px;
  margin-bottom: 1rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.service-card:hover img {
  transform: scale(1.1);
}
.service-card p {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ee6c4d;
  transition: color 0.3s ease;
}
.service-card:hover p {
  color: #0a9396;
}

/* Carousel animation */
@keyframes scroll-carousel {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-scroll-carousel {
  display: flex;
  width: max-content;
  animation: scroll-carousel 60s linear infinite;
}
