/* =========================================
   التنسيقات الأساسية للقسم (متجاوب بالكامل)
========================================= */
.ebatc1-stats-section {
    background-color: var(--ebatc1-primary);
    padding: var(--ebatc1-space-xl) 0;
    /* مسافة للقسم من الأعلى والأسفل */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--ebatc1-space-xl);
}

.ebatc1-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--ebatc1-space-md);
}

/* العنوان الرئيسي وكلمة التمييز */
.ebatc1-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: bold;
    color: var(--ebatc1-secondary);
}

.ebatc1-title-highlight {
    color: var(--ebatc1-white);
}

/* الخط السفلي الأنيق للعنوان  */
.ebatc1-underline {
    width: 80px;
    height: 2px;
    background-color: var(--ebatc1-secondary);
    position: relative;
}

.ebatc1-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--ebatc1-space-xl);
    /* بديل المسافات الخارجية المتكررة */
    max-width: var(--ebatc1-container-width);
    width: 100%;
}

/* =========================================
   العناصر الداخلية (البطاقات)
========================================= */
.ebatc1-orb-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--ebatc1-space-md);
    /* المسافة بين الدائرة والنص */
}

.ebatc1-orb-graphic {
    position: relative;
    width: clamp(90px, 10vw, 120px);
    /* حجم متجاوب للدائرة */
    height: clamp(90px, 10vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* تنسيق الـ SVG ليأخذ حجم الحاوية بالكامل */
.ebatc1-orb-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    /* تدوير نقطة البداية للأعلى */
}

/* التنسيق المشترك لخطوط الدائرة */
.ebatc1-circle-fill,
.ebatc1-circle-progress {
    fill: transparent;
    stroke-width: 3;
    /* سمك خط مثالي */
    stroke-dasharray: 314.16;
    /* المحيط الكامل للدائرة */
}

/* الدائرة الأساسية البيضاء */
.ebatc1-circle-fill {
    stroke: var(--ebatc1-white);
}

/* دائرة التقدم الملونة */
.ebatc1-circle-progress {
    stroke: var(--ebatc1-secondary);
    stroke-dashoffset: 314.16;
    /* الدائرة مخفية في البداية */
    transition: stroke-dashoffset 1.5s linear;
}

/* =========================================
   النصوص المتجاوبة
========================================= */
.ebatc1-orb-value {
    font-size: clamp(var(--ebatc1-fs-xl), 3vw, 2.5rem);
    font-weight: 700;
    color: var(--ebatc1-white);
    z-index: 1;
}

.ebatc1-orb-label {
    color: var(--ebatc1-white);
    text-transform: uppercase;
    font-size: clamp(var(--ebatc1-fs-sm), 1.5vw, var(--ebatc1-fs-base));
}

/* =========================================
   فئة التشغيل عند التمرير (تُضاف عبر JS)
========================================= */
.ebatc1-orb-card.ebatc1-is-animated .ebatc1-circle-progress {
    stroke-dashoffset: 0;
    /* تعبئة الدائرة بالكامل */
}