.custom-testimonial-section {
    position: relative;
    width: 100%;
    min-height: 1000px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: #fff;
    transition: background 0.5s ease-in-out;
    padding: 80px 40px; /* Padding for better text spacing */
}

.testimonial-content-wrapper {
    max-width: 1600px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.testimonial-quote {
    font-size: 30px;
    font-weight: bold;
    max-width: 900px;
    margin: 0 auto 20px auto;
    line-height: 1.4;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.author {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.author:hover {
    transform: scale(1.1);
}

.author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

.author p {
    margin-top: 10px;
    font-size: 16px;
}
