/* ================================================
   MAIN.CSS — Mazel Group
   Cleaned: removed duplicate rules, fixed fade-up
   ================================================ */

/* ──────────────────────────────────────────────
   Logo
────────────────────────────────────────────── */
.logo img {
  height: 170px;
  width: auto;
}

/* ──────────────────────────────────────────────
   Heading Accent Line
────────────────────────────────────────────── */
.heading-line {
  display: block;
  width: 60px;
  height: 4px;
  background: #95c11f;
  margin-top: 8px;
  border-radius: 2px;
}

/* ──────────────────────────────────────────────
   Experience Badge
────────────────────────────────────────────── */
.experience-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #95c11f;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* ──────────────────────────────────────────────
   Fade-up (JS-driven via IntersectionObserver)
   NOTE: No CSS animation here — JS adds .show
────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────
   About Section
────────────────────────────────────────────── */
.about-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.about-intro {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

/* Text */
.about-details {
  flex: 1;
}
.about-details h2 {
  position: relative;
  font-size: 2rem;
  margin-bottom: 18px;
  color: #222;
}
.about-details p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

/* Image */
.about-img {
  flex: 1;
  position: relative;
}
.about-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* ──────────────────────────────────────────────
   About Highlights
────────────────────────────────────────────── */
.about-highlights {
  display: flex;
  gap: 25px;
  margin: 60px auto 0;
  max-width: 1200px;
}

.highlight {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}
.highlight .icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

/* ──────────────────────────────────────────────
   About Quote
────────────────────────────────────────────── */
.about-quote {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
  position: relative;
}
.about-quote::before,
.about-quote::after {
  font-size: 2.2rem;
  color: #95c11f;
  position: absolute;
}

/* ──────────────────────────────────────────────
   Responsive
────────────────────────────────────────────── */
@media (max-width: 991px) {
  .about-intro {
    flex-direction: column;
    text-align: center;
  }
  .about-highlights {
    flex-direction: column;
  }
  .heading-line {
    margin-left: auto;
    margin-right: auto;
  }
  .experience-badge {
    top: 12px;
    left: 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .about-quote {
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .about-quote::before,
  .about-quote::after {
    font-size: 2rem;
  }
}