/* إعادة تعيين بعض الأنماط الافتراضية */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* تنسيق الجسم (Body) */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

/* تنسيق رأس الموقع (Navbar) */
header {
  background: #333;
  color: #fff;
  padding: 20px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 10px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  transition: background 0.3s;
}

.nav-links a:hover {
  background: #575757;
  border-radius: 5px;
}

/* أيقونة القائمة (للهواتف المحمولة) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
}

/* قسم البطل (Hero Section) */
.hero {
  background: url('hero.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  background: #e8491d;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #cf3f14;
}

/* الأقسام العامة */
section {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* قسم من نحن */
.about p {
  margin-top: 20px;
  font-size: 1.1em;
}

/* قسم الخدمات */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* قسم المشاريع */
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  flex: 1;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.project-card img {
  width: 100%;
  height: auto;
}

.project-card h3 {
  padding: 10px 0;
}

/* قسم اتصل بنا */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.contact-form button {
  border: none;
  padding: 10px;
  background: #333;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #575757;
}

/* ذيل الموقع (Footer) */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* الاستجابة (Responsive) */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 10px 0;
  }
  .menu-toggle {
    display: flex;
  }
  .services-grid, .projects-grid {
    flex-direction: column;
  }
}
