/* Container */
.vb-process-wrapper {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 10px;
}

/* Header */
.vb-main-title { margin-bottom: 15px; text-transform: uppercase; color: #FFC107; font-weight:700; font-size: 32px; }
.vb-main-desc { margin-bottom: 50px; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.6; color: #fff; }

/* Navigation Row */
.vb-process-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 60px; 
    margin-bottom: 60px;
}

/* The Diamond Wrapper */
.vb-step-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: visible; 
}

/* The Diamond Shape */
.vb-step-item .vb-diamond-shape {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border: 2px solid; 
    transform: rotate(45deg);
    transition: all 0.3s ease;
    z-index: 1;
}

.vb-step-item .vb-step-text {
    position: relative; z-index: 2; font-weight: bold; pointer-events: none; padding: 5px; line-height: 1.2;
    transition: color 0.3s ease;
}

/* Active State */
.vb-step-item.active .vb-diamond-shape { transform: rotate(45deg) scale(1.05); }

/* Connector Line */
.vb-connector-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 0; 
    bottom: 0;
    width: 2px;
    background-color: #fff;
    z-index: 0; 
    opacity: 0;
    transition: all 0.3s ease;
}

.vb-step-item.active .vb-connector-line {
    opacity: 1;
}

/* CONTENT BOXES */
.vb-process-content-container {
    position: relative;
    text-align: left;
    width: 100%;
}

.vb-content-box {
    display: none;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 30px;
    width: 100%;
}
/* Note: display block is handled by JS fadeIn now, but we keep active class for styling if needed */
.vb-content-box.active { display: block; }

.vb-inner-content-wrapper { display: flex; align-items: flex-start; gap: 15px; }
.vb-badge-wrapper { flex-shrink: 0; }
.vb-step-badge { background: #0073e6; color: #fff; padding: 4px 10px; border-radius: 4px; font-weight: bold; display: inline-block; }
.vb-inner-content { line-height: 1.6; flex-grow: 1; }

@media (max-width: 768px) {
    .vb-process-nav { gap: 60px !important; margin-bottom: 20px; }
    .vb-connector-line { display: none !important; }
}