/* ڕێکخستنی بنەڕەتی */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Speda', Tahoma, sans-serif;
    background-color: #f0f2f5;
    color: #1a202c;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    direction: rtl;
}

.container {
    width: 90%;
    max-width: 1200px;
    padding: 40px 0;
}

/* سەرپەڕە (Header) */
.main-header {
    text-align: center;
    margin-bottom: 50px;
}

.company-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.main-header h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 5px;
}

.main-header p {
    color: #718096;
    font-size: 1.1rem;
}

/* ستایڵی ڕستەی هەڵبژاردن */
.selection-title {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.selection-title::before, .selection-title::after {
    content: "";
    height: 1px;
    width: 80px;
    background: linear-gradient(to right, transparent, #cbd5e0, transparent);
}

.selection-title span {
    background: #ffffff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 1rem;
    color: #fa0343;
    font-weight: bold;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

/* Grid Layout */
.dashboard-wrapper {
    display: flex;
    justify-content: center;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    width: 100%;
}

/* ستایڵی کارتەکان */
.card {
    background: #ffffff;
    border-radius: 25px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #edf2f7;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #3182ce;
}

/* ئایکۆنەکان */
.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-left: 20px;
    flex-shrink: 0;
    overflow: hidden;
}

.icon-blue { background-color: #ebf8ff; color: #3182ce; }
.icon-purple { background-color: #faf5ff; color: #805ad5; }
.icon-green { background-color: #f0fff4; color: #38a169; }

/* ناوەڕۆکی کارت - تێکستەکان دەخاتە ناوەڕاست */
.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #2d3748;
}

.card-content p {
    font-size: 0.85rem;
    color: #900224;
}

/* فووتەر */
.main-footer {
    margin-top: 60px;
    text-align: center;
}

.dev-tag {
    background: #ffffff;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 0.9rem;
    color: #4a5568;
}

.dev-tag strong {
    color: #3182ce;
}