@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* General styling */


body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
}

/* Scroll Gallery Section */
.scroll-gallery {
  width: 100%;
  overflow: hidden;
  background: #204060;  /* dark blue bg */
  padding: 20px 0;
}

/* Wrapper */
.scroll-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

/* Track (animated row) */
.scroll-track {
  display: flex;
  gap: 20px;
  animation: scroll-left 25s linear infinite;
}

/* Individual items */
.scroll-item {
  flex: 0 0 auto;
  width: 350px;
  height: 220px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Animation keyframes */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .scroll-item {
    width: 250px;
    height: 160px;
  }
}

@media (max-width: 480px) {
  .scroll-item {
    width: 200px;
    height: 130px;
  }
}
