   .carousel-item video {
      height: 6
      00px;
      object-fit: cover;
    }
@media(max-width:600px) {
  .flex-nowrap {
    -ms-flex-wrap: nowrap!important;
    flex-wrap: nowrap !important;

}
 
}
@media(max-width:600px){
  .card-img, .card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
    width: 100%;
}
}

   @media  (max-width:600px) {
    img.img-fluid.rounded.mx-auto.d-block.img-beauty {
      width:80%;
      height: 120%;
}
@media (max-width:600px)
{
  [class*=col-] {
    height: 100%;
    width: 80%;
    padding-right: 0;
    padding-left: 0;
}
}
@media (max-width:600px)
{
  .carousel-item video {
    height: 350px;
    object-fit: fill;
}
}
   }
       .about-section {
      max-width: 1100px;
      margin: auto;
      padding: 60px 20px;
      text-align: center;
    }

    .about-title {
      font-size: 32px;
      font-weight: 500;
      margin-bottom: 15px;
    }

    .about-title span {
      color: #ff3d8b;
      font-weight: 600;
    }

    .title-line {
      width: 80px;
      height: 3px;
      background: #ff3d8b;
      margin: 10px auto 30px;
      position: relative;
      border-radius: 5px;
    }

    .title-line::after {
      content: '';
      width: 10px;
      height: 10px;
      background: #ff3d8b;
      border-radius: 50%;
      position: absolute;
      top: -4px;
      left: 50%;
      transform: translateX(-50%);
    }

    .about-section p {
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 20px;
      color: #555;
    }

    .about-section strong {
      color: #000;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .about-title {
        font-size: 24px;
      }

      .about-section p {
        font-size: 14px;
      }
    }

    /* Scroll to top button */
    .scroll-top {
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: 45px;
      height: 45px;
      background: #ff1f7a;
      color: #fff;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    } 
    @media (max-width:600px)
    {
        *, ::after, ::before {
    /* width: 50%px; */
    /* height: 100%; */
    box-sizing: border-box;
}
    }
    @media (max-width: 768px) {
  .image {
    width: 180px;
    height: 120px;
  }
}
.wrapper {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
  padding: 20px 0;
}

.imageContainer {
  display: flex;
  width: calc(250px * 16); /* 8 images × 2 (loop) */
  animation: scroll 25s linear infinite;
}

.image {
  width: 250px;
  height: 150px;
  margin-right: 15px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Example images */
.img1 { background-image: url("img1.jpg"); }
.img2 { background-image: url("img2.jpg"); }
.img3 { background-image: url("img3.jpg"); }
.img4 { background-image: url("img4.jpg"); }
.img5 { background-image: url("img5.jpg"); }
.img6 { background-image: url("img6.jpg"); }
.img7 { background-image: url("img7.jpg"); }
.img8 { background-image: url("img8.jpg"); }

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
