.modal-backdrop {
  display: none !important;
}
.pricing .pricing-price div:first-child {
  font-weight: 800;
  font-size: 18px;
}
.pricing .pricing-padding {
  padding: 20px;
}

.pricing-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.bg-gradient-primary {
  background: linear-gradient(135deg, #b97004, #e6a100);
}


.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}
.switch input { display: none; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ddd;
  transition: .4s;
  border-radius: 30px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 24px; width: 24px;
  left: 3px; bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #4CAF50;
}
input:checked + .slider:before {
  transform: translateX(30px);
}

.billing-label {
  color: #333;
}

.btn-primary {
  background-color: #b97004;
  border-color: #b97004;
}

.txt-primary {
  color: #b97004;
}


.btn-primary:hover {
  background-color: #000000;
  border-color: #000000;
}

.bg-light-bg {
  background-color: #eeeeee !important;
}


.hero-section {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: linear-gradient(120deg, #fdfbfb, #ebedee);
}
.hero-section h1 {
  font-size: 1.75rem;
}
.hero-section .breadcrumb a {
  text-decoration: none;
}


.btn-outline-primary {
  border-color: #b97004;
  color: #b97004;
}

.btn-outline-primary:hover {
  background-color: #b97004 !important;
}

.btn-outline-primary:active {
  background-color: #b97004 !important;
}

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
  background-color: #b97004 !important;
  border-color: #b97004;

}