html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer {
  margin-top: auto;
}

:root {
  --navy: #0a1f44;
  --navy-900: #071634;
  --gold: #ffd700;
  --white: #ffffff;
}
.brand img { height: 40px; display: block; }
  .menu { display: flex; gap: 16px; list-style: none; margin: 0; padding: 0; }
  .menu a { color: #fff; text-decoration: none; font-weight: 600; }
  .menu a:hover { text-decoration: underline; }
/* Base */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #0f172a;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-900) 100%);
  box-shadow: 0 6px 20px rgba(10, 31, 68, 0.15);
}

/* Nav container */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* Brand */
.brand {
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}

/* Nav links */
.links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.pill {
  position: relative;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.pill::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}

.pill:hover::after,
.pill.is-active::after {
  transform: scaleX(1);
}

.pill.is-active {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Burger menu */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 7px 0;
  transition: 0.2s;
}

/* Responsive */
@media (max-width: 900px) {
  .burger {
    display: block;
  }

  .links {
    position: absolute;
    right: 20px;
    top: 64px;
    width: 220px;
    flex-direction: column;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px;
    display: none;
  }

  .links.open {
    display: flex;
  }
}
/* ===== Contact Section (only) ===== */
.contact {
  padding: 48px 0;
}

.section-head {
  margin-bottom: 20px;
  text-align: center;
}

.section-head h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.section-head .muted {
  color: #64748b;
}

.contact-info {
  text-align: center;
  margin-bottom: 26px;
}

.contact-info p { margin: 0.4rem 0; }

.contact-info a {
  color: #0f3fde;
  text-decoration: none;
}
.contact-info a:hover { text-decoration: underline; }

/* ===== Form: vertical stack ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;                /* force vertical layout */
  flex-direction: column;
  gap: 14px;                    /* space between fields */
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font: inherit;
  color: #0f172a;
  background: #fff;
  box-sizing: border-box;       /* prevents overflow */
}

.contact-form textarea {
  min-height: 120px;            /* multi-line area */
  resize: vertical;
}

.contact-form .btn {
  align-self: flex-start;        /* button aligns left; use stretch for full width */
  background: #0a1f44;
  color: #fff;
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(10, 31, 68, 0.15);
  transition: transform 0.15s ease, background 0.15s ease;
}
.contact-form .btn:hover {
  transform: translateY(-1px);
  background: #071634;
}

/* ===== Footer (optional, if on this page) ===== */
.footer{
  background:var(--navy);
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center; padding:24px 20px; color:var(--gold);
}
.footer .container{max-width:900px;}
.footer p{margin: 0;}



