/* Industry Section */
.industry-section {
  padding: 40px 20px;
  background-color: white;
}

.industry-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #dc2626;
  text-align: center;
  margin-bottom: 20px;
}

.industry-grid {
  display: grid;
  gap: 0px;
  justify-content: center;
}

@media (min-width: 768px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);

  }
  .industry-card {
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #fee2e2;
  max-width: 800px;
  width: 350px;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
}

.industry-card {
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #fee2e2;
  max-width: 800px;
  margin: 0 auto;
  width: 500px;
}

.industry-card:hover {
  transform: scale(1.05);
}

.industry-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
}

.industry-content {
  padding: 16px;
}

.industry-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #b91c1c;
  margin-bottom: 8px;
}

.industry-points {
  list-style-type: disc;
  list-style-position: inside;
  font-size: 0.875rem;
  color: #374151;
}

.industry-points li {
  margin-bottom: 4px;
}