
body {
  font-family: 'Montserrat', sans-serif;
  color: #212121;
  margin: 0;
  padding: 0;
}

.bg-navy {
  background-color: #0C1A62;
}

.bg-sky {
  background-color: #38B6FF;
}

.text-navy {
  color: #0C1A62;
}

.text-sky {
  color: #38B6FF;
}

.btn-sky {
  background-color: #38B6FF;
  color: white;
}

.btn-sky:hover {
  background-color: #2aa3e8;
  color: white;
}

.btn-navy {
  background-color: #0C1A62;
  color: white;
}

.btn-navy:hover {
  background-color: #0a1653;
  color: white;
}

.testimonial {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}

.service-card {
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.process-step {
  text-align: center;
}

.process-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #0C1A62;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  font-weight: bold;
}

a {
  text-decoration: none;
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#hero {
  background: linear-gradient(135deg, #0C1A62, #1a2a7d);
  padding: 80px 0;
  margin-top: 0; /* Fix the blank area above menu */
}

#hero .bg-white p,
#hero .bg-white div.fw-bold {
  color: #212121 !important; /* Fix contrast for text in white boxes */
}

.btn-outline-light:hover {
  color: #0C1A62;
}

#contact {
  padding: 80px 0;
  scroll-margin-top: 80px;
}