/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at top left, #071426, #020617);
  color: #fff;
  overflow-x: hidden;
}

/* =========================
   CONTAINER
========================= */
/* .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
} */

/* .container {
    width: 95%;
    max-width: 1400px;
    margin: auto;
}  */

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

/* =========================
   BUTTONS
========================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 22px;
  border-radius: 10px;

  background: linear-gradient(135deg, #2563eb, #3b82f6);

  color: #fff;
  text-decoration: none;
  font-weight: 500;

  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 22px;
  border-radius: 10px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  color: #fff;
  text-decoration: none;

  transition: 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* =========================
   NAVBAR
========================= */
/* .navbar {
  padding: 20px 0;
  background: transparent;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  background: #1e3a8a;
  padding: 10px;
  border-radius: 50%;
  font-weight: bold;
}

.logo h3 {
  font-size: 14px;
}

.logo p {
  font-size: 12px;
  color: #4da6ff;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links .active {
  color: #60a5fa;
} */
