.company-hero-section {
  background: url("../images/industrial-scale.jpg") no-repeat center
    center/cover;
  position: relative;
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.company-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 1;
}

.company-hero-section .container {
  position: relative;
  z-index: 2;
}

.company-hero-section h1,
.company-hero-section p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-family: Roboto;
  /* Subtle shadow for readability */
}

.video-background {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; /* Behind everything */
}

.video-iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover; /* Ensures the video covers the container */
  pointer-events: none; /* Prevents interaction with the video */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Dark semi-transparent overlay */
  z-index: -1; /* Behind the content, above the video */
}

.content {
  position: relative;
  z-index: 1; /* Above the overlay and video */
  padding: 2rem;
}

.areas-section {
  background: url("../images/conductor-montacargas.jpg") no-repeat center
    center/cover;
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.areas-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 1;
}

.areas-section .container {
  position: relative;
  z-index: 2;
}

section.technical-service {
  background: url("../images/transpaleta.jpg") no-repeat center center/cover;
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

section.technical-service::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Adjust opacity as needed */
  z-index: 1;
}

section.technical-service .hero-text {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-family: Roboto;
}
