/* Base Container */
.ppt-7fd39862-container {
    --ppt-circle-size: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    position: relative;
    background-color: #050B1F; /* Default Dark Premium */
    padding: 20px;
}

/* Individual Item */
.ppt-7fd39862-item {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ppt-7fd39862-link-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    width: 100%;
}

/* The Connecting Line (using ::after on the item) */
.ppt-7fd39862-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(var(--ppt-circle-size) / 2 - 1px);
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #3b2c68;
    z-index: -1;
    transition: all 0.3s ease;
}

/* Circle */
.ppt-7fd39862-circle {
    width: var(--ppt-circle-size);
    height: var(--ppt-circle-size);
    min-width: var(--ppt-circle-size); /* ensure it doesn't shrink */
    min-height: var(--ppt-circle-size);
    border-radius: 50%;
    background-color: #6e3fb4;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(110, 63, 180, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 2;
}

.ppt-7fd39862-circle svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    transition: all 0.3s ease;
}

/* Content Area */
.ppt-7fd39862-content {
    margin-top: 20px;
    padding: 0 15px;
}

.ppt-7fd39862-title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ppt-7fd39862-desc {
    font-size: 0.95rem;
    color: #a0aabf;
    line-height: 1.5;
}

/* Hover Effects */
.ppt-7fd39862-item:hover .ppt-7fd39862-circle {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(110, 63, 180, 0.6);
}

.ppt-7fd39862-item:hover::after {
    /* Optional effect on line hover */
}

/* Responsive */
@media (max-width: 767px) {
    .ppt-7fd39862-container {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }
    
    .ppt-7fd39862-item {
        flex-direction: row;
        width: 100%;
        text-align: left;
        margin-bottom: 30px;
    }
    
    .ppt-7fd39862-link-wrap {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .ppt-7fd39862-content {
        margin-top: 0;
        margin-left: 20px;
        padding: 0;
    }

    /* Change Line to Vertical */
    .ppt-7fd39862-item:not(:last-child)::after {
        top: calc(var(--ppt-circle-size));
        left: calc(var(--ppt-circle-size) / 2 - 1px);
        width: 2px;
        height: 100%; /* Spans the gap to the next item */
    }
}