/* About Hero =================================================================================== */
.about-hero {
  position: relative;
  background: url("../assets/office-bg.jpg") center/cover no-repeat; /* path सही करें */
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: #fea557cf; /* Orange overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-tag {
  display: inline-block;
  background: #fff;
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.about-hero-inner h1 {
  font-family: "Belanosima", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.about-hero-inner p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.about-hero .btn {
  background: #fff;
  color: #000;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  width: auto; /* अब पूरे row को cover नहीं करेगा */
}
.about-hero .btn:hover {
  background: #000;
  color: #fff;
}

/* Our Story Section ==================================================== */
.about-story {
  background: #fff;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-tag {
  display: inline-block;
  background: rgba(134, 77, 247, 0.15);
  color: #864df7;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 6px;
  margin-bottom: 18px;
}

.about-story h2 {
  color: #000;

  /* H1 */
  font-family: Inter;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 67.2px */
}

.about-story p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 28px;
  max-width: 500px;
}

.btn-story {
  display: inline-block;
  background: #fea557;
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-story:hover {
  background: #f97a2b;
  transform: translateY(-2px);
}

.story-visual img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-story p {
    margin: 0 auto 28px;
  }
  .story-visual {
    order: -1; /* image top on mobile */
  }
}

/* Mission Values Section */
.mission-values {
  padding: 120px 0;
  /* background: #fff; */
}

.mission-values::before,
.mission-values::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.65;
  z-index: 0;
}
.mission-values::before {
  left: -160px;
  top: 30%;
  background: rgba(134, 77, 247, 0.64);
}

.mission-values::after {
  right: 0px;
  bottom: 30%;
  background: rgba(254, 165, 87, 0.758);
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  align-items: center;
  gap: 50px;
}

.mission-copy {
  margin-left: 80px;
}
.mission-copy h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  line-height: 120%; /* 67.2px */
}

.mission-copy p {
  font-size: 1.05rem;
  color: #444;
  max-width: 480px;
}

/* purple bg behind cards */
.mission-cards-wrap {
  position: relative;
}

.mission-bg {
  position: absolute;
  /* top: -40px; */
  left: 0;
  width: 100%;
  height: 180px;
  border-radius: 20px 0 0 20px;
  background: linear-gradient(rgba(134, 77, 247, 0.8), rgba(134, 77, 247, 0.8)),
    url("../assets/about/laptop-bg.jpg") center/cover no-repeat;
  z-index: 1;
}

.mission-cards {
  display: flex;
  /* gap: 24px; */
  position: relative;
  z-index: 2; /* bring above bg */
  margin-top: 100px;
  justify-content: space-evenly;
}

.mission-card {
  display: flex;
  width: 250px;
  height: 280px;
  padding: 18px 16px;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  padding: 28px 24px;
  /* flex: 1; */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

.mission-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.mission-card p {
  font-size: 1rem;
  color: #444;
}

/* Responsive */
@media (max-width: 992px) {
  .mission-values{
    display: none;
  }
  .mission-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mission-cards {
    flex-direction: column;
  }
  .mission-bg {
    height: 100%;
  }
}

