* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  height: 100vh;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  background: url("construction-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10, 105, 233, 0.8),
    rgba(45, 182, 127, 0.8)
  );
}

/* TOP BAR */
.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  z-index: 2;
}

.logo {
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.hero-content h1 span {
  color: #9BD239;
}

.hero-content p {
  max-width: 600px;
  margin: 0 auto 35px;
  font-size: 1.1rem;
}

/* BUTTONS */
.button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.button-group button {
  background: linear-gradient(135deg, #0A69E9, #9BD239);
  border: none;
  padding: 15px 25px;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  min-width: 240px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.button-group button:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}