/* testimonial*/
  .testimonial-container {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: auto;
  }
  .left-side {
    position: relative;
    width: 200px;
    height: 360px;
  }
  .curve {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 80px;
    width: 100px;
    height: calc(100% - 40px);
  }
  .curve path {
    stroke: #ccc;
    stroke-width: 2;
    fill: none;
  }
  .avatar {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.6s ease;
  }
  .pos-top    { top: 20px;  transform: scale(0.8); opacity: 0.6; }
  .pos-middle { top: 140px; transform: scale(1.1); opacity: 1; }
  .pos-bottom { top: 260px; transform: scale(0.8); opacity: 0.6; }
  .pos-out    { top: 380px; opacity: 0; transform: scale(0.6); }

  .right-side {
    padding-left: 40px;
    flex: 1;
  }
  .quote {
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    position: relative;
    padding-left: 38px;
  }
  .quote::before {
    content: open-quote;
    font-size: 48px;
    position: absolute;
    left: 0;
    top: -10px;
    color: #bbb;
    font-family: Georgia, serif;
  }
  .author-info {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .author-name {
    font-weight: bold;
  }
  .author-meta {
    color: #888;
    font-size: 14px;
  }
  @media (max-width: 600px) {
    .testimonial-container { flex-direction: column; align-items: flex-start; }
    .left-side { width: 100%; height: 260px; margin-bottom: 20px; }
    .avatar { width: 50px; height: 50px; }
    .pos-top { top: 10px; }
    .pos-middle { top: 105px; }
    .pos-bottom { top: 200px; }
    .right-side { padding-left: 0; }
  }