/* Home — Parent Speak */
.parent-speak-section {
    position: relative;
    padding: 40px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 55%, #faf8f5 100%);
    overflow: hidden;
    font-family: 'Raleway', sans-serif;
}

.parent-speak-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 15, 144, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.parent-speak-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 147, 8, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.parent-speak-section .container {
    position: relative;
    z-index: 1;
}

.parent-speak-section__media {
    text-align: center;
    margin-bottom: 32px;
}

.parent-speak-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(72px, 12vw, 96px);
    height: clamp(72px, 12vw, 96px);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(11, 15, 144, 0.1) 0%, rgba(213, 147, 8, 0.12) 100%);
    color: #0b0f90;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.parent-speak-section__title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.75rem, 3vw, 6.25rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.parent-speak-section__title-accent {
    color: #d59308;
}

.parent-speak-section__intro {
    max-width: 720px;
    margin: 0 auto 36px;
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a4a5a;
}

.parent-speak-section__gallery {
    margin-bottom: 8px;
}

.parent-speak-section__gallery .owl-stage-outer {
    padding: 8px 4px 16px;
}

.parent-speak-section__gallery .owl-item {
    padding: 8px 6px;
}

.parent-speak-section__gallery .owl-nav {
    margin-top: 12px;
}

.parent-speak-section__gallery .owl-nav button.owl-prev,
.parent-speak-section__gallery .owl-nav button.owl-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff !important;
    border: 1px solid rgba(11, 15, 144, 0.12) !important;
    color: #0b0f90 !important;
    box-shadow: 0 4px 16px rgba(11, 15, 144, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.parent-speak-section__gallery .owl-nav button.owl-prev:hover,
.parent-speak-section__gallery .owl-nav button.owl-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 15, 144, 0.15);
}

.parent-speak-section__gallery .owl-dots {
    margin-top: 16px;
}

.parent-speak-section__gallery .owl-dot span {
    background: rgba(11, 15, 144, 0.2) !important;
}

.parent-speak-section__gallery .owl-dot.active span,
.parent-speak-section__gallery .owl-dot:hover span {
    background: #d59308 !important;
}

.parent-speak-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(11, 15, 144, 0.08);
    box-shadow: 0 8px 32px rgba(11, 15, 144, 0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parent-speak-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(11, 15, 144, 0.12);
}

.parent-speak-card__video {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #1a1a2e;
}

.parent-speak-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.parent-speak-card:hover .parent-speak-card__thumb {
    transform: scale(1.05);
}

.parent-speak-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 144, 0.05) 0%, rgba(11, 15, 144, 0.45) 100%);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.parent-speak-card:hover .parent-speak-card__overlay {
    opacity: 1;
}

.parent-speak-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(213, 147, 8, 0.92);
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, background 0.25s ease;
    z-index: 1;
}

.parent-speak-card__play:hover {
    color: #fff;
    background: #d59308;
    transform: translate(-50%, -50%) scale(1.08);
    text-decoration: none;
}

.parent-speak-card__body {
    flex: 1;
    padding: 20px 24px 24px;
    font-family: 'Raleway', sans-serif;
}

.parent-speak-card__quote {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #4a4a5a;
    margin-bottom: 14px;
    font-style: italic;
}

.parent-speak-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.parent-speak-card__subtitle {
    font-size: 0.88rem;
    color: #0b0f90;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .parent-speak-section {
        padding: 48px 0 56px;
    }

    .parent-speak-card__play {
        width: 56px;
        height: 56px;
        font-size: 1.1rem;
    }
}
