@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap");


/* ==========================
   قواعد عامة
   ========================== */


.content-section {
  padding: 80px 0;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.content-section h2 {
  color: var(--primary-mid);
  margin-bottom: 10px;
  font-size: 1.8rem;
}
.content-section p,
.content-section li {
  margin-bottom: 12px;
  color: #333;
}
.content-section ul {
  padding-right: 20px;
}
.services-list,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .services-list,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* إنسيابية الظهور */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* عن الشركة (About) */


@keyframes floatIcon {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.card h3 {
  color: var(--primary-mid);
  margin-bottom: 10px;
}
ul {
  list-style: disc;
  padding-right: 20px;
  margin: 0;
}
li {
  margin-bottom: 6px;
  color: #444;
  transition: color 0.3s;
}
li:hover {
  color: var(--primary-mid);
}
/* الخدمات أفقي */
.services-list-horizontal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: nowrap;
}
