/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
  background: #050814;
}


/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  background: #000 url("newbackground_army.png") center center / cover no-repeat;
  color: #fff;
}

/* slightly dark overlay to make text readable */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom, rgba(0,0,50,0.7), rgba(0,0,0,0.9));
  z-index: 0;
}

/* NAVBAR */


.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  z-index: 10;

  /* new look */
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.logo {
  height: 75px;                        /* bump logo a bit if you like */
}

.nav-right a {
  margin-left: 24px;
  font-size: 1.2rem;
  text-decoration: none;
  color: #1f2933;                      /* dark grey instead of white */
  position: relative;
}

/* keep your blue underline hover */
.nav-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #00c6ff;
  transition: width 0.2s ease-out;
}

/* HERO CONTENT */

.hero-overlay {
  position: relative;
  z-index: 1;
  max-width: 960px;          /* slightly wider for better line flow */
  padding-left: 80px;       /* ⬅ THIS is the key change */
  padding-right: 40px;
  padding-top: 28vh;        /* slight vertical lowering */
}

.hero-overlay h1 {
  font-size: 3.8rem;
  margin-bottom: 22px;      /* more vertical breathing room */
  line-height: 1.15;       /* tighter headline structure */
}

.hero-overlay p {
  font-size: 1.15rem;
  max-width: 600px;
  line-height: 1.65;       /* easier reading */
  margin-bottom: 30px;
}


.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00c6ff, #0066ff);
  color: #fff;
}

.btn-secondary {
  border: 1px solid #0066ff;
  color: #0066ff;
  background: transparent;
}

/* SECTIONS */

.section {
  padding: 80px 20px;
  background: #f9fafb;
}

.section-alt {
  background: #e5e9f0;
}

.section > * {
  max-width: 900px;
  margin: 0 auto 16px auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.section p, .section ul {
  font-size: 1rem;
  line-height: 1.6;
}

.section ul {
  padding-left: 20px;
}

/* Responsive tweaks */

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-right {
    margin-top: 8px;
  }

  .nav-right a {
    margin-left: 0;
    margin-right: 16px;
  }

  .hero-overlay {
    padding-top: 30vh;
    padding-right: 20px;
  }

  .hero-overlay h1 {
    font-size: 2.1rem;
  }
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 20px 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.98rem;
  margin-bottom: 10px;
  color: #374151;
}

.card ul {
  padding-left: 18px;
  font-size: 0.95rem;
  color: #4b5563;
}

.card ul li + li {
  margin-top: 4px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: flex-start;
}

.contact-info h3,
.contact-cta h3 {
  margin-bottom: 8px;
}

.contact-info p,
.contact-cta p {
  margin-bottom: 8px;
}

.contact-info a,
.contact-cta a {
  color: #0066ff;
  text-decoration: none;
}

.contact-info a:hover,
.contact-cta a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

