  .industries-section {
      display: flex;
      align-items: flex-start;
      justify-content: center; /* 👈 CENTER horizontally */
      gap: 40px;
      color: rgba(81, 37, 32, 1);
   
    }

    .industry-image {
      width: 300px;
      height: 350px;
      background-size: cover;
      background-position: center;
      border: 1px solid #eee;
     padding-top: 50px;
      transition: background-image 0.4s ease-in-out;
    }

    .industry-list {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 400px;
        list-style: none;
    }

.industry-item {
     width: 100%; /* responsive */
  padding: 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.3s, margin 0.3s ease;
  display: flex;
  align-items: center;
  margin: 0; /* default, tight spacing */
}

.industry-item:hover {
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #f5f0ec;
  border: 0px;
}


    .industry-item span {
      font-weight: bold;
      width: 30px;
      display: inline-block;
      margin-right: 15px;
    }

    .see-all-btn {
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #e74c1b;
      color: white;
      border: none;
      cursor: pointer;
    }

    /* Responsive */
@media screen and (max-width: 768px) {
.industry-item {
   font-size: 1rem;
}

}