
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  background-color: #f8fafc;
  color: #1a1a1a;
}

header {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #1a1a1a;
}

.logo span {
  color: #004e89;
}

.highlight {
  color: #004e89; /* Matches your logo blue */
}

nav a {
  margin-left: 2em;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
}

nav a:hover, nav .active {
  color: #004e89;
}

.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
  padding: 2em;
  background: rgba(0, 0, 0, 0.0);
  border-radius: 10px;
  max-width: 90%;
}

.overlay-text h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.overlay-text p {
  font-size: 1.2em;
}

section {
  padding: 4em 2em;
  max-width: 1000px;
  margin: auto;
}

.about, .capabilities, .contact {
  background: #ffffff;
  border-radius: 10px;
  margin-top: 2em;
  padding: 2em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

h2 {
  color: #004e89;
  margin-bottom: 1em;
}

a {
  color: #004e89;
}

footer {
  text-align: center;
  padding: 2em 1em;
  background: #e5eaf1;
  font-size: 0.9em;
  color: #333;
}

@media screen and (max-width: 768px) {
  .video-hero video {
    display: none;
  }

  .video-hero {
    background: #e5eaf1;
  }

  .overlay-text {
    color: #1a1a1a; /* black text for mobile background */
  }
}


.hero-static {
  background-color: #ffffff;
  text-align: center;
  padding: 5em 2em;
  color: #1a1a1a;
  border-bottom: 2px solid #004e89;
}

.capability-grid.click-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2em;
  padding: 4em 2em;
  background-color: #f1f5f9;
  text-align: center;
}

.capability-box {
  display: block;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 2em 1em;
  color: #004e89;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.capability-box:hover {
  border-color: #004e89;
  background: #e9f3fb;
  cursor: pointer;
}

.capability-details {
  background: #ffffff;
  margin: 2em auto;
  padding: 3em 2em;
  border-radius: 10px;
  max-width: 1000px;
  border: 1px solid #e2e8f0;
}

.capability-details h2 {
  color: #004e89;
}

.capability-details ul {
  list-style: none;
  padding-left: 0;
}

.capability-details ul li {
  padding-left: 1em;
  margin: 0.5em 0;
  position: relative;
}

.capability-details ul li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #004e89;
}
