.tc-wrap-f153826a {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #f0f2f5;
    padding: 60px 0;
    overflow: hidden;
    font-family: inherit;
}

.tc-tabs-f153826a {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.tc-tabs-inner {
    display: inline-flex;
    background: #fff;
    border-radius: 40px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}

/* Base style for indicator, will be overridden by Elementor controls via !important */
.tc-tab-indicator {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    background-color: #397a9b; /* Fallback */
    border-radius: 35px;
    box-shadow: 0 4px 10px rgba(57, 122, 155, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: -1;
    pointer-events: none;
}

.tc-tab-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #88929b;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    opacity: 0.5;
    position: relative;
    z-index: 2;
}

.tc-tab-btn.active {
    color: #fff;
    opacity: 1;
    background: transparent !important; /* Ensure background is transparent so indicator shows through */
}

@media (max-width: 768px) {
    .tc-tabs-f153826a {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px 20px 20px;
        margin-bottom: 30px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .tc-tabs-f153826a::-webkit-scrollbar {
        display: none;
    }

    .tc-tabs-inner {
        flex-direction: row;
        border-radius: 40px;
        width: auto;
        max-width: none;
        flex-shrink: 0;
    }
    
    .tc-tab-btn {
        width: auto;
        border-radius: 35px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

.tc-carousel-container-f153826a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.tc-track-window {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.tc-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.tc-slide {
    flex: 0 0 65%;
    max-width: 800px;
    padding: 0 20px;
    box-sizing: border-box;
    transition: opacity 0.5s ease;
    display: none;
}

@media (max-width: 1024px) {
    .tc-slide { flex: 0 0 80%; }
}
@media (max-width: 768px) {
    .tc-slide { flex: 0 0 90%; }
}

.tc-slide.filtered-in {
    display: block;
}

.tc-card-inner {
    background: #fff;
    border-radius: 16px;
    padding: 50px 60px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tc-logo {
    max-height: 40px;
    margin-bottom: 30px;
    object-fit: contain;
}

.tc-quote {
    font-size: 20px;
    line-height: 1.6;
    color: #2b3a42;
    font-weight: 500;
    margin-bottom: 40px;
}

.tc-author-info {
    margin-top: auto;
}

.tc-author-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #397a9b;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.tc-author-desig {
    font-size: 14px;
    color: #6c7a87;
}

.tc-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #397a9b;
    transition: all 0.3s ease;
}

.tc-nav-btn svg {
    width: 24px;
    height: 24px;
    display: block;
}

.tc-nav-btn:hover {
    background: #397a9b;
    color: #fff;
}

.tc-prev { left: calc(17.5% - 60px); }
.tc-next { right: calc(17.5% - 60px); }

@media (max-width: 1024px) {
    .tc-prev { left: 20px; }
    .tc-next { right: 20px; }
}

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

.tc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd3da;
    cursor: pointer;
    transition: 0.3s ease;
}

.tc-dot.active {
    background: #397a9b;
}