﻿

.social-card-container {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    padding: 50px 0;
    background: #e0f0ff;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: linear-gradient(145deg, #007BFF, #00CFFF);
    border-radius: 20px;
    width: 260px;
    padding: 20px;
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(60px);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
    transition: transform 1.2s ease, opacity 1.2s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

    .card.show {
        opacity: 1;
        transform: translateY(0);
    }

    .card .icon img {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
        transform: translateX(50px);
        opacity: 0;
        filter: drop-shadow(0 0 10px rgba(0,255,255,0.5));
        transition: transform 1.2s ease, opacity 1.2s ease, filter 0.3s ease;
    }

    .card.show .icon img {
        transform: translateX(0);
        opacity: 1;
    }

    .card.active {
        background: white;
        color: #007BFF;
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

        .card.active .icon img {
            transform: scale(1.3);
            filter: drop-shadow(0 0 15px rgba(0,123,255,0.7));
        }

    .card .title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .card .desc {
        font-size: 13px;
    }

    .card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 15px 30px rgba(0,123,255,0.4);
    }

@media (max-width: 768px) {
    .card {
        width: 100%;
    }
}
