/* Custom Testimonial Section */
.custom-testimonial-section {
    background: #fff;
    padding: 100px 0;
}

/* Header */
.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header-btn {
    display: inline-block;
    background: linear-gradient(90deg, #e4f3e6 0%, #e0f0ef 100%);
    color: #4b9e8c;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.testimonial-title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.testimonial-title .text-navy {
    color: #0A2540;
}

.testimonial-title .text-orange {
    color: #F38400;
}

.title-underline {
    height: 2px;
    width: 150px;
    margin: 0 auto;
    background: linear-gradient(90deg, #0A2540 50%, #F38400 50%);
}

/* Content Area */
.testimonial-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Image */
.custom-testimonial-image {
    padding: 15px; /* space for shadow */
}

.custom-testimonial-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 15px 15px 0px 0px #e2e8f0;
    object-fit: contain;
    aspect-ratio: 1/1;
}

/* Text Content */
.custom-testimonial-content {
    padding-left: 30px;
}

.testimonial-stars {
    color: #f1c40f;
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    margin-right: 5px;
}

.testimonial-text {
    color: #888;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-author h4 {
    color: #0A2540;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #138936;
    font-size: 14px;
    font-weight: 400;
}

/* Navigation */
.testimonial-nav {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav-btn i {
    font-size: 14px;
}

.testimonial-prev {
    background: #b0bec5;
}

.testimonial-prev:hover {
    background: #90a4ae;
}

.testimonial-next {
    background: #0A2540;
}

.testimonial-next:hover {
    background: #06192d;
}

@media (max-width: 991px) {
    .custom-testimonial-content {
        padding-left: 0;
        margin-top: 40px;
    }
    .testimonial-title {
        font-size: 30px;
    }
}

