/* .testimonial-container {
    width: 100%;
    max-width: 70rem;
    padding: 2rem;
  }
  .testimonial-grid {
    display: grid;
    gap: 5rem;
  }
  .image-container {
    position: relative;
    width: 80%;
    height: 18rem;
    perspective: 1000px;
  }
  .testimonial-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  .testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 0.25rem;
  }
  .designation {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2rem;
  }
  .quote {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
  }
  .arrow-buttons {
    display: flex;
    gap: 1rem;
    padding-top: 3rem;
  }
  .arrow-button {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .arrow-button:hover {
    background-color: #00a6fb;
  }
  .arrow-button svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #f1f1f7;
    transition: transform 0.3s;
  }
  .arrow-button:hover svg {
    fill: #ffffff;
  }
  @media (min-width: 768px) {
    .testimonial-grid {
      grid-template-columns: 1fr 1fr;
    }
    .arrow-buttons {
      padding-top: 0;
    }
  }
   */
   .testimonial-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    font-family: sans-serif;
    margin: 1rem auto;
    position: relative;
  
    }

    .testimonial-text {
    background: #e0f0fb;
    padding: 1rem;
    border-radius: 6px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
    }

    /* Triangle pointer below the text bubble */
    .testimonial-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 18px; /* Adjust to point near profile image */
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #e0f0fb;
    }

    .testimonial-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    }

    .profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    }

    .profile-info {
    font-size: 14px;
    }

    .profile-info a {
    color: #3366cc;
    text-decoration: none;
    }