*{
    font-family: 'Poppins', sans-serif;
    background-color: white;
    scroll-behavior: smooth;
  }

  .text-orange {
    color: orange;
    /* color: #ff9f00; */
  }

  .text-justify {
    text-align: justify;
  }

.benefit-box {
    transition: transform 0.3s ease;
    height: 100%;
    background-color: #fff;
    border: 1px solid #f0f0f0;
}

.icon-container {
    display: inline-block;
    margin-bottom: 15px;
}

.benefit-box h5 {
    /* font-weight: 500; */
    margin-bottom: 10px;
}

.benefit-box p {
    color: #6c757d;
    font-size: 0.9rem;
}

.icon-bg {
  background-color: #e0f0ff;
  padding: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 2px;
}

.icon-bg2 {
  background-color: #e7c3c3;
  padding: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 2px;
}

.testimonial-card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin: 20px auto;
  background-color: #fff;
  max-width: 700px;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.carousel-indicators {
  position: relative;
  bottom: -5px;
  margin-bottom: 30px;
  z-index: 15;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  width: 12px;
  height: 12px;
  background-color: #fd7e14;
  border-radius: 50%;
  border: 0;
  margin: 0 5px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.carousel-indicators .active {
  opacity: 1;
}


.carousel-indicators button.active {
  opacity: 1;
}

.testimonial-quote {
  font-style: italic;
  color: #6c757d;
  margin: 20px 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-name {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.testimonial-position {
  color: #6c757d;
  font-size: 1rem;
}

.quote-icon {
  color: orange;
  opacity: 0.2;
  font-size: 2rem;
  margin-bottom: 15px;
}

.benefit-box:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.team-card {
  transition: transform 0.3s ease;
}
.team-card:hover {
  transform: translateY(-10px);
}
.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  /* background-color: #f8f9fa; */
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin: 0 5px;
  color: #6c757d;
  transition: all 0.3s ease;
}

.social-icons a {
  color: #6c757d;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0d6efd;
}

.sidebar {
  margin-bottom: 20px;
}

.question-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.question-number {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  background-color: #f8f9fa;
}

.question-number:hover {
  background-color: #e9ecef;
}

.question-number.active {
  background-color: #0d6efd;
  color: white;
}

.question-number.answered {
  background-color: #198754;
  color: white;
}

.question {
  display: none;
}

.question.active {
  display: block;
}

.option-label {
  display: block;
  padding: 10px;
  margin-bottom: 8px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  cursor: pointer;
}

.option-label:hover {
  background-color: #f8f9fa;
}

.option-input:checked + .option-label {
  background-color: #cfe2ff;
  border-color: #0d6efd;
}

@media (min-width: 992px) {
  .sidebar {
      position: sticky;
      top: 20px;
      height: calc(100vh - 40px);
      overflow-y: auto;
  }
}

@media (max-width: 767.98px) {
  .question-numbers {
      grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 575.98px) {
  .question-numbers {
      grid-template-columns: repeat(4, 1fr);
  }
}