/* إعدادات عامة */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
}

header img {
  max-height: 50px;
  max-width: 180px;
  height: auto;
  width: auto;
  object-fit: contain;
}

/* قائمة التنقل */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* صورة الهيرو */
.hero {
  background: url('https://via.placeholder.com/1200x400') center/cover no-repeat;
  height: 400px;
}

/* الأقسام */
.section {
  padding: 50px 20px;
  text-align: center;
}

.section:nth-child(even) {
  background-color: #f0f0f0;
}

.section:nth-child(odd) {
  background-color: #ffffff;
}

/* الخدمات */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.service {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
}

/* أيقونات أو صور الخدمات */
.service i,
.service img {
  display: inline-block;
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* عملاؤنا */
.clients-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
}

.clients-carousel img {
  height: 80px;
  width: 140px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  transition: transform 0.3s;
}

.clients-carousel img:hover {
  transform: scale(1.05);
}

/* معرض المشاريع */
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.project-card {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.project-card h4 {
  margin-top: 10px;
}

/* تواصل معنا */
.contact input,
.contact textarea {
  width: 80%;
  max-width: 500px;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  padding: 10px 30px;
  background-color: #f2b705;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

/* الفوتر */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}
