
body { margin: 0; font-family: sans-serif; background: white; color: #111; }

header, footer {
  background: #001f3f;
  color: white;
  text-align: center;
  padding: 1rem;
}

nav {
  background: #001f3f;
  text-align: center;
  padding: 0.5rem 0;
}

nav a {
  color: white;
  margin: 0 0.75rem;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: url('../images/humberbridge.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

.bubble {
  background: #007bff;
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  margin-top: 1rem;
  display: inline-block;
  font-weight: bold;
}

.services, .testimonials {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.brands {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.brands::-webkit-scrollbar { display: none; }

.brands img {
  flex: 0 0 auto;
  height: 65px;
  scroll-snap-align: start;
}

.service-box, .testimonial-box {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
}

input, textarea, button {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
