/**
 * Two Sides Content Layout Styling
 * Refined to match mockup colors precisely
 */

.two-sides-content {
    background-color: #3452a3;
    /* Saturated Royal Blue background */
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
}

.two-sides-content .tsc-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.two-sides-content .tsc-title {
    font-family: 'Raleway', sans-serif;
    line-height: 1.1;
    font-size: 3.5rem;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
    color: #fff;
}

.two-sides-content .tsc-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 40px;
    color: #fff;
}

.two-sides-content .tsc-feature-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
}

.two-sides-content .tsc-feature-text {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.two-sides-content .tsc-bottom-desc {
    opacity: 0.8;
    margin-top: 40px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #fff;
}

/* Right Side: Toggle Cards Container */
.two-sides-content .tsc-cards-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px !important;
}

.two-sides-content .tsc-toggle-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px !important;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.two-sides-content .tsc-toggle-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.two-sides-content .tsc-card-label {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Custom Toggle Switch */
.two-sides-content .tsc-toggle-switch {
    width: 48px;
    height: 26px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.two-sides-content .tsc-toggle-switch.active {
    background: #FF9500;
    /* Vibrant Orange switch */
}

.two-sides-content .tsc-toggle-knob {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.two-sides-content .tsc-toggle-switch.active .tsc-toggle-knob {
    transform: translateX(22px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .two-sides-content {
        padding: 60px 0;
    }

    .two-sides-content .tsc-title {
        font-size: 2.5rem;
    }
}