
.pricing{
  padding-top: 90px;
}
.pricing-title {
  color: #010002;
  font-weight: 600;
  padding-left: 0.75rem;
  margin-bottom: 1rem;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 991.98px) {
  .pricing-title  {
    font-size: 2rem;
    padding-top: 30px;
  }
}

@media (max-width: 767.98px) {
  .pricing-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .pricing-title {
    font-size: 1.6rem;
  }
}

.card {
  border: none;
  border-radius: 0.8rem;
  padding: 1.2rem;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.starter {
  background-color: #3f06a3;
}

.professional {
  background-color: #fff;
  color: #000;
  border: 1px solid gray;
}

.enterprise {
  background-color: #3f06a3;
}

.plan-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
}

.btn-custom {
  border-radius: 40px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.9rem;
}

.highlight {
  background-color: #ffe14d;
  color: #000;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.7rem;
  margin-left: 6px;
}

.pricing-list li {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

h1 {
  font-size: 2rem;
}

p {
  font-size: 0.95rem;
}

.plan-toggle {
  background-color: #fff;
  border-radius: 50px;
  display: inline-flex;
  padding: 5px;
  border: 1px solid #ffe14d;
}

.toggle-btn {
  border: none;
  background-color: transparent;
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 50px;
  color: #000;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background-color: #ffe14d;
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.toggle-btn:hover {
  background-color: #ffe14d;
  color: #000;
}