.testimonial-container {
    margin: auto;
    text-align: center;
}
.testimonial {
    display: none;
}
.testimonial.active {
    display: block;
}
/* Container styling */
.stats-container {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #d1d5db;
}

/* Responsive styling for small screens */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-item {
        width: 100%;
    }
}


/* Individual stat item styling */
.stat-item {
    text-align: center;
    flex: 1;
}

/* Number styling */
.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
}

/* Label styling */
.stat-label {
    font-size: 1rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.flex-col {
    flex-direction: column;
}

.justify-between {
    justify-content: between;
}
.count-up {
 font-size: 40px !important;   
}
.count-up:hover {
    transform: scale(1.1);
}

.how-it-works-para {
    margin: auto;
    max-width: 600px;
}

.btns-cont {
  border: 1px solid  #d1d5db;
  border-radius: 10px;
  width: 100%;
  max-width: 396px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.btns-cont .selected-btn {
  background-color: hsl(196 99% 28%);
  color: white;
}

.btns-cont button {
  padding: 5px;
  border-radius: 10px;
  width: 50%;
}
.steps-container {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.steps-container li {
  display: flex;
  align-items: flex-start;
  border: 1px solid hsl(196 99% 50%);;
  border-radius: 10px;
  padding: 15px;
  margin: 10px auto;
  max-width: 600px;
  /*background: #f9f9f9;*/
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps-container li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: hsl(196 99% 28%);;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.2rem;
  margin: 0 0 5px;
  color: hsl(196 99% 28%);;
}

.step-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}
