#services {
  background: #f9fbfe;
}

#services p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

#services h2 {
  color: #002855;
}
.services-section {
  background-color: #f9fbfd;
}

.service-card {
  background: linear-gradient(135deg, #f1f3f5, #e2e8f0);
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-card .card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 0.75rem;
}

.service-card .card-text {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
}
.custom-hr {
  border: none;
  height: 3px;
  background-color: #000136;
  width: 60%;
  margin: 2rem auto;
  opacity: .75;
}
