.reviews-section {
    padding: 30px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    clear: both;
}

.review-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    transition: all 0.3s ease;
}

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

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.review-author {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 18px;
    color: #333;
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-content {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.review-rating {
    color: #ffc107;
    font-size: 18px;
    margin-top: 10px;
}

.reviews-carousel {
    display: block !important;
    width: 100% !important;
    position: relative !important;
    visibility: visible !important;
}

.owl-carousel {
    display: block;
    width: 100%;
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.owl-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

/* Owl Carousel Custom Navigation */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8) !important;
    color: #333 !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.owl-nav button:hover {
    background: #fff !important;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.owl-nav button i {
    display: inline-block;
    font-size: 16px;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

.owl-dots {
    margin-top: 20px;
}

.owl-dot span {
    background: #ddd !important;
    transition: all 0.3s ease;
}

.owl-dot.active span,
.owl-dot:hover span {
    background: #ff5722 !important;
    transform: scale(1.2);
}