@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

* {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input, textarea {
  caret-color: transparent;
}




body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background-color: #F4F4F4;
  color: #444;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
html {
  scroll-behavior: smooth;
}
}

/* الشريط العلوي */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1E2A38;
  padding: 25px 20px;
  color: white;
  position: sticky;
  top: 0;
  z-index: 999;
  height: 80px;
}

.logo img {
  height: 180px;
  width: auto;
  padding-top: 10px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #C9A94E; /* لون الخط عند المرور */
  transition: width 0.3s;
}

.nav-links a:hover {
  color: #C9A94E; /* لون النص عند المرور */
}

.nav-links a:hover::after {
  width: 100%; /* ظهور الخط */
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background-color: white;
  color: #1E2A38;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.8em;
  font-weight: normal;
  text-align: center;
  line-height: 30px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.lang-btn:hover {
  background-color: #C9A94E;
  color: white;
}

.login-btn {
  background-color: white;
  color: #1E2A38;
  padding: 6px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  margin-left: 24px;
  transition: background-color 0.3s, color 0.3s;
}

.login-btn:hover {
  background-color: #C9A94E;
  color: white;
}

.main-title {
  background-color: #1E2A38;
  color: white;
  text-align: center;
  padding: 60px 20px 250px 20px;
  position: relative;
}

.main-title h1 {
  margin: 0;
  font-size: 2.5em;
  font-weight: bold;
}

.main-title .hero {
  margin-top: 30px;
}

.hero h2 {
  color: white;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.description {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: white;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  font-size: 1em;
  border-radius: 45px;
  text-decoration: none;
  transition: background-color 0.3s, border 0.3s;
  min-width: 150px;
  text-align: center;
}

.btn:hover {
  border: none;
}

.primary-btn {
  background-color: #1E2A38;
  color: #fff;
  border: 2px solid #fff;

}
.secondary-btn {
  background-color: #C9A94E;
  color: #fff;
  border: none;
  border-radius: 45px;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: linear-gradient(to right, #1E2A38, #37495c);
  transform: scale(1.05);
}
.secondary-btn:hover {
  background-color: transparent;
  color: #C9A94E;
  border: 1px solid #C9A94E;
}



/* نقل feature-box خارج description */
.feature-box {
  background-color: #fff;
  padding: 40px 20px;
  max-width: 1000px;
  margin: -100px auto 0 auto;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.feature-item {
  flex: 1;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #1E2A38;
}

.feature-item p {
  font-size: 1em;
  color: #555;
}

.icon-box-img {
  background: linear-gradient(135deg, #d4af37, #c9a94e); /* تدرج ذهبي */
  border-radius: 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.icon-box-img img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.about-transparent {
  background: none;
  padding: 80px 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-transparent h2 {
  font-size: 2.5em;
  font-weight: bold;
  color: #1E2A38;
  margin-bottom: 10px;
  position: relative;
}

.underline {
  width: 80px;
  height: 4px;
  margin: 0 auto 30px;
  background: linear-gradient(to left, #C9A94E, #1E2A38);
  border-radius: 2px;
}

.about-transparent p {
  font-size: 1.3em;
  color: #444;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 20px;
}

.sub-underline {
  width: 60%;
  height: 1px;
  margin: 20px auto 0;
  background-color: #ccc;
  opacity: 0.6;
}

.section-title {
  text-align: center;
  color: #1E2A38;
  margin-bottom: 30px;
  font-size: 2em;
  font-weight: bold;
}

.section-divider {
  width: 80px;
  height: 4px;
  margin: 0 auto 30px;
  background: linear-gradient(to left, #C9A94E, #1E2A38);
  border-radius: 2px;
}

.profile-section {
  padding: 60px 20px;
  background-color: #fff;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.profile-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  text-align: center;
  background-color: white;
  transition: transform 0.3s;
  padding: 20px 10px;
}

.profile-card:hover {
  transform: translateY(-5px);
}

.profile-card img {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      background: linear-gradient(45deg, #FFD700, #FFA500);
      padding: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
}


/* المحتوى الأصلي داخل البطاقة */
.profile-card img,
.profile-card h3,
.profile-card p {
  transition: opacity 0.3s;
  z-index: 1;
  position: relative;
}

/* عند المرور نخفي كل شيء */
.profile-card:hover img,
.profile-card:hover h3,
.profile-card:hover p {
  opacity: 0;
}

/* التغطية الداكنة */
.profile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 42, 56, 0.92);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 20px;
  z-index: 2;
}

/* تُعرض فقط عند المرور */
.profile-card:hover .profile-overlay {
  opacity: 1;
}

/* تصميم الزرين */
.profile-overlay button {
  background: linear-gradient(to right, #C9A94E, #af8f30);
  border: none;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  margin: 8px;
  font-size: 1em;
  font-weight: bold;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.profile-overlay button:hover {
  background: linear-gradient(to right, #1E2A38, #37495c);
  transform: scale(1.05);
}


/* **************************** */
.bg-gradient-consultants {
  background: linear-gradient(to bottom right, #F4F4F4, #e9ecef);
}

.bg-gradient-arbiters {
  background: linear-gradient(to bottom right, #e9ecef, #fef7e0);
}

.bg-gradient-experts {
  background: linear-gradient(to bottom right, #fef7e0, #ffffff);
}

/* **************************** */
.experts-count-section {
  text-align: center;
  padding: 60px 20px;
  background-color: none; /* خلفية ناعمة */
  font-family: 'Cairo', sans-serif;
}

.experts-title {
  font-size: 48px;
  font-weight: bold;
  color: #000;
  margin: 0;
}

.experts-title .label {
  font-weight: bold;
  color: #000;
}

.experts-title .number {
  background: linear-gradient(90deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 74px;
  animation: shine 2s infinite alternate;
}

/* تأثير جذاب للرقم */
@keyframes shine {
  from {
    filter: brightness(1);
  }
  to {
    filter: brightness(1.4);
  }
}

.experts-underline {
  width: 160px;
  height: 4px;
  margin: 0 auto 30px;
  background: linear-gradient(to left, #C9A94E, #1E2A38);
  border-radius: 2px;
}

.experts-subtext {
  color: #222;
  font-size: 1.3em;
  margin-top: 15px;
}
/* قسم المجالات */
.fields-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Cairo', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
  position: relative;
}

.fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
}

.field-card {
  background: #fdfdfd;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  max-width: 200px;
  width: 100%;
}

.field-card:hover {
  transform: translateY(-5px);
}

.field-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px gold);
}

.field-card h3 {
  font-size: 18px;
  color: #222;
  margin: 0;
}

.see-more-container {
  margin-top: 40px;
  text-align: center;
}

.see-more-btn {
  background: linear-gradient(90deg, #d4af37 0%, #f0c75e 100%);
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.see-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.5);
}

/* قسم المجالات */
.field-card {
  position: relative;
  overflow: hidden;
  background: #fdfdfd;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  max-width: 200px;
  width: 100%;
  z-index: 1;
  cursor: pointer;
}

.field-card:hover {
  transform: translateY(-5px);
}

.field-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.field-title {
  font-size: 18px;
  color: #222;
  margin: 0;
  font-family: 'Cairo', sans-serif;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.field-card:hover .field-title {
  color: #FFD700; /* اللون الذهبي عند المرور */
}

.overlay {
  position: absolute;
  top: 100%;
  bottom: -100%;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, #0a2342, #112e52); /* أزرق داكن متدرج */
  z-index: 1;
  transition: all 0.5s ease;
}

.field-card:hover .overlay {
  top: 0;
  bottom: 0;
}

/* *********nos Services********** */
.services-section {
  background-color: rgba(255, 255, 255, 0.6); /* خلفية شفافة */
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-family: 'Cairo', sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.section-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f0c75e 100%);
  margin: 0 auto 40px auto;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0c75e, #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 40px;
  height: 40px;
}

.service-title {
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.service-desc {
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
/* **************************** */
.contact-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  direction: rtl;
  text-align: center;
  font-family: 'Cairo', sans-serif;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #000;
}

.section-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #c8a962, #e0c17c);
  margin: 10px auto 20px;
  border-radius: 2px;
}

.contact-description {
  color: #333;
  font-size: 20px;
  margin-bottom: 40px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  resize: none;
}

.contact-form button {
  background: linear-gradient(to right, #c8a962, #e0c17c);
  border: none;
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: linear-gradient(to left, #c8a962, #e0c17c);
}

.contact-info {
  flex: 1;
  min-width: 250px;
  text-align: right;
  font-size: 16px;
  color: #444;
}

.contact-info p {
  margin: 10px 0;
}

.contact-map {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}
#counter {
  background: linear-gradient(90deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 100px;
  animation: shine 2s infinite alternate;
}

/* **************************** */
.site-footer {
  background: linear-gradient(to right, #0c0e2b, #331b0f);
  color: #fff;
  font-family: 'Cairo', sans-serif;
  padding: 60px 20px 30px;
}

.site-footer .container {
  max-width: 1200px;
  margin: auto;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
  margin: 20px;
}

.footer-col h2.logo {
  font-size: 24px;
  color: gold;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  color: #fff;
  font-weight: bold;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -8px; /* تحكم في المسافة بين العنوان والخط */
  right: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f1c40f); /* ذهبي متدرج */
  border-radius: 2px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 15px;
  line-height: 1.8;
  color: #ddd;
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col.newsletter form {
  display: flex;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 15px;
}

.footer-col.newsletter input {
  border: none;
  padding: 10px;
  flex: 1;
  outline: none;
}

.footer-col.newsletter button {
  background: gold;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px dotted white; /* إطار متقطع أبيض */
  background-color: transparent; /* داخل الأيقونة شفاف */
  color: white;
  font-size: 18px;
  text-decoration: none;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #d4af37; /* ذهبي عند المرور */
  border: 2px solid #d4af37; /* يصبح الخط ذهبي عادي */
  color: #0d2235; /* لون الأيقونة أزرق داكن */
}

.privacy-link {
  margin-top: 25px;
  text-align: center;
}

.privacy-link a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
  border-bottom: 1px dotted #d4af37;
}

.privacy-link a:hover {
  color: #d4af37;
}


hr {
  margin: 40px 0 20px;
  border: none;
  border-top: 1px solid #444;
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

/* صفحة الخصوصية */
.privacy-page.navbar {
  background-color: #ffffff;
  padding: 15px 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 999;
  transition: all 0.3s ease;
}

.privacy-page.navbar a {
  color: #0d2235;
  text-decoration: none;
  font-weight: bold;
  margin-left: 20px;
  transition: color 0.3s;
}

.privacy-page.navbar a:hover {
  color: #d4af37;
}

.privacy-page.navbar .logo {
  font-size: 20px;
  color: #d4af37;
  font-weight: bold;
}

/* ✅ جعل الشريط ثابتاً عند النزول */
.privacy-page.sticky-navbar {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


/* صفحة الخصوصية */
