.pricing-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    position: relative;
    text-align: center;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.pricing-header {
    padding: 30px 20px;
    color: #fff;
    background-color: #11998e;
}
.pricing-header.standard {
    background: linear-gradient(135deg, #0401c0ff, #2971e7);
}
.pricing-header.premium {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}
.pricing-header h4 {
    margin: 0;
    font-weight: bold;
    font-size: 22px;
}
.pricing-header h2 {
    font-size: 40px;
    margin: 10px 0;
    font-weight: 700;
}
.pricing-header small {
    font-size: 15px;
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.9);
}
.pricing-body {
    padding: 20px 30px;
}
.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.pricing-body li {
    font-size: 16px;
    margin-bottom: 12px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: start;
    color: #444;
}
.pricing-body li i {
    font-size: 18px;
    margin-right: 8px;
}
.pricing-body li.included i {
    color: #28a745;
}
.pricing-body li.excluded i {
    color: #dc3545;
}
.pricing-footer {
    padding-bottom: 25px;
}
.pricing-footer .btn {
    border-radius: 25px;
    padding: 12px 70px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}
.standard-btn {
    background: linear-gradient(135deg, #0401c0ff, #2971e7);
}
.premium-btn {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}
.pricing-footer .btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}


/* ===== Range Slider Upgrade ===== */
.form-range {
  -webkit-appearance: none;
  width: 60%;
  height: 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, #2971e7 0%, #38ef7d 0%);
  outline: none;
  transition: background 0.3s ease;
  position: relative;
}

/* Track (for Chrome, Safari, Edge) */
.form-range::-webkit-slider-runnable-track {
  height: 12px;
  border-radius: 10px;
  background: transparent;
}
.form-range::-moz-range-track {
  height: 12px;
  border-radius: 10px;
  background: transparent;
}

/* Thumb (the circle knob) */
.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 3px solid #2971e7;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, border-color 0.3s ease;
  margin-top: -6px; /* centers thumb */
}
.form-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  border-color: #38ef7d;
}

.form-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 3px solid #2971e7;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, border-color 0.3s ease;
}
.form-range::-moz-range-thumb:hover {
  transform: scale(1.2);
  border-color: #38ef7d;
}

/* Tooltip styling */
.range-tooltip {
  position: absolute;
  bottom: 58px; /* Position above the thumb */
  transform: translateX(-50%);
  background: #2971e7;
  color: #fff;
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


