/* --- TESTIMONIAL BRUTALIST DESIGN --- */
.testimonial-brutalist-card {
    background: #ffffff;
    padding: 40px;
    border: 3px solid #243A6A;
    border-radius: 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 10px 10px 0px 0px #edf2f7; /* Thick subtle shadow */
}

.testimonial-brutalist-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px 0px #243A6A;
    border-color: #E4002B;
}

/* Floating Quote Icon */
.quote-accent {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #f1f5f9;
    z-index: 0;
    transition: 0.3s ease;
}

.testimonial-brutalist-card:hover .quote-accent {
    color: #E4002B;
    opacity: 0.1;
    transform: rotate(-15deg);
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .testimonial-brutalist-card {
        padding: 25px;
        border-radius: 24px;
        box-shadow: 6px 6px 0px 0px #edf2f7;
    }
    
    .testimonial-brutalist-card:hover {
        box-shadow: 8px 8px 0px 0px #243A6A;
    }

    .testimonials-section h2 {
        font-size: 2.5rem !important;
    }
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
    /* Forces hardware acceleration on mobile */
    will-change: transform;
}

/* Ensure the marquee doesn't cause page-wide horizontal scrolling */
.marquee-container {
    overflow-x: hidden !important;
    display: flex;
    width: 100%;
}

@media (max-width: 768px) {
    .animate-marquee {
        animation-duration: 20s; /* Faster scroll on small screens */
    }
}