/* Work Breakdown Structure Styles */
.wbs-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
}

.wbs-main-card {
    width: 100%;
    max-width: 900px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Make connectors invisible */
.wbs-connector {
    position: relative;
    width: 2px;
    height: 50px;
    background: transparent; /* Invisible */
    margin: 0 auto 30px;
}

.wbs-branch {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.wbs-branch::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 80%;
    height: 1px;
    background: transparent; /* Invisible */
    transform: translateX(-50%);
}

.wbs-branch-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.wbs-branch-item {
    position: relative;
}

.wbs-branch-item::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 1px;
    height: 30px;
    background: transparent; /* Invisible */
    transform: translateX(-50%);
}akdown Structure Styles */
.wbs-container {
    padding-bottom: 2rem;
}

/* Grid layout adjustments for the products section */
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lg\:col-span-3 {
    grid-column: span 3 / span 3;
}

@media (min-width: 768px) {
    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

/* Enhanced Styling */
.wbs-main-card .strategic-guidance-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.wbs-main-card .strategic-guidance-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.wbs-branch-item .strategic-guidance-card {
    transition: all 0.3s ease;
}

.wbs-branch-item .strategic-guidance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Ensure consistent margins */
.mb-16 {
    margin-bottom: 4rem;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.4;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wbs-branch-items {
        grid-template-columns: 1fr;
    }
    
    .wbs-branch::before {
        width: 50%;
    }
    
    .wbs-branch-item:first-child::before {
        left: 50%;
    }
    
    .wbs-branch-item:last-child::before {
        left: 50%;
    }
}
