  /* Overlay خفيف لتوضيح النص */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* يملى الشاشة بالكامل */
  background-image: url('../imgs/about-bg.webp'); /* ضع رابط الصورة */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3); /* إضاءة سوداء خفيفة */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 20px;
}




.about {
  padding: 80px 20px;
  background: #4E5963;
  color: #F5F5F5;
  font-family: 'Cairo', sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
             /* للانيميشن */
  transform: translateY(50px);
  transition: all 1s ease;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-content {
  flex: 1;
}

.about-title {
  font-size: 36px;
  color: #7A262A; /* لون مختلف */
  margin-bottom: 10px;
}

.about-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
  color: #7A262A;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #D1D1D1;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 30px;
    transform: translateY(30px);
  }

  .about-title {
    font-size: 28px;
  }

  .about-subtitle {
    font-size: 20px;
  }

  .about-content p {
    font-size: 15px;
  }
}