.pricingbx {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin:80px 0px;
    }

    .innbx {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 25px;
      width: 520px;
      text-align: left;
      box-shadow: 0 6px 15px rgba(0,0,0,0.06);
      transition: 0.3s;
    }

    .innbx:hover {
      box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

    .badge-container {
      display: flex;
      gap: 6px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }

    .nwbadge {
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 20px;
      display: inline-block;
      font-weight: 500;
    }

    .nwbadge.purple { background: #f3e8ff; color: #7c3aed; }
    .nwbadge.blue { background: #e0f2fe; color: #0284c7; }
    .nwbadge.green { background: #dcfce7; color: #16a34a; }

    /* Plan title and price side by side */
    .plan-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .plan-header h3 {
      margin: 0;
      font-size: 20px;
    }

    .plan-price {
      font-size: 26px;
      font-weight: bold;
      color: #f70d44;
    }
.inrb{color: #000; font-size: 14px;}
    .nebxdesc {
      font-size: 17px;
      color: #555;
      margin-bottom: 12px;
    }

    .nwbxfeatur ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .nwbxfeatur li {
      font-size: 17px;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
    }

    .nwbxfeatur li::before {
      content: "✔";
      color: #16a34a;
      margin-right: 8px;
      font-weight: bold;
    }

    .newbtnbx {
      display: inline-block;
      margin-top: 15px;
     
      
      border-radius: 8px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: 0.3s;
      padding: 5px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 28px;
    background-color: #fff;
    color: #000;
    }

    .newbtnbx:hover {
      background: #ccc;
    }

    .compare-btn {
      margin: 30px auto;
      display: inline-block;
      padding: 10px 18px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      background: #fff;
      transition: 0.3s;
    }

    .compare-btn:hover {
      background: #f3f4f6;
    }

    /* Table */
    .compare-table {
      max-width: 800px;
      margin: 20px auto;
      border-collapse: collapse;
      width: 100%;
      font-size: 14px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    }

    .compare-table th,
    .compare-table td {
      border: 1px solid #e5e7eb;
      padding: 12px;
      text-align: center;
    }

    .compare-table th {
      background: #f9fafb;
      font-weight: 600;
    }

    .compare-table td:first-child {
      text-align: left;
      font-weight: 500;
      background: #fafafa;
    }

    .hidden { display: none; }