/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin:0;
  padding:0;
  font-family:'Cairo', sans-serif;
}

/* COLORS */
:root{
  --blue:#1E3B2E;
  --blue-dark:#1E3B2E;
  --gold:#D4AF37;
}

/* TOP BAR */
.top-bar{
  background:var(--blue-dark);
  color:#f9f9f9;
  font-size:13px;
  padding:2px 20px;
}
.top-bar-content{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  align-items:center;
}
.header-phone{
  color:#fff;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:600;
}
.header-phone i{
  background:#C9A44C;
  color:var(--blue-dark);
  width:26px;
  height:26px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
}
.phone-number{
  direction:ltr;
  unicode-bidi:bidi-override;
}

/* HEADER */
.main-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:linear-gradient(135deg,var(--blue),#1c4235);
  padding:6px 20px;
}

.lang-btn{
  position:absolute;
  left:20px;
  top:78px;
  background:var(--gold);
  color:var(--blue);
  border:none;
  padding:7px 16px;
  border-radius:20px;
  font-weight:700;
  cursor:pointer;
}

.header-flex{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:24px;
  align-items:center;
  min-height:auto;
}

.brand-box{
  display:flex;
  gap:14px;
  align-items:center;
}
.logo-svg svg{
  width:54px;
  height:54px;
}
.title-box h1{
  color:#C9A44C;
  font-size:19px;
}
.title-box p{
  color:#fff;
  font-size:13px;
  opacity:.85;
}

.header-nav{
  grid-column:1/-1;
  display:flex;
  justify-content:center;
  margin-top:12px;
}
.header-nav ul{
  display:flex;
  gap:34px;
  list-style:none;
}
.header-nav a{
  color:#fcfcfc;
  text-decoration:none;
  font-weight:600;
  padding:1px 6px;
  border:1px solid #C9A44C;
  border-radius:10px;
  transition: all 0.35s ease;
}
.header-nav a:hover{
  color:#C9A44C;
}

/* HERO */
.hero{
  background:url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat;
  padding:120px 16px;
  text-align:center;
  color:#fdfbfb;
}
.hero-content{
  background:rgba(28, 66, 53, 0.461);
  padding:36px;
  border-radius:18px;
  max-width:720px;
  margin:auto;
}
.cta-btn{
  background:var(--gold);
  color:var(--blue);
  border:none;
  padding:14px 34px;
  border-radius:30px;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  margin-top:16px;
}

/* WHY CARDS */
.why-jadier {
  background: #f7faf913;
  padding: 70px 20px;
  direction: rtl;
}
.why-title {
  font-size: 32px;
  font-weight: 700;
  color: #C9A44C;
  margin-bottom: 10px;
}
.why-subtitle {
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 50px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.why-card {
  background: linear-gradient(180deg, #faf6eb90);
  padding: 28px 22px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.why-card h3 {
  font-size: 20px;
  color: #1c4235;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

/* FOOTER */
footer{
  background:var(--blue-dark);
  color:#fff;
  text-align:center;
  padding:30px 16px;
}
.footer-social{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-bottom:3px;
}
.footer-social a{
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  font-size:18px;
  text-decoration:none;
  transition:0.3s ease;
}
.footer-social a:nth-child(1){ background:#000; }
.footer-social a:nth-child(2){ background:#FFFC00; color:#000; }
.footer-social a:nth-child(3){ background:#000; }
.footer-social a:nth-child(4){
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.footer-social a:hover{
  transform: translateY(-3px);
  opacity:0.9;
}

.site-footer{
  padding:6px 8px;
  text-align:center;
  line-height:1.2;
}
.site-footer p{ font-size:11px; margin:2px 0; }
.footer-links{ font-size:10px; margin-top:2px; }
.footer-links a{ margin:0 3px; color:#777; text-decoration:none; }
.footer-links a:hover{ color:#C9A44C; }
.footer-links span{ font-size:9px; color:#aaa; }

/* WHATSAPP */
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:#fff;
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  z-index:3000;
  text-decoration:none;
}

/* MODAL */
.service-modal{
  position:fixed;
  inset:0;
  background:rgba(255,254,254,0.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:4000;
}
.service-box{
  background:#1c4235;
  width:100%;
  max-width:420px;
  padding:26px;
  border-radius:18px;
  position:relative;
  text-align:center;
}
.service-box h3{
  color:white;
  margin-bottom:16px;
}
.service-box input,
.service-box select,
.service-box textarea{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border-radius:10px;
  border:1px solid #ddd;
}
.close-modal{
  position:absolute;
  top:12px;
  left:16px;
  font-size:26px;
  cursor:pointer;
  color:#999;
}
.success-msg{
  display:none;
  text-align:center;
  color:white;
}
.success-msg i{
  font-size:42px;
  color:var(--gold);
  margin-bottom:10px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .lang-btn{ position: static; margin:12px auto 0; display:block; }
  .header-flex{ grid-template-columns: 1fr; text-align:center; gap:10px; }
  .brand-box{ justify-content:center; }
  .header-nav ul{ flex-wrap:wrap; gap:12px; justify-content:center; }
  .header-nav a{ padding:6px 10px; }
  .hero{ padding:80px 16px; }
  .hero-content{ padding:20px; }
  .why-grid{ grid-template-columns: 1fr; }
  .whatsapp-float{ bottom:14px; right:14px; width:50px; height:50px; font-size:22px; }
  .image-strip{ grid-template-columns:1fr; gap:12px; }
  .image-strip img{ height:220px; }
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #D4AF37;
  cursor: pointer;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #0b1c2d;
  }

  .header-nav.active {
    display: block;
  }

  .header-nav ul {
    flex-direction: column;
    text-align: center;
  }

  .header-nav a {
    padding: 15px;
    display: block;
    color: #fff;
  }
}
/* ===== MOBILE SIDE MENU ===== */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 26px;
    color: #D4AF37;
    cursor: pointer;
    z-index: 1001;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -260px; /* مخفية */
    width: 260px;
    height: 100vh;
    background: #0b1c2d;
    padding-top: 80px;
    transition: right 0.35s ease;
    z-index: 1000;
  }

  .header-nav.active {
    right: 0; /* تنزلق */
  }

  .header-nav ul {
    display: flex;
    flex-direction: column;
    text-align: right;
  }

  .header-nav li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .header-nav a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-size: 16px;
  }

  .header-nav a:hover {
    background: rgba(212,175,55,0.15);
  }

  /* خلفية شفافة عند فتح القائمة */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 999;
  }

  .menu-overlay.active {
    display: block;
  }
}
/* ===== MOBILE ADVANCED MENU ===== */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 26px;
    color: #D4AF37;
    cursor: pointer;
    z-index: 1002;
  }

  .header-nav {
    position: fixed;
    top: 0;
    inset-inline-end: -280px; /* RTL / LTR ذكي */
    width: 280px;
    height: 100vh;
    background: #0b1c2d;
    padding-top: 70px;
    transition: inset-inline-end 0.35s ease;
    z-index: 1001;
  }

  .header-nav.active {
    inset-inline-end: 0;
  }

  .close-menu {
    position: absolute;
    top: 20px;
    inset-inline-start: 20px;
    background: none;
    border: none;
    font-size: 22px;
    color: #D4AF37;
    cursor: pointer;
  }

  .header-nav ul {
    display: flex;
    flex-direction: column;
    text-align: start;
  }

  .header-nav a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-size: 16px;
  }

  .header-nav a:hover {
    background: rgba(212,175,55,0.15);
  }

  /* Overlay + Blur */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    z-index: 1000;
  }

  .menu-overlay.active {
    display: block;
  }
}
.site-logo img{
  width:72px;
  height:72px;
  object-fit:contain;
  border-radius:14px; /* إبعاد الزوايا */
}

/* ===============================
   ADDITIONS ONLY – NO OVERRIDES
   =============================== */

/* زر الإغلاق ✕ داخل القائمة */
@media (max-width: 768px) {
  .header-nav {
    will-change: inset-inline-end;
  }

  .close-menu {
    position: absolute;
    top: 18px;
    inset-inline-start: 18px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gold);
    cursor: pointer;
    line-height: 1;
  }
}

/* Overlay مع Blur للخلفية */
@media (max-width: 768px) {
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 999;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
}

/* تحسين حركة الانزلاق */
@media (max-width: 768px) {
  .header-nav {
    transition: inset-inline-end 0.35s cubic-bezier(.4,0,.2,1);
  }
}

/* دعم RTL / LTR تلقائي (ذكي) */
html[dir="rtl"] .header-nav {
  inset-inline-end: -280px;
}
html[dir="rtl"] .header-nav.active {
  inset-inline-end: 0;
}

html[dir="ltr"] .header-nav {
  inset-inline-start: -280px;
  inset-inline-end: auto;
}
html[dir="ltr"] .header-nav.active {
  inset-inline-start: 0;
}

/* تحسين تجربة اللمس (Swipe جاهزية CSS) */
@media (max-width: 768px) {
  .header-nav {
    touch-action: pan-y;
  }
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  width: 95%;
  max-width: 420px;
  position: relative;
  animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
  from {opacity:0; transform: translateY(20px);}
  to {opacity:1; transform: translateY(0);}
}

.close-modal {
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 26px;
  cursor: pointer;
}

.service-form label {
  display: block;
  margin-top: 14px;
  font-weight: 600;
}

.service-form input,
.service-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: Cairo;
}
.service-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.service-box {
  background: #235e35;
  padding: 25px;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 26px;
  cursor: pointer;
}

.success-msg {
  display: none;
  color: green;
  text-align: center;
  margin-top: 20px;
}
.contact-options {
  display: none;
  margin-top: 10px;
  gap: 10px;
}

.contact-options a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  background: #1f7a3f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.contact-options a.whatsapp {
  background: #25D366;
}
.site-footer .footer-social {
  display: inline-flex;
  gap: 18px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(239, 233, 63, 0.35);
}
.why-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #f2f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  width: 55%;
  height: 55%;
  object-fit: contain;
}
.dropdown {
  position: relative;
}

/* السهم */
.dropdown .arrow {
  font-size: 12px;
  margin-inline-start: 6px;
  transition: transform 0.3s ease;
}

/* القائمة */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  z-index: 999;
}

/* LTR */
html[dir="ltr"] .dropdown-menu {
  right: auto;
  left: 0;
}

/* hover للكمبيوتر فقط */
@media (hover: hover) and (pointer: fine) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown:hover .arrow {
    transform: rotate(180deg);
  }
}

/* الجوال */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
  }
}
/* تأكيد أن القائمة المنسدلة مستقلة تمامًا */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;

  width: max-content;      /* يمنع الشريط العريض */
  min-width: 220px;
  max-width: 280px;

  background: #fff;
  padding: 8px 0;
  margin: 0;

  list-style: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 10px;

  z-index: 9999;
}

/* LTR تلقائي */
html[dir="ltr"] .dropdown-menu {
  right: auto;
  left: 0;
}

/* منع الوراثة من nav */
.dropdown-menu li {
  display: block;
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 10px 16px;
  white-space: nowrap;
}
/* ===== FIX نهائي لمشكلة الشريط الأبيض في القائمة المنسدلة ===== */
.header-nav ul > li.dropdown {
  position: relative;
}

.header-nav ul > li.dropdown > ul.dropdown-menu {
  position: absolute !important;
  display: none;
  flex: none !important;          /* 🔑 هذا السطر هو الحل */
  width: auto !important;
  align-self: flex-start;
}
@media (hover: hover) and (pointer: fine) {
  .header-nav ul > li.dropdown:hover > ul.dropdown-menu {
    display: block;
  }
}
@media (max-width: 768px) {
  .header-nav ul > li.dropdown > ul.dropdown-menu {
    position: static !important;
    width: 100% !important;
    box-shadow: none;
    border-radius: 0;
  }
}
/* ===== تصغير القائمة المنسدلة + لون الخط أخضر ===== */
.header-nav ul > li.dropdown > ul.dropdown-menu {
  min-width: 180px;     /* أصغر من السابق */
  max-width: 220px;
  padding: 4px 0;       /* تقليل الارتفاع */
}

/* عناصر القائمة */
.header-nav ul > li.dropdown > ul.dropdown-menu li a {
  font-size: 14px;              /* تصغير الخط */
  padding: 5px 14px;            /* تصغير المسافات */
  color: #1E3B2E;               /* أخضر (لون الموقع) */
  font-weight: 600;
}

/* Hover */
.header-nav ul > li.dropdown > ul.dropdown-menu li a:hover {
  background: rgba(30, 59, 46, 0.08);
  color: #1E3B2E;
}
/* ===== Dropdown: أصغر حجم + أخضر شبه شفاف + خط أبيض ===== */
.header-nav ul > li.dropdown > ul.dropdown-menu {
  min-width: 150px;
  max-width: 180px;
  padding: 2px 0;

  background: rgba(30, 59, 46, 0.92); /* أخضر شبه شفاف */
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* عناصر القائمة */
.header-nav ul > li.dropdown > ul.dropdown-menu li a {
  font-size: 13px;
  padding: 6px 12px;
  color: #ffffff;
  font-weight: 600;
}

/* Hover */
.header-nav ul > li.dropdown > ul.dropdown-menu li a:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}
/* =========================
   HAMBURGER MENU (CSS ONLY)
   NO HTML CHANGE
   ========================= */

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  user-select: none;
}

/* الجوال */
@media (max-width: 768px) {

  /* إخفاء القائمة افتراضياً */
  .header-nav {
    display: none;
    width: 100%;
  }

  .header-nav.active {
    display: block;
  }

  .header-nav ul {
    flex-direction: column;
    width: 100%;
    background: inherit;
  }

  .header-nav ul li a {
    display: block;
    padding: 12px;
    text-align: center;
  }

  /* زر الهامبرجر */
  .menu-toggle {
    display: block;
    text-align: center;
    margin: 10px auto;
  }

  /* dropdown داخل الجوال */
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }
}
@media (max-width: 768px) {

  .menu-toggle {
    position: absolute;
    left: 12px;   /* أقصى اليسار */
    top: 12px;
    margin: 0;
    z-index: 9999;
  }

  .main-header {
    position: relative;
  }

}
/* ===============================
   FORCE MOBILE HEADER FIX
   =============================== */
@media screen and (max-width: 768px) {

  /* === HEADER === */
  .main-header {
    position: relative !important;
    display: block !important;
    overflow: visible !important;
  }

  .header-flex {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    overflow: visible !important;
  }

  /* === LOGO FIX === */
  .brand-box {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  picture.site-logo,
  picture.site-logo img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  picture.site-logo img {
    max-width: 150px !important;
    height: auto !important;
  }

  /* === HAMBURGER BUTTON === */
  .menu-toggle {
    display: block !important;
    position: absolute !important;
    left: 12px !important;
    top: 14px !important;
    font-size: 28px !important;
    cursor: pointer !important;
    z-index: 99999 !important;
  }

  /* === NAV === */
  .header-nav {
    display: none !important;
    width: 100% !important;
  }

  .header-nav.active {
    display: block !important;
  }

  .header-nav ul {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  picture.site-logo source {
    display: none;
  }
}
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* الجوال */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-nav {
    display: none;
  }

  .header-nav.active {
    display: block;
  }
}
/* ========= LOGO FIX FOR MOBILE ========= */
@media screen and (max-width: 768px) {

  .main-header {
    position: relative !important;
    z-index: 1000;
  }

  .header-flex {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    overflow: visible !important;
  }

  .brand-box {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    overflow: visible !important;
    z-index: 1002; /* أعلى من زر القائمة */
    position: relative;
  }

  picture.site-logo,
  picture.site-logo img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 150px !important;
    height: auto !important;
    z-index: 1002;
  }

  .menu-toggle {
    z-index: 1001 !important; /* أسفل الشعار */
  }
}
/* ===== بطاقات احترافية ===== */
.card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin: 30px 0;
}

.card {
  background: linear-gradient(145deg, #fdfdfd, #f3f7fc);
  border-radius: 18px;
  padding: 25px 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  flex: 1 1 320px;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1a1a1a;
  border-bottom: 2px solid #0073e6;
  padding-bottom: 8px;
}

.card ul.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card ul.info-list li {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.card ul.info-list li i {
  color: #0073e6;
  margin-left: 8px;
}

.card .note {
  margin-top: 15px;
  font-weight: bold;
  color: #c00;
  font-size: 0.95rem;
}

.card a {
  color: #0073e6;
  text-decoration: none;
  font-weight: 600;
}

.card a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .card-section {
    flex-direction: column;
    align-items: center;
  }
}
/* ===== CARDS TEXT COLOR FIX ===== */
.why-card {
  background: #ffffff;
  color: #111;
}

.why-card h3 {
  color: #0f172a; /* عنوان داكن */
}

.why-card p {
  color: #1f2937;
  line-height: 1.8;
}

.why-card .info-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.why-card .info-list li {
  color: #111;
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-card .info-list i {
  color: #0d6efd; /* لون الأيقونات */
  min-width: 18px;
}

/* روابط التحميل داخل البطاقات */
.why-card a {
  color: #0d6efd;
  font-weight: 600;
  text-decoration: none;
}

.why-card a:hover {
  text-decoration: underline;
}
