.testimonial-left {
    border: 2px solid var(--primary-teal);
    border-radius: 12px;
    background: #f9f9f9;
    display: flex;
    align-items: flex-start;
  }

  .celeb-img-container {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .celeb-img-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }

.quote-icon {
  background-image: linear-gradient(to right, var(--primary-teal-dark), var(--primary-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}



  .testimonial-box {
    border-left: 4px solid var(--primary-teal);
    background-color: #f8f8f8;
    border-radius: 10px;
  }

  .testimonial-text {
    font-size: 0.95rem;
    color: #333;
  }

  .text-teal {
    color: var(--primary-teal);
  }

  @media (max-width: 767.98px) {
    .testimonial-left {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .celeb-img-container {
      max-width: 70%;
      margin-bottom: 1rem;
    }

    .testimonial-box {
      margin-bottom: 1rem;
    }
  }

  /* Carousel Indicators (bottom dots) */
  .carousel-indicators {
    margin-top: 2rem;
    position: relative;
    bottom: -20px;
  }

  .carousel-indicators [data-bs-target] {
    background-color: var(--primary-teal);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    border: none;
  }

  .carousel-indicators .active {
    opacity: 1;
  }

  /* Left/Right Arrow Styles */
  .carousel-control-prev,
  .carousel-control-next {
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }

  .custom-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }

  .custom-chevron i {
    color: white;
    font-size: 1.5rem;
  }