
 
  /* ===== 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);z-index:999
  }

  .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,.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);
  position: relative;
  z-index: 998;            /* مهم */
}

/* خلي الرابط يغطي الشريط كله */
.hl-newsbar > a{
  display:block;            /* مهم */
  width:100%;
  text-decoration:none;
  color:inherit;
  position:relative;
  cursor:pointer;
  z-index: 2;
}

/* السطر المتحرك للعرض فقط: ما يستقبلش الكليك */
.hl-newsbar .news-line{
  pointer-events: none;     /* المهم هنا */
  display:inline-flex;
  gap:48px;
  padding:6px 0;
  /* لو عندك أنيميشن ماركيه */
  /* animation: ticker 20s linear infinite; */
}

/* أي ديكور/طبقات إضافية فوق الشريط */
.hl-newsbar::before,
.hl-newsbar::after{
  pointer-events:none;
}

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

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

.news-line span {
  padding-right: 32px;
  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;
  font-size:10px
}

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);
}
   
  form[name="searchForm"]{
  margin-left: auto !important;
  margin-right: auto !important;
} 
   
   
   
   
   
   
   
   
   
 /* ===== 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:16px;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 8px;
  color:#c32026;font-weight:700;font-size:10px;
  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;
}
form[name="searchForm"],
.search-wrap,
.search {
  position: relative;
  z-index: 998; /* رقم كبير لضمان التفوّق */
}

/* نفس زرار .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);
}

/* ===== 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:hover{
  transform:translateY(-3px);
  background:linear-gradient(135deg,#CDAA63,#F1E3B3);
  box-shadow:0 10px 22px rgba(205,170,99,.28);
  color:var(--red);
}
.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; }



/* =========== تحسين Hover للبلاطات (أنظف وأشيك) =========== */
.ring{
  background:#fff;
  border:1px solid rgba(0,0,0,.05);
  box-shadow:0 4px 10px rgba(0,0,0,.05);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.ring:hover{
  transform: translateY(-4px);
  background:#fff;                       /* ما نملّهوش ذهبي */
  border-color: rgba(195,32,38,.22);     /* لمسة من أحمر 140 */
  box-shadow:
    0 10px 24px rgba(195,32,38,.12),
    0 2px 0 rgba(241,184,81,.25) inset;  /* لمعة ذهبية رفيعة من الداخل */
  color:#C32026;                         /* النص يميل للأحمر */
}

.ring img{
  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{transition:color .2s ease;}
.ring:hover b{ color:#C32026; }

/* حالة مُفعّلة/مختارة (optional) */
.ring.is-active{
  border-color:#C32026;
  box-shadow:0 12px 28px rgba(195,32,38,.16);
}





/* قيّدي الأعمدة على مستوى السكشن بدل :root (أنظف) */
.eh-card { --cols: 3; }                 /* موبايل = 3 */
@media (min-width: 520px){
  .eh-card { --cols: 4; }               /* تابلت وفوق = 4 */
}

/* شبكة الأيقونات تبقى مرنة وآمنة */
.ring-grid{
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 12px;
  padding: 10px 4px;
}

/* البلاطة: مربع + لمسات لمس مريحة */
.ring{
  position: relative;
  aspect-ratio: 1 / 1;                  /* مدعوم في أغلب المتصفحات الحديثة */
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  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: #0B0F16;
  padding: 14px 10px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
  min-width: 0;                          /* يمنع تمدد النص */
  touch-action: manipulation;            /* استجابة لمس أفضل */
}

/* ⚠️Fallback لمتصفحات لا تدعم aspect-ratio (بعض إصدارات iOS القديمة) */
@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; }
}

.ring img{
  width: clamp(40px, 10vw, 46px);
  height: clamp(40px, 10vw, 46px);
  object-fit: contain; display: block; margin-bottom: 6px;
}

/* Hover أنظف (ألوان 140 هادئة) */
.ring:hover{
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(195,32,38,.22);          /* #C32026 */
  box-shadow:
    0 10px 24px rgba(195,32,38,.12),
    0 2px 0 rgba(241,184,81,.25) inset;       /* لمسة ذهبية رفيعة */
  color: #C32026;
}
.ring:hover img{
  filter: invert(19%) sepia(91%) saturate(3224%) hue-rotate(343deg) brightness(88%) contrast(98%);
  transform: translateY(-1px);
}

/* Primary + Secondary */
/* Primary label */
 

/* فوكس لذوي الاحتياجات */
.ring:focus-visible{ outline: 3px solid rgba(241,232,179,.9); outline-offset: 3px; }
.ring-grid.trio{
  --fg:#0B0F16; --muted:#6B7280; --stroke:#EEF1F6;
  --red:#C32026; --gold:#CDAA63;
  display:grid; grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px; padding:10px 8px; font-family:"Cairo",system-ui,Arial;
}

/* ===== 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;
}

 
 
 
 
 
 
 
 
 
 
 
 
 
 
   /* ===== Float Icon FAB + bubble ===== */
 
    .store-bubble{position:fixed;inset-inline-end:calc(env(safe-area-inset-right) + 14px + 56px + 8px);inset-block-end:calc(86px + env(safe-area-inset-bottom));z-index:46;max-inline-size:210px;background:#fff;color:#111;border:1px solid var(--stroke);border-radius:14px;box-shadow:0 10px 28px rgba(0,0,0,.14);padding:10px 12px;font-weight:800;font-size:10px;opacity:0;transform:translateY(8px) scale(.96);pointer-events:none;transition:opacity .28s ease, transform .28s ease}
    .store-bubble:before{content:"";position:absolute;inset-inline-end:-6px;inset-block-end:14px;inline-size:12px;block-size:12px;background:#fff;border-inline-start:1px solid var(--stroke);border-block-end:1px solid var(--stroke);transform:rotate(45deg)}
    .store-bubble.show{opacity:1;transform:translateY(0) scale(1);pointer-events:auto}
 .store-fab{
    position:fixed; left:16px; bottom:76px; z-index:9999; /* غيّري right إلى left لو عايزاه يسار */
    width:58px; height:58px; border-radius:18px;
    background:#fff; display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 22px rgba(0,0,0,.18);
    border:1px solid rgba(0,0,0,.06);
    text-decoration:none; transition:transform .18s ease, box-shadow .18s ease;
  }
 
  .store-fab img{
    width:34px; height:34px; object-fit:contain; display:block;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  .eh-cta-job{
  display:block;
  background:linear-gradient(135deg, #c32026, #f5c646);
  padding:16px 18px;
  border-radius:26px;
  text-decoration:none !important;
  color:#fff;
  margin:20px auto;        /* ← ده أهم شيء للتوسيط */
  margin-left:auto;        /* ← توسيط */
  margin-right:auto;       /* ← توسيط */
  width:92%;               /* ← عرض مناسب للموبايل */
  max-width:480px;         /* ← مايزيدش في الشاشات الكبيرة */
  box-shadow:0 14px 32px rgba(0,0,0,.14);
  position:relative;
  overflow:hidden;
  transition:.25s ease;
  font-family:'Cairo',sans-serif;
}

/* Radial lights for 140 effect */
.eh-cta-job::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 90% 15%, rgba(255,255,255,.45), transparent 65%),
    radial-gradient(circle at 15% 85%, rgba(255,255,255,.20), transparent 70%);
  mix-blend-mode:soft-light;
  opacity:.9;
}

.eh-cta-job:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.eh-cta-content{
  display:flex;
  align-items:center;
  gap:16px;
  position:relative;
  z-index:2;
}

.eh-cta-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  background:#fff;
  padding:10px;
  object-fit:contain;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
}

.eh-cta-text .txt-ar{
  font-size:17px;
  font-weight:800;
  line-height:1.5;
  color:#fff;
  text-shadow:0 1px 2px rgba(0,0,0,.25);
}
.eh-cta-job{
  display:block;
  background:linear-gradient(135deg, #c32026, #f5c646);
  padding:16px 18px;
  border-radius:26px;
  text-decoration:none !important;
  color:#fff;
  margin:20px auto;
  margin-left:auto;
  margin-right:auto;
  width:92%;
  max-width:480px;
  box-shadow:0 14px 32px rgba(0,0,0,.14);
  position:relative;
  overflow:hidden;
  transition:.25s ease;
  font-family:'Cairo',sans-serif;
}

/* Radial lights for 140 effect */
.eh-cta-job::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 90% 15%, rgba(255,255,255,.45), transparent 65%),
    radial-gradient(circle at 15% 85%, rgba(255,255,255,.20), transparent 70%);
  mix-blend-mode:soft-light;
  opacity:.9;
}

.eh-cta-job:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.eh-cta-content{
  display:flex;
  align-items:center;
  gap:16px;
  position:relative;
  z-index:2;
}

.eh-cta-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  background:#fff;
  padding:10px;
  object-fit:contain;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
}

/* Arabic text */
.eh-cta-text .txt-ar{
  font-size:17px;
  font-weight:800;
  line-height:1.5;
  color:#fff;
  text-shadow:0 1px 2px rgba(0,0,0,.25);
  text-align:right;
  direction:rtl;
}

/* English text */
.eh-cta-text .txt-en{
  font-size:16px;
  font-weight:700;
  line-height:1.4;
  color:#fff;
  text-shadow:0 1px 2px rgba(0,0,0,.25);
  text-align:left;
  direction:ltr;
}
/* ==== Shine Sweep Animation (Guaranteed) ==== */
.eh-cta-job{
  position:relative;
  overflow:hidden; /* عادي */
}

.eh-cta-job::after{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:60%;
  height:100%;
  background:linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,0.45) 50%,
    transparent 100%
  );
  transform:skewX(-25deg);
  animation:shineMove 3s linear infinite;
  z-index:3;
  pointer-events:none;
}

@keyframes shineMove{
  0%   { left:-120%; }
  50%  { left:120%; }
  100% { left:120%; }
}







 
 
 
 eh-cta-job{
  display:block;
  background:linear-gradient(135deg, #c32026, #f5c646);
  padding:16px 18px;
  border-radius:26px;
  text-decoration:none !important;
  color:#fff;
  margin:20px auto;        /* ← ده أهم شيء للتوسيط */
  margin-left:auto;        /* ← توسيط */
  margin-right:auto;       /* ← توسيط */
  width:92%;               /* ← عرض مناسب للموبايل */
  max-width:480px;         /* ← مايزيدش في الشاشات الكبيرة */
  box-shadow:0 14px 32px rgba(0,0,0,.14);
  position:relative;
  overflow:hidden;
  transition:.25s ease;
  font-family:'Cairo',sans-serif;
}

/* Radial lights for 140 effect */
.eh-cta-job::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 90% 15%, rgba(255,255,255,.45), transparent 65%),
    radial-gradient(circle at 15% 85%, rgba(255,255,255,.20), transparent 70%);
  mix-blend-mode:soft-light;
  opacity:.9;
}

.eh-cta-job:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.eh-cta-content{
  display:flex;
  align-items:center;
  gap:16px;
  position:relative;
  z-index:2;
}

.eh-cta-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  background:#fff;
  padding:10px;
  object-fit:contain;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
}

.eh-cta-text .txt-ar{
  font-size:17px;
  font-weight:800;
  line-height:1.5;
  color:#fff;
  text-shadow:0 1px 2px rgba(0,0,0,.25);
}
  
  
  
  
  /* ==================================================
   Street Ads WhatsApp Channel - 140 Premium Style
   Compact English Version
================================================== */

.eh140-feature-channel{
  direction: rtl;
  padding: 24px 14px 32px;
  font-family: "Cairo", system-ui, Arial;
}

.eh140-feature-card{
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  padding: 16px;
  background:
    radial-gradient(circle at 12% 15%, rgba(245,198,70,.30), transparent 28%),
    radial-gradient(circle at 90% 85%, rgba(195,32,38,.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  border: 1px solid rgba(195,32,38,.10);
  box-shadow:
    0 18px 42px rgba(0,0,0,.09),
    0 0 0 6px rgba(245,198,70,.06);
}

.eh140-feature-card::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(195,32,38,.08), transparent 38%),
    linear-gradient(315deg, rgba(245,198,70,.18), transparent 40%);
  pointer-events:none;
}

.eh140-feature-card::after{
  content:"140";
  position:absolute;
  left: -8px;
  bottom: -32px;
  font-size: 96px;
  line-height: 1;
  font-weight: 900;
  color: rgba(195,32,38,.055);
  letter-spacing: -5px;
  pointer-events:none;
}

.eh140-feature-top{
  position: relative;
  z-index: 2;
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 14px;
}

.eh140-feature-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding: 0 13px;
  border-radius:999px;
  background: linear-gradient(135deg,#c32026,#f0642d);
  color:#fff;
  font-size:12px;
  font-weight:900;
  box-shadow:0 8px 18px rgba(195,32,38,.22);
}

.eh140-wa-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:#ffffff;
  color:#128c4a;
  font-size:11.5px;
  font-weight:900;
  direction:ltr;
  border:1px solid rgba(18,140,74,.18);
  box-shadow:
    0 6px 14px rgba(0,0,0,.05),
    0 0 0 4px rgba(37,211,102,.06);
}

.eh140-wa-chip i{
  font-size:15px;
  color:#25d366;
}

.eh140-feature-line{
  height:4px;
  flex:1;
  border-radius:999px;
  background:linear-gradient(90deg,#c32026 0%,#f0642d 48%,#f5c646 100%);
  box-shadow:0 6px 18px rgba(195,32,38,.18);
  opacity:.9;
}

.eh140-feature-main{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:16px;
}

.eh140-feature-logo{
  position:relative;
  flex: 0 0 126px;
  width:126px;
  height:126px;
  display:grid;
  place-items:center;
}

.eh140-feature-logo::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:conic-gradient(from 220deg,#c32026,#f0642d,#f5c646,#c32026);
  box-shadow:0 12px 26px rgba(195,32,38,.18);
}

.eh140-feature-logo::after{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:50%;
  background:#fff;
  z-index:1;
}

.eh140-orbit{
  position:absolute;
  inset:-7px;
  border-radius:50%;
  border:1px dashed rgba(195,32,38,.30);
  animation: eh140Spin 14s linear infinite;
}

.eh140-feature-logo img{
  position:relative;
  z-index:2;
  width:104px;
  height:104px;
  object-fit:cover;
  border-radius:50%;
  display:block;
  box-shadow:0 8px 18px rgba(0,0,0,.14);
  background:#fff;
}

.eh140-wa-mini{
  position:absolute;
  z-index:4;
  right:4px;
  bottom:8px;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  display:grid;
  place-items:center;
  border:3px solid #fff;
  box-shadow:0 8px 16px rgba(37,211,102,.25);
}

.eh140-wa-mini i{
  font-size:18px;
}

.eh140-feature-copy{
  flex:1;
  min-width:0;
  padding-left: 4px;
}

.eh140-feature-copy h2{
  margin:0;
  color:#c32026;
  font-size:clamp(25px,7vw,38px);
  line-height:1;
  font-weight:900;
  letter-spacing:.2px;
  direction:ltr;
  text-align:right;
}

.eh140-feature-copy h3{
  margin:7px 0 8px;
  color:#0b0f16;
  font-size:clamp(16px,4.6vw,22px);
  line-height:1.35;
  font-weight:900;
}

.eh140-feature-copy p{
  margin:0 0 14px;
  color:#6b7280;
  font-size:13.5px;
  line-height:1.85;
  font-weight:600;
}

.eh140-feature-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:44px;
  padding:0 18px 0 12px;
  border-radius:16px;
  background:#fff;
  color:#c32026 !important;
  text-decoration:none;
  font-size:14px;
  font-weight:900;
  border:1px solid rgba(195,32,38,.14);
  box-shadow:
    0 8px 18px rgba(0,0,0,.07),
    0 2px 0 rgba(245,198,70,.30) inset;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.eh140-feature-btn > i{
  font-size:18px;
  color:#25d366;
  background:#fff;
  width:28px;
  height:28px;
  border-radius:50%;
  display:grid;
  place-items:center;
  box-shadow:0 4px 10px rgba(37,211,102,.18);
}

.eh140-feature-btn span{
  color:#c32026;
}

.eh140-feature-btn b{
  width:27px;
  height:27px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#c32026,#f0642d);
  color:#fff;
  font-size:17px;
  line-height:1;
  transform:rotate(180deg);
}

.eh140-feature-btn:hover{
  transform:translateY(-2px);
  border-color:rgba(195,32,38,.26);
  box-shadow:
    0 12px 24px rgba(195,32,38,.14),
    0 2px 0 rgba(245,198,70,.35) inset;
}

.eh140-feature-btn:active{
  transform:scale(.98);
}

@keyframes eh140Spin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

/* ==================================================
   English Compact Only
================================================== */

.eh140-feature-channel.eh140-en{
  direction:ltr;
  padding: 10px 12px 14px;
  font-family:"Poppins", "Cairo", system-ui, Arial;
}

.eh140-feature-channel.eh140-en .eh140-feature-card{
  max-width: 560px;
  border-radius: 24px;
  padding: 12px 14px;
}

.eh140-feature-channel.eh140-en .eh140-feature-card::after{
  left: -5px;
  bottom: -24px;
  font-size: 70px;
}

.eh140-feature-channel.eh140-en .eh140-feature-top{
  gap: 7px;
  margin-bottom: 8px;
}

.eh140-feature-channel.eh140-en .eh140-feature-tag,
.eh140-feature-channel.eh140-en .eh140-wa-chip{
  min-height: 24px;
  padding: 0 9px;
  font-size: 10px;
}

.eh140-feature-channel.eh140-en .eh140-wa-chip i{
  font-size: 13px;
}

.eh140-feature-channel.eh140-en .eh140-feature-line{
  height: 3px;
}

.eh140-feature-channel.eh140-en .eh140-feature-main{
  gap: 11px;
  align-items: center;
}

.eh140-feature-channel.eh140-en .eh140-feature-logo{
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
}

.eh140-feature-channel.eh140-en .eh140-feature-logo::after{
  inset: 6px;
}

.eh140-feature-channel.eh140-en .eh140-orbit{
  inset: -5px;
}

.eh140-feature-channel.eh140-en .eh140-feature-logo img{
  width: 66px;
  height: 66px;
}

.eh140-feature-channel.eh140-en .eh140-wa-mini{
  width: 25px;
  height: 25px;
  left: 0;
  right: auto;
  bottom: 3px;
  border-width: 2px;
}

.eh140-feature-channel.eh140-en .eh140-wa-mini i{
  font-size: 13px;
}

.eh140-feature-channel.eh140-en .eh140-feature-copy{
  padding-left: 0;
  padding-right: 4px;
}

.eh140-feature-channel.eh140-en .eh140-feature-copy h2{
  font-size: 22px;
  line-height: 1.1;
  text-align: left;
}

.eh140-feature-channel.eh140-en .eh140-feature-copy h3{
  margin: 4px 0 5px;
  font-size: 14px;
  line-height: 1.3;
  text-align: left;
}

.eh140-feature-channel.eh140-en .eh140-feature-copy p{
  margin: 0 0 8px;
  font-size: 11.5px;
  line-height: 1.55;
  text-align: left;
}

.eh140-feature-channel.eh140-en .eh140-feature-btn{
  min-height: 34px;
  padding: 0 8px 0 11px;
  border-radius: 13px;
  font-size: 11.5px;
  gap: 6px;
}

.eh140-feature-channel.eh140-en .eh140-feature-btn > i{
  width: 21px;
  height: 21px;
  font-size: 13px;
}

.eh140-feature-channel.eh140-en .eh140-feature-btn b{
  width: 21px;
  height: 21px;
  font-size: 13px;
  transform: rotate(0deg);
}

/* Mobile */
@media (max-width:480px){
  .eh140-feature-channel.eh140-en{
    padding: 8px 12px 12px;
  }

  .eh140-feature-channel.eh140-en .eh140-feature-card{
    border-radius: 22px;
    padding: 11px 12px;
  }

  .eh140-feature-channel.eh140-en .eh140-feature-top{
    margin-bottom: 7px;
  }

  .eh140-feature-channel.eh140-en .eh140-feature-main{
    gap: 9px;
  }

  .eh140-feature-channel.eh140-en .eh140-feature-logo{
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .eh140-feature-channel.eh140-en .eh140-feature-logo img{
    width: 56px;
    height: 56px;
  }

  .eh140-feature-channel.eh140-en .eh140-wa-mini{
    width: 22px;
    height: 22px;
    bottom: 2px;
  }

  .eh140-feature-channel.eh140-en .eh140-wa-mini i{
    font-size: 12px;
  }

  .eh140-feature-channel.eh140-en .eh140-feature-copy h2{
    font-size: 20px;
  }

  .eh140-feature-channel.eh140-en .eh140-feature-copy h3{
    font-size: 12.8px;
  }

  .eh140-feature-channel.eh140-en .eh140-feature-copy p{
    font-size: 10.5px;
    line-height: 1.45;
    margin-bottom: 7px;
  }

  .eh140-feature-channel.eh140-en .eh140-feature-btn{
    min-height: 31px;
    border-radius: 12px;
    font-size: 10.5px;
  }

  .eh140-feature-channel.eh140-en .eh140-feature-btn > i,
  .eh140-feature-channel.eh140-en .eh140-feature-btn b{
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}


/* ==================================================
   Street Ads WhatsApp Channel - 140 Premium Style
   Compact Arabic Version
================================================== */

.eh140-feature-channel{
  direction: rtl;
  padding: 24px 14px 32px;
  font-family: "Cairo", system-ui, Arial;
}

.eh140-feature-card{
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  padding: 16px;
  background:
    radial-gradient(circle at 12% 15%, rgba(245,198,70,.30), transparent 28%),
    radial-gradient(circle at 90% 85%, rgba(195,32,38,.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  border: 1px solid rgba(195,32,38,.10);
  box-shadow:
    0 18px 42px rgba(0,0,0,.09),
    0 0 0 6px rgba(245,198,70,.06);
}

.eh140-feature-card::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(195,32,38,.08), transparent 38%),
    linear-gradient(315deg, rgba(245,198,70,.18), transparent 40%);
  pointer-events:none;
}

.eh140-feature-card::after{
  content:"140";
  position:absolute;
  left: -8px;
  bottom: -32px;
  font-size: 96px;
  line-height: 1;
  font-weight: 900;
  color: rgba(195,32,38,.055);
  letter-spacing: -5px;
  pointer-events:none;
}

.eh140-feature-top{
  position: relative;
  z-index: 2;
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 14px;
}

.eh140-feature-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding: 0 13px;
  border-radius:999px;
  background: linear-gradient(135deg,#c32026,#f0642d);
  color:#fff;
  font-size:12px;
  font-weight:900;
  box-shadow:0 8px 18px rgba(195,32,38,.22);
}

.eh140-wa-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:#ffffff;
  color:#128c4a;
  font-size:11.5px;
  font-weight:900;
  direction:rtl;
  border:1px solid rgba(18,140,74,.18);
  box-shadow:
    0 6px 14px rgba(0,0,0,.05),
    0 0 0 4px rgba(37,211,102,.06);
}

.eh140-wa-chip i{
  font-size:15px;
  color:#25d366;
}

.eh140-feature-line{
  height:4px;
  flex:1;
  border-radius:999px;
  background:linear-gradient(90deg,#c32026 0%,#f0642d 48%,#f5c646 100%);
  box-shadow:0 6px 18px rgba(195,32,38,.18);
  opacity:.9;
}

.eh140-feature-main{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:16px;
}

.eh140-feature-logo{
  position:relative;
  flex: 0 0 126px;
  width:126px;
  height:126px;
  display:grid;
  place-items:center;
}

.eh140-feature-logo::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:conic-gradient(from 220deg,#c32026,#f0642d,#f5c646,#c32026);
  box-shadow:0 12px 26px rgba(195,32,38,.18);
}

.eh140-feature-logo::after{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:50%;
  background:#fff;
  z-index:1;
}

.eh140-orbit{
  position:absolute;
  inset:-7px;
  border-radius:50%;
  border:1px dashed rgba(195,32,38,.30);
  animation: eh140Spin 14s linear infinite;
}

.eh140-feature-logo img{
  position:relative;
  z-index:2;
  width:104px;
  height:104px;
  object-fit:cover;
  border-radius:50%;
  display:block;
  box-shadow:0 8px 18px rgba(0,0,0,.14);
  background:#fff;
}

.eh140-wa-mini{
  position:absolute;
  z-index:4;
  right:4px;
  bottom:8px;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  display:grid;
  place-items:center;
  border:3px solid #fff;
  box-shadow:0 8px 16px rgba(37,211,102,.25);
}

.eh140-wa-mini i{
  font-size:18px;
}

.eh140-feature-copy{
  flex:1;
  min-width:0;
  padding-left: 4px;
}

.eh140-feature-copy h2{
  margin:0;
  color:#c32026;
  font-size:clamp(25px,7vw,38px);
  line-height:1;
  font-weight:900;
  letter-spacing:.2px;
  direction:rtl;
  text-align:right;
}

.eh140-feature-copy h3{
  margin:7px 0 8px;
  color:#0b0f16;
  font-size:clamp(16px,4.6vw,22px);
  line-height:1.35;
  font-weight:900;
}

.eh140-feature-copy p{
  margin:0 0 14px;
  color:#6b7280;
  font-size:13.5px;
  line-height:1.85;
  font-weight:600;
}

.eh140-feature-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:44px;
  padding:0 18px 0 12px;
  border-radius:16px;
  background:#fff;
  color:#c32026 !important;
  text-decoration:none;
  font-size:14px;
  font-weight:900;
  border:1px solid rgba(195,32,38,.14);
  box-shadow:
    0 8px 18px rgba(0,0,0,.07),
    0 2px 0 rgba(245,198,70,.30) inset;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.eh140-feature-btn > i{
  font-size:18px;
  color:#25d366;
  background:#fff;
  width:28px;
  height:28px;
  border-radius:50%;
  display:grid;
  place-items:center;
  box-shadow:0 4px 10px rgba(37,211,102,.18);
}

.eh140-feature-btn span{
  color:#c32026;
}

.eh140-feature-btn b{
  width:27px;
  height:27px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#c32026,#f0642d);
  color:#fff;
  font-size:17px;
  line-height:1;
  transform:rotate(180deg);
}

.eh140-feature-btn:hover{
  transform:translateY(-2px);
  border-color:rgba(195,32,38,.26);
  box-shadow:
    0 12px 24px rgba(195,32,38,.14),
    0 2px 0 rgba(245,198,70,.35) inset;
}

.eh140-feature-btn:active{
  transform:scale(.98);
}

@keyframes eh140Spin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

/* ==================================================
   Arabic Compact Only
================================================== */

.eh140-feature-channel.eh140-ar{
  direction:rtl;
  padding: 10px 12px 14px;
  font-family:"Cairo", system-ui, Arial;
}

.eh140-feature-channel.eh140-ar .eh140-feature-card{
  max-width: 560px;
  border-radius: 24px;
  padding: 12px 14px;
}

.eh140-feature-channel.eh140-ar .eh140-feature-card::after{
  left: -5px;
  bottom: -24px;
  font-size: 70px;
}

.eh140-feature-channel.eh140-ar .eh140-feature-top{
  gap: 7px;
  margin-bottom: 8px;
}

.eh140-feature-channel.eh140-ar .eh140-feature-tag,
.eh140-feature-channel.eh140-ar .eh140-wa-chip{
  min-height: 24px;
  padding: 0 9px;
  font-size: 10px;
}

.eh140-feature-channel.eh140-ar .eh140-wa-chip i{
  font-size: 13px;
}

.eh140-feature-channel.eh140-ar .eh140-feature-line{
  height: 3px;
}

.eh140-feature-channel.eh140-ar .eh140-feature-main{
  gap: 11px;
  align-items: center;
}

.eh140-feature-channel.eh140-ar .eh140-feature-logo{
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
}

.eh140-feature-channel.eh140-ar .eh140-feature-logo::after{
  inset: 6px;
}

.eh140-feature-channel.eh140-ar .eh140-orbit{
  inset: -5px;
}

.eh140-feature-channel.eh140-ar .eh140-feature-logo img{
  width: 66px;
  height: 66px;
}

.eh140-feature-channel.eh140-ar .eh140-wa-mini{
  width: 25px;
  height: 25px;
  right: 0;
  bottom: 3px;
  border-width: 2px;
}

.eh140-feature-channel.eh140-ar .eh140-wa-mini i{
  font-size: 13px;
}

.eh140-feature-channel.eh140-ar .eh140-feature-copy{
  padding-left: 4px;
}

.eh140-feature-channel.eh140-ar .eh140-feature-copy h2{
  font-size: 22px;
  line-height: 1.1;
  text-align: right;
}

.eh140-feature-channel.eh140-ar .eh140-feature-copy h3{
  margin: 4px 0 5px;
  font-size: 14px;
  line-height: 1.3;
  text-align: right;
}

.eh140-feature-channel.eh140-ar .eh140-feature-copy p{
  margin: 0 0 8px;
  font-size: 11.5px;
  line-height: 1.55;
  text-align: right;
}

.eh140-feature-channel.eh140-ar .eh140-feature-btn{
  min-height: 34px;
  padding: 0 11px 0 8px;
  border-radius: 13px;
  font-size: 11.5px;
  gap: 6px;
}

.eh140-feature-channel.eh140-ar .eh140-feature-btn > i{
  width: 21px;
  height: 21px;
  font-size: 13px;
}

.eh140-feature-channel.eh140-ar .eh140-feature-btn b{
  width: 21px;
  height: 21px;
  font-size: 13px;
}

/* Mobile */
@media (max-width:480px){
  .eh140-feature-channel.eh140-ar{
    padding: 8px 12px 12px;
  }

  .eh140-feature-channel.eh140-ar .eh140-feature-card{
    border-radius: 22px;
    padding: 11px 12px;
  }

  .eh140-feature-channel.eh140-ar .eh140-feature-top{
    margin-bottom: 7px;
  }

  .eh140-feature-channel.eh140-ar .eh140-feature-main{
    gap: 9px;
  }

  .eh140-feature-channel.eh140-ar .eh140-feature-logo{
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .eh140-feature-channel.eh140-ar .eh140-feature-logo img{
    width: 56px;
    height: 56px;
  }

  .eh140-feature-channel.eh140-ar .eh140-wa-mini{
    width: 22px;
    height: 22px;
    bottom: 2px;
  }

  .eh140-feature-channel.eh140-ar .eh140-wa-mini i{
    font-size: 12px;
  }

  .eh140-feature-channel.eh140-ar .eh140-feature-copy h2{
    font-size: 20px;
  }

  .eh140-feature-channel.eh140-ar .eh140-feature-copy h3{
    font-size: 12.8px;
  }

  .eh140-feature-channel.eh140-ar .eh140-feature-copy p{
    font-size: 10.5px;
    line-height: 1.45;
    margin-bottom: 7px;
  }

  .eh140-feature-channel.eh140-ar .eh140-feature-btn{
    min-height: 31px;
    border-radius: 12px;
    font-size: 10.5px;
  }

  .eh140-feature-channel.eh140-ar .eh140-feature-btn > i,
  .eh140-feature-channel.eh140-ar .eh140-feature-btn b{
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}


.eh140-feature-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.eh140-feature-card-link:hover,
.eh140-feature-card-link:focus {
  text-decoration: none;
  color: inherit;
}

.eh140-feature-card-link .eh140-feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}