* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f5f5f5;
  color: #fff;
  overflow-x: hidden;
}

/* HERO WITH IMAGE */
.hero1 {
  height: 70vh;
  background: url("/assets/images/About.avif")
    center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Dark overlay */
.hero1-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero1-content {
  position: relative;
  z-index: 2;
  animation: fadeDown 1.3s ease forwards;
}

.hero1 h1 {
  font-size: 3.2rem;
  margin-bottom: 10px;
}

.hero1 p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-sections {
  padding: 90px 20px;
  background: #f8f9f7;
}

.about-row {
  max-width: 1150px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-row.reverse {
  direction: rtl;
}
.about-row.reverse * {
  direction: ltr;
}

.about-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  transition: transform 0.5s ease;
}

.about-img img:hover {
  transform: scale(1.05);
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #1f2933;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
}

/* Animations */
.fade-up {
  animation: fadeUp 1.2s ease forwards;
}

.slide-up {
  animation: fadeUp 1.4s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .about-row {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
  }

  .about-img img {
    height: 300px;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}
