/* body { font-family: 'Segoe UI', sans-serif; }
footer { font-size: 0.9rem; } */

/* main.css */

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* h1, h2, h3, h4 {
  font-weight: 600;
  color: #1e3a5f;
} */


/* a {
  text-decoration: none;
  color: #0077cc;
} */

/* a:hover {
  color: #005fa3;
} */

/* Navbar styles */
/* .nav-link {
  color: #ddd;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0077cc;
  text-decoration: underline;
}

.nav-link.active {
  font-weight: 600;
  color: #0077cc !important;
  text-decoration: underline;
} */

.navbar-brand img {
  height: 40px;
  max-width: 100%;
  object-fit: contain;
}

main {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Footer */
/* footer {
  font-size: 0.9rem;
  background-color: #1e3a5f;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
} */

/* Image cropping helper (for square images) */
.square-image-wrapper {
  width: 100%;
  max-width: 500px;  /* Optional max width */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.square-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* Cards for services section */
.service-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}


.gov-form .form-group {
  margin-bottom: 1.5rem;
}

.gov-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}

.gov-form input,
.gov-form textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 2px solid #0b0c0c;
  border-radius: 0;
  background: white;
  box-shadow: none;
}

.gov-form input:focus,
.gov-form textarea:focus {
  outline: 3px solid #fd0;
  outline-offset: 0;
}

.btn-black {
  background: #0b0c0c;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.btn-black:hover {
  background: #505a5f;
}

.card-img-top {
  height: 500px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.card-img-about {
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}


@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}
