/* Container styling */
.scrolling-images {
  overflow: hidden; /* Hides anything outside the scrolling area */
  white-space: nowrap;
  position: relative;
  padding: 10px 0;
}

/* Images container */
.image-container {
  display: inline-flex;
  animation: scroll 70s linear infinite; /* Slowed down the animation (40s instead of 20s) */
}

.image-container img {
  width: 200px; /* Increased size (2x the original) */
  height: 200px; /* Increased size (2x the original) */
  object-fit: cover;
  margin-right: 10px; /* Space between images */
}

/* Responsive settings */
@media screen and (min-width: 600px) {
  .image-container img {
    width: 300px; /* Larger sizes for bigger screens */
    height: 300px;
  }
}

@media screen and (min-width: 1024px) {
  .image-container img {
    width: 400px; /* Larger sizes for desktops */
    height: 400px;
  }
}

/* Infinite scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0); /* Start from the initial position */
  }
  100% {
    transform: translateX(-100%); /* Slide the entire content to the left */
  }
}





/* Load the Helvetica-Compressed Font */
@font-face {
  font-family: 'Helvetica-Compressed';
  src: url('font/helvetica-compressed.otf') format('opentype');
}

body {
  font-family: 'Helvetica-Compressed', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

/* Centered Icon Styling */
.center-icon {
  text-align: center;
  margin-bottom: 30px; /* Increased spacing */
}

.center-icon img {
  width: 300px; /* Doubled size */
  height: auto; /* Maintain aspect ratio */
}

/* Scrolling Text Section */
.scrolling-text {
  overflow: hidden;
  position: relative;
  padding: 30px 0; /* Overall padding for the scrolling section */
  white-space: nowrap; /* Prevent line breaks */
}

.text-row {
  display: flex;
  gap: 35px; /* Increased spacing between text boxes */
  font-size: 36px; /* Increased font size */
  color: #fff; /* White text color */
  line-height: 1.5; /* Better text spacing */
  animation: scroll-left 20s linear infinite; /* All text moves in the same direction */
  margin-bottom: 50px; /* Add vertical spacing between rows */
}

.text-box {
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  padding: 10px 15px; /* Space around text inside the box */
  border: 2px solid #5e2b34; /* Gold rectangle stroke */
  border-radius: 5px; /* Slightly rounded corners */
  box-sizing: border-box; /* Include padding in the border area */
}

/* Animations */
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive Text Adjustments */
@media screen and (min-width: 768px) {
  .text-row {
    font-size: 42px;
  }
}

@media screen and (min-width: 1024px) {
  .text-row {
    font-size: 48px;
  }
}



