.about-hero {
  position: relative;
  min-height: 85vh;
  background: url("https://images.unsplash.com/photo-1555041469-a586c61ea9bc")
              center/cover no-repeat;
  display: flex;
  align-items: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(2,6,23,0.85),
    rgba(2,6,23,0.65)
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.about-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  color: white;
  font-weight: 800;
  letter-spacing: 1px;
}

.about-hero p {
  font-size: 18px;
  color: #e5e7eb;
  margin-top: 15px;
}

.about-badge {
  background: linear-gradient(135deg,#facc15,#f59e0b);
  color: #111;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(250,204,21,0.35);
}
.section-title {
  font-weight: 700;
  font-size: 32px;
  color: #0f172a;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg,#facc15,#f59e0b);
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}
p {
  line-height: 1.8;
}

.text-muted {
  color: #475569 !important;
}
.about-img {
  border-radius: 22px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.2);
}
.journey-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.journey-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 65px rgba(0,0,0,0.22);
}

.journey-box h4 {
  font-weight: 700;
  color: #f59e0b;
}
.business-box {
  background: linear-gradient(135deg,#ffffff,#f8fafc);
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  height: 100%;
  transition: transform 0.4s ease;
}

.business-box:hover {
  transform: translateY(-8px);
}

.business-box h4 {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}
.why-box {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.why-box:hover {
  background: #facc15;
  color: #111;
  transform: translateY(-6px);
}
.about-cta {
  background: linear-gradient(135deg,#020617,#0f172a);
  color: white;
  padding: 90px 0;
}

.about-cta h2 {
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .about-hero {
    min-height: 70vh;
    text-align: center;
  }

  .section-title {
    font-size: 26px;
  }
}
