#forminator-module-18866 {
  display: flex;
  align-items: center;
  justify-content: center;
}

#forminator-module-18866 button.forminator-button.forminator-button-submit {
  left: 30px;
}

#select2-forminator-form-18947__field--select-1_69f570f746123-container {
    background: #fff;
}

.scrolling-images {
  --image-size: 150px;
  border: 0px solid #575757;
  padding: 0px;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
}

.scrolling-images:not(.reverse) {
  margin-top: 24px;
}

.scrolling-images .first,
.scrolling-images .second {
  display: flex;
  position: relative;
  animation: marquee 30s linear infinite;
  justify-content: space-around;
}

.scrolling-images.reverse .first,
.scrolling-images.reverse .second {
  display: flex;
  position: relative;
  animation: marquee-v2 30s linear infinite;
  justify-content: space-around;
}

@media screen and (max-width: 767px) {
  .scrolling-images .first,
  .scrolling-images .second {
    animation: marquee 35s linear infinite;
  }

  .scrolling-images.reverse .first,
  .scrolling-images.reverse .second {
    animation: marquee-v2 35s linear infinite;
  }

  #forminator-module-18866 {
    display: block;
    align-items: center;
    justify-content: center;
  }
  #forminator-module-18866 button.forminator-button.forminator-button-submit {
    left: 0;
  }
}

.scrolling-images .image-wrapper {
  margin: 0 4px;
}

.scrolling-images img {
  display: block;
  min-width: 240px;
  height: 80px !important;
  object-fit: contain;
  padding: 16px 32px;
  box-sizing: border-box;
}

.image-wrapper img {
  height: 80px;
}

@media screen and (max-width: 1023px) {
  .scrolling-images img {
    height: 60px;
    min-width: 200px;
    padding: 8px 16px;
  }
}

@media screen and (max-width: 767px) {
  .scrolling-images img {
    height: 50px;
    min-width: 160px;
    padding: 8px 16px;
  }
}

.scrolling-images:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    to right,
    #fff,
    rgba(255, 255, 255, 0) 80px,
    rgba(255, 255, 255, 0) calc(100% - 80px),
    #fff
  );
}

@media (max-width: 900px) {
  .scrolling-images {
    --image-size: 120px;
    --image-size: min(max(120px, 10vw), 150px);
  }
}

@keyframes marquee {
  0% {
    transform: translatex(0%);
  }

  100% {
    transform: translatex(-100%);
  }
}

@keyframes marquee-v2 {
  0% {
    transform: translatex(-100%);
  }

  100% {
    transform: translatex(0%);
  }
}

/* Footer CSS */
.footerbtn a {
  font-size: 16px;
  background: white;
  padding: 15px 40px;
  border-radius: 30px;
  top: 50px;
  position: relative;
}

/* ------------reviewswrapper Home page ----------- /*
 /*  */
.reviewswrapper {
  overflow: hidden;
  position: relative;
}

/* fade edges */
.reviewswrapper::before,
.reviewswrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.reviewswrapper::before {
  left: 0;
  background: linear-gradient(to right, #181a1d, transparent);
}

.reviewswrapper::after {
  right: 0;
  background: linear-gradient(to left, #181a1d, transparent);
}

/* reviewsrow */
.reviewsrow {
  display: flex;
  width: max-content;
  margin-bottom: 20px;
}

/* reviewstrack */
.reviewstrack {
  display: flex;
  gap: 20px;
  animation: scroll 35s linear infinite;
}

/* BOTH reviewsrows same direction */
.reviewsrow .reviewstrack {
  animation-direction: normal;
}

.reviewscard {
  flex-shrink: 0;
  width: clamp(260px, 28vw, 630px);
  height: 250px;
  padding: 25px 22px;
  border-radius: 10px;
  background: #181a1d;
  backdrop-filter: blur(12px);
  border: 1px solid #2d444f;
  display: flex;
  flex-direction: column;
}
.reviewscard:hover {
  background: radial-gradient(
    circle at top left,
    rgba(96, 165, 250, 0.25),
    transparent 60%
  );
}

/* reviewsheader */
.reviewsheader {
  display: flex;
  justify-content: space-between;
}

.reviewsuser {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewsuser img {
  height: 40px !important;
  border-radius: 50% !important;
  width: 40px !important;
  object-fit: cover;
}

.reviewsavatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.reviewsname {
  font-weight: 600;
  color: #fff;
  font-size: 17px;
}

.reviewsstars {
  width: 120px;
  background-size: contain;
  background-attachment: revert-rule;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(https://raselkabir.com/wp-content/uploads/2026/04/star5.svg);
}

.reviewstext {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-top: 20px;
  font-weight: 400;
  font-family: "Roboto";
}

/* animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* tablet */
@media (max-width: 1024px) {
  .reviewscard {
    height: 200px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .reviewscard {
    width: 80vw;
    height: auto;
  }

  .reviewstext {
    -webkit-line-clamp: 5;
  }

  .reviewswrapper::before,
  .reviewswrapper::after {
    width: 40px;
  }
}
