.feedbacks-section {
    background-color: #D8E5E5;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 50px;
}

/* Background Shapes */
.feedback-shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 250px;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.feedback-shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 250px;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.feedback-shape-1 img,
.feedback-shape-2 img {
    width: 100%;
    height: auto;
    filter: grayscale(1) brightness(0.2) opacity(0.8);
}

/* Heading */
.feedbacks-section .container {
    position: relative;
    z-index: 1;
}

.feedbacks-heading {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feedbacks-heading .sec-title {
    font-size: 56px;
    font-weight: 600;
    color: #0b1f1e;
    line-height: 1.2;
    margin-top: 15px;
}

/* Feedback Item */
.feedback-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 1399px) {
    .feedback-item {
        padding: 35px 25px;
    }
}

.feedback-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.feedback-author-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #eee;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-text .name {
    font-size: 18px;
    font-weight: 700;
    color: #0b1f1e;
    margin-bottom: 2px;
}

.author-text .role {
    font-size: 14px;
    color: #666;
}

.star-rating {
    color: #1db9a5;
    font-size: 16px;
    letter-spacing: 2px;
}

.feedback-desc p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
}

/* Splide Custom Pagination (Line Style) */
.feedbacks-slider .splide__pagination {
    bottom: -60px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feedbacks-slider .splide__pagination__page {
    width: 12px;
    height: 4px;
    border-radius: 2px;
    background: #0b1f1e;
    opacity: 0.15;
    border: none;
    transition: all 0.3s ease;
}

.feedbacks-slider .splide__pagination__page.is-active {
    width: 40px;
    background: #1db9a5;
    opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .feedbacks-heading .sec-title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .feedbacks-heading .sec-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .feedbacks-section {
        padding: 80px 10px;
        margin-bottom: 30px;
    }

    .feedbacks-heading .sec-title {
        font-size: 32px;
    }

    .feedback-item {
        padding: 30px;
    }

    .feedback-desc p {
        font-size: 16px;
    }
}