body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #e5e7eb;
  min-height: 100vh;

  background-image:
    linear-gradient(
      rgba(2, 6, 23, 0.85),
      rgba(2, 6, 23, 0.85)
    ),
    url("../logo.png");

  background-size: contain;   /* 🔑 MAIN FIX */
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #020617;  /* filler color */
}
header {
  background: linear-gradient(90deg, #020617, #0f172a);
  text-align: center;
  padding: 25px;
}

nav {
  background: #020617;
  text-align: center;
  padding: 12px;
}

nav a {
  color: #38bdf8;
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  padding: 50px;
  text-align: center;
  flex: 1;
}

.hero .btn {
  margin-top: 20px; /* Moves the button down a bit */
}

.btn {
  background: #38bdf8;
  color: #020617;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn:hover {
  animation: rgb-glow 2s infinite linear;
  transform: scale(1.05);
}

@keyframes rgb-glow {
  0% {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8), 0 0 30px rgba(255, 0, 0, 0.4);
  }
  33% {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8), 0 0 30px rgba(0, 255, 0, 0.4);
  }
  66% {
    box-shadow: 0 0 15px rgba(0, 0, 255, 0.8), 0 0 30px rgba(0, 0, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8), 0 0 30px rgba(255, 0, 0, 0.4);
  }
}

footer {
  background: #020617;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  color: #94a3b8;

  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  border-top: 1px solid rgba(148,163,184,0.2);
  backdrop-filter: blur(6px);
  z-index: 1000;
}
.select-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #38bdf8;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}
.package-btns i {
  margin-right: 8px;
  font-size: 18px;
  vertical-align: middle;
}


