.hub-container-790c7f43 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    gap: 40px;
}

.hub-col-790c7f43 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 35%;
    z-index: 2;
}

.hub-card-790c7f43 {
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #14141e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hub-card-790c7f43:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Minimalist Flat Icon styling (Glow is completely removed) */
.hub-icon-wrapper-790c7f43 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent !important;
    border: 1.5px solid rgba(255, 204, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: none !important;
    text-shadow: none !important;
}

.hub-icon-790c7f43 svg {
    width: 18px;
    height: 18px;
}

.hub-card-790c7f43 h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.hub-card-790c7f43 p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.hub-center-790c7f43 {
    position: relative;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

/* Flat background color config & dynamic styling controls */
.hub-center-circle-790c7f43 {
    width: 120px;
    height: 120px;
    background: #ffd43f;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    z-index: 3;
    padding: 24px;
    box-sizing: border-box;
}

.hub-center-circle-790c7f43 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* SVG Line Canvas Overlay (Invisible pointer box) */
.hub-svg-lines-790c7f43 {
    position: absolute;
    top: 0;
    left: -100px;
    width: calc(100% + 200px);
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.hub-line-790c7f43 {
    fill: none;
    animation: hubDash_790c7f43 20s linear infinite;
    stroke-linejoin: miter;
    stroke-linecap: square;
}

@keyframes hubDash_790c7f43 {
    to {
        stroke-dashoffset: -1000;
    }
}

@media (max-width: 991px) {
    .hub-container-790c7f43 {
        flex-direction: column;
        gap: 30px;
    }
    .hub-col-790c7f43 {
        width: 100%;
    }
    .hub-center-790c7f43 {
        width: 100%;
        min-height: auto;
        margin: 30px 0;
    }
    .hub-svg-lines-790c7f43 {
        display: none;
    }
}
