/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 01 2025 | 23:28:23 */
/* ===========================
   Ma3ak bi Istanbul Academy
   Global Custom CSS
   =========================== */

/* خط عربي موحد (Cairo) */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

body {
  font-family: 'Cairo', sans-serif !important;
  direction: rtl;
  text-align: right;
  background-color: #f9fbfd; /* خلفية فاتحة مريحة */
  color: #222;
  line-height: 1.7;
}

/* ===== الشريط العلوي (Header) ===== */
header, .site-header, .topbar {
  background-color: #ADD8E6 !important; /* أزرق فاتح */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
header a, .site-header a {
  color: #000 !important;
  font-weight: 600;
}
header a:hover {
  color: #1d4ed8 !important; /* أزرق أغمق عند التمرير */
}

/* ===== القوائم ===== */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  display: inline-block;
  margin: 0 10px;
}
nav ul li a {
  padding: 8px 12px;
  border-radius: 6px;
}
nav ul li a:hover {
  background-color: #e0f2fe; /* أزرق باهت عند التمرير */
}

/* ===== البطاقات (الخدمات) ===== */
.card, .service-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover, .service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* ===== أزرار عامة ===== */
button, .btn, .wp-block-button__link {
  background-color: #3A86FF !important;
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none !important;
  border: none;
  transition: background 0.2s ease, transform 0.1s ease;
}
button:hover, .btn:hover, .wp-block-button__link:hover {
  background-color: #2563eb !important; /* أزرق أغمق */
  transform: translateY(-2px);
}

/* ===== الفوتر ===== */
footer, .site-footer {
  background-color: #f3f4f6 !important; /* رمادي فاتح */
  color: #374151 !important;
  padding: 20px;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}
footer a {
  color: #2563eb !important;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* ===== زر واتساب ثابت ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.whatsapp-btn:hover {
  background-color: #20b955;
}