/* 
   IndiaMART Extractor Unified Stylesheet
   Follows Modular Feature Architecture (Node.js AI Rules)
*/

/* --- 1. Keyframes & Custom Animations --- */

/* Flowing color gradient for headlines */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.animate-gradientFlow {
  background-size: 200% 200%;
  animation: gradientFlow 5s ease infinite;
}

/* Drifting 3D ambient glows */
@keyframes floatSlow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(15px, -15px) scale(1.05);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes floatFast {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.animate-floatSlow {
  animation: floatSlow 8s ease-in-out infinite;
}

.animate-floatFast {
  animation: floatFast 10s ease-in-out infinite;
}

/* Sourcing circuit board dashed path line speed */
@keyframes dash {
  to {
    stroke-dashoffset: -100;
  }
}

.animate-dash {
  animation: dash 3s linear infinite;
}


/* --- 2. Color Helper Utilities (SaaS Brand Overrides) --- */

.text-pink-655 {
  color: #db2777;
}

.text-slate-350 {
  color: #94a3b8;
}

.text-slate-455 {
  color: #94a3b8;
}

.text-slate-550 {
  color: #64748b;
}

.text-slate-655 {
  color: #475569;
}