/* Mega Menu CSS - Simple Version */


.has-mega-menu:hover .mega-menu {
    display: block;
}

.mega-menu-wrapper {
    width: 100%;
}

.mega-menu-projects {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 15px;
}

.mega-menu-projects h4 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 8px;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}



.project-item:hover, .project-item.active {
    background-color: #f0f7ff;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.project-icon {
    display: inline-block;
    margin-right: 10px;
    color: #0056b3;
}

.project-info h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.mega-menu-features {
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #eee;
}

.features-content h4 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 8px;
}

.features-container {
    display: none;
}

.feature-item {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 5px;
    background-color: #f8f9fa;
    border-left: 3px solid #0056b3;
}

.feature-item h5 {
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.feature-item p {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.sub-features {
    list-style: none;
    padding-left: 15px;
    margin-top: 10px;
    border-top: 1px dashed #ddd;
    padding-top: 8px;
}

.sub-features-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 13px;
    color: #555;
}

.sub-features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0056b3;
    font-weight: bold;
}

.no-features {
    padding: 20px;
    text-align: center;
    color: #666;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin: 10px 0;
}

.no-features i {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
    color: #999;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .project-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 767px) {
    .project-item {
        flex: 0 0 100%;
    }
}
