 .hero-industrial {
  background:  rgb(15, 48, 84);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Button with custom hover */
.btn-modern {
  background-color: white;
  color: rgb(242, 164, 29);
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 30px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-modern:hover {
  background-color: rgb(242, 164, 29);
  color: white;
  box-shadow: 0 8px 20px rgba(242, 164, 29, 0.3);
}