/* Heading Accent Line */
.about-details h2 {
  position: relative;
  font-size: 2rem;
  margin-bottom: 18px;
  color: #222;
}

.heading-line {
  display: block;
  width: 60px;
  height: 4px;
  background: #95c11f;
  margin-top: 8px;
  border-radius: 2px;
}

/* Experience Badge */
.about-img {
  position: relative;
}
 .logo img {
  height: 170px;
  width: auto;
     
 }

.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);
}

/* Smooth scroll animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile tweaks */
@media (max-width: 991px) {
  .experience-badge {
    top: 12px;
    left: 12px;
    font-size: 13px;
  }

  .heading-line {
    margin-left: auto;
    margin-right: auto;
  }
}

  .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 {
  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;
}

.about-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* 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: 0.3s ease;
}

.highlight:hover {
  transform: translateY(-8px);
}

.highlight .icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

/* Fade animation */
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .about-intro {
    flex-direction: column;
    text-align: center;
  }

  .about-highlights {
    flex-direction: column;
  }
}
.about-quote {
  font-size: 1.2rem;          /* reduced from 1.4rem */
  font-style: italic;
  font-weight: 400;
  color: #555;
  line-height: 1.6;           /* tighter line spacing */
  max-width: 820px;
  margin: 0 auto 30px;        /* reduced bottom space */
  text-align: center;
  position: relative;
}

/* Smaller quote marks */
.about-quote::before,
.about-quote::after {
  font-size: 2.2rem;          /* reduced size */
  color: #95c11f;
  position: absolute;
}



/* Mobile optimization */
@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;
  }
}
