﻿/* 💬 Testimonials Section */
.testimonials-section {
    background: #000;
    color: #fff;
    position: relative;
}

.testimonial-card {
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 40px 25px;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
    }

.client-img {
    width: 100px;
    height: 100px;
    border: 3px solid #d4af37;
    object-fit: cover;
}

.bg-gold {
    background-color: #d4af37 !important;
    border-radius: 50%;
    padding: 10px;
}

.stars {
    color: #d4af37;
    font-size: 1.2rem;
}
.text-gold {
    color: #D4AF37 !important;
}

.text-secondary {
    color: #777 !important;
}

.stars i {
    margin-right: 2px;
    font-size: 18px;
}