.hero {
  background: rgb(243, 146, 0) no-repeat center center/cover; /*url("hero-image.jpg")*/
  background: linear-gradient(
    90deg,
    rgba(243, 146, 0, 1) 35%,
    #643ea8 100%
  );
  height: 90vh;
  padding: 20px;
}

.hero a.cta.home {
  color: #DE7C12 !important;
  background: white;
  transition: 0.3s ease;
}

.hero a.cta.home:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

section h2 {
  padding-bottom: 30px;
}

.gallery-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}

.testimonials-section {
  padding: 50px;
  background: white;
  text-align: center;
}

.testimonial-container {
  display: flex;
  width: 100%;
  justify-content: space-around;
  gap: 20px;
   {
     {
      /* animation: scroll 20s linear infinite; */
    }
  }
}

.testimonial-container:hover {
  animation-play-state: paused;
}

.testimonial-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 30%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-item p {
  margin: 0;
  font-size: 18px;
  color: #555;
  line-height: 1.5;
}

.testimonial-item span {
  font-size: 14px;
  color: #777;
  display: block;
  margin-top: 10px;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 15px;
  font-size: 14px;
  color: white;
  background-color: #f39200;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color:rgba(245, 156, 23, 0.87);
}

/* Scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100vw);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 20px;
    overflow: hidden;
  }

  .testimonial-container {
    flex-direction: column; /*row if animation is enabled*/
    justify-content: start;
  }

  .testimonial-item {
    width: 100%;
    flex: none;
  }
}
