
 
  /* ===== Start Header ===== */
  :root{
    --ink:#0b0f16;
    --muted:#6b7280;
    --card:#ffffff;
    --line:#eceff4;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --rad:20px;
    --pad:clamp(10px,3.2vw,16px);
  }

  /* (Optional) فونت كايرو */
  @font-face{
    font-family:"Cairo";
    src:url("../eHotline/Cairo.ttf");
    font-display:swap;
  }
  .hl-header, .hl-header *{ box-sizing:border-box; }
  .hl-header{
    --h: clamp(74px, 12vw, 92px);
    position:sticky; top:0; z-index:1000;
    display:flex; align-items:center; justify-content:space-between;
    gap:clamp(10px,3vw,16px);
    padding: var(--pad);
    min-height: var(--h);
    background:
      linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86)) padding-box,
      radial-gradient(120% 120% at 100% -20%, #ffffff 0%, #f6f8fb 60%, #eef2f7 100%) border-box;
    border-bottom:1px solid var(--line);
    backdrop-filter: saturate(1.4) blur(6px);
  }

  .hl-header .title{
    display:flex; flex-direction:column; align-items:flex-end;
    line-height:1.05;
  }
  .hl-header .title h1{
    margin:0 0 2px; font: 800 clamp(14px,4.4vw,24px)/1 "Cairo", system-ui, Arial;
    letter-spacing:.1px; color:var(--ink);
  }
.hl-header .title small{
  font: 600 clamp(11px,3.2vw,13px)/1.4 "Cairo", system-ui, Arial;
  color: var(--muted);
  opacity: .95;
  text-align: right;
  width: 100%;
  display: block;
}


  .hl-header .ehotline{
    flex:0 0 auto; display:flex; align-items:center; justify-content:center;
    padding:6px 8px; border-radius:14px;
    background: linear-gradient(#fff,#fff) padding-box,
                linear-gradient(135deg,#e7edf6 0%, #ffffff 45%, #e7edf6 100%) border-box;
    border:1px solid rgba(0,0,0,.04);
    box-shadow: var(--shadow);
    max-width: clamp(140px, 34vw, 220px);
  }
  .hl-header .ehotline img{
    width:100%; height:auto; display:block;
    object-fit:contain;
  }

  /* مسافات شاشة أصغر */
  @media (max-width:380px){
    .hl-header{ --h:72px; }
    .hl-header .ehotline{ max-width: 46vw; }
  }

  /* شاشات أكبر (يحافظ على نفس الروح) */
  @media (min-width:768px){
    .hl-header{
      border-radius:0 0 18px 18px;
    }
  }
  
  
   /* ===== End Header ===== */
   
   
   
  /* ===== شريط الأخبار الفاخر ===== */
.hl-newsbar {
  background: linear-gradient(90deg, #fffdf9 0%, #faf7f2 100%);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  backdrop-filter: blur(8px) saturate(1.3);
  -webkit-backdrop-filter: blur(8px) saturate(1.3);
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.hl-newsbar a {
  display: block;
  color: #000;
  text-decoration: none;
  font-family: "Cairo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  padding: 10px 0;
}

.news-line {
  display: inline-block;
  animation: scrollLeft 18s linear infinite;
}

.news-line span {
  padding-right: 60px;
  background: linear-gradient(90deg, #000, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== الحركة من اليمين إلى اليسار ===== */
@keyframes scrollLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

/* احترام إعداد تقليل الحركة */
@media (prefers-reduced-motion: reduce) {
  .news-line { animation: none; }
} 
   
   
   
   
/* ===== تحديث شكل مربع البحث بدون تغيير الكود الأصلي ===== */
form[name="searchForm"] .search {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #f8f9fb);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 2px 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

form[name="searchForm"] .search:hover {
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.08);
}

form[name="searchForm"] input#searchTxt {
  flex: 1;
  border: none;
  outline: none;
  background: transparent !important;
  padding: 10px 12px;
  font-family: "Cairo", system-ui, Arial;
  font-size: 15px;
  font-weight: 600;
  color: #0b0f16;
}

form[name="searchForm"] input#searchTxt::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

form[name="searchForm"] .searchButton {
  border: none;
  background: linear-gradient(135deg, #c32026, #c32026);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(205, 170, 99, 0.45);
  cursor: pointer;
  transition: all 0.25s ease;
}

form[name="searchForm"] .searchButton:hover {
  transform: scale(1.08);
  box-shadow: 0 3px 12px rgba(205, 170, 99, 0.55);
}

form[name="searchForm"] .searchButton i.fa {
  font-size: 18px;
  color: #fff;
}

/* مظهر أنيق عند التركيز */
form[name="searchForm"] .search:focus-within {
  border-color: #cdaa63;
  box-shadow: 0 0 0 3px rgba(205, 170, 99, 0.15);
}
   
   
   
   
   
   
   
   
   
   
   
 /* ===== Hero Counter  Starts===== */  
   
   
 .eh-hero{
  display:flex;justify-content:center;align-items:center;
  margin:22px auto 26px;max-width:600px;padding:0 10px;
  font-family:"Cairo",system-ui,Arial;
}
.eh-box{
  width:100%;padding:32px 20px 28px;
  border-radius:28px;
  background:linear-gradient(180deg,#c32026 0%,#f0642d 60%,#f1b851 100%);
  color:#fff;text-align:center;
  
}

/* headline */
.eh-box h2{
  font-size:clamp(18px,4.6vw,24px);
  font-weight:800;margin:0 0 6px;
}
.eh-box h2 span{color:#fff9e8;text-align:left}
.eh-box p{
  margin:0 0 18px;
  font-size:clamp(13px,3.6vw,15px);
  font-weight:600;
  opacity:.95;
}

/* stats */
.eh-stats{
  display:flex;justify-content:center;gap:16px;flex-wrap:wrap;
  margin-bottom:20px;
}
.eh-stats .stat{
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.25);
  border-radius:16px;
  width:95px;padding:10px 0;
  box-shadow:0 3px 10px rgba(0,0,0,.08);
}
.eh-stats .stat b{
  display:block;font-size:clamp(17px,4vw,22px);
  font-weight:800;color:#fff;
  animation:countUp 3s ease forwards;
}
.eh-stats .stat span{
  font-size:12px;font-weight:600;opacity:.9;
}

/* icons (inside same box) */
.eh-actions{
  display:flex;justify-content:center;gap:18px;flex-wrap:wrap;
  margin-top:10px;
}
.eh-actions .action{
  display:flex;align-items:center;gap:6px;
  background:#fff;
  border:2px solid rgba(255,255,255,.25);
  border-radius:14px;
  padding:8px 14px;
  color:#c32026;font-weight:700;font-size:14px;
  text-decoration:none;
  box-shadow:0 3px 10px rgba(255,255,255,.2);
  transition:.3s;
}
.eh-actions .action:hover{
  background:linear-gradient(90deg,#fff7e0,#ffffff);
  transform:translateY(-2px);
}
.eh-actions img{width:20px;height:20px;object-fit:contain;}

/* count animation (pure CSS illusion) */
@keyframes countUp{
  0%{opacity:0;transform:translateY(8px);}
  100%{opacity:1;transform:none;}
}  
 /* شبكة الأزرار: صف علوي زرين + صف سفلي زر واحد */
.hero-actions{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(2, minmax(0,1fr));
  justify-items:center;
  margin-top:12px;
}

/* زر عام (نفس شكل الأبيض الحالي) */
.action{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 16px;
  background:#fff; color:#C32026; text-decoration:none; font-weight:800;
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.action svg{ fill:#C32026; }

/* زر التصنيفات: يمتد بعرض الشبكة ويتوسّط */
.action--category{
  grid-column: 1 / -1;                /* دا اللي يخليه تحت الاتنين ومتوسّط */
  justify-self:center;
  padding:12px 20px;
}

/* Hover رايق متّسق مع الهوية */
.action:hover{
  transform:translateY(-2px);
  border-color: rgba(195,32,38,.2);
  box-shadow:0 10px 22px rgba(195,32,38,.15);
}

/* اختيارياً: لمسة ذهبية خفيفة للـ hover على زر التصنيفات فقط */
.action--category:hover{
  box-shadow:
    0 10px 22px rgba(195,32,38,.12),
    0 2px 0 rgba(241,184,81,.25) inset;
}

/* لو الشاشة كبيرة وعايزة تفضّلي الزر تحت برضه، لا تغيري حاجة.
   ولو عايزة الثلاثة في صف واحد على الدِسكتوب: فعّلي السطرين التاليين */
/*
@media (min-width:880px){
  .hero-actions{ grid-template-columns: repeat(3, auto); }
  .action--category{ grid-column:auto; }
}
*/
  /* استخدمي نفس شبكة الأزرار مع .eh-actions بدلاً من إخفائها */
.eh-actions{
  display:grid !important;
  gap:10px;
  grid-template-columns: repeat(2, minmax(0,1fr));
  justify-items:center;
  margin-top:12px;
}

/* نفس زرار .action العام */
.eh-actions .action{
  display:inline-flex; align-items:center; gap:8px;
  min-height:44px;
  padding:10px 16px; border-radius:16px;
  background:#fff; color:#C32026; text-decoration:none; font-weight:800;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position:relative; z-index:1;
}
.eh-actions .action *{ pointer-events:none }
.eh-actions .action img,
.eh-actions .action svg{ width:20px;height:20px;object-fit:contain }

/* الزر العريض تحت الاتنين */
.eh-actions .action--category{
  grid-column:1 / -1; justify-self:center; padding:12px 20px;
}

   
 /* ===== Hero Counter Ends===== */   
   
   
   
   
   
/* ===== Icons  Starts===== */ 
 
/* ===== Tokens ===== */
:root{
  --red:#C32026; --orange:#F0642D; --gold:#F1B851;
  --fg:#0B0F16; --muted:#6B7280;
  --card:#FFF; --stroke:#EEF1F6;
  --shadow:0 10px 28px rgba(0,0,0,.06);
  --cols:3; /* موبايل */
}

/* ===== Card (خفيف وشفاف) ===== */
.eh-card{
  max-width:800px; margin:26px auto; padding:10px 14px 14px;
  border-radius:22px; background:var(--card);
  border:1px solid var(--stroke); box-shadow:var(--shadow);
  font-family:"Cairo",system-ui,Arial; position:relative;
}

/* ===== Line Header (مرتبط بما تحته) ===== */
.eh-card--line{ padding-top:8px; }
.eh-linehead{
  text-align:center; padding:10px 2px 14px; position:relative;
}
.eh-linehead h3{
  margin:0; font:900 clamp(16px,4.8vw,20px)/1 "Cairo";
  color:var(--red); letter-spacing:.2px;
}
.eh-linehead p{
  margin:6px 0 0; color:var(--muted);
  font:600 clamp(11px,3.2vw,13px)/1.35 "Cairo";
}
/* خط متوهّج أسفل العنوان يربطه بالسيكشن */
.eh-linehead::after{
  content:""; display:block; height:4px; border-radius:999px; margin:10px auto 0;
  width:min(200px,60%);
  background: linear-gradient(90deg, var(--red) 0%, var(--orange) 45%, var(--gold) 100%);
  box-shadow: 0 6px 18px rgba(195,32,38,.22);
}
 

/* ===== Tokens ===== */
:root{
  --red:#C32026; --orange:#F0642D; --gold:#F1B851;
  --fg:#0B0F16; --muted:#6B7280;
  --card:#FFF; --stroke:#EEF1F6;
  --shadow:0 10px 28px rgba(0,0,0,.06);
  --cols:3; /* موبايل */
}

/* ===== Card (خفيف وشفاف) ===== */
.eh-card{
  max-width:800px; margin:26px auto; padding:10px 14px 14px;
  border-radius:22px; background:var(--card);
  border:1px solid var(--stroke); box-shadow:var(--shadow);
  font-family:"Cairo",system-ui,Arial; position:relative;
}

/* ===== Line Header (مرتبط بما تحته) ===== */
.eh-card--line{ padding-top:8px; }
.eh-linehead{
  text-align:center; padding:10px 2px 14px; position:relative;
}
.eh-linehead h3{
  margin:0; font:900 clamp(16px,4.8vw,20px)/1 "Cairo";
  color:var(--red); letter-spacing:.2px;
}
.eh-linehead p{
  margin:6px 0 0; color:var(--muted);
  font:600 clamp(11px,3.2vw,13px)/1.35 "Cairo";
}
/* خط متوهّج أسفل العنوان يربطه بالسيكشن */
.eh-linehead::after{
  content:""; display:block; height:4px; border-radius:999px; margin:10px auto 0;
  width:min(200px,60%);
  background: linear-gradient(90deg, var(--red) 0%, var(--orange) 45%, var(--gold) 100%);
  box-shadow: 0 6px 18px rgba(195,32,38,.22);
}

/* ===== Grid ===== */
.ring-grid{
  display:grid; grid-template-columns:repeat(var(--cols),1fr);
  gap:12px; padding:10px 4px;
}
@media (min-width:520px){ :root{ --cols:4; } }

/* ===== Tiles ===== */
.ring{
  position:relative; aspect-ratio:1; border-radius:22px; overflow:hidden;
  background:#fff; border:1px solid var(--stroke);
  box-shadow:0 4px 12px rgba(0,0,0,.05);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  text-decoration:none; color:var(--fg);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  padding:14px 10px;
}
 
.ring img{
  width:clamp(40px,10vw,46px); height:clamp(40px,10vw,46px);
  object-fit:contain; display:block; margin-bottom:6px;
}
 
/* إمكانية الوصول */
.ring:focus-visible{ outline:3px solid rgba(241,232,179,.9); outline-offset:3px; }

/* شبكة 3 في الصف (موبايل) */
.ring-grid.trio{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  padding:10px 4px;
  grid-auto-flow: row dense;   /* يلمّ العناصر ويمنع الفراغات */
}

/* شبكة 4 في الصف (لو عايزاه سكشن يبقى أربع أيقونات) */
.ring-grid.wide{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
  padding:10px 4px;
  grid-auto-flow: row dense;
}

/* تحكّم استجابي: من 520px وفوق خلّيها 4 أعمدة تلقائيًا */
@media (min-width:520px){
  .ring-grid.trio{ grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.ring{
  aspect-ratio: 1 / 1;       /* بلاطة مربعة */
  min-width: 0;              /* يمنع العنوان من دفع عرض العمود */
}
@supports not (aspect-ratio: 1 / 1){
  .ring{ height:0; padding-bottom:100%; }
  .ring > *{ position:absolute; inset:0; display:flex; flex-direction:column; 
             align-items:center; justify-content:center; gap:8px; }
}



/* ===== Icons  Endss===== */

 



/*-------------------------------------
	6. scroll top btn css
-------------------------------------*/
 /*  scroll css section here*/
.scrolltop .icon {
    font-size: 30px;
    text-align: center;
    transform: rotate(-45deg);
    margin-top: 10px;
	font-color:#c20000;
}
.fa-rocket {
	color:#c20000;}
.scrolltop {
    position: fixed;
    bottom: 70px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    
    display: none;
}


 .scrolltop {
  position: fixed;
  bottom: 60px;
  right: 35px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  transform: rotate(315deg)
}
.scrolltop i {
  color: #c32026;
  font-size: 22px;
  transition: transform 0.3s ease;
}
.scrolltop:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(195,32,38,0.15);
  border-color: #f5c646;
}
.scrolltop:hover i {
  transform: translateY(-3px);
  color: #f5c646;
}
 




 
   
/*-------------------------------------
	6. The Latest interactive icons
-------------------------------------*/

:root{
	--black:#000000;
  --red:#c32026;
  --orange:#f5c646;
  --muted:#6b7280;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:'Cairo', system-ui, -apple-system, Segoe UI, Roboto, Arial;background:#fff;color:#0b0f16}

/* ===== فقاعات تفاعلية نسخة فاتحة ===== */
.wrap{max-width:1100px;margin-inline:auto;padding:clamp(16px,4vw,28px)}
.cta-s3{position:relative;border-radius:28px;overflow:hidden;background:linear-gradient(180deg,#fffef9,#fffaf0);box-shadow:0 18px 40px rgba(0,0,0,.08)}
.cta-s3 .inner{position:relative;z-index:1;padding:clamp(16px,3.5vw,24px)}
.cta-s3 header{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px}
.cta-s3 header h2{margin:0;font-weight:900;font-size:12px;color:var(--red)}
.cta-s3 .pill{display:inline-block;padding:.35rem .8rem;border-radius:999px;border:1px solid #f1f2f4;color:#0b0f16;background:#fffef9;box-shadow:0 4px 8px rgba(0,0,0,.04);font-size:.92rem}
.cta-s3 .divider{inline-size:140px;block-size:3px;border-radius:999px;background:linear-gradient(90deg,var(--red),var(--orange))}

/* شبكة البطاقات */
.grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:14px}
@media (min-width:780px){.grid{grid-template-columns:repeat(4,minmax(0,1fr))}}

.bubble{
  position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;text-align:center;
  padding:18px;border-radius:22px;color:#0b0f16;box-shadow:0 12px 28px rgba(0,0,0,.08);
  background:#fff;border:1px solid #f1f2f4;overflow:hidden;isolation:isolate;transform:translateY(0);animation:floatY 6s ease-in-out infinite;text-decoration:none;
}
.bubble:nth-child(2){animation-duration:7s}
.bubble:nth-child(3){animation-duration:8s}
.bubble:nth-child(4){animation-duration:7.6s}
.bubble:nth-child(5){animation-duration:6.6s}
.bubble:nth-child(6){animation-duration:7.8s}
@keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}

.bubble .ico{inline-size:80px;block-size:80px;border-radius:16px;display:grid;place-items:center;background:linear-gradient(180deg,#fff7db,#ffffff);border:1px solid #f2e5b5}
.bubble .ico img{inline-size:45px;block-size:45px;transition:transform .35s ease}
.bubble b{font-size:14px;color:#000000}
.bubble small{color:var(--muted)}
.bubble:hover{box-shadow:0 18px 38px rgba(195,32,38,.15);border-color:#ffe8b0}
.bubble:hover .ico img{transform:scale(1.08)}

/* زر سفلي */
.footer-cta{margin-top:16px;display:flex;justify-content:center}
.footer-cta a{display:inline-flex;align-items:center;gap:10px;color:#0b0f16;border:1px solid #f1f2f4;border-radius:999px;padding:10px 16px;background:#fff;box-shadow:0 8px 18px rgba(0,0,0,.06);text-decoration:none}
.footer-cta .dot{inline-size:8px;block-size:8px;border-radius:50%;background:var(--red);box-shadow:0 0 0 6px rgba(195,32,38,.12)}   







   
/*-------------------------------------
	7. Video
-------------------------------------*/


.video-showcase {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fff8e5 100%);
  border-radius: 32px;
  margin: 32px auto;
  max-width: 1100px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  overflow: hidden;
}
.video-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245,198,70,.25), transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(195,32,38,.20), transparent 60%);
  opacity: .9;
}
.video-showcase .inner {
  position: relative;
  z-index: 1;
  padding: clamp(16px, 4vw, 30px);
  text-align: center;
}
.video-showcase header h2 {
  font-weight: 900;
  font-size: 16px;
  margin: 0;
  color: #000000;
}
.video-showcase header h2 span {
  color: #f5c646;
}
.video-showcase header p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-top: 6px;
}
.video-showcase .video-frame {
  margin-top: 18px;
  display: inline-block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(195,32,38,.16);
  border: 1px solid #f1f2f4;
  background: linear-gradient(180deg, #fff, #fff9ea);
  transition: transform .3s ease;
}
.video-showcase .video-frame:hover {
  transform: scale(1.03);
}
.video-showcase iframe {
  width: clamp(280px, 90vw, 720px);
  height: clamp(160px, 50vw, 400px);
  border: none;
  border-radius: 16px;
}








   
/*-------------------------------------
	7. Embed Facebook
-------------------------------------*/


.facebook-showcase {
  position:center center !important;
  background: linear-gradient(180deg, #ffffff 0%, #fff8e5 100%);
  border-radius: 32px;
  margin: 32px auto;
  max-width: 500px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  overflow: hidden;
}
.facebook-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 25%, rgba(245,198,70,.25), transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(195,32,38,.20), transparent 60%);
  opacity: .9;
}
.facebook-showcase .inner {
  position: relative;
  z-index: 1;
  padding: clamp(16px, 4vw, 30px);
  text-align: center;
}
.facebook-showcase header h2 {
  font-weight: 900;
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  margin: 0;
  color: #000000;
}
.facebook-showcase header h2 span {
  color: #c32026;
}
.facebook-showcase header p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-top: 6px;
}ءء
.facebook-showcase .fb-frame {
  margin-top: 18px;
  display: inline-block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(195,32,38,.16);
  border: 1px solid #f1f2f4;
  background: linear-gradient(180deg, #fff, #fff9ea);
  transition: transform .3s ease;
}
.facebook-showcase .fb-frame:hover {
  transform: scale(1.02);
}
.facebook-showcase iframe {
display:inline-block;
  margin:0;
  padding:0;
  direction:rtl;
  border:none;
  border-radius:20px;
}




:root{
  --red:#c32026;
  --orange:#f5c646;
  --ink:#0b0f16;
}

/* ===== Fixed Footer Bar ===== */
.footer-bar {
  position: fixed;
  bottom: 0; right: 0; left: 0;
  height: 64px;
  background: #fff; /* خلفية صافية */
  border-top: 1px solid #e9e9e9;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0,0,0,.05);
  padding-bottom: env(safe-area-inset-bottom);
}

/* ===== Each item ===== */
.fb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Cairo', system-ui, sans-serif;
  font-size: 9px;
  width: 70px;                 /* ✅ عرض ثابت */
  height: 64px;                /* ✅ ارتفاع ثابت */
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all .25s ease;
  box-sizing: border-box;      /* ✅ حتى لا يزيد الحجم بالحدود */
}

.fb-item img {
  width: 18px;
  height: 18px;
  margin-bottom: 3px;
}

/* Hover Effect - دون تغيير الحجم */
.fb-item:hover {
  transform: translateY(-4px);
  border-color: #ffe2a0;
  background: linear-gradient(180deg, #ffffff 0%, #fff9ea 100%);
  box-shadow: 0 6px 14px rgba(195,32,38,.10);
}
.fb-item:hover span {
  color: var(--red);
}

/* Active Effect */
.fb-item:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(195,32,38,.1);
}

/* Desktop */
@media (min-width: 768px) {
  .footer-bar {
    position: static;
    height: auto;
    box-shadow: none;
  }
}

/* إزالة أي تدرج أو لون خفيف من خلفية القسم */
.eh-card--line {
  background: #fff !important;        /* أبيض خالص */
  background-image: none !important;  /* إلغاء أي gradient */
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  border-radius: 24px;
  position: relative;
  z-index: 1;
}

/* إذا كان القسم فوقه يستخدم تدرج سفلي، هذا يفصل الأبيض تماماً */
.eh-card--line::before {
  content: none !important;
}

/* رأس القسم */
.eh-linehead {
  background: #fff !important;
  background-image: none !important;
  border-radius: 0;
  padding: 18px 0 10px;
  box-shadow: none !important;
}















/* Interal Pages */


/* ===== Base tokens ===== */
:root{
  --ink:#0b0f16; --muted:#6b7280; --line:#eceff4;
  --accent:#c32026; --accent-2:#f5c646;
  --card:#fff; --shadow:0 8px 22px rgba(0,0,0,.06);
  --rad:18px; --gap:12px; --pad:12px;
  --fs-title: clamp(.9rem, 2.6vw, 1rem);
  --fs-sub: clamp(.72rem, 2vw, .8rem);
}

.cats-wrap{max-width:980px;margin:14px auto;padding:0 12px}
.cats-head{
  margin:22px 6px 10px; font-size:clamp(1rem,2.8vw,1.15rem);
  font-weight:800; color:var(--ink);
  font-family:'Changa','Cairo',system-ui,-apple-system,Segoe UI,Roboto,Arial;
  letter-spacing:.2px; display:flex; align-items:center; gap:8px;
}
.cats-head::after{
  content:""; flex:1 1 auto; height:3px; border-radius:3px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  opacity:.35;
}

/* Toolbar */
.cats-toolbar{ display:flex; flex-direction:column; gap:10px; margin:6px 0 14px }
.cats-toolbar input[type="search"]{
  padding:12px 14px; border-radius:14px; border:1px solid var(--line);
  background:#fff; font:inherit; outline:none;
  box-shadow:0 6px 16px rgba(0,0,0,.05);
}
.cats-toolbar input[type="search"]::placeholder{ color:#9aa3af }
.chips{ display:flex; flex-wrap:wrap; gap:8px }
.chip{
  padding:8px 12px; border:1px solid var(--line); border-radius:12px;
  background:#fff; font-weight:700; color:var(--ink);font-family:Cairo;
  cursor:pointer; user-select:none;
}
.chip[aria-pressed="true"]{
  border-color:rgba(195,32,38,.25);
  box-shadow:0 6px 16px rgba(195,32,38,.1);
  color:var(--accent);
}
.result-hint{ font-size:.86rem; color:var(--muted); margin-inline-start:2px }

/* Grid */
.cats{ display:grid; gap:var(--gap); grid-template-columns:repeat(3,minmax(0,1fr)); margin:10px 0 }
@media (min-width:520px){ .cats{ grid-template-columns:repeat(4,minmax(0,1fr)) } }
@media (min-width:820px){ .cats{ grid-template-columns:repeat(6,minmax(0,1fr)) } }

/* Card */
.cat{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; gap:6px; padding:var(--pad); min-height:104px;
  border-radius:var(--rad);
  background:
    linear-gradient(#fff,#fff) padding-box,
    radial-gradient(140% 140% at 100% 0%, #fff3ea, #ffe3ba 40%, #ffffff 70%) border-box;
  border:1px solid var(--line); box-shadow:var(--shadow);
  text-decoration:none; color:var(--ink); position:relative;
  -webkit-tap-highlight-color:transparent; touch-action:manipulation;
}
.cat .ico{ width:42px; height:42px; object-fit:contain; display:block }
.cat .ico.hvr-rotate{ transition:transform .35s ease }
.cat:hover .ico.hvr-rotate{ transform:rotate(-8deg) scale(1.04) }
.cat b{
  font-weight:600; font-size:9px; line-height:1.25; 
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
  overflow:hidden; white-space:normal; max-width:95%;
}
.cat small{
  font-weight:600; color:var(--muted); font-size:var(--fs-sub); line-height:1.25;
  display:-webkit-box; -webkit-line-clamp:1; -webkit-box-orient:vertical;
  overflow:hidden; white-space:normal; max-width:95%;
}
.cat:active{ transform:translateY(1px) }
.cat:focus-visible{ outline:2px solid #fff; outline-offset:2px; box-shadow:0 0 0 3px rgba(245,198,70,.55), var(--shadow) }

/* Reduce motion */
@media (prefers-reduced-motion:reduce){
  .cat,.cat:hover{ transition:none; transform:none }
}




/* حاوية البحث + زر المايك */
.search-wrap{
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.search-wrap #catsSearch{
  width:100%;
  padding:12px 42px 12px 14px; /* مساحة يمين للزر */
  border-radius:14px; border:1px solid var(--line);
  background:#fff; font:inherit; outline:none;
  box-shadow:0 6px 16px rgba(0,0,0,.05);
}

.mic-btn{
  position:absolute; inset-inline-end:8px; top:50%; transform:translateY(-50%);
  width:30px; height:30px; border-radius:10px;
  border:1px solid var(--line); background:#fff; color:#c32026;
  display:grid; place-items:center; cursor:pointer; padding:0;
  box-shadow:0 3px 10px rgba(0,0,0,.06);
}

.mic-btn[hidden]{ display:none !important; }

.mic-btn.is-recording{
  color:#fff; background:#c32026; border-color:rgba(195,32,38,.4);
  box-shadow:0 6px 16px rgba(195,32,38,.18);
}

/* وميض بسيط أثناء التسجيل */
@keyframes pulseDot{ 0%{opacity:.3} 50%{opacity:1} 100%{opacity:.3} }
.mic-btn.is-recording::after{
  content:""; position:absolute; width:6px; height:6px; border-radius:50%;
  background:#fff; top:6px; inset-inline-end:6px; animation:pulseDot 1.2s infinite;
}









:root{
  --red:#c32026; --muted:#6b7280; --line:#eceff4;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:'Cairo',system-ui,-apple-system,Segoe UI,Roboto,Arial;color:#0b0f16;background:#fff}

/* لا خطوط تحت الروابط */
a,a:visited,a:hover,a:active{ text-decoration:none; color:inherit }

 
/* ===== قائمة الشركات (كروت بيضاء) ===== */
.related-content{ direction:rtl; padding:12px 14px 80px }
.eh-card{ /* استبدال contact-item */
  display:flex; align-items:center; gap:12px;
  background:#fff; border:1px solid var(--line); border-radius:18px;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
  padding:12px 14px; margin:12px 0;
}

.eh-card .logo{
  width:66px; height:66px; flex:0 0 46px; border-radius:50%;
  object-fit:cover; border:1px solid var(--line)
}
.eh-card .domain {
  color: #6b7280;
  font-size: .64rem;
  direction: ltr;              /* الحفاظ على ترتيب 1944.tel */
  unicode-bidi: bidi-override; /* يمنع العكس */
  margin-top: 2px;             /* تقليل المسافة لتقاربها مع الاسم */
  display: inline-block;
  line-height: 1;              /* يضبط التمركز العمودي */
  vertical-align: baseline;    /* يحافظ على الاصطفاف */
}


.eh-card .domain-ar {
  color: #6b7280;
  font-size: .64rem;
  direction: rtl;              /* الحفاظ على ترتيب 1944.tel */
   
  margin-top: 2px;             /* تقليل المسافة لتقاربها مع الاسم */
  display: inline-block;
  line-height: 1;              /* يضبط التمركز العمودي */
  vertical-align: baseline;    /* يحافظ على الاصطفاف */
}


   
:root{ --red:#c32026; --line:#eceff4; }

.sticky-bc{
  position: sticky; top:79px; z-index: 999;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px); /* شفافية رايقة */
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0,0,0,.08); /* ظل واضح */
}

.eh-breadcrumbs{
  direction: rtl; display:flex; flex-wrap:wrap; gap:8px;
  padding:10px 14px;
}
.eh-crumb{
  background:#fff; border:1px solid var(--line);
  border-radius:12px; padding:6px 10px; font-size:10px;
  box-shadow:0 2px 6px rgba(0,0,0,.05);
  color:#0b0f16; text-decoration:none;
}
.eh-crumb.home{ color:var(--red); font-weight:800; direction: ltr;  font-size:10px; }
.eh-sep{ align-self:center; color:#c8d0db }
 
/* ===== Fixed Breadcrumb Below Header ===== */
#breadcrumbs{
  position: fixed !important;
  top: 472px !important; /* المسافة أسفل الهيدر، عدّليها حسب ارتفاع الهيدر الفعلي */
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #eceff4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 10px 16px;
}

/* المسافة أسفل البريدكرامب لتجنب التراكب */
.related-content{
 margin-top: 40px !important; /* بدلًا من 68 أو أي قيمة كبيرة */
  padding-top: 0 !important;
}
 

#breadcrumbs .breadcrumb{
  display:flex; flex-wrap:wrap; gap:8px; align-items:center; justify-content:flex-start;
}
#breadcrumbs .crumb{
  background:#fff;
  border:1px solid #eceff4;
  border-radius:12px;
  padding:6px 10px;
  font-size:.9rem;
  color:#111;
  text-decoration:none;
  box-shadow:0 2px 6px rgba(0,0,0,0.04);
}
#breadcrumbs .crumb i{color:#c32026;margin-left:4px;}
#breadcrumbs .crumb.home{color:#c32026;font-weight:700}
#breadcrumbs .raquo{color:#cbd3df;}


/* الشريط الجانبي بجانب اللوجو */
.eh-card::before{
  content:"";
  position:absolute;
  right:0; /* لليمين في RTL */
  top:10px; bottom:10px;
  width:4px;
  border-radius:3px;
  background:linear-gradient(180deg,#c32026,#f5c646);
  opacity:.9;
}

.eh-card .logo{
  width:60px; height:60px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid #eceff4;
  margin-left:8px;
  z-index:1;
  
  
 /* ===== Nearest — Premium Glass Card ===== */



/* ===== NEAREST — Force Overrides (ضعها في آخر الملف) ===== */
.related-content .eh-card.nearest{
  /* تكبير وتمييز الكارت */
  --logo: 84px !important;
  --line-gap: 10px !important;

  border: 2px solid transparent !important;
  background:
    linear-gradient(#ffffff, #fbfdff) padding-box,
    conic-gradient(from 210deg, #f5c646, #c32026 55%, #f5c646) border-box !important;
  box-shadow:
    0 14px 28px rgba(195, 32, 38, .12),
    0 0 0 6px rgba(245,198,70,.06) !important;
  position: relative;
  overflow: hidden;
}

/* الخط الجانبي: انقله لليسار وألغي right القديم */
.related-content .eh-card.nearest::before{
  content:"";
  position:absolute;
  right: auto !important;            /* إلغاء الموجود في .eh-card::before */
  left: 10px !important;             /* ضعّه يسارًا */
  top: 8px; bottom: 8px;
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(180deg, #c32026 0%, #f5c646 100%);
  filter: drop-shadow(0 0 6px rgba(245,198,70,.6));
}

/* بادج "الأقرب" */
.related-content .eh-card.nearest::after{
  content:"الأقرب";
  position:absolute; top:8px; left:24px;
  background: linear-gradient(90deg,#c32026,#f5c646);
  color:#fff; font-size:.72rem; font-weight:800;
  padding:4px 8px; border-radius:999px;
  letter-spacing:.3px; z-index:2;
  box-shadow:0 6px 14px rgba(195,32,38,.2);
}

/* حلقة متدرجة وهالة حول اللوجو */
.related-content .eh-card.nearest .logo{
  position:relative; z-index:1; margin-left:12px;
  background:#fff; border:none !important;
  box-shadow:0 10px 22px rgba(0,0,0,.12);
}
.related-content .eh-card.nearest .logo::before,
.related-content .eh-card.nearest .logo::after{
  content:""; position:absolute; inset:-4px; border-radius:50%;
}
.related-content .eh-card.nearest .logo::before{
  background: conic-gradient(#f5c646, #c32026, #f5c646);
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 4px), #000 0);
          mask: radial-gradient(closest-side, transparent calc(100% - 4px), #000 0);
  opacity:.95;
}
.related-content .eh-card.nearest .logo::after{
  inset:-10px;
  background: radial-gradient(closest-side, rgba(245,198,70,.25), transparent 70%);
  filter: blur(6px); z-index:-1;
}

/* نص أقوى قليلًا */
.related-content .eh-card.nearest .name-ar{ font-size:12px; color:#0b0f16; font-weight:900 }
.eh-card .name-en {
  direction: ltr !important;
  unicode-bidi: embed !important; /* يعزل الاتجاه فعليًا */
  text-align: left !important;
  display: inline-block;
  width: 100%;
  font-weight: 600;
  color: #24324a;
  margin-top: 2px;
  line-height: 1.2;font-size:12px
}
.eh-card .name-en {
  text-align: start; /* بدل left لتكون ذكية حسب اللغة */
}




/* e-commerce page */

 /* متغيّرات عامة (متاحة في كل مكان) */
:root{
  --fg:#0B0F16;
  --muted:#6B7280;
  --stroke:#EEF1F6;
  --red:#C32026;
  --gold:#CDAA63;
}

/* شبكة */
.ring-grid{
  --cols:3;
  display:grid;
  grid-template-columns:repeat(var(--cols), minmax(0,1fr));
  gap:12px; padding:10px 4px;
}
@media (min-width:520px){ .ring-grid{ --cols:4; } }

/* البلاطة */
.ring{
  position:relative; aspect-ratio:1/1; border-radius:22px; overflow:hidden;
  background:#fff; border:1px solid var(--stroke);
  box-shadow:0 4px 12px rgba(0,0,0,.05);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  text-decoration:none; color:var(--fg);
  padding:14px 10px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
  min-width:0; touch-action:manipulation;
}
.ring:hover{
  transform:translateY(-4px);
  border-color:rgba(195,32,38,.22);
  box-shadow:0 10px 24px rgba(195,32,38,.12), 0 2px 0 rgba(241,184,81,.25) inset;
  color:var(--red);
}
.ring img{
  width:clamp(40px,10vw,46px); height:clamp(40px,10vw,46px);
  object-fit:contain; display:block; margin-bottom:6px;
  transition:filter .2s ease, transform .2s ease;
}
.ring:hover img{
  filter: invert(19%) sepia(91%) saturate(3224%) hue-rotate(343deg) brightness(88%) contrast(98%);
  transform:translateY(-1px);
}

/* النصوص — خليها آخر شيء */
.ring b{
  font-size:12px; font-weight:700; text-align:center; line-height:1.35;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
  overflow:hidden; text-overflow:ellipsis; max-width:100%; white-space:normal;
  color:#000; /* لون صريح */
}
.ring small{
  font-size:10px; text-align:center; line-height:1.3;
  display:-webkit-box; -webkit-line-clamp:1; -webkit-box-orient:vertical;
  overflow:hidden; text-overflow:ellipsis; margin-top:-1px; white-space:normal;
  color:var(--muted, #6B7280); /* fallback لو المتغيّر مش متاح */
}





/* ====== كارت نتائج المجالات / البحث ====== */
a.contact-item.eh-card.url{
    display: grid !important;
    grid-template-columns: 70px 1fr !important; /* لوجو | نصوص */
    gap: 14px !important;
    direction: rtl !important;
    padding: 14px !important;
    align-items: center !important;
    text-decoration: none !important;
}

/* اللوجو */
a.contact-item.eh-card.url .logo{
    width: 65px !important;
    height: 65px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    grid-column: 1 !important;
	 margin-bottom:-10px !important;
}

/* النصوص الثلاثة */
a.contact-item.eh-card.url span{
    display: block !important;
    grid-column: 2 !important;
    text-align: right !important;
    margin: -10px !important;
    padding: 0 !important;
    line-height: 1.15 !important;
}

/* الاسم العربي */
a.contact-item.eh-card.url .name-ar{
    font-size: 10px !important;
    font-weight: 500 !important;
	color:#0b0f16;
	margin-right:-8px !important;
}

/* الاسم الإنجليزي */
a.contact-item.eh-card.url .name-en{
    font-size: 12px !important;
    color: #0b0f16 !important;margin-right:-8px !important; /* حلول منع خروج النص */
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;

    display: block !important;
    max-width: 100% !important;
    line-height: 1.3 !important;
    box-sizing: border-box !important;
}

/* الدومين */
a.contact-item.eh-card.url .domain{
    font-size: 13px !important;
    color: #777 !important;
    direction: ltr !important;
}

/* ===== مطابق تمامًا لهايل — بناءً على طلبك ===== */

/* توسيع المسافات لجعل البنط مطابق لهايل */
a.contact-item.eh-card.url .name-ar{margin-top:-30px !important;}
a.contact-item.eh-card.url .name-en{margin-top:-70px !important;}
a.contact-item.eh-card.url .domain{margin-top:-50px !important;}

}






/* رابط الرئيسية في نتائج البحث — ستايل 140 */
.related-content .home-link{
    display: inline-flex;
    align-items: center;
    gap: 6px; /* مسافة بين الأيقونة والنص */
    
    font-family: 'Cairo', sans-serif !important; /* فونت 140 */
    font-weight: 700 !important;  /* نفس سماكة 140 */
    font-size: 15px !important;   /* نفس الحجم المستخدم */
    
    text-decoration: underline;
    color: #000 !important;

    margin-bottom: 14px;
    float: right;
}

/* أيقونة الهوم */
.related-content .home-link i{
    font-size: 15px;
    color: #000;
}
/* صندوق عنوان نتائج البحث */
.search-box{
    background: #f9f9f9;
    border: 1px solid #e6e6e6;
    padding: 14px 16px;
    border-radius: 14px;
    margin: 15px 0 20px 0;
    direction: rtl;
    text-align: right;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* عنوان "نتائج البحث عن:" */
.search-box .search-title{
    font-family: 'Cairo', sans-serif !important; /* نفس فونت 140 */
    font-size: 18px !important;                 /* حجم مضبوط */
    font-weight: 700 !important;                /* سماكة نفس 140 */
    color: #000 !important;
    margin: 0;
    line-height: 1.7;
}

/* الكلمة اللي تم البحث عنها */
.search-box .query{
    font-weight: 900 !important;                /* أغمق */
    color: #c32026 !important;                  /* أحمر 140 */
}




/* Jobs Page" */


.company-block{
  display:block;
  text-decoration:none;
}
.company-inner{
  background:#fff;
  border-radius:18px;
  padding:14px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:0 6px 20px rgba(0,0,0,.08);
}
.company-inner .logo{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}
.company-inner .details{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.company-inner .name-ar{
  font-size:11px;
  font-family: Cairo, sans-serif;
  font-weight:500;
  color:#000;
  margin-bottom:8px;
  line-height:1.4;
}
.company-inner .actions{
  display:flex;
  gap:12px;
}
.company-inner .btn-act img{
  width:32px;
  height:32px;
}
.company-block{
  display:block;
  text-decoration:none;
}
.company-inner{
  background:#fff;
  border-radius:18px;
  padding:14px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:0 6px 20px rgba(0,0,0,.08);
}
.company-inner .logo{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}
.company-inner .details{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.company-inner .name-ar{
  font-size:11px;
  font-family: Cairo, sans-serif;
  font-weight:500;
  color:#000;
  margin-bottom:4px;
  line-height:1.4;
}
.company-inner .sub-text{
  font-size:13px;
  font-family:Cairo, sans-serif;
  font-weight:600;
  color:#555;
  margin-bottom:10px;
}
.company-inner .actions{
  display:flex;
  gap:12px;
}
.company-inner .btn-act img{
  width:32px;
  height:32px;
}
 
 
 
.contact-item {
  background: #ffffff;
  border: 1px solid #e8e8e8; /* حدود هادئة بدل الأحمر */
  border-radius: 18px;
  padding: 12px 14px;
  margin-bottom: 10px;
  display: block;
  transition: 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06); /* ظل بسيط */
  cursor: pointer;
}

/* هافـر ناعم */
.contact-item:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.10);
  transform: translateY(-2px);
  border-color: #c32026; /* لمسة من لون 140 */
}

/* عند الضغط */
.contact-item:active {
  transform: scale(.98);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

/* لو فاضي → يختفي */
.contact-item:empty {
  display: none !important;
}




 span.n-lbl{font-size:11px;font-family:Cairo; font-weight:600;color:#000;display:block;margin-right:52px;margin-bottom:0px;margin-top:-40px;word-wrap:break-word}

 span.value{ font-size:11px;font-family:Cairo;color:#000;margin:0px 0px 0px 0px;display:block; margin-right:52px;word-wrap:break-word}