.industries-section {
  background: #f9f9f9;
  padding: 80px 0;
  font-family: Arial, sans-serif;
}

.industries-section .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #222;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.industry-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

.industry-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.industry-card p {
  font-size: 15px;
  color: #555;
}

.industry-icon svg {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  fill: #C1B385; /* <— CHANGE COLOR HERE */
}

.border-edit{
  border-radius: 15px;
}
