body {
  background-color: #f4f4f4;
  font-family: "Poppins", sans-serif;
}
.navbar {
  background: #054d95;
}
.navbar-brand,
.nav-link {
  color: white !important;
  transition: color 0.3s ease-in-out;
}
.nav-link:hover {
  color: #ffcc00 !important;
}
.hero {
  background: url("https://pixabay.com/photos/jeep-urban-streets-day-sunset-7853620/")
    no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  padding: 12px;
}
.section h2 {
  color: #054d95;
}
.btn-primary {
  background: #054d95;
  border: none;
  font-size: 1.2rem;
  padding: 15px 30px;
}
.btn-primary:hover {
  background: #033b72;
}
.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffcc00;
  color: #054d95;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: background 0.3s ease-in-out;
}
.floating-button:hover {
  background: #ffd633;
  color: #033b72;
}
footer {
  background: #054d95;
  color: white;
  padding: 20px;
  text-align: center;
}
