.contact-card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 250px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: center;     /* وسط چین عمودی */
    justify-content: center; /* وسط چین افقی */
    color: #fff;
    overflow: hidden;
    padding: 20px;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 151, 210, 0.9);    z-index: 0;
}

.contact-card-content {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.85);
    color: #0e0e0e;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
}

.contact-card-content h3 {
    font-size: 26px;
    font-weight: 900;
    color: #002fa7;
    margin-bottom: 10px;
}

.contact-card-content p {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}
/* نئونی با انیمیشن درخشان */
.neon-text {
    color: #00f7ff;
    font-size: 28px;
    font-weight: bold;
    text-shadow:
            0 0 5px #00f7ff,
            0 0 10px #00f7ff,
            0 0 20px #00f7ff,
            0 0 40px #0ff,
            0 0 80px #0ff;
    animation: glow 2s ease-in-out infinite alternate;
}

/* انیمیشن درخشش */
@keyframes glow {
    from {
        text-shadow:
                0 0 5px #00f7ff,
                0 0 10px #00f7ff,
                0 0 20px #00f7ff,
                0 0 40px #0ff,
                0 0 80px #0ff;
    }
    to {
        text-shadow:
                0 0 10px #00c3ff,
                0 0 20px #00c3ff,
                0 0 30px #00c3ff,
                0 0 50px #00b8ff,
                0 0 90px #00b8ff;
    }
}
.contact-title {
    margin-right: 50px;
}
