.logo-marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
}

.marquee-item img {
  display: block;
  height: 60px;
  width: auto;
}

.process-wrapper {
  position: relative;
  padding: 80px 0;
  text-align: center;
}

.process-line {
  position: absolute;
  top: 45px;
  width: 100%;
  height: 2px;
  background: #e5c07b;
  z-index: 1;
}

.process-steps {
  display: flex;
  justify-content: space-between;
}

.step-item {
  flex: 1;
  text-align: center;
}

.step-icon {
  width: 90px;
  height: 90px;
  background: #0b3d2e;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4b400;
  position: relative;
  z-index: 2;
}

.step-item h4 {
  font-size: 18px;
  font-weight: 600;
}

.step-item p {
  font-size: 14px;
  color: #777;
}

.text-marquee {
  overflow: hidden;
  width: 100%;
}

.iso-style {
  background: #0b3d2e;
}

.text-marquee .marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-text {
  white-space: nowrap;
  font-weight: 600;
}

/* Line Animation */
@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}

/* 🔥 Responsive */
@media (max-width: 767px) {

  .process-steps {
    flex-direction: column;
    gap: 40px;
  }

  .process-line {
    display: none; /* mobile par line hata di */
  }

  .step-item {
    width: 100%;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}