body {
  font-family: 'Inter', sans-serif;
 
}
.gradient-text {
  background: linear-gradient(90deg, #8643A6, #00E0F0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.chart-container {
  position: relative;
  margin: auto;
  height: 40vh;
  width: 100%;
  max-width: 600px;
  max-height: 400px;
}
@media (min-width: 768px) {
  .chart-container {
      height: 350px;
  }
}
.kpi-card {
background-color: #f8f9fa;
border: 1px solid #dee2e6;
padding: 2rem;
border-radius: 1rem;
transition: 0.3s ease;
}
.kpi-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 240, 181, 0.1);
}
.flow-step {
  border-color: #6200F0;
  transition: all 0.3s ease;
}
.flow-step:hover {
   border-color: #00F0B5;
   background-color: rgba(0, 240, 181, 0.05);
}
.flow-arrow {
  color: #6200F0;
}
.framewyse-button-gradient {
  background: linear-gradient(90deg, #8643A6, #00E0F0);
  color: white; /* optional: ensure good contrast */
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}