:root {
    --glass-bg: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.15);
    --neon: #00ffd5;
}

/* ===== عنوان ===== */
h1 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
                animation: fadeInDown 1s ease forwards;

}

h1::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon), transparent);
    display: block;
    margin: 12px auto 0;
    border-radius: 20px;
}

/* ===== کارت اصلی ===== */
.about-card {
    max-width: 650px;
    margin: 40px auto;
    padding: 30px;

    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid var(--glass-border);
    border-radius: 10px;

    color: white;
    text-align: center;

    box-shadow: 0 10px 35px rgba(0,0,0,0.4);

    animation: fadeIn 0.8s ease;
}

/* ===== عکس پروفایل ===== */
.profile-img-wrapper img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;

    border: 2px solid rgba(0,255,213,0.4);

    box-shadow: 0 8px 20px rgba(0,0,0,0.25);

    margin-bottom: 15px;

    transition: 0.3s ease;
}

.profile-img-wrapper img:hover {
    transform: scale(1.05);
}

/* ===== اسم ===== */
.about-card h3 {
    margin: 10px 0 15px;
    font-weight: bold;
    color: var(--neon);
}

/* ===== متن ===== */
.about-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 12px;
    text-align: justify;
}

/* ===== بخش تماس ===== */
.contact-section {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);

    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* آیتم تماس */
.contact-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    padding: 10px 14px;
    border-radius: 12px;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);

    color: white;

    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--neon);
    transform: translateY(-2px);
    background: rgba(0,255,213,0.08);
    box-shadow: 0 0 12px rgba(0,255,213,0.15);
}

.contact-item span {
    direction: ltr;
    font-weight: bold;
}

/* ===== انیمیشن ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

a{
    text-decoration: none;
}