body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background: #f5f6fa;
}

/* Cover */
.hero {
  position: relative;
  height: 300px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.overlay h1 {
  font-size: 32px;
}

/* Projects */
.projects {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* Project block */
.project {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

/* عكس الاتجاه */
.project.reverse {
  flex-direction: row-reverse;
}

/* صورة */
.project img {
  width: 25%;
  border-radius: 15px;
}

/* النص */
.project .text {
  width: 25%;

}

.project h2 {
  margin-bottom: 10px;
  color:#5F6B09 ;
}

.project p {
  color: #555;
  line-height: 1.6;
}

/* موبايل */
@media (max-width: 768px) {
  .project {
    flex-direction: column;
  }

  .project.reverse {
    flex-direction: column;
  }

  .project img,
  .project .text {
    width: 100%;
  }
}