/* Features Section Styles */

#smarthopper .card {
  height: 100%;
  border: 1px solid var(--color-text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--color-light);
  border-radius: 0;
  overflow: hidden;
}

#smarthopper .card:hover {
  transform: translateY(-5px) scale(1.05);
}

#smarthopper .card-body {
  padding: 2rem 1.5rem;
}

#smarthopper .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

#smarthopper .card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

#smarthopper .card-text {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

