.fact-counter-area {
  background: #d61b51; /* same pink-red background */
  padding: 70px 0;
  color: #fff;
  font-family: Arial, sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.top-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.left-title {
  flex: 1;
}

.left-title h2 {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.right-text {
  flex: 1;
}

.right-text p {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.8;
  color: #111; /* black text like your screenshot */
  background: transparent;
}

.divider {
  margin: 30px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.counter-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.single-counter {
  text-align: center;
  min-width: 200px;
}

.single-counter h1 {
  font-size: 60px;
  font-weight: 800;
  margin: 0;
  color: #fff;
}

.single-counter h1 span {
  font-size: 34px;
  font-weight: 700;
}

.single-counter p {
  margin: 10px 0 0;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.middle-line {
  width: 2px;
  height: 80px;
  background: rgba(255, 255, 255, 0.4);
}

/* ✅ Mobile Responsive */
@media (max-width: 991px) {
  .top-content {
    flex-direction: column;
    gap: 20px;
  }

  .left-title h2 {
    text-align: center;
    font-size: 28px;
  }

  .right-text p {
    text-align: center;
  }

  .counter-box {
    flex-direction: column;
    gap: 20px;
  }

  .middle-line {
    width: 80px;
    height: 2px;
  }

  .single-counter h1 {
    font-size: 48px;
  }
}
.top-content {
  display: flex;
  gap: 40px;
  align-items: stretch;  /* right side full height */
}

.left-title {
  flex: 1;
  display: flex;
  align-items: center;   /* ✅ Title center */
}
