body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}
/* Keep the dark blue header color and text */
header {
  background: #003366;
  color: white;
}

/* Keep logo size consistent inside the navbar */
header img {
  height: 50px;
  width: auto;
}

/* Optional: Adjust navbar padding */
.navbar {
  padding: 10px 5%;
}

/* Optional: Make nav links white even if not active */
.navbar-dark .navbar-nav .nav-link {
  color: white;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #00aced; /* Light blue hover */
}

}
nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover {
  text-decoration: underline;
}
section {
  padding: 3em 5%;
}
.hero {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 2px black;
  font-size: 2em;
}
.service-grid {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
}
.service-box {
  flex: 1 1 30%;
  background: #f5f5f5;
  padding: 1em;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.service-box img {
  max-width: 100%;
  border-radius: 5px;
}
/* ✅ Form Controls */
.form-label {
  font-weight: bold;
}
.form-control,
.form-select {
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #ccc;
}
.form-control:focus,
.form-select:focus {
  border-color: #004080;
  box-shadow: 0 0 5px rgba(0,64,128,0.3);
}

/* ✅ Submit Button */
.btn-submit {
  background-color: #004080;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  padding: 12px 20px;
  width: 100%;
  transition: background-color 0.3s ease;
}
.btn-submit:hover {
  background-color: #003366;;
  

}
footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 1.5em;
  font-size: 0.9em;
}
footer a {
  color: white;
  text-decoration: none;
  margin: 0 10px; /* optional: spacing between links */
}
footer a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .service-grid {
    flex-direction: column;
  }
   /* Form */
   form {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform 0.3s;
  }
  form:hover {
    transform: translateY(-5px);
  }
  .form-label {
    font-weight: bold;
    color: #003366;
  }
  .input-group-text {
    background: #003366;
    color: white;
    border: none;
  }
  .form-control:focus {
    border: 2px solid #ffcc00;
    box-shadow: 0 0 10px rgba(255,204,0,0.4);
  }
  button[type="submit"] {
    background: #003366;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    padding: 12px;
    border: none;
    transition: 0.3s ease-in-out;
  }
  button[type="submit"]:hover {
    background: #00509e;
    transform: scale(1.03);
  }
  card {
    border-radius: 10px;
  }
  .card-title {
    font-weight: 600;
  }
  .input-group-text {
    background-color: #0d6efd;
    color: #fff;
  }
}