/* ==========================================
   process.css — Manufacturing Process Timeline
   Maheswar Reddy Beverages
   ========================================== */

.process { background: var(--navy-light); }

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--gold), transparent);
}

.process-step {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  position: relative;
}

.step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(10,25,47,0.8);
  border: 2px solid rgba(29,185,84,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.process-step:hover .step-icon {
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(29,185,84,0.2);
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.step-content p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}
