
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
:root {
  /* 🎨 أساسي */
  --primary: #06B6D9;      /* تركواز */
  --secondary: #0E7490;    /* تركواز أغمق */

  /* 🎯 ألوان مساعدة */
  --accent-gold: #F59E0B;  /* ذهبي */
  --accent-purple: #9333EA;/* بنفسجي */

  /* 🌐 خلفيات */
  --background-light: #F9FAFB;
  --background-dark: #0F172A;

  /* ✍ النصوص */
  --text-dark: #1E293B;
  --text-light: #f0fdff;

  /* 🌈 تدرجات */
  --gradient-blue: linear-gradient(150deg, #06B6D9, #2874de);
  --gradient-purple: linear-gradient(150deg, #06B6D9, #9e4aec);
  --gradient-dark: linear-gradient(to bottom, var(--primary), #e0f7fa);
}
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: var(--gradient-purple);
  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: 80vh;
  border-radius: 3px;
  box-shadow: #4c363e 0px 0px 10px;
}
/*================================================= العنوان الرئيسي================================ */
 /*==========================================================loding=========================================*/
 .l {
  font-size: x-large;
  color: black;
  opacity: 0;
  animation: pass 2s ease-in-out infinite;
  animation-delay: 0.2s;
  letter-spacing: 0.5em;
  text-shadow: 2px 2px 3px #919191;
}
.o {
  font-size: x-large;
  color: black;
  opacity: 0;
  animation: pass 2s ease-in-out infinite;
  animation-delay: 0.4s;
  letter-spacing: 0.5em;
  text-shadow: 2px 2px 3px #919191;
}

.a {
  font-size: x-large;
  color: black;
  opacity: 0;
  animation: pass 2s ease-in-out infinite;
  animation-delay: 0.6s;
  letter-spacing: 0.5em;
  text-shadow: 2px 2px 3px #919191;
}
.d {
  font-size: x-large;
  color: black;
  opacity: 0;
  animation: pass 2s ease-in-out infinite;
  animation-delay: 0.8s;
  letter-spacing: 0.5em;
  text-shadow: 2px 2px 3px #919191;
}
.A {
  font-size: x-large;
  color: black;
  opacity: 0;
  animation: pass 2s ease-in-out infinite;
  animation-delay: 1s;
  letter-spacing: 0.5em;
  text-shadow: 2px 2px 3px #919191;
}
.i {
  font-size: x-large;
  color: black;
  opacity: 0;
  animation: pass 2s ease-in-out infinite;
  animation-delay: 1.2s;
  letter-spacing: 0.5em;
  text-shadow: 2px 2px 3px #919191;
}
.n {
  font-size: x-large;
  color: black;
  opacity: 0;
  animation: pass 2s ease-in-out infinite;
  animation-delay: 1.4s;
  letter-spacing: 0.5em;
  text-shadow: 2px 2px 3px #919191;
}
.g {
  font-size: x-large;
  color: black;
  opacity: 0;
  animation: pass 2s ease-in-out infinite;
  animation-delay: 1.6s;
  letter-spacing: 0.5em;
  text-shadow: 2px 2px 3px #919191;
}
.d1 {
  font-size: x-large;
  color: black;
  opacity: 0;
  animation: pass1 2s ease-in-out infinite;
  animation-delay: 1.8s;
  letter-spacing: 0.5em;
  text-shadow: 2px 2px 3px #919191;
}
.d2 {
  font-size: x-large;
  color: black;
  opacity: 0;
  animation: pass1 2s ease-in-out infinite;
  animation-delay: 2.2s;
  letter-spacing: 0.5em;
  text-shadow: 2px 2px 3px #919191;
}

@keyframes pass {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes pass1 {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
/*---------------------------title----------------------- */
.title {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, var(--primary), #e0f7fa);
  color: var(--secondary);
}
.title h1 {
  font-size: 2.5rem;
  margin: 20px;
  font-weight: 700;
  color:var(--background-light);
}
.title p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.title img {
  max-width: 550px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  animation: float 4s infinite ease-in-out;
}
        /* --------أنيميشن الصورة-----------*/
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
/*=========================================الأقسام=========================================== */
section {
  padding: 60px 8%;
  background: var(--text-light);
  margin: 60px 9%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  text-align: center;
}
section p{
    color: #1b1b1b;
    font-size: 1.1rem;   
}
section h2 {
  margin-bottom: 25px;
  font-size: 2rem;
  color: var(--secondary);
  position: relative;
}
section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--primary);
  margin: 10px auto 0;
  border-radius: 2px;
}
/*===============================================Grid============================================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}

.card {
  background: var(--text-light);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/*========================loder====================================*/
.loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  margin-bottom: 30px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 50%;
  -webkit-animation: dot-pulse2 1.5s ease-in-out infinite;
  animation: dot-pulse2 1.5s ease-in-out infinite;
}

.dot-1 {
  background-color: #4285f4;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.dot-2 {
  background-color: #34a853;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.dot-3 {
  background-color: #fbbc05;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.dot-4 {
  background-color: #ea4335;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.dot-5 {
  background-color: #4285f4;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

/* Variasi baru */
.dot-6 {
  background-color: #0f9d58;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.dot-7 {
  background-color: #673ab7;
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.dot-8 {
  background-color: #ff5722;
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}

@keyframes dot-pulse2 {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.5;
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.5;
  }
}
/*================================================قسم الشركاء =======================================*/
.partners {
  padding: 60px 2%;
  text-align: center;
  background: var(--gradient-dark);
}
.partners h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0f172a;
  position: relative;
}
.partners p{
  color: var(--text-light);
  margin-bottom: 35px;
}
.partners h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--accent-purple);
  margin: 10px auto 0;
  border-radius: 2px;
}

                /*---------الشبكة-----------------*/
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.partner-card {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.partner-card img {
  max-width: 145px;
  height: auto;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-card:hover img {
  transform: scale(1.08);
}

/* موبايل */
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .partner-card img {
    max-width: 90px;
  }
}

/*==========================================POV===========================*/
.about-testimonials {
  padding: 50px 5%;
  background: linear-gradient(to bottom, #13d0f5f6, #e0f4f7);
  text-align: center;
}

.about-testimonials h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: VAR(--text-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: #fff;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.client-logo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.testimonial-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #c2185b;
}

.testimonial-card p {
  font-size: 15px;
  color: #212121;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-testimonials {
  padding: 50px 5px;
}
.testimonials-grid {
  gap: 5px;
}
  .testimonial-card {
  padding: 20px 5px;
}
.about-testimonials h2 {
  font-size: 20px;
}
}
/*===================================================CTA========================================= */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: #61d3f3;
  color: var(--light);
  border-radius: 20px;
  margin: 40px 9%;
  border: #0f172a solid 3px;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.button {
  background: linear-gradient(140.14deg, #ec540e 15.05%, #d6361f 114.99%)
      padding-box,
    linear-gradient(142.51deg, #ff9465 8.65%, #af1905 88.82%) border-box;
  border-radius: 7px;
  border: 2px solid transparent;

  text-shadow: 1px 1px 1px #00000040;
  box-shadow: 8px 8px 20px 0px #45090059;

  padding: 10px 20px;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin-top:35px;
}

.button:hover {
  box-shadow: none;
  opacity: 80%;
}

/*==========================================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 img {
    height: 25px;
  }
  .social-icons a {
    font-size: 14px;
    margin-right: 8px;
  }
  .logo {
    order: 1;
  }
  .social-icons {
    order: 2;
  }
  .img-main img{
    width: 99%;
    height:28vh;
  }
  .title h1 {
    font-size: 1.5rem;
  }
  .title img {
    max-width: 100%;
  }
  section {
    padding: 60px 5%;
    margin: 60px 1.5%;
  }
  section h2 {/*-----------------section h2-------------------*/
    font-size: 1.6rem;
  }
  .cta h2 {/*--------------------cta h2----------------------*/
    font-size: 1.5rem;
  }
  .footer {   /*--------------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;
  }
}







