/* style.css - small helpers */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1f2937;
}

/* Make sure the navbar-toggler-icon is visible on custom backgrounds */
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.8%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Hero / included sections spacing override so they fit well inside the container */
section {
  margin-bottom: 2.5rem;
}

/* Cards or round service items hover effect (if you used those inline cards) */
.service-card {
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(3, 57, 128, 0.08);
}

/* Footer small screens: center text */
@media (max-width: 767.98px) {
  footer .row { text-align: center; }
  footer .col-md-4 { margin-bottom: 1rem; }
}
