  /* ===== Main Layout ===== */
  .about-testimonial {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
  }

  /* ===== Side Illustrations ===== */
  .side-testimonial-img {
      max-width: 400px;
      width: 100%;
  }

  .left-testimonial-img {
      position: absolute;
      left: 40px;
  }

  .right-testimonial-img {
      position: absolute;
      right: 40px;
  }

  /* ===== Phone Frame ===== */
  .phone-wrapper {
      position: relative;
      width: 330px;
      height: 620px;
      border: 12px solid #1e1e1e;
      border-radius: 40px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      background: #000;
  }

  /* Video */
  .phone-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  /* Play button */
  .play-btn {
      position: absolute;
      top: 45%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
  }

  /* Bottom Info */
  .phone-info {
      position: absolute;
      bottom: 0;
      width: 100%;
      background: #fff;
      padding: 18px 15px;
      text-align: center;
  }

  .phone-info h4 {
      color: #d40000;
      font-weight: 700;
      margin-bottom: 6px;
  }

  .phone-info p {
      font-size: 20px;
      font-weight: 700;
      color: #0a3d91;
      margin: 0;
  }

  /* Navigation Arrows */
  .nav-arrows {
      margin-top: 30px;
      display: flex;
      gap: 20px;
      justify-content: center;
  }

  .arrow-btn {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      border: 1px solid #ccc;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s;
  }

  .arrow-btn:hover {
      background: #f1f1f1;
  }

  /* Responsive */
  @media(max-width:992px) {

      .left-testimonial-img,
      .right-testimonial-img {
          display: none;
      }
  }

  /* ===== Slider ===== */
  .slider-container {
      width: 330px;
      overflow: hidden;
      margin: auto;
  }

  .phone-slider {
      display: flex;
      transition: transform 0.6s ease-in-out;
  }

  .phone-slide {
      min-width: 330px;
      display: flex;
      justify-content: center;
  }

  .commitment-section {
      background: #fff;
  }

  .custom-accordion .accordion-item {
      border: none;
      margin-bottom: 15px;
  }

  .custom-accordion .accordion-button {
      background: #0d47a1;
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
      box-shadow: none;
  }

  .custom-accordion .accordion-button:not(.collapsed) {
      background: #0d47a1;
      color: #fff;
  }

  .custom-accordion .accordion-button::after {
      filter: invert(1);
      /* makes + white */
  }

  .custom-accordion .accordion-body {
      background: #f7f9fc;
      border-radius: 0 0 8px 8px;
      padding: 20px;
      font-size: 15px;
      line-height: 1.7;
  }