* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f4f7fb;
  --card: #ffffff;
  --border: #e3eaf2;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #f08a24;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}

.testimonials-section {
  padding: 100px 0;
  overflow: hidden;
}

.section-title{
    text-align:center;
    margin-bottom:15px;
}

.section-title h1{
    font-size:2.8rem;
    font-weight:800;
    color:#071f3d;
    line-height:1.1;
}

.section-title h1::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#f08a24;
    border-radius:10px;
    margin:12px auto 0;
}

.testimonial-slider {
  width: 100%;
  overflow: hidden;
  padding-top: 80px;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 15px));
  }
}

.testimonial-card {
  width: 420px;
  min-height: 90px;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fafcff 100%
  );

  border: 1px solid var(--border);

  border-radius: 24px;

  padding: 100px 35px 35px;

  position: relative;

  flex-shrink: 0;

  text-align: center;

  display: flex;
  flex-direction: column;

  transition: all .3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-image {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);

  width: 130px;
  height: 130px;

  border-radius: 50%;
  overflow: hidden;

  border: 4px solid #fff;
  background: #fff;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.quote-icon {
  font-size: 4.5rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 15px;
}

.testimonial-card p {
  color: #475569;

  font-size: 1rem;

  line-height: 1.9;

  flex-grow: 1;
}

.author-info {
  margin-top: 30px;
}

.author-info h3 {
  color: var(--text);

  font-size: 1.25rem;

  font-weight: 700;

  margin-bottom: 5px;
}

.author-info span {
  color: var(--muted);
  font-size: .95rem;
}

/* TABLET */

@media (max-width:1100px) {

  .testimonial-card {
    width: 460px;
  }

}

/* MOBILE */

@media (max-width:768px) {

  .testimonials-section {
    padding: 80px 0;
  }

  .section-title {
    margin-bottom: 60px;
  }

  .section-title h1 {
    font-size: 2rem;
  }

  .testimonial-slider {
    padding-top: 70px;
  }

  .testimonial-track {
    gap: 20px;
    animation-duration: 28s;
  }

  .testimonial-card {
    width: 88vw;

    min-height: auto;

    padding: 85px 24px 35px;
  }

  .testimonial-image {
    width: 105px;
    height: 105px;
    top: -52px;
  }

  .testimonial-card p {
    font-size: .95rem;
    line-height: 1.8;
  }

  .quote-icon {
    font-size: 4rem;
  }
}