/* Section Background */
.hope-journey-section {
  background-color: #fdeee3;
  padding: 70px 0;
}

/* Title */
.hope-journey-title {
  text-align: center;
 font-family: "Times New Roman", Times, serif;

  font-size: 42px;
  font-weight: 600;
  color: #1e2a5a;
  margin-bottom: 60px;
}

/* Card */
.journey-card {
  position: relative;
  background-color: #fdeee3;
  border: 1.5px solid #2b2b2b;
  border-radius: 8px;
  padding: 30px 30px 30px 90px;
  height: 100%;
}

/* Number Oval */
.journey-number {
  position: absolute;
  left: 25px;
  top: 35px;
  width: 46px;
  height: 68px;
  background-color: #8f2b74;
  border-radius: 50px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner Ring Effect */
.journey-number::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 56px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 40px;
}

/* Content */
.journey-content h5 {
  font-size: 22px;
  font-weight: 600;
  color: #1e2a5a;
  margin-bottom: 12px;
}

.journey-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

/* Responsive */
@media (max-width: 767px) {
  .hope-journey-title {
    font-size: 30px;
  }

  .journey-card {
    padding: 25px 20px 25px 80px;
  }

  .journey-number {
    left: 20px;
  }
}

/* Section */
.why-hope-section {
  padding: 70px 0;
  background-color: #ffffff;
}

/* Title */
.why-hope-title {
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #000;
}

/* Card */
.why-card {
  height: 100%;
  padding: 30px 20px;
  border: 1px dashed #b84a9c;
  border-radius: 10px;
  text-align: left;
  background-color: #fff;
}

/* Image */
.why-card img {
  max-width: 120px;
  margin-bottom: 25px;
}

/* Heading */
.why-card h5 {
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

/* Text */
.why-card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #000;
}

/* Responsive */
@media (max-width: 991px) {
  .why-hope-title {
    font-size: 30px;
  }
}


.hope-counter-section {
  background-color: #fdeee3;
  padding: 50px 0;
}

/* Inline layout */
.counter-inline {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Icon circle */
.counter-icon {
  width: 70px;
  height: 70px;
  background-color: #6a3fa0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-icon img {
  width: 70px;
  height: auto;
}

/* Text */
.counter-text h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #ff8c42;
}

.counter-text h3::after {
  content: "+";
}

.counter-text p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}

/* Mobile */
@media (max-width: 768px) {
  .counter-inline {
    justify-content: center;
  }
  .counter-text h3 {
    font-size: 28px;
  }
  .counter-text p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {

  .hope-counter-section {
    padding: 30px 0;
  }

  /* Each counter item */
  .counter-inline {
    justify-content: flex-start;   /* icon + text proper row */
    align-items: center;
    max-width: 280px;              /* content ko tight rakhega */
    margin: 0 auto 20px;           /* center + gap between items */
    gap: 12px;
  }

  /* Icon */
  .counter-icon {
    width: 55px;
    height: 55px;
  }

  .counter-icon img {
    width: 32px;
  }

  /* Text alignment */
  .counter-text {
    text-align: left;
  }

  .counter-text h3 {
    font-size: 22px;
    line-height: 1.1;
  }

  .counter-text p {
    font-size: 15px;
    line-height: 1.2;
  }
}

