/* BASIC RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: radial-gradient(circle at top, #0b1220, #05070d);
  color: white;
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
}

/* BUTTON */
.btn {
  background: #1e90ff;
  color: white;
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}
body {
  background: red;
}
.hero {
  margin-top: 80px; /* navbar height */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 25px;
}

.hero-buttons button {
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

/* Blue primary button */
.hero-buttons .primary {
  background: #3b82f6;
  color: white;
}

/* Dark secondary button */
.hero-buttons .secondary {
  background: #1f2937;
  color: white;
}
.hero {
  padding-top: 140px;   /* 🔥 THIS IS THE KEY */
}
