#hero>div:nth-child(1)>div:nth-child(2)>div:nth-child(1)>div:nth-child(1)>div:nth-child(1)>div:nth-child(1)>b:nth-child(2) {
color : rgb(2, 125, 232);
}



.tb-badge {
  background: #bf4a08;
  color: #fff;
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}




.tb-original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}



/* List Item */
.choose-checklist ul li{
 background-color:#ebdada !important;
}

/* Paragraph */
.space .container .title-area p{
 font-size:14px;
}


body {
  font-family: 'Poppins', sans-serif;
  background: #fdfdfd;
  margin: 0;
  padding: 0;
  color: #333;
}

.tb-header {
  background-color: #bf4a08;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeIn 1s ease-in;
}

.tb-title {
  margin: 0;
  font-size: 2rem;
}

.tb-subtitle {
  margin-top: 0.5rem;
  font-size: 1rem;
}

.tb-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.tb-section {
  text-align: center;
  margin-bottom: 3rem;
}

.tb-heading {
  font-size: 1.8rem;
  color: #bf4a08;
  margin-bottom: 1rem;
}

.tb-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.tb-list li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.tb-pricing-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.tb-pricing-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 400px;
  border-top: 5px solid #bf4a08;
  transition: transform 0.3s ease;
}

.tb-pricing-card:hover {
  transform: translateY(-5px);
}

.tb-highlight {
  border-color: #bf4a08;
  background: #fffaf7;
}

.tb-price {
  font-size: 2rem;
  color: #bf4a08;
  font-weight: bold;
  margin: 0.5rem 0;
}

.tb-onetime {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.tb-feature-list, .tb-requirements {
  list-style: none;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.tb-feature-list li,
.tb-requirements li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.tb-contact {
  text-align: center;
}

.tb-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: #bf4a08;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.tb-btn:hover {
  background-color: #a03e07;
}

.tb-secondary {
  background-color: #555;
}

.tb-secondary:hover {
  background-color: #333;
}

/* Animations */
.tb-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.tb-animate:nth-child(2) { animation-delay: 0.2s; }
.tb-animate:nth-child(3) { animation-delay: 0.4s; }
.tb-animate:nth-child(4) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .tb-pricing-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .tb-title {
    font-size: 1.6rem;
  }

  .tb-heading {
    font-size: 1.5rem;
  }
}
