* {
  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: #FFFFFF;

  /* 🌈 تدرجات */
  --gradient-blue: linear-gradient(150deg, , #2874de);
  --gradient-purple: linear-gradient(to bottom, #0c82a3, #e0f7fa);
  --gradient-dark: linear-gradient(150deg, #06B6D9, #1E3A8A);
}
body {
  background: linear-gradient(160deg, #c6e6eb, #daf3f7, #f8f9fa );
  min-height: 100vh;
  margin: 0;
}
/* =====================================================head======================================================== */
.hero {
  background: url('image/background1.webp') no-repeat center center/cover;
  border-radius: 15px;
  height: 88vh; 
  margin: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: #6c6d6d 0px 0px 45px;
}
header {
  position: relative; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 4%;
  color: var(--text-light);
  flex-wrap: wrap;
  z-index: 2;
  margin: 6px 1% ;
  background: rgba(223, 220, 220, 0.5);
  border-radius: 10px;
}
.logo img {
  height: 35px;
}
.logo:hover img{
  transform: scale(1.1);
  transition: transform 0.7s ease;
  filter: invert(1); /* يقلب الأبيض لأسود */
}
.nav-links {
  display: flex;
  gap: 35px;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-family: "Alexandria", sans-serif;
  font-weight: 380;
}
.nav-links a:hover {
  color:var(--secondary);
}
.social-icons a {
  color: var(--text-light);
  font-size: 18px;
  margin-right: 15px;
}
.social-icons a:hover {
  color:var(--secondary) ;
}
/*=====================================================Profile Section=========================================*/
.profile-section {
  margin: 60px auto;
  text-align: center;
  border-radius: 20px;
  max-width: 800px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.profile-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
}

.profile-container h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--secondary);
  font-weight: 600;
}

.profile-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  justify-content: center;
}

.view-btn {
  background: linear-gradient(135deg, #06B6D9, #0E7490);
  color: white;
}

.view-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 182, 217, 0.3);
  color: white;
}

.download-btn {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  color: white;
}

.profile-btn i {
  font-size: 18px;
}

/* Mobile Responsive for Profile Section */
@media (max-width: 768px) {
  .profile-section {
    margin: 40px 15px;
    padding: 30px 15px;
  }
  
  .profile-container {
    padding: 30px 20px;
  }
  
  .profile-container h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .profile-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .profile-btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 25px;
    font-size: 15px;
  }
}
/*==========================================================loding=========================================*/
.name{
  max-width: 900px;
  margin: 40px auto;
  padding: 15px;
  border-radius: 8px;
  border: 4px solid rgba(0,0,0,0.06);
  /* الظل الخارجي ليعمل إطار بارز */
  box-shadow:
    0 6px 18px rgba(0,0,0,0.12),   /* ظل عام */
    0 0 0 6px rgba(6,182,217,0.06); /* "هالة" خارجية بلون */
}
.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;
  }
}
/*=====================================================جمله افتتاحيه================================================*/
.card1 {
  margin: 100px auto;
  text-align: center;
  border-radius: 20px;
  max-width: 1100px;
  padding: 5px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
}
.card__content {
  background: linear-gradient(to bottom, #02cef7f6, #b0ecf4);
  border-radius: 17px;
  padding:75px 50px;
  width: 100%;
  height: 100%;
}    
.card__content h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--text-light);
}
.card__content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--secondary);
}
/* ===================================================الباقات والعروض======================================================== */
.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%; 
  padding: 40px 11%;
  margin: 5% 1%;
  border-radius: 8px;
  background: var(--gradient-purple);
}
.container h2 {
  margin: 0 auto;
  grid-column: 1 / -1; 
  text-align: center; 
  font-size: 1.5rem; 
  color: #fff; 
  font-weight: bold;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.1); 
  padding: 15px 20px;           
  border-radius: 10px;         
  box-shadow: 0 0 10px rgba(0,0,0,0.2); 
}
.container p {
  grid-column: 1 / -1;         
  text-align: center;          
  font-size: 1.2rem;           
  color: #f1f1f1;              
  margin-bottom: 30px;         
  font-weight: 500;            
  line-height: 1.8;             
  background: rgba(255, 255, 255, 0.1); 
  padding: 10px 15px;           
  border-radius: 10px;       
  box-shadow: 0 0 10px rgba(0,0,0,0.2); 
}
.container a {
  background-color:var(--secondary);   /* الخلفية تبقى جوه الكارد */
  border-radius: 5px;
  box-shadow: inset 0 0 20px rgb(96 228 123);
  overflow: hidden; /* يمنع الصورة تطلع برا */
  display: block;
}
.container img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease; /* حركة حلوة */
}
.container a:hover img {
  transform: scale(1.05); /* تكبير بسيط عند الهوفر */
}
/*=====================================================test======================================================== */
/* From Uiverse.io by andrew-demchenk0 */ 
.test{
  display: flex;
  justify-self: center;
  align-items: center;
  margin-bottom: 20px;
}
.pyramid-loader {
  position: relative;
  width: 100px;
  height: 100px;
  display: block;
  transform-style: preserve-3d;
  transform: rotateX(-20deg);
}
.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: spin 4s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotateY(360deg);
  }
}
.pyramid-loader .wrapper .side {
  width: 70px;
  height: 70px;
/* you can choose any gradient or color you want */
  /* background: radial-gradient( #2F2585 10%, #F028FD 70%, #2BDEAC 120%); */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.pyramid-loader .wrapper .side1 {
  transform: rotateZ(-30deg) rotateY(90deg);
  background: conic-gradient( #2BDEAC, #F028FD, #D8CCE6, #2F2585);
}
.pyramid-loader .wrapper .side2 {
  transform: rotateZ(30deg) rotateY(90deg);
  background: conic-gradient( #2F2585, #D8CCE6, #F028FD, #2BDEAC);
}

.pyramid-loader .wrapper .side3 {
  transform: rotateX(30deg);
  background: conic-gradient( #2F2585, #D8CCE6, #F028FD, #2BDEAC);
}

.pyramid-loader .wrapper .side4 {
  transform: rotateX(-30deg);
  background: conic-gradient( #2BDEAC, #F028FD, #D8CCE6, #2F2585);
}

.pyramid-loader .wrapper .shadow {
  width: 60px;
  height: 60px;
  background: #8B5AD5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotateX(90deg) translateZ(-40px);
  filter: blur(12px);
}
/* ===================================================حلول متكامله====================================== */
.why-us {
  background: linear-gradient(to bottom, var(--primary), #e0f7fa);
  padding: 40px 7% ;
  text-align: center;
  /* box-shadow: inset 0 0 20px #1e3a8a; */
  margin: 1%;
  border-radius: 5px;
  color: var(--text-light);
}
.why-us  h2 {
  font-size: 26px;
  /* background: rgba(255, 255, 255, 0.1);  */
  padding: 8px 8px;           
  border-radius: 10px;       
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  margin-bottom: 40px;
}
.cards {
  display: grid;
}
.cards a {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--background-light);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cards a:hover {
  transform: translateY(-5px);
}
.card {
  display: block;
  position: relative;
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  margin-bottom: 19px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #c3e6ec, #a7d1d9);
  font-family: Arial, Helvetica, sans-serif;
}
.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 2em;
  height: 2em;
  overflow: hidden;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #6293c8, #384c6c);
  border-radius: 0 4px 0 32px;
}
.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}
.card:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, #364a60, #384c6c);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.35s ease-out;
}
.card:hover:before {
  transform: scale(50);
}
.card:hover i{
  transform: scale(1.08);
  color: var(--primary);
}
.card i {
  font-size: 35px;
  color: var(--secondary);
  margin-bottom: 15px;
}
.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color:#163f35;
}
.card:hover h3 {
  color: var(--text-light);
}
.card p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}
.card:hover p{
  color: whitesmoke;
}
/* ============================================لماذا تختارن======================================================= */ 
.why-choose {
  background: linear-gradient(to bottom, var(--primary), #e0f7fa);
  padding: 50px 6%;
  margin: 100px 1%;
  color: var(--primary); 
  direction: rtl;
  border-radius: 10px;
}
.why-choose .wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.why-choose h2 {
  color: #1b4d3e;
  font-size: 2rem;
  margin-bottom: 8px;
}
.why-choose .subtitle {
  color: var(--secondary);
  margin-bottom: 30px;
  font-size: 1rem;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.feature {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(27,77,62,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}
.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(27,77,62,0.12);
}
.feature .icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(27,77,62,0.06), rgba(255,193,7,0.08));
  color:#163f35;
  font-size: 28px;
  transition: transform 0.25s ease, color 0.25s ease;
}
.feature:hover .icon {
  transform: scale(1.08);
  color: var(--primary);
}
.feature h3 {
  font-size: 1.05rem;
  color: #163f35;
  margin: 0;
}
.feature p {
  font-size: 0.95rem;
  color: #657d76;
  line-height: 1.5;
  margin-top: 6px;
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 22px 0 18px;
  flex-wrap: wrap;
}
.trust-item {
  background: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(27,77,62,0.06);
  min-width: 160px;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-size: 1.4rem;
  color: #1b4d3e;
}
.trust-item span {
  display: block;
  font-size: 0.9rem;
  color: #596e66;
  margin-top: 6px;
}
.why-cta {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.primary-cta {
  background: #ffc107;
  color: #08211a;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 8px black;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.primary-cta:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(255,193,7,0.22); }
.ghost-cta {
  background: #09cef6;
  color: #1b4d3e;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid #dbeae1;
  font-weight: 600;
}
.ghost-cta:hover { background: #42d7f4; }
.partners {
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
}
.partners h2 {
  font-size: 24px;
  color: #e67e22;
  margin-bottom: 30px;
}
/*========================================شركاء النجاح ================================================= */
.partners {
  text-align: center;
  margin: 5%;
  padding: 45px 9% ;
  background: #0bacae; 
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15),
              inset 0 0 15px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}
/* السلايدر */
.logos-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.logos-track {
  display: flex;
  width: max-content;
  animation: scrollRight 120s linear infinite;
}
.logos-track img {
  height: 100px;
  margin: 0 40px;
  transition: filter 0.3s ease;
}
/* أنيميشن التحرك لليمين */
@keyframes scrollRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
/*===============================From Uiverse.io by PriyanshuGupta28================================*/ 
.loader {
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 7% auto;
}
.circle {
  width: 20px;
  height: 20px;
  background-color: #8BC6EC;
  background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
  border-radius: 50%;
  margin-right: 1rem;
  animation: pulse 1.2s ease-in-out infinite;
}
.circle:nth-child(2) {
  animation-delay: 0.2s;
  background-color: #4158D0;
  background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
}

.circle:nth-child(3) {
  animation-delay: 0.4s;
  background-color: #0093E9;
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
}

.circle:nth-child(4) {
  animation-delay: 0.6s;
  background-color: #8EC5FC;
  background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
}

.circle:nth-child(5) {
  animation-delay: 0.8s;
  background-color: #00DBDE;
  background-image: linear-gradient(90deg, #00DBDE 0%, #FC00FF 100%);
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.8);
    opacity: 0.7;
  }
}
/*==========================================footer============================================ */
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; 
  text-align: center;
  gap: 40px;
  color: #fff;
  padding: 40px 8% 20px; /* صغرت البادينج تحت */
  background-color: #1b1b1b;
  position: relative;
}
.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;
}
/*===============================================whatsapp============================================*/
.whatsapp {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000;
  width: 40px;
  height: 40px;
}
.whatsapp img {
  width: 100%;
  height: auto;
  border-radius: 35%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: opacity 0.3s ease;
}
.hidden {
  opacity: 0;
  pointer-events: none;
}
/*===============================================phone================================================ */  
@media (min-width: 1024px) {  /*---------- حلول متكامله -------------*/
  .cards {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 5%;
  }
}
@media (max-width: 980px) {    /*-------- لماذا تختار العاهد -------- */
  .features { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-choose h2 { font-size: 1.6rem; }
}
@media (min-width: 769px) { /*-------- شركاء النجاح -------- */
  .logos-track img {
    height: 80px; /* على اللاب توب */
    margin: 0 40px;
  }
}
@media (min-width: 768px) {
  .cards {   /*-----------حلول متكامله-------------*/
    grid-template-columns: repeat(2, 1fr);
    display: grid;
      gap: 3%;
  }
}
@media (max-width: 768px) {
  header {      /*--------------head----------------------*/
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 1.5% 15px 1.5%;
  }
  .hero {
    background: url('image/Backgruond.webp') no-repeat center center/cover;
    height: 35vh;
    margin: 4px ;
    box-shadow: #0b2a22 0px 0px 45px;
  }
  .name{
  margin: 40px 6%;
}
  .card1 {
    margin: 15% 1.5%;
  }
  .card1 h1 {
    font-size: 1.3rem;
    margin: 10px 0px 20px 0px;
  }
  .card__content {
  padding:35px 10px;
} 
  .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 5px;
    flex-wrap: wrap;
    gap: 19px;
  }
  .nav-links a{
    font-size: 18px;
  }
  .logo {
    order: 1;
  }
  .logo img {
    height: 25px;
  }
  .social-icons a {
    font-size: 14px;
    margin-right: 10px;
  }
  .social-icons {
   order: 2;
  }
  .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 2%;
    padding: 30px 4%;
  }
  .container p {         
    font-size: 1rem;          
    line-height: 1.3;
  }
  .h2 {
    font-size: 1rem;
  }
  .why-us {
    padding: 40px 4%;
  }
  .why-us  h2 {
    font-size: 20px;
    padding: 10px 12px; 
    margin-bottom: 30px;
  }
  .logos-track img {   /*-------------------شركاء النجاح-----------------*/
    height: 50px; /* أصغر على الموبايل */
    margin: 0 20px; /* مسافة أقل */
  }
  .logos-track {
    animation: scrollRight 90s linear infinite;
 }
 .partners {
   margin: 8% 1%;
 }
  .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;
  }
}
 /*-------- لماذا تختار العاهد------------*/
@media (max-width: 560px) {  
  .features { grid-template-columns: 1fr; }
  .trust-item { min-width: 130px; }
  .why-choose { padding: 28px 5%; }
}
/*================================================reveal============================== */
/* الحالة الأولية لكل العناصر */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}
/* الحالة بعد ما تظهر */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


