:root {
  --green-grad: linear-gradient(135deg, #a8e063, #56ab2f);
  --orange-grad: linear-gradient(135deg, #ff9966, #ff5e62);
  --blue-grad: linear-gradient(135deg, #2193b0, #6dd5ed);
  --pink-grad: linear-gradient(135deg, #ee99aa, #e81cff);
  --purple-grad: linear-gradient(135deg, #8e44ad, #c39bd3);
  --cyan-grad: linear-gradient(135deg, #37e2f1, #32a1ce);
}

.process-section {
  padding: 80px 20px;
  background: #fff;
  overflow: hidden;
}

.process-header {
  text-align: center;
  margin-bottom: 100px;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f36;
}

.gradient-text {
  background: linear-gradient(90deg, #37e2f1, #94e7f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-wrapper {
  position: relative;
  max-width: 1200px;
  height: 500px;
  margin: 0 auto;
}

/* SVG Line Styling */
.process-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#path-animated {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawLine 5s linear infinite;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* Common Step Styling */
.process-step {
  position: absolute;
  width: 250px;
  text-align: center;
  z-index: 10;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
}

.circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.process-step p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.4;
}

/* Individual Positions to follow the S-Curve */
.step1 { top: 30px; left: 50px; }
.step2 { top: 30px; left: 450px; }
.step3 { top: 30px; left: 850px; }
.step4 { bottom: 30px; left: 850px; }
.step5 { bottom: 30px; left: 450px; }
.step6 { bottom: 30px; left: 50px; }

/* Circle Colors */
.c-green  { background: var(--green-grad); }
.c-orange { background: var(--orange-grad); }
.c-blue   { background: var(--blue-grad); }
.c-pink   { background: var(--pink-grad); }
.c-purple { background: var(--purple-grad); }
.c-cyan   { background: var(--cyan-grad); }

/* Mobile View */
@media (max-width: 1024px) {
    .process-wrapper { height: auto; display: flex; flex-direction: column; gap: 50px; align-items: center; }
    .process-step { position: relative; left: auto !important; top: auto !important; bottom: auto !important; }
    .process-svg { display: none; }
}

/* ===============================
faq section
=============================== */

