/* نظام ألوان موحد - أزرق فقط */
.gradient-card {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
}

.gradient-card-dark {
    background: hsl(221.12deg 82.97% 32.53%);
}

.modern-hero {
    border-radius: 25px;
    overflow: hidden;
}

.modern-tab {
    border: none;
    background: linear-gradient(135deg, #f8f9fc 0%, #e3e6f0 100%);
    border-radius: 15px;
    margin: 0 5px;
}

.modern-tab.active {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
}

.timeline-modern {
    position: relative;
}

.timeline-step {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: 20px;
    border: 2px solid transparent;
}

.step-number {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.step-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: 20px;
    border: 1px solid #e3e6f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1) !important;
}

.executor-badge {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.requirement-item {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    border: 1px solid #e3e6f0;
    border-radius: 12px;
    padding: 12px 16px;
}

/* خلفية الصفحة */
.service-details-background {
    background: linear-gradient(135deg, #f8f9fc 0%, #e3e6f0 100%);
    min-height: 100vh;
}

/* بطاقات الإحصائيات */
/* 1. Red */
/* 1. Red */
.stats-card-1 {
    background: #ffffff;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(to left, #CE1126 90%, transparent) 1;
    border-radius: 10px 10px 0 0;
}

/* 2. White (soft visible border) */
.stats-card-2 {
    background: #ffffff;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(to left, #E0E0E0 90%, transparent) 1;
    border-radius: 10px 10px 0 0;
}

/* 3. Black */
.stats-card-3 {
    background: #ffffff;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(to left, #000000 90%, transparent) 1;
    border-radius: 10px 10px 0 0;
}

/* 4. Green */
.stats-card-4 {
    background: #ffffff;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(to left, #007A3D 90%, transparent) 1;
    border-radius: 10px 10px 0 0;
}

.stats-card-1:hover {
    border-image: linear-gradient(to left, #CE1126 100%, #CE1126) 1;
}
.stats-card-2:hover {
    border-image: linear-gradient(to left, #E0E0E0 100%, #E0E0E0) 1;
}
.stats-card-3:hover {
    border-image: linear-gradient(to left, #000000 100%, #000000) 1;
}
.stats-card-4:hover {
    border-image: linear-gradient(to left, #007A3D 100%, #007A3D) 1;
}






/* حاوية المخطط */
.chart-container {
    direction: ltr;
    overflow-x: auto;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* بطاقة المخطط */
.chart-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
}