.hero-section-what-we-do {
  position: relative;
  min-height: 267px;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/what-we-do/steel-rod.jpg);
  background-position: center;
}
.hero-section-what-we-do::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Adjust the transparency as needed */
}
.hero-section-what-we-do h1 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}
.hero-section-what-we-do p {
  font-size: 1.125rem;
  color: #ff7800;
}

.metals {
  position: relative;
  min-height: 440px;
  background-size: cover;
  padding: 50px;
}
.metals h3 {
  color: #ff7800;
  font-size: 100px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.metal-highlight {
  display: flex;
  position: relative;
  gap: 15px;
  flex-direction: column;
}
.metal-highlight p,
.metal-highlight li {
  color: #fff;
  list-style-type: none;
}
.metal-highlight i {
  color: #ff7800;
  margin-right: 5px;
}
.metal-highlight h3 {
  font-size: 45px;
  font-weight: 600;
  font-family: "Arial", sans-serif;
}
.metals::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Adjust the transparency as needed */
}
.metal-1 {
  background-image: url(../img/what-we-do/metal-1.jpeg);
}
.metal-2 {
  background-image: url(../img/what-we-do/metal-2.jpeg);
}
.metal-3 {
  background-image: url(../img/what-we-do/metal-3.jpg);
}
.metal-4 {
  background-image: url(../img/what-we-do/metal-4.jpg);
}
.flat-line {
  background-color: #ff7800;
  padding: 50px 0px 30px 0px;
  text-align: center;
}
.flat-line h3 {
  color: #fff;
  font-family: "Poppins", Sans-serif;
  font-weight: 700;
  font-size: 40px;
}

@media (max-width: 426px) {
  .metal-highlight h3 {
    font-size: 35px;
  }
}
@media (min-width: 767px) {
  .hero-section-what-we-do {
    min-height: 445px;
  }

  .hero-section-what-we-do h1 {
    font-size: 3rem;
  }
}
@media (max-width: 1030px) {
  .hero-section-what-we-do {
    background-position: unset;
  }
}
