
.sec-services.section {
    padding-top: 60px;
    padding-bottom: 0;
}

.sec-services__circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.6);
    padding: 25px;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-200px);
    z-index: 5;
}

.sec-services__circle:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    cursor: pointer;
}

.sec-services__circle:nth-child(1) {
    bottom: 0;
    height: 260px;
    left: 0;
    width: 260px;
}

.sec-services__circle:nth-child(2) {
    bottom: 0;
    height: 280px;
    left: 405px;
    width: 280px;
}

.sec-services__circle:nth-child(3) {
    bottom: 0;
    height: 140px;
    left: 250px;
    width: 140px;
}

.sec-services__circle:nth-child(4) {
    bottom: 254px;
    height: 160px;
    left: 0;
    width: 160px;
}

.sec-services__circle:nth-child(5) {
    bottom: 145px;
    height: 200px;
    left: 229px;
    width: 200px;
}

.sec-services__circle:nth-child(6) {
    bottom: 0;
    height: 200px;
    left: 464px;
    width: 200px;
}

.sec-services__circle:nth-child(7) {
    bottom: 220px;
    height: 180px;
    left: 160px;
    width: 180px;
}

.sec-services__circle:nth-child(8) {
    bottom: 152px;
    height: 200px;
    left: 334px;
    width: 200px;
}


.sec-services__circle img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sec-services__circle p {
    margin: 0;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.2;
}

.sec-services .sec-title {
    font-size: 1.2rem;
}

.inner-sec-services {
    padding-top: 30px;
    border-top: 1px solid #d0d0d0;
}

.service-list {
    position: relative;
    z-index: 1;
}

.service-item {
    padding-top: 30px;
    padding-bottom: 50px;
    border-top: 1px solid #d0d0d0;
}

.service-item:first-child {
    padding-top: 0;
    border-top: none;
}

.title-service {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.desc-service ol {
    padding-left: 20px;
    margin-bottom: 0;
    counter-reset: desc-counter; /* Khởi tạo counter */
    display: flex;
    flex-direction: column;
    gap: 0 20px;
    color: var(--gray-color);
}

.desc-service ol li {
    counter-increment: desc-counter; /* Tăng counter mỗi li */
    font-size: 0.9rem;
    line-height: 1;
    margin-top: 0.5rem;
    padding-left: 20px; /* chừa chỗ cho số */
    position: relative;
}

.desc-service ol li::before {
    content: counter(desc-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
}

.desc-service ul li::marker {
    color: var(--primary-color);
}

/* Container hover */
.mdw-table-hover {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 9999999;
    pointer-events: none;
}

/* Khi hover */
.mdw-table-hover.showing {
    opacity: 1;
    pointer-events: auto;
}

.mdw-hover-inner {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

/* Nút hover */
.hover-btn {
    font-size: 24px;
    display: inline-block;
    color: #FFFFFF;
    transition: background 0.3s;

}

@media (min-width: 768px) {
    .sec-services.section {
        padding-bottom: 120px;
    }
}

@media (min-width: 1024px) {
    .sec-services.section {
        padding-top: 110px;
        padding-bottom: 120px;
    }
}

@media (max-width: 993px) {
    .sec-services__circle:nth-child(1) {
        bottom: 0;
        height: 200px;
        left: 0;
        width: 200px;
    }

    .sec-services__circle:nth-child(2) {
        bottom: 0;
        height: 220px;
        left: 309px;
        width: 220px;
    }

    .sec-services__circle:nth-child(3) {
        bottom: 0;
        height: 120px;
        left: 196px;
        width: 120px;
    }

    .sec-services__circle:nth-child(4) {
        bottom: 200px;
        height: 160px;
        left: 0;
        width: 160px;
    }

    .sec-services__circle:nth-child(5) {
        bottom: 120px;
        height: 160px;
        left: 170px;
        width: 160px;
    }
}

@media (max-width: 767px) {
    .sec-services.section {
        padding-bottom: 220px;
    }

    .sec-services__circle:nth-child(1) {
        bottom: 0;
        height: 180px;
        left: 0;
        width: 180px;
    }

    .sec-services__circle:nth-child(2) {
        bottom: 0;
        height: 200px;
        left: 284px;
        width: 200px;
    }

    .sec-services__circle:nth-child(3) {
        bottom: 0;
        height: 100px;
        left: 175px;
        width: 100px;
    }

    .sec-services__circle:nth-child(4) {
        bottom: 180px;
        height: 140px;
        left: 0;
        width: 140px;
    }

    .sec-services__circle:nth-child(5) {
        bottom: 100px;
        height: 140px;
        left: 158px;
        width: 140px;
    }

    .mdw-table-portfolio .mdw-table-hover-images {
        display: none;
    }
}

@media (max-width: 575px) {
    .sec-services.section {
        padding-bottom: 210px;
    }

    .sec-services__circle:nth-child(1) {
        bottom: 0;
        height: 140px;
        left: 0;
        width: 140px;
    }

    .sec-services__circle:nth-child(2) {
        bottom: 0;
        height: 120px;
        left: 140px;
        width: 120px;
    }

    .sec-services__circle:nth-child(3) {
        bottom: 0;
        height: 100px;
        left: 260px;
        width: 100px;
    }

    .sec-services__circle:nth-child(4) {
        bottom: 111px;
        height: 130px;
        left: 88px;
        width: 130px;
    }

    .sec-services__circle:nth-child(5) {
        bottom: 93px;
        height: 110px;
        left: 218px;
        width: 110px;
    }

    .service-item .left-service {
        width: 100%;
    }
}