
.testimonialArrows {
    display:flex;
    justify-content:space-between;
}
.my-testimonials {
    padding: 70px 0 00px;
}
.my-testimonials .carousel {
    padding: 52px 0;
}
.testimonial-card strong {
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
    margin-top: 25px;
    display: block;
    letter-spacing: 0.4px;
}
.my-testimonials .testimonial-card {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    max-width: 1200px;
    height: 300px;
    padding: 45px 55px;
    background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
    box-shadow:
        0 14px 30px rgba(0,0,0,0.12),
        0 6px 14px rgba(0,0,0,0.06);
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: grey;
    border: 1px solid rgba(0, 0, 0, 0.05);
transition: transform 5s ease;
}
/* Subtle hover lift */
.my-testimonials .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 14px 30px rgba(0,0,0,0.12),
        0 6px 14px rgba(0,0,0,0.06);
}

/* Name styling */
.my-testimonials .testimonial-card strong {
    display: block;
    margin-top: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: grey;
    letter-spacing: 0.3px;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    transform: translateY(-170px);
}

.testimonial-card {
    position: relative;
}

/* Arrows */
.my-testimonials .carousel-control-prev-icon,
.my-testimonials .carousel-control-next-icon {
    transition: background-color 10s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #111;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    transform: scale(1.1);
    opacity:.3;
    width: 55px;
    height: 55px;
    background: rgba(210, 210, 210, 0.5);
    opacity: 0.8;
    transition: 0.25s ease;
}
/* Hide arrows initially */
.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Optional: scale or highlight on hover */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    transform: scale(1.1);
}

/* Mobile adjustments */
@media(max-width: 768px) {
    .my-testimonials .testimonial-card {
        padding: 30px 32px;
        font-size: .95rem;
    }
}
