
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
}
header {
  background-color: #0f172a;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 60px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
nav a {
  color: white;
  text-decoration: none;
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #00bfa5;
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}

.slider {
  overflow: hidden;
  width: 100%;
  margin: 40px 0;
}
.slider-track {
  display: flex;
  width: fit-content;
  animation: scroll 40s linear infinite;
}
.slider:hover .slider-track {
  animation-play-state: paused;
}
.partner-logo {
  max-width: 100px;
  max-height: 50px;
  margin: 0 30px;
  object-fit: contain;
  filter: grayscale(40%);
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
  gap: 10px;
}
input, textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
button {
  background-color: #0f172a;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
}
.contact-info {
  margin-top: 30px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.whatsapp img {
  width: 50px;
  height: 50px;
}
