.slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.slide {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px; /* Adds 20px space between images */
}

.slide img {
  width: 100%; /* Adjusted to 100% to fit within the slider without doubling size */
  max-width: 1200px;
  object-fit: contain;
  border-radius: 10px;
}
.slide img:last-child {
  margin-right: 0; /* Removes margin from the last image */
}


.bold-black-large {
    font-weight: bold;
    color: black;
    font-size: 40px;
    font-family: 'Merriweather', sans-serif; /* Poppins is a clean, modern font */
    letter-spacing: 1px; /* Add some space between letters for a sleek look */
    text-transform: uppercase; /* Make the text all uppercase for a bolder design */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow for a 3D effect */
}