.elementor-13001 .elementor-element.elementor-element-9d3af8e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8c2c610 *//* فایل styles.css */

/* تنظیمات عمومی */
body {
    margin: 0;
    font-family: sans-serif;
    text-align: center;
    direction: rtl;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* حالت تم روشن */
body.light-mode {
    background: #f4f9ff;
    color: #333;
}

/* حالت تم تاریک */
body.dark-mode {
    background: #121212;
    color: #f4f9ff;
}

/* هدر */
.header {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    width: 150px;
    height: auto;
}

/* بخش معرفی */
.introduction {
    padding: 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #007bff, #88b1ff);
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.intro-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 600px;
}

/* کارت‌ها */
.tests {
    padding: 2rem;
}

.test-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.test-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}

.test-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.test-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.test-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.test-card p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: inherit;
}

.test-card button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 25px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    transition: background-color 0.3s ease;
}

.test-card button i {
    font-size: 0.9rem;
    position: relative;
    top: 0; /* به وسط دکمه منتقل می‌شود */
}

.test-card button:hover {
    background: #0056b3;
}

/* فوتر */
.footer {
    background: rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #fd1d1d, #833ab4, #fcb045);
    color: white;
}

.social-icon.telegram {
    background: linear-gradient(135deg, #00bfff, #0088cc);
    color: white;
}

.social-icons a:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}/* End custom CSS */