.carousel-indicators {
    max-width: 100px;
    position: absolute;
    bottom: 15px;
    margin: 0;
    background-color: #141414;
    border-radius: 15px;
    padding: 6px 10px;
    gap: 6px;
    border: none;
    backdrop-filter: blur(2px);
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    border: none;
    background-color: #CCCCCCCC;
    margin: 0;
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
    background-color: #EB0A1E;
    width: 30px;
    opacity: 1;
}

.t-subuu-title {
    font-size: 44px;
    font-weight: 600;
}

.t-subuu-text {
    font-size: 30px;
    font-weight: 700;
}

.table-container {
    border: 3px solid #850611;
    overflow: hidden;
}

.table thead tr th {
    padding: 32px;
    font-size: 24px;
    background-color: #3A3A3A;
}

.table tbody tr:nth-child(1) td {
    background-color: #F0F6FD;
}

.table tbody tr:nth-child(2) td {
    background-color: #FFFBF0;
}

.table tbody tr:nth-child(3) td {
    background-color: #FAFAFA;
}

.table tbody tr:nth-child(4) td {
    background-color: #FFF2E7;
}

.tab-app {
    border: 12px solid #E3E3E3D6;
    border-radius: 50%;
    background-color: #fff;
    color: #6e6e6e;
}

.tab-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab-app.active {
    color: #E12020CC;
    border: 12px solid #FFE5E8;
}


.features-section {
    padding: 60px 0;
    overflow: hidden;
}

/* ── phone ── */
.phone-wrapper {
    position: relative;
    display: inline-block;
}

.phone-wrapper img {
    display: block;
}

/* ── feature box ── */
.feature-box {
    position: relative;
    padding: 8px 12px;
    margin-bottom: 32px;
}

.feature-box h5 {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.feature-box p {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* ── SVG connector canvas ── */
.connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

/* dot anchors — invisible 1×1 elements we getBoundingClientRect() on */
.dot-anchor {
    position: absolute;
    width: 1px;
    height: 1px;
}

/* right side of left column */
.feature-box.left .dot-anchor {
    right: -1px;
    top: 50%;
}

/* left side of right column */
.feature-box.right .dot-anchor {
    left: -1px;
    top: 50%;
}

.app-tab-text{
    text-align:center;
    font-size:14px;
    margin-top:5px;
    font-weight:600;
}

@media screen and (max-width: 768px) {
    .carousel-indicators {
        padding: 4px 8px;
        max-width: 75px;
    }

    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }

    .carousel-indicators [data-bs-target].active {
        width: 24px;
    }

    .t-subuu-title {
        font-size: 24px;
        font-weight: 600;
    }

    .t-subuu-text {
        font-size: 16px;
        font-weight: 400;
    }

    .app-tab-text{
        font-size:12px;
        font-weight:600;
    }
}

