/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Futura, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header / Navigation */
.header {
  padding: 1rem 0;           /* adjust as needed */
  background: #fff;          /* or your color */
}

.header-container {
  display: flex;
  align-items: center;       /* vertically centers logo and menu */
  justify-content: space-between;  /* logo left, menu right */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/*.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}*/
.logo img {
  max-height: 60px;          /* control logo height */
  width: auto;
  display: block;
}
.site-logo {
  height: 100px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
nav a {
  color: #0d2645;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover {
  color: #ca1f31;
}

/* Hero Banner */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Optional overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}

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

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #004aad;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  
}

.btn {
  display: inline-block;
  background: #ca1f31;
  color: white;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.btn:hover {
  background: #0d2645;
}

/* Services Section */
.services-overview {
  padding: 4rem 2rem;
  text-align: center;
  background: #f9f9f9;
}
.services-overview h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #164273;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}
.service-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px #edede8;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-item h3 {
  padding: 1rem;
  background: #f1b716;
  color: #0d2645;
  margin: 0;
}
.service-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  background: #0d2645;
  color: white;
  text-align: center;
  padding: 2rem;
}
.footer-content p {
  margin: 0.5rem 0;
}
.footer-content a {
  color: #f1b716;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .logo {
    position: static;
    transform: none;
    margin-bottom: 1rem;
  }
  .site-logo {
    height: 100px;
    max-width: 250px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
}
