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

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 120px;
}
.centerlogo {
  height: 400px;
}
nav a {
  color: #eee;
  margin-left: 1rem;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #222;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #444;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

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

.service-item {
  text-align: center;
  height: 120px;
}

.carousel-wrapper {
  padding: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-wrapper::-webkit-scrollbar {
  display: none;
}
.carousel {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  min-width: max-content;
}
.slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  transition: transform 0.6s ease;
  filter: brightness(0.6);
  transform: scale(0.9);
}
.slide.active {
  transform: scale(1.1);
  filter: brightness(1);
  z-index: 2;
}
.carousel img {
  max-height: 250px;
  width: auto;
  border: 2px solid #444;
  border-radius: 6px;
}

form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input,
form select,
form textarea {
  padding: 0.75rem;
  background: #222;
  color: white;
  border: 1px solid #555;
  border-radius: 4px;
}

form button {
  background: #555;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
form button:hover {
  background: #777;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #000;
}