/* Robot Sidebar Styles - Based on Apexa Template */
.services__sidebar.robot-sidebar {
    margin-top: 0;
}

.sidebar__widget {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar__widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
}

.sidebar__widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #dc3545; /* NACHI red color */
}

.sidebar__cat-list-two .list-wrap {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar__cat-list-two .list-wrap li {
    margin-bottom: 10px;
}

.sidebar__cat-list-two .list-wrap li:last-child {
    margin-bottom: 0;
}

.sidebar__cat-list-two .list-wrap li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 6px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar__cat-list-two .list-wrap li a:hover,
.sidebar__cat-list-two .list-wrap li.active a {
    background: #dc3545;
    color: #fff;
    transform: translateX(5px);
}

.sidebar__cat-list-two .list-wrap li a i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.sidebar__cat-list-two .list-wrap li a:hover i,
.sidebar__cat-list-two .list-wrap li.active a i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 991px) {
    .services__sidebar.robot-sidebar {
        margin-top: 40px;
    }
}

