/* Testimonials */
.testimonial-hero {
    background: linear-gradient(135deg, #f7f9ff, #eef3ff);
}
.stat-card {
    background: white;
    padding: 10px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.stat-card:hover {
    transform: translateY(-10px);
}
.stat-card h2 {
    font-size: 48px;
    color: #0d6efd;
    font-weight: 700;
}

.testimonial-card {
    background: white;
    padding: 15px;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-10px);
}

.stars i {
    color: #ffc107;
    margin-right: 4px;
}

.testimonial-text {
    color: #555;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.video-card img {
    width: 100%;
    /*height: 350px;*/
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    background: white;
    opacity: 0.5;
    color: #0d6efd;
    font-size: 36px;
    transition: 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.success-story-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.read-story {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}