﻿.android-services {
    padding: 60px 20px;
    background-color: #fff;
}

.service-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #f6f8fc;
    width: 260px;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 0 2px transparent inset;
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 4px solid #0090d0;
    position: relative;
}

    .service-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        transform: translateY(-5px);
    }

    .service-card.active {
        background-color: #0090d0;
        color: #fff;
        border-bottom: 4px solid transparent;
    }

    .service-card .icon {
        background: #e8f1fa;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-card.active .icon {
        background-color: #fff;
    }

    .service-card p {
        font-size: 15px;
        font-weight: 600;
        color: #011d4d;
        margin: 0;
        line-height: 1.4;
    }

    .service-card.active p {
        color: #fff;
    }

    .service-card img {
        width: 32px;
        height: 32px;
    }
