/*----------------------
# HP V2 Achievement Section
------------------------------*/
.hp-v2-achievement {
  padding: 0;
  background: white;
  color: #221E1F;
  margin-bottom: 20px !important;
}

.hp-v2-achievement .hp-v2-section-title {
  margin-bottom: 30px;
}

.achievement-text {
  font-size: 18px;
  line-height: 1.8;
  color: #221E1F;
}

.achievement-text p {
  margin-bottom: 20px;
}

.achievement-circles-wrapper {
  background: #235397;
  padding: 30px;
  border-radius: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.achievement-circles {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.achievement-circles .circle-area {
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  padding: 0 0 0 0 !important;
}

.achievement-circle {
  border-radius: 50%;
  width: 160px;
  height: 160px;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  background-color: white;
  border: none;
  color: #235397;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 0 auto;
  padding: 15px;
}

.achievement-circle-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
}

.achievement-circle-number {
  font-size: 45px;
  line-height: 1;
  margin-bottom: 8px;
  color: #235397;
}

.achievement-circle-number-small {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 8px;
  color: #235397;
}

.achievement-circle-footer {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  text-align: center;
  color: #235397;
  margin-top: 5px;
  line-height: 1.2;
  text-transform: capitalize;
}

.achievement-circle-head {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: bold;
  color: #235397;
  font-family: 'Lato', sans-serif;
}

.achievement-circle-number p {
  margin: 0;
  font-size: 45px;
  font-weight: bold;
  line-height: 1;
}

@media (max-width: 1600px) {
  .achievement-circle {
    border-radius: 50%;
    width: 130px;
    height: 130px;
    font-weight: bold;
    background-color: white;
    border: none;
    color: #235397;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0 auto;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .achievement-circles .circle-area {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    padding: 0 0 0 0 !important;
  }

  .achievement-circle-number,
  .achievement-circle-number p {
    font-size: 32px;
  }

  .achievement-circle-footer,
  .achievement-circle-head {
    font-size: 16px;
  }

  .achievement-text {
    font-size: 18px;
  }

}

@media (max-width: 992px) {
  .achievement-circles-wrapper {
    padding: 20px 15px;
  }

  .achievement-circle {
    width: 110px;
    height: 110px;
    padding: 10px;
  }

  .achievement-circle-number,
  .achievement-circle-number p {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .achievement-circle-footer,
  .achievement-circle-head {
    font-size: 14px;
  }

  .achievement-text {
    font-size: 18px;
  }
}


/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .achievement-circles-wrapper {
    padding: 15px 10px;
  }

  .achievement-circles {
    gap: 10px;
  }

  .achievement-circles .circle-area {
    flex: 0 0 calc((100% - 20px) / 3);
    max-width: calc((100% - 20px) / 3);
  }

  .achievement-circle {
    width: 90px;
    height: 90px;
    padding: 8px;
  }

  .achievement-circle-number,
  .achievement-circle-number p {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .achievement-circle-footer,
  .achievement-circle-head {
    font-size: 11px;
  }

  .achievement-text {
    font-size: 16px;
  }
}
