/* Testimonials Section - New Design */
.testimonials-two {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.testimonials-two__item {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.testimonials-two__item:hover {
    transform: translateY(-5px);
}

.testimonials-two__card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* User Info Header */
.testimonials-two__user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    position: relative;
}

.testimonials-two__avatar {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.testimonials-two__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e50c37;
}

.testimonials-two__meta {
    flex-grow: 1;
}

.testimonials-two__name {
    font-size: 18px;
    font-weight: 700;
    margin: 5px 0 2px;
    color: #333;
}

.testimonials-two__designation {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.visanet-ratings {
    font-size: 12px;
    color: #ffb400;
    margin-bottom: 2px;
}

.testimonials-two__icon {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 24px;
    color: #e5e7eb;
}

/* Quote Text Content */
.testimonials-two__text-content {
    padding-top: 5px;
}

.testimonials-two__quote {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-style: italic;
}

/* Owl Carousel Customization */
.testimonials-two__carousel .owl-dots {
    margin-top: 40px !important;
}

.testimonials-two__carousel .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: #ddd !important;
    margin: 5px 7px !important;
    transition: all 0.3s ease;
}

.testimonials-two__carousel .owl-dot.active span {
    background: #e50c37 !important;
    transform: scale(1.2);
}