

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  background: #050d1a;   /* ✅ ADD THIS */
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;  /* ✅ THIS IS KEY */
  font-family: 'Roboto', sans-serif;
}

.main-content {
  flex: 1 0 auto;
}


/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* NAV */
.navbar {
  background: #000;
  color: #fff;
  padding: 15px 0;
}
/* NAVBAR UPGRADE */

.navbar {
  background: #0a1f33;
  padding: 15px 0;
  color: white;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 18px;
}

.nav-links a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.nav-links a:hover {
  color: #007bff;
}
``

/* HERO */
.hero {
  height: 300px;
  background: linear-gradient(135deg, #0a1f33, #050d1a);
  color: white;
  display: flex;
  align-items: center;
}

/* HERO IMPROVED */
.hero {
  height: 300px;

  background-image: 
    linear-gradient(rgba(5, 15, 30, 0.8), rgba(5, 15, 30, 0.8)),
    url('../images/hero-tech.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  width: 100%;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  color: #cfd8e3;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 15px;
}

.btn-primary {
  background: #007bff;
  color: white;
  padding: 10px 18px;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 5px;
}

.btn-outline {
  border: 1px solid white;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 5px;
}

/* ===== SERVICES ===== */

.services {
  padding: 50px 0;
  background: #f5f7fa;
  text-align: center;
}

section {
  padding: 70px 0;
}
.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  color: #0a1f33;
}


.service-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-box {
  background: white;
  padding: 25px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-box h3 {
  margin-bottom: 10px;
}

.service-box p {
  color: #555;
  font-size: 14px;
}

/* ===== PRICING ===== */

.pricing {
  padding: 60px 0;
  text-align: center;
}

.pricing-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.pricing-box h3 {
  margin-bottom: 10px;
}

.pricing-box h2 {
  color: #007bff;
  margin: 10px 0;
}

.pricing-box span {
  font-size: 14px;
  color: #666;
}

.pricing-box ul {
  list-style: none;
  margin: 15px 0;
  padding: 0;
}

.pricing-box li {
  margin: 8px 0;
}


.pricing-box .btn-primary {
  display: inline-block;
  margin-top: 15px;
}


/* Highlight Premium */
.featured {
  border: 2px solid #007bff;
}

/* ===== CONTACT ===== */

.contact {
  padding: 60px 0;
  background: #f5f7fa;  /* ADD THIS */
  text-align: center;
}

.contact p {
  margin-bottom: 25px;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  border: none;
  cursor: pointer;
}



.veteran-badge {
  margin-top: 10px;
  height: 60px;   /* controls size */
  width: auto;    /* keeps proportions */
  display: block;
}
/* ===== MOBILE FIXES ===== */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {

  /* NAV */
.nav-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.navbar {
  position: relative;
}
   .nav-links {
    display: none;
    flex-direction: column;
    background: #0a1f33;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
  }
   .menu-toggle {
    display: block;
  }

  .nav-links a {
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }
  

  /* HERO */
  .hero {
    height: auto;
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* SERVICES */
  .service-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    width: 90%;
  }

  /* PRICING */
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-box {
    width: 90%;
  }

  /* CONTACT */
  .contact-form {
    width: 90%;
  }

}

/* ===== ABOUT ===== */

.about {
  padding: 60px 0;
  text-align: center;
}

.about-content {
  max-width: 700px;
  margin: auto;
}

.about-content p {
  margin-bottom: 15px;
  color: #555;
  font-size: 15px;
}

/* ===== TESTIMONIALS ===== */

.testimonials {
  padding: 60px 0;
  text-align: center;
  background: #f5f7fa;
}

.testimonial-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 280px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-box p {
  font-style: italic;
  margin-bottom: 10px;
  color: #555;
}

.testimonial-box h4 {
  color: #007bff;
  font-size: 14px;
}

p {
  line-height: 1.6;
}


.service-box:hover,
.pricing-box:hover,
.testimonial-box:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-outline:hover {
  background: white;
  color: #0a1f33;
}

.services {
  background: #f5f7fa;
}

.pricing {
  background: #ffffff;
}

.about {
  background: #f5f7fa;
}

section {
  margin: 0;
}

/* ===== FOOTER ===== */

.footer_section {
  background: #050d1a;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  }

.footer_section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

  .veteran-badge {
    height: 50px;
  }
  
  /* ===== ADD-ONS ===== */

.addons {
  padding: 60px 0;
  background: #ffffff;
  text-align: center;
}

.addon-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.addon-box {
  background: #f5f7fa;
  padding: 25px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.addon-box h3 {
  margin-bottom: 10px;
}

.addon-box p {
  font-size: 14px;
  color: #555;
}

/* ===== SOCIAL LINKS ===== */

.social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  color: #ffffff;
  font-size: 22px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #007bff;
  transform: translateY(-3px);
}
``