body {
  margin:0;
  font-family:Arial;
  background:#020617;
  color:white;
}

.container {
  max-width:1200px;
  margin:auto;
}

.hero {
  height: 100vh;
  background-image: url("/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: flex-start; /* 🔥 LEFT ALIGN */
  padding-left: 80px; /* 🔥 spacing from left */
}

.overlay {
  display:none;
}

.hero-content {
  max-width: 600px;
  text-align: left;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  color: #334155;
  margin-bottom: 30px;
}

.btn {
  background: #facc15;
  color: black;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.services {
  padding:100px 20px;
  text-align:center;
}

.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.card {
  background:#0f172a;
  padding:20px;
}

.divider {
  padding:100px 20px;
  text-align:center;
}

.split {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:100px 40px;
  gap:40px;
}

.split.reverse {
  flex-direction:row-reverse;
}

.split img {
  width:100%;
}

.cta {
  text-align:center;
  padding:100px 20px;
}
