/* Local Navigation */


.sidebar-sticky{
    position: sticky;
    top: 20px;
}

.sidebar{
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}


/* .blogs-detail h4, i {
    color: var(--dark);
} */
.blog-date{
        color: var(--dark);

}

.services-list li a{
text-decoration: none;
color: #000
}

.icon i {
           width: 54px;
           height: 54px;
           background: var(--dark);
           color: #fff !important;
           border-radius: 50%;
           display: flex;
           align-items: center;
           justify-content: center
         }



.service-item {
    background: var(--gray);
    border-radius: 15px;
    padding: 10px 24px;
    margin-bottom: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;
    transition: .3s ease;
}

.service-item h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* Arrow button */
.arrow-btn {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.arrow-btn i {
    font-size: 18px;
    color: #000;
}

/* Active & hover */
.service-item.active .arrow-btn,
.service-item:hover .arrow-btn {
    background: #000;
}

.service-item.active .arrow-btn i,
.service-item:hover .arrow-btn i {
    color: #fff;
}
