.about-timeline .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
}

.timeline-item.reverse {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.timeline-content h2 {
  font-size: 1.8rem;
  color: #8aaa0d;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 1rem;
  color: #555;
  text-align: justify;
}

.timeline-image {
  flex: 1;
}

.timeline-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Fade-in عند التمرير */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-in-out;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media(max-width: 768px) {
  .timeline-item, .timeline-item.reverse {
    flex-direction: column;
  }
}
