
    /* ===== PRICING NEW CSS START ===== */
    .pricing-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: stretch;
    }

    .price-card {
      background: var(--white);
      border-radius: 12px;
      padding: 40px 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      position: relative;
      border: 1px solid #eee;
    }

    .price-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 30px rgba(255, 102, 0, 0.15);
    }

    /* Featured (Most Popular) Plan Modification */
    .price-card.featured {
      border: 2px solid var(--primary-orange);
      background: var(--dark-charcoal);
      color: var(--white);
    }

    .popular-tag {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--primary-orange);
      color: var(--white);
      padding: 4px 12px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      border-radius: 20px;
      letter-spacing: 0.5px;
    }

    .price-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .plan-name {
      font-size: 1.2rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: block;
      margin-bottom: 10px;
      color: var(--primary-orange);
    }

    .price-card:not(.featured) .plan-name {
      color: var(--gray);
    }

    .plan-price {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--dark-charcoal);
      line-height: 1;
    }

    .featured .plan-price {
      color: var(--white);
    }

    .plan-price span {
      font-size: 0.9rem;
      color: var(--gray);
      font-weight: 400;
    }

    .featured .plan-price span {
      color: #bbb;
    }

    .price-features {
      list-style: none;
      padding: 0;
      margin-bottom: 35px;
    }

    .price-features li {
      margin-bottom: 15px;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .price-features li i.fa-check {
      color: #25d366;
    }

    .price-features li i.fa-times {
      color: #ff3e3e;
    }

    .price-features li.disabled {
      color: #aaa;
      text-decoration: line-through;
    }

    .price-btn {
      text-decoration: none;
      text-align: center;
      padding: 12px 25px;
      border: 2px solid var(--primary-orange);
      color: var(--primary-orange);
      border-radius: 30px;
      font-weight: 600;
      transition: 0.3s ease;
      margin-top: auto;
    }

    .price-btn:hover {
      background: var(--primary-orange);
      color: var(--white);
    }

    .featured .price-btn {
      background: var(--primary-orange);
      color: var(--white);
    }

    .featured .price-btn:hover {
      background: transparent;
      color: var(--primary-orange);
    }
    /* ===== PRICING NEW CSS END ===== */



































/* ==========================================
   PRICING TOGGLE SWITCH STYLES
   ========================================== */
.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 15px;
    font-family: sans-serif;
}

.toggle-label {
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
}

.toggle-label.active {
    color: #FF6600;
}

.toggle-label.inactive {
    color: #666;
}

.discount-badge {
    background: #28a745;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 5px;
}

.switch-container {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch-container input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-round {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider-circle {
    position: absolute;
    content: '';
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

/* जब टॉगल एक्टिव (चेक) हो */
.switch-container input:checked + .slider-round {
    background-color: #FF6600;
}

.switch-container input:checked + .slider-round .slider-circle {
    transform: translateX(26px);
}

.plan-period-text {
    font-size: 0.85rem;
    display: block;
    margin-top: 5px;
}

/* ==========================================
   PRICING TOGGLE SWITCH STYLES End
   ========================================== */