
      /* ===========================
   TESTIMONIAL SECTION
=========================== */

      .testimonial-section {
        background: #fff1f6;
        padding: 70px 0;
        overflow: hidden;
      }

      .container-testimonial {
        width: 80%;
        max-width: 1400px;
        margin: auto;

        display: grid;
        grid-template-columns: 42% 58%;
        align-items: center;
        gap: 40px;
      }

      /* ===========================
   LEFT IMAGES
=========================== */

      .testimonial-images {
        position: relative;
        min-height: 420px;
      }

      .img-large {
        width: 58%;
        height: 340px;
        border-radius: 28px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      }

      .img-large img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .img-small {
        width: 50%;
        position: absolute;
        right: 0;
        bottom: 20px;

        border-radius: 28px;
        overflow: hidden;

        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      }

      .img-small img {
        width: 100%;
        display: block;
        object-fit: cover;
      }

      /* ===========================
   RIGHT CONTENT
=========================== */

      .section-tag {
        color: #ec4899;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .testimonial-content h2 {
        font-size: 30px;
        line-height: 1.15;
        color: #1f2937;
        margin: 10px 0 25px;
      }

      /* ===========================
   SLIDER
=========================== */

      .testimonial-slider {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .nav-btn {
        width: 52px;
        height: 52px;
        border: none;
        border-radius: 50%;
        background: #fff;
        cursor: pointer;
        font-size: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
        flex-shrink: 0;
      }

      .nav-btn:hover {
        transform: translateY(-3px);
      }

      .slider-wrapper {
        flex: 1;
        overflow: hidden;
      }

      .testimonial-track {
        display: flex;
        transition: transform 0.6s ease;
      }

      /* ===========================
   CARD
=========================== */

      .testimonial-card {
        min-width: 100%;
        background: #fff;

        border-radius: 24px;
        overflow: hidden;

        display: grid;
        grid-template-columns: 220px 1fr;

        min-height: 280px;

        position: relative;

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      }

      .patient-info {
        background: #fde7ef;
      }

      .patient-image {
        height: 180px;
      }

      .patient-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .patient-details {
        text-align: center;
        padding: 15px;
      }

      .patient-details h4 {
        color: #1f2937;
        font-size: 20px;
        margin-bottom: 5px;
      }

      .patient-details span {
        color: #ec4899;
        font-weight: 600;
      }

      .testimonial-text {
        padding: 28px;
      }

      .testimonial-text h3 {
        color: #1f2937;
        font-size: 24px;
        margin-bottom: 12px;
      }

      .testimonial-text p {
        color: #6b7280;
        line-height: 1.7;
        font-size: 15px;
      }

      .quote-icon {
        position: absolute;
        right: 18px;
        bottom: 18px;

        width: 50px;
        height: 50px;

        border-radius: 50%;
        background: #ec4899;
        color: #fff;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 22px;
      }

@media (max-width: 768px) {
  .testimonial-section {
    padding: 40px 0;
  }

  .container-testimonial {
    width: 92%;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .testimonial-content {
    order: 1;
    text-align: center;
    width: 100%;
  }

  .testimonial-content h2 {
    font-size: 20px;
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.3;
  }


  .testimonial-slider {
    order: 2;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .slider-wrapper {
    width: 100%;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    min-height: auto;
    width: 100%;
  }

  .patient-image {
    height: 220px;
  }

  .patient-details {
    padding: 12px;
  }

  .testimonial-text {
    padding: 20px;
  }

  .testimonial-text h3 {
    font-size: 20px;
  }

  .testimonial-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .quote-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }



  .testimonial-images {
    order: 3;

    width: 100%;
    min-height: auto;

    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .img-large {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
  }

  .img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .img-small {
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
    border-radius: 20px;
    overflow: hidden;
  }

  .img-small img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }


  .mobile-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .desktop-prev,
  .desktop-next {
    display: none;
  }
}