﻿.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        z-index: 10;
    }

.marquee {
    white-space: nowrap;
    overflow: hidden;
    /*background-color: #90E0EF;*/
}

    .marquee span {
        display: inline-block;
        padding-left: 100%;
        animation: marquee 20s linear infinite;
    }

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


.testimonials-hero {
    min-height: 520px;
}


    .testimonials-hero .bg-image {
        position: absolute;
        inset: 0;
        background-image: url('/images/customer_reviews.jpg');
        background-size: cover;
        background-position: center;
        transform: scale(1.02);
    }


    .testimonials-hero .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.70) 100%);
    }


.review-card {
    border-radius: 18px;
    background: rgba(15, 25, 35, .2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    display: flex;
    flex-direction: column;
}

.stars {
    letter-spacing: 2px;
    font-size: 1rem;
    line-height: 1;
    opacity: .95;
}

.text-white-75 {
    color: rgba(255,255,255,.80);
}




.review-card {
    transition: transform .18s ease, box-shadow .18s ease;
}

    .review-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 38px rgba(0,0,0,.32);
    }


.py-lg-6 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

@media (max-width: 991.98px) {
    .py-lg-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}
