.parents-full-bg {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(90deg, #fceabb 0%, #f8b500 100%);
    padding: 60px 0;
    position: relative;
    z-index: 1;
}
/* Modern Parents Say Section Styles */
.modern-parents-section {
    background: linear-gradient(90deg, #f8faff 0%, #e3f0ff 100%);
    padding: 64px 0 56px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 340px;
    position: relative;
    overflow: hidden;
}
.modern-parents-content {
    background: #ebb6b6;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(26,35,126,0.10);
    padding: 48px 56px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeUp 1.2s cubic-bezier(.23,1,.32,1);
}
.modern-parents-title {
    font-size: 2.3rem;
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.modern-parents-testimonials {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}
.modern-testimonial-box {
    background: linear-gradient(120deg, #e3f0ff 0%, #fff 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(26,35,126,0.08);
    padding: 32px 24px 24px 24px;
    min-width: 220px;
    max-width: 280px;
    flex: 1 1 220px;
    text-align: left;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: fadeUp 1.2s cubic-bezier(.23,1,.32,1);
}
.modern-testimonial-box:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 6px 24px rgba(26,35,126,0.12);
}
.modern-testimonial-box strong {
    font-size: 1.1rem;
    color: #3949ab;
    margin-bottom: 8px;
    display: block;
}
.modern-testimonial-box p {
    font-size: 1.05rem;
    color: #333;
    margin-top: 6px;
    line-height: 1.6;
}
.modern-testimonial-quote {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 2.2rem;
    color: #90caf9;
    opacity: 0.4;
    pointer-events: none;
}
@media (max-width: 900px) {
    .modern-parents-content {
        padding: 32px 8px;
        max-width: 98vw;
    }
    .modern-parents-title {
        font-size: 1.6rem;
    }
    .modern-parents-testimonials {
        gap: 16px;
    }
    .modern-testimonial-box {
        min-width: 180px;
        max-width: 98vw;
        padding: 20px 8px 16px 8px;
    }
}
