#slider img{
    display: none;
    animation: scale 30s linear infinite;
}
#slider .active{
    display: block;
}


@keyframes scale {
  0% { transform: scale(120%); }
  100% { transform: scale(0);}
}






.gallery-section {
  padding: 0px 120px;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Main Image */
.main-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Thumbnail Slider */
.thumbnail-slider {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.thumbnail-slider img {
  width: 120px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.7;
}

.thumbnail-slider img:hover,
.thumbnail-slider img.active {
  opacity: 1;
  transform: scale(1.05);
  border: 2px solid #000;
}

/* Responsive */
@media (max-width: 768px) {

  .gallery-section {
    padding: 0px 20px ;
  }

  .title {
    font-size: 22px;
  }

  .thumbnail-slider img {
    width: 90px;
    height: 60px;
  }
}