.tc-bf50ca38-wrapper {
    position: relative;
    padding: 40px 20px;
    font-family: inherit;
}

.tc-bf50ca38-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.tc-bf50ca38-carousel-container {
    display: flex;
    align-items: center;
    position: relative;
    gap: 20px;
}

.tc-bf50ca38-track-wrapper {
    overflow: hidden;
    flex-grow: 1;
}

.tc-bf50ca38-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.tc-bf50ca38-slide {
    padding: 15px;
    box-sizing: border-box;
    display: flex;
}

.tc-bf50ca38-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.tc-bf50ca38-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: #155B39; /* Green color for top border on hover */
    opacity: 0;
    transition: opacity 0.3s;
}

.tc-bf50ca38-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(21, 91, 57, 0.15);
}

.tc-bf50ca38-card:hover::before {
    opacity: 1;
}

.tc-bf50ca38-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tc-bf50ca38-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, #155B39 border-box; /* Green border for avatar */
}

.tc-bf50ca38-meta {
    flex-grow: 1;
}

.tc-bf50ca38-name {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.tc-bf50ca38-designation {
    font-size: 0.85rem;
    color: #777;
    display: block;
    margin-bottom: 5px;
}

.tc-bf50ca38-stars {
    color: #FFB800;
    font-size: 14px;
}

.tc-bf50ca38-star.empty {
    color: #e0e0e0;
}

.tc-bf50ca38-content {
    flex-grow: 1;
}

.tc-bf50ca38-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin: 0;
}

.tc-bf50ca38-nav {
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #155B39;
    transition: all 0.3s;
    z-index: 10;
}

.tc-bf50ca38-nav:hover {
    background: #155B39;
    color: #fff;
}

.tc-bf50ca38-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.tc-bf50ca38-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
}

.tc-bf50ca38-dot.active {
    width: 25px;
    border-radius: 5px;
    background: #E8731F !important; /* Orange color for active pagination dot */
}

@media (max-width: 767px) {
    .tc-bf50ca38-nav { display: none; }
    .tc-bf50ca38-title { font-size: 1.5rem; }
}