.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.slider-prev,
.slider-next {
    background: #f0f0f3;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #333;
    box-shadow: 6px 6px 10px #ccc, -6px -6px 10px #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    box-shadow: inset 4px 4px 8px #ccc, inset -4px -4px 8px #fff;
    transform: scale(1.05);
}

.testimonial-dots {
    display: flex;
    gap: 0.7rem;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e0e0e0;
    box-shadow: inset 2px 2px 5px #bbb, inset -2px -2px 5px #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #007bff;
    box-shadow: 0 0 10px #007bff80;
    transform: scale(1.2);
}

.pagination {
  display: inline-block;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  border: 1px solid #ddd;
  margin: 0 4px;
}

.pagination a.active {
  background-color: #1a2a6c;
  color: white;
  border: 1px solid #1a2a6c;
}

.pagination a:hover:not(.active) {background-color: #3c62f8; color: white;}

.custom-testimonial-author {
    display: flex;
    align-items: center;
    /* background-color: #f9f9f9; */
    /* padding: 16px 10px; */
    border-radius: 12px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
    max-width: 400px;
}

.custom-author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
    border: 2px solid #e0e0e0;
}

.custom-author-info {
    display: flex;
    flex-direction: column;
}

.custom-author-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.custom-author-title {
    margin: 4px 0 0;
    font-size: 14px;
    color: #777;
}

.process-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #0057b8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


