  

    :root {
        --primary-color: #014D84;
        /* رنگ آبی تیره مطابق عکس */
        --hover-color: #007bff;
        --text-color: #333;
        --background-light: #f8f9fa;
    }

  

    .tabs-container {
        display: flex;
        justify-content: center;
        gap: 12%;
        padding: 30px 20px 10px;
        background-color: #F3F7FA;
        flex-wrap: wrap;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .tab {
        position: relative;
        text-align: center;
        cursor: pointer;
        transition: 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .tab .active {
     position: relative;
        text-align: center;
        cursor: pointer;
        transition: 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tab .icon-line {
        width: 30vh;
        height: 3px;
        background-color: #41959B;
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 0;
    }
    .tab .active .icon-line {
            width: 30vh;
        height: 3px;
        background-color: #41959B;
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 0;
    }

    .tab .icon-circle {
        width: 70px;
        height: 70px;
        background-color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        position: relative;
        z-index: 1;
    }



    .tab .active .icon-circle{
         width: 70px;
        height: 70px;
        background-color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        position: relative;
        z-index: 1;
    }

    .tab .icon-circle i {
        font-size: 28px;
        color: #555;
        transition: color 0.3s ease;
    }
    .tab .active .icon-circle i {
         font-size: 28px;
        color: #555;
        transition: color 0.3s ease;
    }

    /* نمایش خط هنگام هاور یا اکتیو */
    .tab:hover .icon-line,
    .tab.active .icon-line {
        opacity: 1;
    }

      .tab .active :hover .icon-line,
    .tab .active .active .icon-line {
        opacity: 1;
    }

    /* تغییر رنگ دایره و آیکون */
    .tab:hover .icon-circle,
    .tab.active .icon-circle {
        background-color: #41959B;
    }

 .tab .active :hover .icon-circle,
    .tab .active .active .icon-circle {
        background-color: #41959B;
    }

    .tab:hover .icon-circle i,
    .tab.active .icon-circle i {
        color: white;
    }
    .tab .active :hover .icon-circle i,
    .tab .active .active .icon-circle i {
        color: white;
    }

    .tab:hover .icon-circle::after,
    .tab.active .icon-circle::after {
        opacity: 1;
    }

    .tab .active :hover .icon-circle::after,
    .tab .active .active .icon-circle::after {
        opacity: 1;
    }

    .tab span {
        font-weight: bold;
        color: var(--text-color);
    }
    
    .tab .active span {
        font-weight: bold;
        color: var(--text-color);
    }

    .tab:hover span,
    .tab.active span {
        color: var(--primary-color);
    }

    .tab .active :hover span,
    .tab .active .active span {
        color: var(--primary-color);
    }

    .content {
        background-color: #fff;
        padding: 30px 20px;
        margin: 0 10px 40px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .tab-content {
        display: none;
    }
    .tab-content active  {
display: none;
    }
    .tab-content active .active {
        display: block;
        animation: fadeIn 0.4s ease;
    }

    .tab-content.active {
        display: block;
        animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #map {
        height: 300px;
        width: 100%;
        border-radius: 8px;
        border: 1px solid #ccc;
    }

    @media (max-width: 768px) {
        .tabs-container {
            gap: 20px;
        }
    }



    .tab-content.active .mohtava:nth-child(even) {
        background-color: #ffffff;
        padding: 10px;
        border-radius: 0px;
        border-bottom-style: solid;
        border-width: 1px;
        height: 5vh;
        border-color: #bcbcbc99;
    }
    
    .tab-content .active .active .mohtava:nth-child(even) {
        background-color: #ffffff;
        padding: 10px;
        border-radius: 0px;
        border-bottom-style: solid;
        border-width: 1px;
        height: 5vh;
        border-color: #bcbcbc99;
    }

    .tab-content.active .mohtava:nth-child(odd) {
        background-color: #f1f3f5;
        padding: 10px;
        border-radius: 0px;
        height: 5vh;

    }


    .tab-content .active .active .mohtava:nth-child(odd) {
        background-color: #f1f3f5;
        padding: 10px;
        border-radius: 0px;
        height: 5vh;

    }

    .li-ditail {
        display: flex;
        justify-content: center;
    }
    .text-map{
        display: flex;
        justify-content: center;
    }

    .row .col {
        flex: 0 0 50%;
        padding: 10px;
        box-sizing: border-box;
    }

    .row .pair:nth-child(4n), 
    .row .pair:nth-child(4n+1) {
        background-color: #f5f5f5;
        color: #333;
    }

    .row .pair:nth-child(4n+2), 
    .row .pair:nth-child(4n+3) {
        background-color: #2c3e50;
        color: #fff;
    }
.tab.active .icon-line {
    opacity: 1;
}

.tab.active .icon-circle {
    background-color: #41959B;
}

.tab.active .icon-circle i {
    color: white;
}

.tab.active span {
    color: var(--primary-color);
}
.tab:hover .icon-line {
    opacity: 1;
}

.tab:hover .icon-circle {
    background-color: #41959B;
}

.tab:hover .icon-circle i {
    color: white;
}

.tab:hover span {
    color: var(--primary-color);
}
