/* Theme */
:root {
  --topbar: #2d3b48;       /* Deep blue matching your logo banner */
  --bg0: #0f1724;
  --bg1: #152233;
  --text: #e9eef6;
  --muted: #bac4d3;
  --brand: #2b77ff;
  --card: #151e2c;
  --card-br: #253144;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 30% 10%, #163046 0%, #0f1b2a 50%, #0f1724 100%);
}

.container { width: min(1120px, 92%); margin: 0 auto; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--topbar);
  padding: 2px 0;  /* 20% reduced height */
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

/* Restore the original full logo size */
.logo-wrap {
  display: inline-block;
  width: 350px;
  height: auto;
}

.logo {
  width: 100%;
  height: auto;
}

/* Navigation links */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #e4ebf5;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.10);
}

.btn.small {
  border: 1px solid rgba(255,255,255,0.25);
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
}

/* Hero */
.hero {
  padding: 60px 0;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.1;
}

.hero p {
  max-width: 600px;
  color: var(--muted);
}

.cta { display: flex; gap: 14px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: .8rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
}

.btn.primary {
  background: linear-gradient(#2f7cff, #1f5ff6);
  border-color: #275de8;
}

/* Sections */
.section {
  padding: 48px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-br);
  padding: 18px;
  border-radius: 14px;
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  color: var(--muted);
}

/* Contact Form - Perfect Alignment */
.form {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form label {
  font-weight: 600;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  background: #0f1522;
  border: 1px solid #2b3647;
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
}

.form button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 24px 0;
  color: #ccd3df;
}

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .logo-wrap { width: 260px; }
}

@media (max-width: 700px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #1b2735;
    padding: 12px;
    position: absolute;
    right: 20px;
    top: 70px;
    border-radius: 10px;
  }
  .nav-links.active { display: flex; }
  .cards, .values { grid-template-columns: 1fr; }
  .logo-wrap { width: 220px; }
}