.pricing_plan 
{
    padding:0 1rem 2rem;
    min-height: 85vh;
}


.plan-card {
    background-color: #fc9745;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    overflow:hidden;
}
.plan-card .price 
{
    position: absolute;
    right: 1.5rem;
    top: 60%;
    transform: translateY(-60%);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
}
.plan-card .price span 
{
    font-size: 1.6rem;
    display: block;
    font-weight: 400;
}
.plan-card::after {
    content: "";
    bottom: 0;
    right: -4rem;
    position: absolute;
    width: 188px;
    height: 100%;
    background: rgb(241 229 229 / 15%);
    border-radius: 111px 62px 0 0;
    transform: rotate(0) scale(1.3);
    border: 1px solid #fff1;
}

.pricing_plan_header 
{
    padding: 2rem 0;
    text-align: center;
}

.pricing_plan_header .pricing_title
{
    color: #ce0303;
}

.plan-card:hover {
    transform: translateY(-2px);
}

.plan-card.active {
    border-color: #8A70FF;
    background-color: #ecb745;
}

.plan-card.featured {
    background-color: #f35b5b;
}

.plan-card.featured.active {
    border-color: #FFD700;
}

.save-badge {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    background-color: #FFD700;
    color: #1a1a1a;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-name {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.active-indicator {
    display: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #8A70FF;
    position: relative;
}

.active-indicator::after {
    content: '✓';
    color: white;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.plan-card.active .active-indicator {
    display: inline-block;
}

.plan-card.featured.active .active-indicator {
    background-color: #FFD700;
    color: #1A1A1A;
}

.plan-description {
    color: #fff;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.featured .price-amount {
    color: white;
}

.price-period {
    color: #fff8;
    font-size: 0.9rem;
    margin-left: 0.25rem;
}



/* Animation for selection */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.plan-card.active {
    animation: pulse 0.3s ease-in-out;
}