

/* Diagram Elements */
    .center-circle-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 20;
    }

.gtll {

padding: 20px;
    border-radius: 1.5rem;
    background: var(--bg-2);

}
    .main-circle {
        width: 380px;
        height: 380px;
        background: var(--brand-dark);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        box-shadow: 0 40px 80px rgba(30, 43, 88, 0.25);
        position: relative;
        border: 12px solid white;
        text-align: center;
        padding: 30px;
    }

    .main-circle::after {
        content: '';
        position: absolute;
        inset: -35px;
        border: 2px dashed var(--brand-dark);
        border-radius: 50%;
        opacity: 0.15;
        animation: rotateCircle 30s linear infinite;
    }

    @keyframes rotateCircle {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .service-item {
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        padding: 2.25rem;
        border-radius: 1.5rem;
        background: var(--white);
        border: 1px solid var(--glass-border);
        position: relative;
        z-index: 10;
        width: 100%;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .service-item:hover {
        border-color: var(--brand-dark);
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(30, 43, 88, 0.1);
    }

    .item-icon-inline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-dark);
        transition: all 0.3s ease;
        opacity: 0.8;
    }

    .service-item:hover .item-icon-inline {
        color: var(--brand-sub-red);
        transform: scale(1.1);
        opacity: 1;
    }

    /* 1400px Balance Utility */
    .max-container {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    @media (max-width: 1024px) {
        .service-item { text-align: left !important; min-height: auto; }
        .item-icon-inline { order: -1 !important; margin-right: 12px !important; margin-left: 0 !important; }
        .service-header { justify-content: flex-start !important; }
    }