﻿
:root {
    --primary: #e3493f;
    --primary-light: #ff7b73;
    --primary-dark: #b21e1e;
    --accent: #ffd166;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --dark-text: #f5f5f5;
    --dark-glass: rgba(30, 30, 30, 0.6);
    --light-bg: #f8f9fa;
    --light-card: #ffffff;
    --light-text: #333333;
    --light-glass: rgba(255, 255, 255, 0.6);
    --transition: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@font-face {
    font-family: "IRANYekan";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/iranyekan/IRANYekanXFaNum-Light.woff2") format("woff2");
}

@font-face {
    font-family: "IRANYekan";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/iranyekan/IRANYekanXFaNum-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "IRANYekan";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/iranyekan/IRANYekanXFaNum-Medium.woff2") format("woff2");
}

@font-face {
    font-family: "IRANYekan";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/iranyekan/IRANYekanXFaNum-DemiBold.woff2") format("woff2");
}

@font-face {
    font-family: "IRANYekan";
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/iranyekan/IRANYekanXFaNum-Bold.woff2") format("woff2");
}

@font-face {
    font-family: "IRANSansWeb";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/iransans/IRANSansWeb.woff2") format("woff2");
}

}
@font-face {
    font-family: "IRANSansWeb";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/iransans/IRANSansWeb.woff") format("woff");
}

@font-face {
    font-family: "IRANSansWeb";
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/iransans/IRANSansWeb.ttf") format("ttf");
}

@font-face {
    font-family: "IRANSansWeb";
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/iransans/IRANSansWeb.eot") format("eot");
}


body {
    font-family: 'IRANYekan', 'IRANSansWeb', Tahoma, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    min-height: 100vh;
    /*     padding: 20px; */
    transition: var(--transition);
}

    body.light-theme {
        background: linear-gradient(135deg, #e0e0ff 0%, #f0f8ff 100%);
        color: var(--light-text);
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /*  border-radius: 20px; */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.36);
    overflow: hidden;
    transition: var(--transition);
}

.light-theme .glass-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.light-theme .glass-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.profile-header {
    position: relative;
    height: 150px;
    /*   height: 300px; */
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.light-theme .user-name,
.light-theme .stat-value {
    color: #333;
}

.cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e3493f 0%, #ff6b6b 100%);
    opacity: 0.7;
}

.light-theme .cover-image {
    opacity: 0.8;
}

.cover-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(255,255,255,0.1) 0%, transparent 20%);
}

.profile-info {
    position: relative;
    padding: 30px;
    margin-top: -80px;
    z-index: 2;
}

.avatar-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    padding: 8px;
    box-shadow: 0 10px 30px rgba(227, 73, 63, 0.4);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}

.light-theme .avatar {
    border: 4px solid #f8f9fa;
}

.badge-premium {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(45deg, var(--accent), #ff9e58);
    color: #000;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(255, 209, 102, 0.3);
    z-index: 3;
}

.user-name {
    text-align: center;
    margin-top: 20px;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #ffd166);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

.light-theme .user-name {
    background: linear-gradient(45deg, #e3493f, #b21e1e);
    -webkit-background-clip: text;
    background-clip: text;
}

.user-name::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 10px;
}

.light-theme .user-name::after {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
}

.user-title {
    text-align: center;
    margin-top: 25px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.light-theme .user-title {
    color: rgba(0, 0, 0, 0.7);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.4rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.light-theme .social-icon {
    background: rgba(0, 0, 0, 0.05);
    color: var(--light-text);
}

.social-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(227, 73, 63, 0.4);
}

.light-theme .social-icon:hover {
    box-shadow: 0 5px 15px rgba(227, 73, 63, 0.2);
}

.social-icon:hover::before {
    opacity: 1;
}

.bio-section {
    padding: 40px;
    position: relative;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.light-theme .section-title {
    color: var(--light-text);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 10px;
}

.light-theme .section-title::after {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    text-align: justify;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

.light-theme .bio-text {
    color: rgba(0, 0, 0, 0.8);
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.light-theme .stat-value {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.light-theme .stat-label {
    color: rgba(0, 0, 0, 0.6);
}

.skills-section {
    padding: 40px;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.skill-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.light-theme .skill-badge {
    background: rgba(0, 0, 0, 0.05);
    color: var(--light-text);
}

.skill-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    transition: var(--transition);
    z-index: -1;
}

.skill-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 73, 63, 0.3);
}

.light-theme .skill-badge:hover {
    box-shadow: 0 5px 15px rgba(227, 73, 63, 0.2);
}

.skill-badge:hover::before {
    width: 100%;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 0 20px 40px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: white;
}

    .btn-primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(45deg, var(--accent), #ff9e58);
        transition: var(--transition);
        z-index: -1;
    }

    .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(227, 73, 63, 0.4);
        color: white;
    }

.light-theme .btn-primary:hover {
    box-shadow: 0 10px 20px rgba(227, 73, 63, 0.3);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.light-theme .btn-outline {
    color: var(--light-text);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(227, 73, 63, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(227, 73, 63, 0.2);
}

.light-theme .btn-outline:hover {
    box-shadow: 0 10px 20px rgba(227, 73, 63, 0.1);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: floatElement 15s infinite linear;
}

.light-theme .floating-element {
    background: rgba(0, 0, 0, 0.05);
}

@keyframes floatElement {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }

    50% {
        transform: translate(100px, 0) rotate(180deg);
    }

    75% {
        transform: translate(50px, -50px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-duration: 20s;
}

.element-2 {
    width: 50px;
    height: 50px;
    top: 70%;
    left: 80%;
    animation-duration: 25s;
}

.element-3 {
    width: 30px;
    height: 30px;
    top: 40%;
    left: 90%;
    animation-duration: 15s;
}

.element-4 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 15%;
    animation-duration: 30s;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: none;
    color: white;
    font-size: 1.5rem;
}

    .theme-toggle:hover {
        transform: rotate(30deg) scale(1.1);
    }

/* مودال فرم ارسال پیام */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.dark-theme .modal-content {
    background: var(--dark-card);
    color: var(--dark-text);
}

.light-theme .modal-content {
    background: var(--light-card);
    color: var(--light-text);
}

.modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 20px;
}

.dark-theme .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.modal-body {
    padding: 20px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.dark-theme .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--dark-text);
}

.light-theme .form-control {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--light-text);
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(227, 73, 63, 0.3);
    border-color: var(--primary);
}

.modal-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 15px 20px;
}

.dark-theme .modal-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* دکمه بستن مودال */
.btn-close {
    filter: invert(1);
}

.light-theme .btn-close {
    filter: invert(0);
}

/* استایل‌های جدید برای بخش شبکه‌های اجتماعی */
.socials-section {
    padding: 40px;
    position: relative;
}

.social-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    width: 120px;
}

.light-theme .social-item {
    background: rgba(0, 0, 0, 0.05);
}

.social-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 5px 15px rgba(227, 73, 63, 0.3);
}

.light-theme .social-item:hover {
    box-shadow: 0 5px 15px rgba(227, 73, 63, 0.2);
}

.social-item-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.social-item-name {
    font-size: 0.9rem;
    text-align: center;
}

/* استایل‌های اشتراک‌گذاری */
.share-section {
    padding: 20px 40px 40px;
    text-align: center;
}

.share-title {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.light-theme .share-button {
    background: rgba(0, 0, 0, 0.05);
}

.share-button:hover {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    transform: translateY(-3px);
}

.share-link-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.share-link {
    flex: 1;
    max-width: 400px;
    padding: 10px 15px;
    border-radius: 10px 0 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
}

.light-theme .share-link {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.05);
}

.copy-button {
    padding: 10px 15px;
    border-radius: 0 10px 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.light-theme .copy-button {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.05);
}

.copy-button:hover {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
}

.btn-secondary {
    background: linear-gradient(45deg, #ccbbba, #746666);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: white;
}

.dark-theme .p-design {
    color: #fff;
}

.light-theme .p-design {
    color: #333;
}

@media (max-width: 768px) {
    /*    .profile-header {
                height: 250px;
            } */

    .avatar-container {
        width: 150px;
        height: 150px;
    }

    .user-name {
        font-size: 1.8rem;
    }

    .bio-section, .skills-section, .socials-section {
        padding: 25px;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        min-width: 120px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px 30px;
    }

    .theme-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .social-grid {
        gap: 15px;
    }

    .social-item {
        width: 100px;
        padding: 10px;
    }

    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
}

a {
    text-decoration: none !important;
}

/* استایل‌های جدید برای طراحی خاص */
/* استایل‌های جدید برای طراحی خاص */
.social-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.social-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

    .social-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.6s;
    }

    .social-card:hover::before {
        left: 100%;
    }

    .social-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

.social-card-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.social-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
    font-size: 1.5rem;
}

.social-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.social-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.action-text {
    font-size: 0.8rem;
    opacity: 0.6;
    font-style: italic;
}

/* استایل‌های خاص برای هر پلتفرم */
.phone-card {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
    border: 1px solid rgba(76, 175, 80, 0.3);
}

    .phone-card .social-icon-wrapper {
        background: linear-gradient(135deg, #4CAF50, #45a049);
        color: white;
    }

.instagram-card {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(225, 48, 108, 0.1));
    border: 1px solid rgba(225, 48, 108, 0.3);
}

    .instagram-card .social-icon-wrapper {
        background: linear-gradient(135deg, #E1306C, #C13584);
        color: white;
    }

.whatsapp-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
    border: 1px solid rgba(37, 211, 102, 0.3);
}

    .whatsapp-card .social-icon-wrapper {
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
    }

.telegram-card {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 136, 204, 0.1));
    border: 1px solid rgba(0, 136, 204, 0.3);
}

    .telegram-card .social-icon-wrapper {
        background: linear-gradient(135deg, #0088cc, #0077b5);
        color: white;
    }

.twitter-card {
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.2), rgba(29, 161, 242, 0.1));
    border: 1px solid rgba(29, 161, 242, 0.3);
}

    .twitter-card .social-icon-wrapper {
        background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
        color: white;
    }

.linkedin-card {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.2), rgba(0, 119, 181, 0.1));
    border: 1px solid rgba(0, 119, 181, 0.3);
}

    .linkedin-card .social-icon-wrapper {
        background: linear-gradient(135deg, #0077B5, #005885);
        color: white;
    }

/* افکت‌های ویژه برای هر پلتفرم */
.pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.online-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid white;
    animation: blink 2s infinite;
}

.telegram-wave {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #0088cc;
    border-radius: 50%;
    animation: wave 3s infinite;
}

.twitter-bird {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid #1DA1F2;
    border-radius: 50%;
    animation: twitterFly 4s infinite;
}

.linkedin-badge {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid #0077B5;
    border-radius: 50%;
    animation: professionalPulse 3s infinite;
}

/* انیمیشن‌های جدید */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0.3;
    }
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes twitterFly {
    0% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.1) rotate(5deg);
    }

    50% {
        transform: scale(1.2) rotate(0deg);
    }

    75% {
        transform: scale(1.1) rotate(-5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes professionalPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

/* المان‌های دکوراتیو */
.card-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(76, 175, 80, 0.1) 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.social-card:hover .card-ripple {
    opacity: 1;
}

.instagram-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #E1306C;
    border-radius: 50%;
    animation: floatParticle 6s infinite linear;
}

    .particle:nth-child(1) {
        top: 20%;
        left: 20%;
        animation-delay: 0s;
    }

    .particle:nth-child(2) {
        top: 60%;
        left: 80%;
        animation-delay: 2s;
    }

    .particle:nth-child(3) {
        top: 80%;
        left: 40%;
        animation-delay: 4s;
    }

.message-notification {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #25D366;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    animation: bounce 2s infinite;
}

.telegram-paper-plane {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 1.2rem;
    animation: fly 5s infinite;
}

.twitter-trend {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    animation: fire 3s infinite;
}

.linkedin-connection {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 1.2rem;
    animation: handshake 4s infinite;
}

/* انیمیشن‌های المان‌های دکوراتیو */
@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

@keyframes fly {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    25% {
        transform: translateX(-5px) translateY(-5px) rotate(-5deg);
    }

    50% {
        transform: translateX(5px) translateY(-10px) rotate(5deg);
    }

    75% {
        transform: translateX(-3px) translateY(-5px) rotate(-3deg);
    }
}

@keyframes fire {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

@keyframes handshake {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

/* برای تم روشن */
.light-theme .social-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

    .light-theme .social-card:hover {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

@media (max-width: 768px) {
    .social-grid-modern {
        grid-template-columns: 1fr;
    }

    .social-card-inner {
        gap: 15px;
    }

    .social-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .social-content h3 {
        font-size: 1.1rem;
    }
}
.action-buttons  .btn-primary {
display:none;
}


