﻿
.tc-section {
    padding: 5px 20px;
    background: #fff;
   
}

.tc-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.tc-badge {
    background: #e6f4f1;
    color: tan;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.tc-header h2 {
    margin-top: 15px;
    font-size: 36px;
}

.tc-meta {
    margin-top: 10px;
    font-size: 14px;
    /*color: #555;*/
    line-height: 1.6;
}

.tc-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap; /* IMPORTANT: one row */
    gap: 20px;
}

.tc-step {
    width: 30%;
    text-align: center;
}

.tc-circle {
    width: 60px;
    height: 60px;
    background: tan;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.tc-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.tc-step p {
    /*font-size: 14px;
    color: #666;
    line-height: 1.9;*/ /* line spacing (increase/decrease as needed) */
    text-align: justify; /* justify text */
    /*text-justify: inter-word;
    word-spacing: -1px;*/
}


.tc-line {
    width: 100px;
    height: 40px;
    margin-top: 28px;
}

    .tc-line path {
        fill: none;
        stroke: tan;
        stroke-width: 2;
        stroke-dasharray: 4 6; /* dot-dot */
    }

/* Responsive (Mobile stacks) */
@media (max-width: 992px) {
    .tc-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tc-line {
        display: none;
    }

    .tc-step {
        width: 100%;
        max-width: 500px;
    }
}

.single-row {
    white-space: nowrap; /* forces one line */
    overflow-x: auto; /* allows scroll if screen is small */
    display: block;
    font-size: 14px;
    /*color: #555;*/
}

    /* Optional: hide scrollbar but keep scroll */
    .single-row::-webkit-scrollbar {
        display: none;
    }
