* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
  color: #000;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 30px 60px;
}

.nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* background STEEL text */
.bg-text {
  display: none;
}

/* HERO IMAGE */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) contrast(1.15);
  z-index: 0;
}

/* DARK OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* HERO TEXT */
.hero-content {
  position: absolute;
  top: 20%;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.hero-content h2 {
  color: #ffffff;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.7);
}

.hero-content p {
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}



.stats {
  display: flex;
  justify-content: space-around;
  padding: 40px;
  background: #f2f2f2;
}

.stats div {
  text-align: center;
}

.stats strong {
  font-size: 28px;
}

.stats span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}

