﻿:root{
  --brand:#0ea5e9;
  --brand2:#0284c7;
  --ink:#0f172a;
  --muted:#64748b;
  --border:rgba(15,23,42,.10);
  --shadow:0 14px 30px rgba(2,6,23,.10);
  --radius:18px;
}

/* ===== KPI2 Modern ===== */
.kpi2-section{
  padding: 52px 0;
  background:
    radial-gradient(900px 240px at 10% 10%, rgba(14,165,233,.10), transparent 60%),
    radial-gradient(700px 220px at 90% 30%, rgba(2,132,199,.10), transparent 55%),
    #f6f9fc;
}

.kpi2-head .kpi2-title{
  margin: 0 0 6px;
  font-weight: 950;
  color: var(--ink);
}

.kpi2-head .kpi2-subtitle{
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.kpi2-card{
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  padding: 16px 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 26px rgba(2,6,23,.07);
  transition: .18s ease;
  position: relative;
  overflow: hidden;
}

/* خط تزييني بسيط */
.kpi2-card::before{
  content:"";
  position:absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,165,233,.10), transparent 45%);
  opacity: 0;
  transition: .18s ease;
}

.kpi2-card:hover{
  transform: translateY(-2px);
  border-color: rgba(14,165,233,.35);
  box-shadow: 0 18px 36px rgba(2,6,23,.12);
}
.kpi2-card:hover::before{ opacity: 1; }

.kpi2-icon{
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(14,165,233,.10);
  border: 1px solid rgba(14,165,233,.20);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
}

/* تثبيت حجم الصورة مهما كان أصلها */
.kpi2-icon img{
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
  object-fit: contain !important;
  display:block;
}

/* لو الصورة jpg (مثل quraan) نخليها دائرة داخلية لطيفة */
.kpi2-icon img[src$=".jpg"],
.kpi2-icon img[src$=".jpeg"],
.kpi2-icon img[src$=".png"]{
  border-radius: 10px;
}

.kpi2-body{
  min-width: 0;
  position: relative;
  z-index: 1; /* فوق الـ before */
}

.kpi2-value{
  font-weight: 950;
  font-size: 1.65rem;
  line-height: 1.1;
  color: var(--brand2);
  margin-bottom: 6px;
}

.kpi2-label{
  color: var(--ink);
  font-weight: 850;
  line-height: 1.35;
  font-size: .98rem;

  /* منع الكارد من التمدد بسبب النص الطويل */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive tweaks */
@media (max-width: 575.98px){
  .kpi2-card{ padding: 14px 12px; }
  .kpi2-value{ font-size: 1.55rem; }
  .kpi2-icon{ width: 54px; height: 54px; }
  .kpi2-icon img{ width: 28px !important; height: 28px !important; }
}
