/* Reset */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Landing Section */
.landing {
  min-height: 100vh;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;   /* 🔥 THIS IS THE FIX */
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Content */
.landing-content {
  max-width: 700px;
  padding: 20px;
}

/* Brand */
.brand-name {
  font-size: 3.0rem;      /* bigger */
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.brand-cyber {
  color: #8F8F8C;         /* silver / chrome */
}

.brand-veteran {
  color: #00308F;         /* CyberVeteran blue */
}

/* Logo */
.landing-logo {
  max-width: 580px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.landing h1 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
}

/* Lead text */
.landing .lead {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

/* Button */
.btn-primary {
  background-color: #00308F;
  border-color: #00308F;
  transition: all 0.3s ease;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: #FFC000;
  border-color: #FFC000;
  color: black;
}

/* Section spacing */
.section {
  padding: 90px 20px;
}

.section-light {
  background-color: #f4f6f8;
}

/* Titles */
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #00308F;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Service cards */
.service-card {
  padding: 32px 24px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e9ecef;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #00308F;
  box-shadow: 0 14px 30px rgba(0, 48, 143, 0.12);
}

.service-card h5 {
  color: #00308F;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card p {
  color: #555;
  margin-bottom: 0;
  line-height: 1.65;
  font-size: 1rem;
}

/* Why CyberVeteran items */
.value-item {
  height: 100%;
  padding: 28px 22px;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  border-top: 4px solid #00308F;
}
.value-item:hover {
  transform: translateY(-4px);
  border-color: #00308F;
  box-shadow: 0 12px 28px rgba(0, 48, 143, 0.10);
}

.value-item h5 {
  color: #00308F;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-item p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 1rem;
}

.navbar-brand {
  letter-spacing: 1px;
}

.nav-link {
  font-weight: 500;
}

.nav-link:hover {
  color: #FFC000 !important;
}