/* Success Stories Section - Base */
.testimonials-section {
    padding: 0 2rem 5rem 2rem;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.testimonials-outer-box {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding: 4rem 3rem;
    border: 2px solid #00f6fe;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 246, 254, 0.2), inset 0 0 10px rgba(0, 246, 254, 0.1);
    background: rgba(1, 6, 28, 0.8);
    animation: testimonialBoxGlow 4s ease-in-out infinite alternate;
    text-align: center;
}

@keyframes testimonialBoxGlow {
    from {
        box-shadow: 0 0 15px rgba(0, 246, 254, 0.2), inset 0 0 10px rgba(0, 246, 254, 0.1);
        border-color: rgba(0, 246, 254, 0.5);
    }

    to {
        box-shadow: 0 0 30px rgba(0, 246, 254, 0.5), inset 0 0 15px rgba(0, 246, 254, 0.2);
        border-color: rgba(0, 246, 254, 1);
    }
}