/* تنسيق الهيدر */
header {
  background-color: #5c4033; /* بني غامق */
  color: white;
  padding: 30px;
  text-align: center;
}

header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

header p {
  font-size: 18px;
  margin: 0;
}

/* تنسيق شريط التنقل */
nav {
  margin-top: 20px;
  text-align: center;
}

nav a {
  text-decoration: none;
  background-color: #a0522d; /* لون بني دافئ */
  color: white;
  padding: 12px 25px;
  margin: 10px;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: #8b4513; /* لون بني أغمق عند المرور */
}

/* تنسيق قسم عن الشركة */
.about {
  padding: 40px;
  text-align: center;
  background-color: #f4f4f4; /* خلفية فاتحة */
}

.about h2 {
  font-size: 24px;
  color: #5c4033;
}

.about p {
  font-size: 18px;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

/* تنسيق قسم خدماتنا */
.services {
  padding: 40px;
  background-color: #e0e0e0; /* خلفية رمادية */
  text-align: center;
}

.services h2 {
  font-size: 24px;
  color: #5c4033;
}

.services ul {
  list-style-type: none;
  padding: 0;
}

.services li {
  font-size: 18px;
  color: #333;
  margin: 10px 0;
}

/* تنسيق قسم المنتجات المميزة */
.featured-products {
  padding: 40px;
  text-align: center;
  background-color: #f4f4f4;
}

.featured-products h2 {
  font-size: 24px;
  color: #5c4033;
}

.featured-products p {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.featured-products .button {
  text-decoration: none;
  background-color: #a0522d;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.featured-products .button:hover {
  background-color: #8b4513;
}

/* تخصيص الخلفية العامة */
body {
  background-color: #c8ad7f; /* لون طيني دافئ */
}

/* تنسيق المنتجات */
.product {
  background-color: #ffffff; /* خلفية بيضاء لكل منتج */
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px;
}

.product h3 {
  font-size: 20px;
  color: #5c4033; /* بني غامق */
}

.product p {
  font-size: 16px;
  color: #333;
}

.product img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* تنسيق عرض المنتجات */
.product-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.product-row .product {
  width: 250px; /* تحديد عرض المنتج */
  text-align: center;
}

/* تنسيق الصورة الثالثة */
.product-row .product:last-child {
  width: 100%;
  margin-top: 30px;
}

body {
  font-family: 'Cairo', sans-serif;
}









