.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-20238 .elementor-element.elementor-element-76ed82f0{text-align:end;}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}/* Start custom CSS for section, class: .elementor-element-f6a892e *//* متغيرات الألوان */
:root {
  --color-primary: #009689;
  --color-primary-dark: #018076;
  --color-primary-lite: #04CEBF;
  --color-accent: #D3F5F3;
  --color-text-white: #FFFFFF;
  --color-text-black: #000000;
  --color-link-active: #2E67F5;
  --color-link-hover: #0035BA;
}

/* تصميم حاوية الإحصائيات */
.stats-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 150, 137, 0.1);
  margin: 30px 0;
  border: 1px solid rgba(0, 150, 137, 0.1);
  position: relative;
  overflow: hidden;
  direction: rtl;
}

.stats-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #04CEBF, #009689, #018076);
  z-index: 1;
}

/* عنوان الإحصائيات */
.stats-title {
  text-align: center;
  color: var(--color-primary-dark);
  font-size: 2rem;
  margin-bottom: 40px;
  padding-bottom: 15px;
  position: relative;
  font-weight: 700;
}

.stats-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #04CEBF, #009689);
  border-radius: 3px;
}

/* شبكة الإحصائيات */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

/* تصميم بطاقة الإحصائية */
.stat-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--card-color);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 150, 137, 0.15);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--card-color) 0%, transparent 100%);
  opacity: 0.05;
  z-index: 0;
}

/* الأيقونة */
.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* محتوى البطاقة */
.stat-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.stat-label {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.4;
  min-height: 40px;
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--card-color);
  margin: 10px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  display: inline-block;
}

.stat-value::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 50%;
  transform: translateX(50%);
  width: 50px;
  height: 3px;
  background: var(--card-color);
  border-radius: 3px;
  opacity: 0.5;
}

.stat-subtitle {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 5px;
}

/* شريط التقدم المتحرك */
.stat-progress {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.stat-progress::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--card-color);
  animation: progress-animation 2s ease-in-out infinite;
  transform: translateX(-100%);
}

@keyframes progress-animation {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ملخص الإحصائيات */
.stats-summary {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
  border: 2px dashed var(--color-accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--color-accent) 0%, rgba(4, 206, 191, 0.2) 100%);
  border-radius: 8px;
  border: 1px solid rgba(0, 150, 137, 0.2);
}

.summary-label {
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 1rem;
}

.summary-value {
  background: var(--color-primary);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 3px 10px rgba(0, 150, 137, 0.3);
}

/* تأثيرات إضافية للتفاعل */
.stat-card:hover .stat-icon {
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* تصميم متجاوب */
@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-container {
    padding: 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stats-title {
    font-size: 1.6rem;
  }
  
  .stat-value {
    font-size: 2.5rem;
  }
  
  .stats-summary {
    flex-direction: column;
    align-items: stretch;
  }
  
  .summary-item {
    justify-content: space-between;
  }
}

/* تأثيرات دخول متتالية */
.stat-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* تصميم بديل بسيط */
.stats-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.stat-item-simple {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 150, 137, 0.1);
  border-right: 4px solid var(--color-primary);
  text-align: right;
  min-width: 200px;
  transition: all 0.3s ease;
}

.stat-item-simple:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 150, 137, 0.15);
}

.stat-item-simple strong {
  display: block;
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  text-align: center;
  margin-top: 10px;
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-1bc3b2de *//* تعريف متغيرات الألوان */
:root {
  --color-primary: #009689;
  --color-primary-dark: #018076;
  --color-primary-lite: #04CEBF;
  --color-accent: #D3F5F3;
  --color-text-white: #FFFFFF;
  --color-text-black: #000000;
  --color-link-active: #2E67F5;
  --color-link-hover: #0035BA;
  --color-link-on-background: #F7FF9B;
}



/* تصميم الجداول */
.elementor-widget-container table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 150, 137, 0.15);
  transition: transform 0.3s ease;
  background: var(--color-text-white);
}

.elementor-widget-container table:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 150, 137, 0.2);
}

/* تصميم رؤوس الجداول */
.elementor-widget-container table th {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-text-white);
  font-weight: 700;
  text-align: center;
  padding: 18px 12px;
  border: none;
  position: relative;
  overflow: hidden;
}

.elementor-widget-container table th:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: var(--color-primary-lite);
}

/* تصميم خلايا الجداول */
.elementor-widget-container table td {
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}



/* تلوين الصفوف الزوجية والفردية */
.elementor-widget-container table tr:nth-child(even) {
  background-color: rgba(211, 245, 243, 0.3);
}

.elementor-widget-container table tr:nth-child(odd) {
  background-color: var(--color-text-white);
}

/* تأثير التحويم على الصفوف */
.elementor-widget-container table tr:hover td {
  background-color: rgba(4, 206, 191, 0.15);
}

/* تنسيق خاص للعمود الأول (رقم التسلسل) */
.elementor-widget-container table td:first-child {
  font-weight: 700;
  color: var(--color-text-black);
  text-align: center;
  direction: rtl;
}


/* تنسيق خاص للشهادات */
.elementor-widget-container table td:nth-child(2) strong {
  display: inline-block;
  text-align: center;
}

/* تنسيق خاص للاختصاص العام */
.elementor-widget-container table td:nth-child(3) {
  color: #2c3e50;
  font-weight: 600;
  text-align: center;
  direction: rtl;
}

/* تنسيق خاص للاختصاص الدقيق */
.elementor-widget-container table td:nth-child(4) {
  color: #34495e;
  text-align: c;
  direction: rtl;
}

/* تصميم متجاوب للجداول */
@media (max-width: 1200px) {
  .elementor-widget-container {
    padding: 20px;
  }
  
  .elementor-widget-container h3 {
    padding: 15px;
  }
  
  .elementor-widget-container table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .elementor-widget-container table th,
  .elementor-widget-container table td {
    padding: 12px 8px;
  }
}

@media (max-width: 768px) {
  .elementor-widget-container {
    padding: 15px;
  }
  
  .elementor-widget-container h3 {
    margin: 30px 0 20px;
  }
  
  .elementor-widget-container h3:after {
    content: none;
  }
  
  .elementor-widget-container table th,
  .elementor-widget-container table td {
    padding: 10px 6px;
  }
  
  .elementor-widget-container table td:nth-child(4):after {
    content: none;
  }
}

/* تأثيرات دخول الجداول */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.elementor-widget-container table {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* تصميم فواصل بين الأقسام */
.elementor-widget-container h3 + table {
  animation-delay: 0.2s;
}

.elementor-widget-container h3:nth-of-type(2) + table {
  animation-delay: 0.4s;
}

.elementor-widget-container h3:nth-of-type(3) + table {
  animation-delay: 0.6s;
}

/* تخصيص شريط التمرير للجداول */
.elementor-widget-container table::-webkit-scrollbar {
  height: 8px;
}

.elementor-widget-container table::-webkit-scrollbar-track {
  background: var(--color-accent);
  border-radius: 4px;
}

.elementor-widget-container table::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

.elementor-widget-container table::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

/* تصميم الخطوط العريضة للجداول */
.elementor-widget-container table tr:last-child td {
  border-bottom: none;
}

.elementor-widget-container table tr:last-child td:first-child {
  border-bottom-right-radius: 12px;
}

.elementor-widget-container table tr:last-child td:last-child {
  border-bottom-left-radius: 12px;
}

/* تصميم خاص للصف الأول بعد العنوان */
.elementor-widget-container h3 + table tr:first-child td {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    background-color: rgba(4, 206, 191, 0.1);
  }
  50% {
    background-color: rgba(4, 206, 191, 0.2);
  }
  100% {
    background-color: rgba(4, 206, 191, 0.1);
  }
}

/* تحسين عرض المحتوى العربي */
.elementor-widget-container {
  direction: rtl;
  text-align: center;
}

.elementor-widget-container strong {
  font-weight: 700;
}/* End custom CSS */