/* :root {
  /* 🎨 أساسي *
  --primary: #F59E0B;      /* تركواز *
  --secondary: #9333EA;    /* تركواز أغمق *

  /* 🎯 ألوان مساعدة *
  --accent-gold: #06B6D9;  /* ذهبي *
  --accent-purple: #0E7490;/* بنفسجي *

  /* 🌐 خلفيات *
  --background-light: #F9FAFB;
  --background-dark: #0F172A;

  /* ✍ النصوص *
  --text-dark: #1E293B;
  --text-light: #FFFFFF;

  /* 🌈 تدرجات *
  --gradient-blue: linear-gradient(150deg, , #2874de);
  --gradient-purple: linear-gradient(150deg, #06B6D9, #9e4aec);
  --gradient-dark: linear-gradient(150deg, #06B6D9, #1E3A8A);
} */
/* =====================================================Fonts========================================================== */
    /* font-family: 'Cairo', Arial, sans-serif; */
    /* font-family: 'Noto Sans Arabic', sans-serif; */
    /* font-family: 'IBM Plex Sans Arabic', sans-serif;  عرض و كويس*/
    /* font-family: 'Baloo Bhaijaan 2', cursive;  عريض و منفوخ*/
    /* font-family: 'Reem Kufi Fun', sans-serif;     فيه اشكال*/ 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
:root {
  /* 🎨 أساسي */
  --primary: #06B6D9;      /* تركواز */
  --secondary: #1e9ec1;    /* تركواز أغمق */

  /* 🎯 ألوان مساعدة */
  --accent-silver: #c0c0c0;  /* ذهبي */
  --accent-purple: #e5e7eb;/* بنفسجي */

  /* 🌐 خلفيات */
  --background-light: #FFFFFF ;
  --background-dark: #0F172A;

  /* ✍ النصوص */
  --text-dark: #1E293B;
  --text-light: #FFFFFF;

  /* 🌈 تدرجات */
  --gradient-blue: linear-gradient(150deg, #06B6D9, #2874de);
  --gradient-purple: linear-gradient(150deg, #06B6D9, #9e4aec);
  --gradient-dark: linear-gradient(150deg, #06B6D9, #1E3A8A);
}
body {
  background: linear-gradient(160deg, #e2f5f8, #e1f5f8, #f8f9fa );
  min-height: 100vh;
  margin: 0;
}
/* ===========================================head=============================================== */
header {
  position: relative; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 4%;
  background-color: var(--primary);
  color: white;
  flex-wrap: wrap;
  z-index: 2;
}
.logo img {
  height: 35px;
}
.logo:hover img{
  transform: scale(1.1);
  transition: transform 0.7s ease;
  filter: invert(1); /* يقلب الأبيض لأسود */
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 18px;
}
.nav-links a:hover {
  color:var(--text-dark);
}
.social-icons a {
  color: var(--text-light);
  font-size: 18px;
  margin-right: 15px;
}
.social-icons a:hover {
  color: var(--text-dark);
}
.img-main{
  width:99%;
  margin: 20px 0.5% 100px 0.5%;
  display: flex;
  justify-content: center;
}
.img-main img{
  object-fit: cover;
  width: 99%;
  height: 85vh;
  border-radius: 3px;
  box-shadow: #4c363e 0px 0px 10px;
}
/*==========================================AL-AHED=============================================== */
.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 60px auto;
  font-size: 20px;
}

.heading {
  color: black;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}

.loading {
  display: flex;
  width: 5em;
  align-items: center;
  justify-content: center;
}

.load {
  width: 23px;
  height: 3px;
  background-color: var(--primary);
  animation: 1s move_5011 infinite;
  border-radius: 5px;
  margin: 0.1em;
}

.load:nth-child(1) {
  animation-delay: 0.2s;
}

.load:nth-child(2) {
  animation-delay: 0.4s;
}

.load:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes move_5011 {
  0% {
    width: 0.2em;
  }

  25% {
    width: 0.7em;
  }

  50% {
    width: 1.5em;
  }

  100% {
    width: 0.2em;
  }
}
/*============================================feedback========================================== */
.feedback {
  max-width: 600px;
  margin: 80px auto;
  padding: 20px;
  background: #effbfe;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  direction: rtl ;
}
.feedback h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #06B6D9; /* تركواز */
}
.feedback form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.feedback label {
  font-weight: bold;
  margin-bottom: 5px;
}
.feedback input,
.feedback select,
.feedback textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s;
}
.feedback input:focus,
.feedback select:focus,
.feedback textarea:focus {
  border-color: #06B6D9;
  outline: none;
  box-shadow: 0 0 5px rgba(6,182,217,0.5);
}
.feedback button {
  background: #06B6D9;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}
.feedback button:hover {
  background: #0E7490;
  transform: scale(1.05);
}
/*==========================================footer============================================ */
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; 
  gap: 40px;
  background: #1b1b1b;
  color: #fff;
  padding: 50px 8%;
  text-align: center;
}
.footer-bottom {
  text-align: center;
  background-color: #1b1b1b;
  font-size: 14px;
  color: #d5d4d4;
  padding-bottom: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer h1, .footer h2 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #ffcc00;
}
.footer p {
  margin: 10px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo {
  margin-top: 15px;
  padding: 5px;
  max-width: 120px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(245, 197, 3, 0.5);
}
.footer .social-icons {
  margin-top: 15px;
}
.footer .social-icons a {
  margin: 0 8px;
  font-size: 22px;
  color: #fff;
  transition: 0.3s;
}
.footer .social-icons a:hover {
  color: #ffcc00;
}
.footer-left nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ddd;
  margin: 8px 0;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16px;
}
.footer-left nav a:hover {
  color: #ffcc00;
}
@media (max-width: 768px) {
  header { /*--------------head----------------------*/
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 3%;
  }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 5px;
    flex-wrap: wrap;
  }
  .logo {
    order: 2;
  }
  .logo img{
    height: 25px;
  }
  .social-icons a {
    font-size: 14px;
    margin-right: 8px;
  }
  .social-icons {
    order: 1;
  }
  .loader {
    margin-top: 40px;
  }
  .feedback {
    margin: 80px 1.5%;
  }
  .footer {
    grid-template-columns: 1fr;   /* يخليهم تحت بعض */
    text-align: center;           /* توسيط النصوص */
  }
  .footer p {
    justify-content: center;
  }
  .footer-left nav a {
    justify-content: center;
  }
  .footer .social-icons {
    display: flex;
    justify-content: center;
  }
}


