﻿/* 💈 Testimonials Section */
.testimonials-section {
    background-color: #111;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    max-width: 600px;
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
    transition: transform 0.4s ease;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    }

.testimonial-img {
    width: 90px;
    height: 90px;
    border: 2px solid var(--gold);
    object-fit: cover;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #ccc;
    margin: 20px 0;
    font-style: italic;
}

.stars {
    font-size: 1.2rem;
    letter-spacing: 3px;
}

/* Carousel controls in gold */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(75%) sepia(75%) saturate(600%) hue-rotate(20deg);
}
