/* Global */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  background-color: #111 !important;
}

.logo-img {
  height: 35px;
  width: auto;
  object-fit: contain;
}

.nav-link.active {
  color: #0d6efd !important;
  font-weight: 600;
}

/* Hero */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("hero-bg.jpg");
  background-size: cover;
  background-position: center;
  height: 50vh;
  display: flex;
  align-items: center;
}

/* Common card style */
.card {
  background-color: #222;
  border: 1px solid #444;
  color: #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* Common hover */
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* Service cards extra */
.service-card {
  border-radius: 16px;
}

/* Soldier & services background section */
.soldier-section {
  background-color: #0a0a0a;
}

/* Soldier cards */
.soldier-card {
  background: linear-gradient(145deg, #333, #111);
}

/* Contact card */
.contact-card {
  background: linear-gradient(145deg, #222, #111);
  border: 1px solid #444;
}

/* Buttons */
.btn-primary {
  background-color: #fff;
  color: #000;
  border: none;
}

.btn-primary:hover {
  background-color: #eee;
  color: #000;
}

/* Services heading small tweak */
#services h2 {
  letter-spacing: 1px;
}

/* Search highlight */
.service-highlight {
  border: 2px solid #facc15;
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.6);
  transform: translateY(-2px);
  transition: all 0.2s ease;
}

/* Button click feedback */
.btn-primary,
.btn-outline-light {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.1s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.btn-primary:active,
.btn-outline-light:active {
  transform: scale(0.96) translateY(1px);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
}

/* Small glow on hover for overview buttons */
#overview .btn-primary:hover,
#overview .btn-outline-light:hover {
  box-shadow: 0 0 18px rgba(13, 110, 253, 0.5);
}

/* Footer */
footer {
  background-color: #111;
  color: #ccc;
  padding: 20px 0;
}