.testimonial-page {
    overflow: hidden;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--sky-blue);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.testimonial-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(20, 33, 61, 0.92), rgba(20, 33, 61, 0.72), rgba(20, 33, 61, 0.35)),
        url("../img/carousel-2.jpg") center center / cover no-repeat;
}

.testimonial-hero p {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.7;
}

.intro-section {
    background: #ffffff;
}

.image-panel {
    position: relative;
}

.image-panel img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.floating-box {
    position: absolute;
    right: 30px;
    bottom: 30px;
    max-width: 360px;
    padding: 28px;
    background: #ffffff;
    border-left: 5px solid var(--sky-blue);
    box-shadow: 0 15px 45px rgba(20, 33, 61, 0.16);
}

.testimonial-grid-section {
    background:
        linear-gradient(rgba(245, 248, 255, 0.96), rgba(245, 248, 255, 0.96)),
        url("../img/service-2.jpg") center center / cover no-repeat;
}

.testimonial-card {
    height: 100%;
    padding: 32px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(20, 33, 61, 0.08);
    transition: 0.35s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 55px rgba(20, 33, 61, 0.14);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.testimonial-top img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-top h5 {
    margin-bottom: 4px;
}

.testimonial-top span {
    color: var(--sky-blue);
    font-weight: 700;
    font-size: 14px;
}

.testimonial-card p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.stars i {
    color: #f5b301;
    margin-right: 3px;
}

.service-proof-section {
    background:
        linear-gradient(rgba(20, 33, 61, 0.9), rgba(20, 33, 61, 0.9)),
        url("../img/feature.jpg") center center / cover no-repeat;
}

.proof-card {
    height: 100%;
    padding: 32px;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    transition: 0.35s;
}

.proof-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
}

.proof-card i {
    margin-bottom: 20px;
    color: var(--sky-blue);
    font-size: 42px;
}

.proof-card p {
    margin-bottom: 0;
}

.case-section {
    background: #ffffff;
}

.case-list {
    display: grid;
    gap: 20px;
}

.case-item {
    display: flex;
    gap: 22px;
    padding: 28px;
    background: var(--light);
    border-left: 4px solid var(--sky-blue);
    transition: 0.35s;
}

.case-item:hover {
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(20, 33, 61, 0.1);
    transform: translateY(-4px);
}

.case-item span {
    min-width: 56px;
    color: var(--sky-blue);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.case-item p {
    margin-bottom: 0;
}

.faq-section {
    background:
        linear-gradient(rgba(245, 248, 255, 0.96), rgba(245, 248, 255, 0.96)),
        url("../img/service-6.jpg") center center / cover no-repeat;
}

.faq-card {
    height: 100%;
    padding: 30px;
    background: #ffffff;
    border-left: 4px solid var(--sky-blue);
    box-shadow: 0 10px 35px rgba(20, 33, 61, 0.08);
    transition: 0.35s;
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(20, 33, 61, 0.12);
}

.faq-card p {
    margin-bottom: 0;
}

.cta-section {
    background:
        linear-gradient(135deg, rgba(20, 33, 61, 0.92), rgba(40, 94, 167, 0.88)),
        url("../img/carousel-1.jpg") center center / cover no-repeat;
}

@media (max-width: 991.98px) {
    .testimonial-hero {
        min-height: 460px;
    }

    .testimonial-hero p {
        font-size: 17px;
    }

    .image-panel img {
        min-height: 400px;
    }
}

@media (max-width: 575.98px) {
    .testimonial-hero h1 {
        font-size: 38px;
    }

    .image-panel img {
        min-height: 320px;
    }

    .floating-box {
        position: static;
        max-width: 100%;
        margin-top: 20px;
    }

    .testimonial-card,
    .proof-card,
    .case-item,
    .faq-card {
        padding: 24px;
    }

    .case-item {
        flex-direction: column;
        gap: 12px;
    }
}