/* ===== GLOBAL ===== */

body {
  background: linear-gradient(180deg, #0a1124 0%, #0e1a38 100%);
  color: #e6ecff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding-top: 80px;
}

/* Navbar */
.nav-dark {
  background: rgba(10, 17, 36, 0.85) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ===== HERO SECTION CLEAN VERSION ===== */

.hero {
  padding: 140px 0 100px 0;
  background: linear-gradient(
      135deg,
      #0a1124 0%,
      #0e1a38 50%,
      #12224a 100%
  );
}

.hero-text h1 {
  color: #ffffff;
}

.hero-text p {
  color: #cbd6ff;
}

.hero-img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-dark {
  background: rgba(0,0,0,0.15);
}

.text-muted-light {
  color: #a9b8e6;
}

/* Glass Cards */
.glass-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 2rem;
  transition: 0.3s ease;
  backdrop-filter: blur(8px);
}

.glass-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
}

.small-card {
  padding: 1.5rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  background: #08101f;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #aab6e8;
}
/* Dark form styling */

.form-control-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e6ecff;
}

.form-control-dark:focus {
  background: rgba(255,255,255,0.10);
  border-color: #3d7eff;
  color: #ffffff;
  box-shadow: none;
}

