.testimonial {
    border: 1px solid #bebebe;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    background: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.testimonial:hover{
    transform: translateY(-2px);
    box-shadow: 0 2px 16px 2px rgba(0, 0, 0, 0.3);
}


.testimonial-author {
    display: flex;
    /* align-items: center; */
    gap: 15px;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: bold;
    margin: 0;
}

.testimonial-role {
    font-size: 0.9em;
    color: #555;
}
.swiper-container {
    width: 100%;
    height: auto;
}
.swiper-container {
    width: 100%;
    height: auto;
    padding: 20px 0; /* Optional padding for spacing */
    overflow: hidden;
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 300px; /* Set a fixed height for all images */
    object-fit: cover; /* Ensures the image fills the container proportionally */
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.swiper-button-next,
.swiper-button-prev {
    color: #333; /* Change arrow color */
    background: rgba(255, 255, 255, 0.7); /* Semi-transparent background for visibility */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #000; /* Darker background on hover */
    color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}


.carousel {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  .carousel-inner {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
  }
  
  .carousel-caption p {
    font-size: 1rem;
    color: #666;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 30px;
    height: 30px;
  }
  
  .carousel-indicators [data-bs-target] {
    background-color: #333;
  }
  