@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
}

:root {
  --primary: #0a3755;
  --secondary: #198754;
  --light: #f8fafc;
  --text: #5b6570;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.timeline-wrapper {
  position: relative;
  margin-top: 70px;
}

.timeline-line {
  position: absolute;
  top: 90px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: #d9dee4;
  border-radius: 50px;
  z-index: 1;
}

/* Animated Green Line */

.timeline-progress {

  position: absolute;
  top: 90px;
  left: 8%;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #0a3755, #198754);
  border-radius: 50px;
  z-index: 2;
  animation: progressLine 12s linear infinite;

}

/* Moving Audit File */

.progress-head {

  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;
  border-radius: 50%;

  background: #198754;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  box-shadow: 0 0 20px rgba(25, 135, 84, .45);

}

.progress-head i {

  font-size: 18px;

}

/* Timeline Card */

.timeline-card {

  text-align: center;
  position: relative;
  z-index: 5;

}

/* Circle */

.timeline-icon {

  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  border: 2px solid #198754;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #198754;
  transition: .4s;
  position: relative;
  overflow: hidden;

}

/* Fill Animation */

.timeline-icon::before {

  content: "";

  position: absolute;

  width: 0;
  height: 0;

  border-radius: 50%;

  background: #198754;

  transition: .5s;

  z-index: -1;

}

/* Icon */

.timeline-icon i {

  transition: .5s;

}

/* Step Number */

.timeline-card span {
  font-size: 20px;
  display: block;
  margin-top: 10px;
  color: #198754;
  font-weight: 600;
  letter-spacing: 1px;

}

/* Heading */

.timeline-card h5 {
  font-size: 13px;
  margin-top: 0px;
  color: #0a3755;
  font-weight: 600;

}

@keyframes progressLine {

  0% {

    width: 0;

  }

  100% {

    width: 84%;

  }

}

.timeline-card:nth-child(1) .timeline-icon {

  animation: fill1 1s infinite;

}

.timeline-card:nth-child(2) .timeline-icon {

  animation: fill2 1s infinite;

}

.timeline-card:nth-child(3) .timeline-icon {

  animation: fill3 1s infinite;

}

.timeline-card:nth-child(4) .timeline-icon {

  animation: fill4 1s infinite;

}

.timeline-card:nth-child(5) .timeline-icon {

  animation: fill5 1s infinite;

}

.timeline-card:nth-child(6) .timeline-icon {

  animation: fill6 1s infinite;

}

/* .benefit-card {
  background: #fff;
  padding: 49px 20px;
  border-radius: 18px;
  height: 100%;
  text-align: center;
  transition: .35s;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.benefit-card i {
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a3755, #198754);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
}

.benefit-card h4 {
  font-size: 20px;
  color: #0a3755;
  font-weight: 700;
  margin-bottom: 15px;
}

.benefit-card p {
  text-align: justify;
  font-size: 15px;
  color: #6c757d;
  margin: 0;
} */

.timeline-card.completed .timeline-icon {

  background: #198754;
  color: #fff;
  border-color: #198754;
  transform: scale(1.1);

}

.timeline-card.completed span {

  color: #198754;
  font-weight: 700;

}

.timeline-card.completed {

  animation: pop .4s ease;

}

@keyframes pop {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }

}

.benefit-card {

  position: relative;
  overflow: hidden;

  background: #fff;

  padding: 45px 35px;

  border-radius: 20px;

  height: 100%;

  transition: .45s;

  border-top: 5px solid transparent;

  box-shadow: 0 20px 45px rgba(0, 0, 0, .06);

}

.benefit-card:hover {

  transform: translateY(-12px);

  border-color: #198754;

  box-shadow: 0 30px 60px rgba(0, 0, 0, .12);

}

/* Huge Background Number */

.card-number {

  position: absolute;

  right: 20px;

  top: 15px;

  font-size: 70px;

  font-weight: 800;

  color: rgba(10, 55, 85, .05);

  line-height: 1;

  transition: .4s;

}

.benefit-card:hover .card-number {

  transform: scale(1.15);

  color: rgba(25, 135, 84, .12);

}

/* Icon */

.benefit-icon {

  width: 85px;

  height: 85px;

  border-radius: 50%;

  background: linear-gradient(135deg, #0a3755, #198754);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 34px;

  color: #fff;

  margin-bottom: 25px;

  transition: .45s;

}

.benefit-card:hover .benefit-icon {

  transform: rotate(12deg) scale(1.08);

}

/* Tag */

.benefit-tag {

  display: inline-block;

  padding: 6px 16px;

  border-radius: 30px;

  background: #eef8f2;

  color: #198754;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: .8px;

  margin-bottom: 18px;

}

.benefit-card h4 {

  font-size: 19px;
  font-weight: 700;
  color: #0a3755;
  margin-bottom: 15px;

}

.benefit-card p {
  font-size: 15px;
  text-align: justify;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 30px;

}

/* Button */

.benefit-arrow {

  text-decoration: none;

  font-weight: 600;

  color: #0a3755;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  transition: .35s;

}

.benefit-arrow i {

  transition: .35s;

}

.benefit-card:hover .benefit-arrow {

  color: #198754;

}

.benefit-card:hover .benefit-arrow i {

  transform: translateX(8px);

}

/* Corner Effect */

.benefit-card::before {

  content: "";

  position: absolute;

  top: 0;

  right: 0;

  width: 70px;

  height: 70px;

  background: linear-gradient(135deg, #198754, #0a3755);

  clip-path: polygon(100% 0, 0 0, 100% 100%);

  opacity: .08;

  transition: .4s;

}

.benefit-card:hover::before {

  opacity: .18;

}