body {
    font-family: 'Tahoma', sans-serif;
    background-color: #1889ca6c;
    color: #333;
    margin: 0;
    padding: 20px;
    direction: rtl; /* جهت‌دهی راست به چپ */
    text-align: right;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 3px solid #ced4da;
}

.header h1 {
    color: #000000;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header p {
    color: #000000;
    font-size: 1.1em;
}


.bio-cards-container {
    display: flex;
    flex-wrap: wrap; /* اجازه می‌دهد کارت‌ها به خط بعدی بروند */
    gap: 20px; 
    justify-content: center; 
    padding: 0 20px;
}

.bio-card {
    flex: 1 1 300px; /* رشد کند، کوچک شود، عرض پایه 300px */
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-right: 5px solid; /* برای تمایز رنگی */
}

.bio-card:hover {
    transform: translateY(-5px); /* حرکت کوچک به بالا هنگام هاور */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.bio-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 500;
}

.category {
    display: inline-block;
    background-color: #e9ecef;
    color: #495057;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85em;
    font-weight: bold;
}

/* استایل‌های رنگی برای هر نوع کارت */
.motivational { border-right-color: #28a745; }
.artistic { border-right-color: #fd7e14; }
.tech { border-right-color: #17a2b8; }
.positive { border-right-color: #ffc107; }