 :root {
            --green: #007031;
            --green-light: #1aa64b;
            --green-soft: #eaf7ef;
            --navy: #1a2b49;
            --footer-bg: #1a3a6d;
            --bg: #ffffff;
        }


 
        :root {
            --feature-col-width: 40%;
            --plan-col-width: 20%;
        }

        body {
            font-family: Arial, sans-serif;
            background: #f4f6f9;
            margin: 0;

        }

        /* Heading */
        .page-heading {
            text-align: center;
            margin: 30px 0 10px;
            font-size: 26px;
            font-weight: 700;
        }

        /* Toggle Style */
        .toggle-wrapper {
            text-align: center;
            margin: 15px 0;
        }

        .toggle {
            display: inline-flex;
            background: #e6e6e6;
            padding: 5px;
            border-radius: 40px;
        }

        .toggle button {
            border: none;
            padding: 8px 25px;
            color: black;
            background: transparent;
            cursor: pointer;
            font-weight: 600;
            border-radius: 30px;
        }

        .toggle button.active {
            background: #002a63;
            color: white;
        }

        /* Table */
        .pricing-table {
            min-width: 850px;
            border-collapse: collapse;
            background: #fff;
            width: 100%;
            table-layout: fixed;
        }

        .pricing-table th,
        .pricing-table td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: center;
            font-size: 16px !important;
            font-weight: 500;
        }

        .pricing-table th {
            background: #eef2ff;
        }

        .pricing-table th:first-child,
        .pricing-table td:first-child {
            width: var(--feature-col-width);
        }

        .pricing-table th:not(:first-child),
        .pricing-table td:not(:first-child) {
            width: var(--plan-col-width);
        }

        /* GREEN PRICE FOOTER */
        .price-footer {
            margin: 30px 0;
            background: #28a745;
            color: white;
            display: grid;
            grid-template-columns: var(--feature-col-width) var(--plan-col-width) var(--plan-col-width) var(--plan-col-width);
            text-align: center;
            align-items: stretch;
            min-width: 850px;
            width: 100%;
            box-sizing: border-box;
            padding: 0;
        }

        .price-footer>div {
            padding: 18px 20px;
            border-right: 1px solid rgba(255, 255, 255, 0.4);
            min-height: 210px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }

        .price-footer>div:last-child {
            border-right: none;
        }

        .price-title {
            font-size: 40px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .old-price {
            text-decoration: line-through;
            opacity: 0.9;
            font-size: 20px;
            font-weight: 600;
        }

        .price-footer h2,
        .price-footer h3,
        .price-footer h4,
        .price-footer p {
            margin: 0;
        }

        .price-cycle {
            display: block;
            font-size: 34px;
            font-weight: 700;
            line-height: 1.1;
            margin-top: 4px;
        }

        .price-footer>div:not(:first-child)>:nth-child(2) {
            width: 100%;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.6);
        }

        .buy-btn {
            background: white !important;
            color: green !important;
            border: none;
            padding: 8px 22px;
            border-radius: 5px;
            font-weight: 700;
            margin-top: 10px;
            cursor: pointer;
            min-width: 130px;
        }
        .saless{
             background: #1a3a6d !important;
            color: white !important;
            border: none;
            padding: 4px 10px;
            border-radius: 5px;
            font-weight: 700;
            margin-top: 10px;
            cursor: pointer;
            min-width: 130px;
            font-size: 12px;
        }

        .hidden {
            display: none;
        }

        /* Combined layout switch */
        .desktop-view {
            display: block;
            margin:50px;
        }

        .tab-mobile-view {
            display: none;
        }

        /* Tab/Mobile static layout styles */
        .rp-wrap {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #ffffff;
        }

        .rp-title {
            text-align: center;
            font-size: 40px;
            font-weight: 700;
            margin: 10px 0 18px;
            line-height: 1.1;
        }

        .rp-toggle-wrap {
            text-align: center;
            margin: 10px 0;
        }

        .rp-toggle {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #d7d7d7;
            padding: 6px;
            border-radius: 999px;
        }

        .rp-toggle button {
            min-width: 120px;
            border: none;
            background: white;
            color: #111;
            /* font-size: 26px; */
            font-weight: 700;
            padding: 10px 18px;
            border-radius: 999px;
            cursor: pointer;
        }

        .rp-toggle button.rp-active {
            background: #5c4cff;
            color: #fff;
        }

        .rp-section {
            width: 95%;
            margin: 0 auto 30px;
        }

        .rp-section-title {
            font-size: 20px !important;
            margin: 0 0 12px;
            font-weight: 700;
        }

        .rp-plans {
            display: grid;
            gap: 15px;
        }

        @media (min-width: 768px) {
            .rp-plans {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }

        @media (max-width: 767px) {
            .rp-plans {
                grid-template-columns: 1fr;
            }
        }

        .rp-card {
            background: #fff3e6;
            border: 1px solid #2fa64a;
            border-radius: 6px;
            overflow: hidden;
        }

        .rp-card-pro {
            background: #e9fff1;
        }

        .rp-feature {
            padding: 18px;
            text-align: center;
            border-bottom: 1px solid #2fa64a;
        }

        .rp-feature-title {
            font-weight: 600;
            margin-bottom: 6px;
            
        }

        .rp-price {
            background: #28a745;
            color: #fff;
            text-align: center;
            padding: 25px 15px;
            height: 100%;
        }

        .rp-price>div {
            width: 100%;
        }

        .rp-price>div h3,
        .rp-price>div h4 {
            margin: 0;
            padding-bottom: 10px;
            
        }

        .rp-price strong {
            display: block;
            font-size: 30px;
            margin: 10px 0;
           border-bottom:1px solid rgba(255, 255, 255, 0.6);
        }

        .rp-btn {
            background: #fff;
            color: #28a745;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 700;
        }

        @media (max-width: 1199px) {
            .desktop-view {
                display: none;
            }

            .tab-mobile-view {
                display: block;
            }

            .rp-title {
                font-size: 35px;
                padding:30px;
            }
        }

        @media (max-width: 767px) {
            .rp-title {
                font-size: 28px;
            }

            .rp-toggle button {
                min-width: 108px;
                /* font-size: 21px; */
                padding: 9px 12px;
            }
        }
        .sales-btn {
  background: #4b5ea8;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.sale-tag {
  background: #ff7a1a;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 5px;
  position: relative;
}

/* Small dotted effect (optional) */
.sale-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent #ff7a1a transparent transparent;
}


@media (min-width:320px) and (max-width:1024px){
    .saless{
             background: #1a3a6d !important;
            color: white !important;
            border: none;
            padding: 7px 10px;
            border-radius: 5px;
            font-weight: 700;
            margin-top: 10px;
            cursor: pointer;
            min-width: 130px;
            font-size: 12px;
        }
}

@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.75rem;
        font-weight: 600;
    }
}
    

