:root{
  --bg:#ffffff;
  --muted:#6b7280;
  --primary:#1f6feb;
  --card-border:#e6eef8;
  --card-shadow: rgba(18,38,63,0.04);
}

/* section wrapper */
.testimonial-section{
  padding:48px 24px;
  display:flex;
  justify-content:center;
  width:100%;
  clear:both;
  background:var(--bg);
}

.testimonial-container{
  width:100%;
  max-width:980px;
}

/* Title */
.testimonial-title{
  font-size:40px;
  line-height:1.1;
  font-weight:700;
  margin:0 0 36px 0;
}

/* Slider area */
.testimonial-slider{
  position:relative;
  padding:28px;
  border-radius:12px;
  border:1px solid var(--card-border);
  background:white;
  box-shadow: 0 6px 20px var(--card-shadow);
  display:flex;
  align-items:center;
  gap:28px;
}

/* Avatar and heading block */
.testimonial-left{
  width:140px;
  min-width:140px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.testimonial-avatar{
  width:92px;
  height:92px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
  border:4px solid transparent;
  box-shadow:0 2px 8px rgba(16,24,40,0.06);
}
.testimonial-avatar img{width:100%;height:100%;object-fit:cover;display:block}
.testimonial-name{font-weight:700;font-size:20px}
.testimonial-since{color:var(--muted);font-weight:500}

/* Quote area */
.testimonial-quote{
  flex:1;
  font-size:20px;
  line-height:1.0;
  color:#374151;
  padding-right:28px;
}
.testimonial-quote-mark{
  display:inline-block;
  font-size:32px;
  vertical-align:top;
  transform:translateY(-6px);
  color:var(--muted);
  margin-right:6px;
}

/* nav buttons */
.testimonial-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:64px;
  height:64px;
  border-radius:50%;
  background:white;
  border:2px solid rgba(31,111,235,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow: 0 6px 18px rgba(31,111,235,0.06);
}
.testimonial-nav svg{width:20px;height:20px;color:var(--primary)}
.testimonial-nav-left{left:-32px}
.testimonial-nav-right{right:-32px}

/* dots */
.testimonial-dots{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:18px;
}
.testimonial-dots .dot{
  width:18px;height:18px;border-radius:50%;
  background:#eef3f8;
  border:none;
  cursor:pointer;
}
.testimonial-dots .dot.active{
  background:#c6d3e6;
  width:22px;height:22px;
}

/* responsive */
@media (max-width:720px){
  .testimonial-title{font-size:28px}
  .testimonial-slider{flex-direction:column;align-items:flex-start;padding:20px}
  .testimonial-left{flex-direction:row;align-items:center;width:100%;min-width:unset}
  .testimonial-avatar{width:64px;height:64px}
  .testimonial-quote{font-size:16px;padding-right:0}
  .testimonial-nav{display:none}
}
