/* Testimonial Section Styles */
.testimonial-video-grid {
    padding: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    position: relative;
}

.video-grid::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(233, 30, 99, 0.1), rgba(48, 43, 99, 0.1));
    border-radius: 20px;
    z-index: -1;
}

.video-item {
    position: relative;
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(255,255,255,1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: #302b63;
    font-size: 20px;
    margin-left: 5px;
}

.madhav-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    padding: 5px 10px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
}

.madhav-logo img {
    height: 25px;
    width: auto;
}

.testimonial-content h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.testimonial-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.stats-container {
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.stat-icon {
    background: #e91e63;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.stat-icon i {
    color: #fff;
    font-size: 24px;
}

.stat-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    font-weight: bold;
}

.stat-content p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Additional Enhancements */
.testimonial-section {
    overflow: hidden;
    position: relative;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.video-grid {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-content {
        padding-left: 0 !important;
        text-align: center;
        margin-top: 30px;
    }
    
    .testimonial-content h2 {
        font-size: 2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .video-thumbnail img {
        height: 150px;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .testimonial-content h2 {
        font-size: 1.5rem;
    }
    
    .stat-content h3 {
        font-size: 1.2rem;
    }
}