/* Feedback Section */
.feedback-section {
    padding: 100px 0;
    background: linear-gradient(103deg, white 0%, #F0F3EF 100%);
}

.feedback-section .container {
    position: relative;
}

.feedback-section .feedback-icon-01 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.feedback-section .feedback-icon-02 {
    position: absolute;
    bottom: 0;
    left: -170px;
    z-index: 2;
}

.carousel-indicators [data-bs-target] {
    width: 60px;
    height: 10px;
    margin: 0 5px;
    border-radius: 999px;
    background: #CACFC8;
    opacity: 1;
    border: none;
}

.carousel-indicators .active {
    background: white;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(22%) sepia(71%) saturate(2135%) hue-rotate(211deg) brightness(80%) contrast(104%);
}

.slideshow {
    position: relative;
}

.slideshow-item {
    display: none;
    width: 100%;
}

.slideshow-item.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

.testimonial-card {
    background-image: url("../images/group-181.svg");
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px;
    height: 100%;
    position: relative;
}

.testimonial-quote {
    background-image: url("../images/group-183.svg");
    background-repeat: no-repeat;
    background-position: left;
    height: 64px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 130px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    left: 0px;
    bottom: 10px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h6 {
    color: var(--primary-orange);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.pagination-dot {
    width: 60px;
    height: 10px;
    background: #CACFC8;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-dot.active {
    background: white;
    height: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}