.contact-button {
  display: inline-block; /* Make it behave like a button */
  padding: 3px 26px; /* Padding for the button */
  border: 4px solid #f1dea2; /* Border color */
  border-radius: 28px; /* Rounded corners */
  background: linear-gradient(
    to right,
    black,
    #333
  ); /* Black to dark gray gradient */
  color: white; /* Text color */
  text-decoration: none; /* Remove underline */
  font-size: 23px; /* Font size */
  transition: background 0.3s, border-color 0.3s; /* Transition for hover effect */
  font-weight: bold;
}

.contact-button:hover {
  background: linear-gradient(
    to right,
    #333,
    black
  ); /* Change gradient on hover */
  border-color: #f1dea2; /* Keep border color same on hover */
}
.text-gold {
  color: #cca74d;
}
.animated-image {
  animation: upDown 2s infinite; /* Adjust the duration as needed */
}

@keyframes upDown {
  0% {
    transform: translateY(0); /* Start position */
  }
  50% {
    transform: translateY(-10px); /* Move up */
  }
  100% {
    transform: translateY(0); /* Return to start position */
  }
}
.gradient-background {
  background: linear-gradient(to bottom, black, #332e22);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white; /* Text color for contrast */
}

.slider-container {
  overflow: hidden;
  padding: 10px;
  border-radius: 10px;
}

.slider-track {
  display: flex;
  gap: 20px;
  animation: slide 30s linear infinite;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.slider-item {
  min-width: 16.66%; /* 6 per slide */
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  border-radius: 8px;
}

.slider-item img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}