/* Our Progress Page Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

/* Process Cards Animation */
.process-card {
  position: relative;
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #ff8c00, #228b22);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.process-card:hover::after {
  transform: scaleX(1);
}

/* Farm Process Cards */
.farm-process-card {
  transition: all 0.3s ease;
}

.farm-process-card:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.farm-process-card i {
  font-size: 2.5rem;
  color: #228b22;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .progress-hero h1 {
    font-size: 2rem;
  }

  .progress-hero p {
    font-size: 1rem;
  }

  .process-grid,
  .farm-process-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .farm-process-card {
    padding: 20px;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
