.feedback-section {
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 0px 20px 0px 20px;
    background-color: #f9f9fd;
}

.feedback-container {
    max-width: 1140px;
    margin: 0 auto;
}

.feedback-title {
    font-size: 48px;
    color: #333;
    margin-bottom: 50px;
}

.feedback-carousel {
    position: relative;
}

.feedback-carousel-inner {
    padding: 30px 0;
}

.feedback-slide {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feedback-photo {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px; /* Fix height for the photo block */
}

.feedback-img {
    width: 400px; /* Strict width */
    height: 300px; /* Strict height */
    object-fit: cover;
    border-radius: 10px;
}

.feedback-content {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.feedback-text {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

.feedback-author {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.feedback-role {
    font-size: 16px;
    color: #888;
    margin-top: 5px;
}

/* Remove carousel arrows completely */
.feedback-control {
    display: none;
}

/* Indicators (only dots) */
.feedback-indicators {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important; /* IMPORTANT: not 100% */
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 8px !important;
}

/* Make sure you select buttons inside feedback-indicators correctly */
.feedback-indicators .feedback-indicator {
    width: 14px !important;
    height: 14px !important;
    background-color: #ccc !important;
    border: none !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

/* Active dot */
.feedback-indicators .feedback-indicator.active {
    background-color: #333 !important;
    transform: scale(1.2) !important;
}

@media (max-width: 1280px) {
    .feedback-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 60px 15px;
    }
    .feedback-title {
        font-size: 28px;
    }
    .feedback-slide {
        flex-direction: column;
    }
    .feedback-photo,
    .feedback-content {
        flex: 0 0 100%;
    }
    .feedback-img {
        width: 100%;
        height: auto;
    }
    .feedback-text {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .feedback-title {
        font-size: 22px;
    }
    .feedback-text {
        font-size: 14px;
    }
    .feedback-author {
        font-size: 18px;
    }
}

