/* Container styles */
.pricing-table {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 2rem 0;
  font-family: 'poppins', sans-serif;
}

.plan {
  background: #ffffff;
  border: 2px solid #F2F3F4;
  padding: 10px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.plan:hover {
  transform: translateY(-5px);
}

.plan.popular {
  border: 2px solid #2B6CB0;
  border-top-width: 35px;
  margin-top: -10px;
  border-radius: 25px;
  position: relative;
    overflow: visible;
}

/* ✅ Popular badge */
.plan.popular::before {
  content: "POPULAR";
  position: absolute;
  top: -30px;                 /* position above the card */
  left: 49%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

/* Header Section */
.header-background-color {
  background-color: #F2F3F4;
  border-radius:12px;
  padding: 1.5rem;
  text-align: left;
}

.header-background-color-popular {
  background-color: #DBECFA;
  border-radius:12px;
  color: #000000;
  padding: 1.5rem;
  text-align: left;
}


.plan h3 {
 font-size: 18px;
      font-weight: 400;
      margin-bottom: 8px;
}

.plan .price {
  font-size: 2rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.plan .price small {
  font-size: 0.8rem;
  font-weight: normal;
}

.plan .desc {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  line-height: 1.4;
  color:#626769;
}

/* Features List */
.features {
  list-style: none;
  padding: 1rem 1.5rem;
  margin: 0;
  flex-grow: 1;
}

.features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #0a66c2;
}

.features li.inactive {
  color: #ccc;
  text-decoration: line-through;
}

.features li.inactive::before {
  content: '✖';
  color: #ccc;
}

/* CTA Buttons */
.get-started,
.get-started-normal {
  text-align: center;
  padding: 0.8rem;
  margin: 1rem;
  display: block;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.get-started {
  background-color: #127AC5;
  color: white;
}

.get-started:hover {
  background-color: #127AC5;
}

.get-started-normal {
  border: 2px solid #127AC5;
  color: #127AC5;
}

.get-started-normal:hover {
  background-color: #f0f8ff;
}

/* Toggle Switch */
.toggle-container {
  text-align: center;
  margin-bottom: 2rem;
}

.toggle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #0a66c2;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* Responsive */
@media (max-width: 960px) {
  .pricing-table {
    flex-direction: column;
    align-items: center;
  }
}
/* Remove bullets and broken icons */
ul li {
    list-style: none;
    /* removes the dot */
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
}

/* Hide broken images if they exist */
ul li img {
    display: none;
}

/* Style the blue tick */
ul li::before {
    content: "✔";
    /* tick symbol */
    color: #007BFF;
    /* blue color */
    font-weight: bold;
}