.marquee-wrapper {
  font-family: system-ui, -apple-system, sans-serif;
  background: #000000;
  padding: 24px 0;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

body svg {
  fill="#ffffff" !important
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.service-card {
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.5);
  /*border: 1px solid #e5e7eb;*/
  border-radius: 8px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  cursor: default;
}

.service-card:hover {
  /*box-shadow: 0 4px 12px rgba(0,0,0,0.08);*/
  transform: translateY(-2px);
}

.service-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.icon-colour { background: #397240; color: #ffffff; }
/*.icon-imp { background: #FFF0C5; color: #f4b400; }*/
.icon-dep { background: #397240; color: #ffffff; }
/*.icon-orange { background: #fff1f2; color: #e11d48; }
.icon-teal { background: #f0fdf4; color: #42944a; }
.icon-rose { background: #fff1f2; color: #e11d48; }*/

.service-name {
  font-family: helvetica;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.marquee-label {
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  /*font-family: helvetica;*/
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
/*digi-wrapper {
  display: flex;
  justify-content: center;
}
.little_digi {
  width: 100px;
  position: absolute;
}*/