

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

/* Row and Column system */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-sm-8, .col-md-6 {
    padding: 0 15px;
}

.col-sm-offset-2 {
    margin-left: 16.6667%;
}

.col-md-offset-3 {
    margin-left: 25%;
}

/* Responsive */
@media (max-width: 767px) {
    .col-sm-offset-2 {
        margin-left: 0;
    }
    .col-md-offset-3 {
        margin-left: 0;
    }
}

/* Section title */
.section-title {
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-weight: 400;
    display: inline-block;
    position: relative;
}

.section-title:after,
.section-title:before {
    content: "";
    position: absolute;
    bottom: 0;
}

.section-title:after {
    height: 2px;
    background-color: rgba(252, 92, 15, 0.46);
    left: 25%;
    right: 25%;
}

.section-title:before {
    width: 15px;
    height: 15px;
    border: 3px solid #fff;
    background-color: #fc5c0f;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
    z-index: 9;
    border-radius: 50%;
}

/* Testimonials Section */
#testimonials {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 0;
}

/* Carousel */
.feedback-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feedback-slider-item {
    display: none;
    text-align: center;
    padding: 60px;
    margin-top: -40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.feedback-slider-item.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    width: 1200px;
}

.feedback-slider-item img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.customer-name {
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 500;
}

.feedback-slider-item p {
    line-height: 1.875;
}

.customer-rating {
    background-color: #eee;
    border: 3px solid #fff;
    color: rgba(1, 1, 1, 0.702);
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    width: 47px;
    height: 47px;
    line-height: 44px;
    font-size: 15px;
    right: 0;
    top: 77px;
    text-indent: -3px;
}

.customer-rating i {
    color: rgb(251, 90, 13);
    position: absolute;
    top: 10px;
    right: 5px;
    font-weight: 600;
    font-size: 12px;
}

.feedback-slider-item:after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    top: 103px;
    background-color: #f6f6f6;
    border: 1px solid rgba(251, 90, 13, 0.1);
    border-radius: 10px;
    z-index: -1;
}

/* Navigation */
.feedback-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(251, 90, 13, 0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.feedback-slider-nav:hover {
    background-color: #fc5c0f;
    transform: translateY(-50%) scale(1.1);
}

.feedback-slider-nav.prev {
    left: 10px;
}

.feedback-slider-nav.next {
    right: 10px;
}

/* Dots */
.feedback-slider-dots {
    text-align: center;
    margin-top: 20px;
}

.feedback-slider-dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin: 0 5px;
    background: #fff;
    border: 1px solid rgb(251, 90, 13);
    border-radius: 50%;
    cursor: pointer;
}

.feedback-slider-dot.active {
    background-color: rgb(251, 90, 13);
}

/* Thumbnails */
.feedback-slider-thumb {
    position: absolute;
    top: 45%;
    width: 98px;
    height: 98px;
    cursor: pointer;
    transition: all 0.3s;
}

.feedback-slider-thumb:hover {
    opacity: 0.8;
}

.thumb-prev {
    left: -90px;
}

.thumb-next {
    right: -90px;
}

.feedback-slider-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.feedback-slider-thumb .customer-rating {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive */
@media (max-width: 767px) {
    .feedback-slider-item:after {
        left: 30px;
        right: 30px;
    }
    .feedback-slider-thumb {
        display: none;
    }
    .feedback-slider-item.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    width: 350px;
    margin-left: 10px;
}
}
