.service-card {
    border-radius: 20px;
    padding: 12px;
    height: 100%;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 30px 0px #0000000A;
    opacity: 1 !important;
    z-index: 2;
    position: relative;
    background: #fff;
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.15);
}

.services-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 3rem;
    border-bottom: 1px solid #C0EAF7;
    position: relative;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #CFCFCF;
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.filter-btn.active {
    color: #1E1E1E;
    /* Ø£Ø³ÙˆØ¯ */
}

.filter-btn.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 2px;
    background: var(--secondary-color);
}


.service-card__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.service-card__icon {
    width: 82px;
    height: 82px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -64px;
}

.service-card__icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.service-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1.5rem;
    color: var(--text-gray);
    font-weight: 400;
    text-align: right;


}