
h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
    margin-top: 25px;
}

.plans {
    display: flex;
    justify-content: center;
    align-items: center; /* Centers vertically */
    /* height: 80vh; Ensures it takes full viewport height */
    gap: 20px;
    /* Reduced gap */
}

.plans-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.free-overlay {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
    background-color: #e91e63;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: pulseIn 0.6s ease;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Plan Card */
.plan-card {
    background-color: white;
    border: 2px solid #2DB3A3;
    border-radius: 15px;
    padding: 10px;
    width: 290px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Reduce gap between title and price */
h3 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
    font-weight: 600;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #2DB3A3;
    margin-bottom: 10px;
    text-align: center;
}

/* Reduce height of description */
.plan-description {
    font-size: 12px;
    color: #333;
    line-height: 1.3;
    min-height: 80px;

}


.features {
    list-style-type: none;
    padding-top: 10px;
    padding-bottom: 5px;
    font-size: 12px;
    color: #555;
    line-height: 1.3;
}


.bottom-section {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.apply-button {
    background-color: #e5fae5;
    color: #2DB3A3;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

.apply-button:hover {
    background-color: #c6f3f1;
}

.membership-period {
    font-size: 10px;
    color: #777;
    margin-top: 5px;
    text-align: center;
}

/* alert Modal Styles */
.alert-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    /* dark overlay */
}

.alert-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    background-color: #fff;
    padding: 30px;
    border-radius: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
    color: #333;
    text-align: left;
}

.alert-modal-text {
    font-size: 12px;
    line-height: 1.6;
}

.alert-modal-footer {
    text-align: right;
    margin-top: 20px;
}

.alert-modal-close {
    background-color: #00b5ad;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

.alert-modal-close:hover {
    background-color: #019e97;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .plans {
        flex-wrap: wrap;
        justify-content: center;
    }

    .plan-card {
        width: 90%;
        min-height: auto;
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
/* membership_paymentform*/
.container_subs {
    display: flex;
    gap: 10px;
    /* Adjust spacing between flex items */
    margin: 10px auto;
    /* margin: 100px auto; */
    /* Centering the container horizontally */
    width: 90%;
    padding: 10px;
    align-items: center;
    /* Center items vertically */
    justify-content: center;
    /* Center items horizontally */
    border: 1px solid #2DB3A3;
}
.container_subs>div {
    flex-grow: 6;
    background-color: #fff;
    /* Just for visibility */
    padding: 15px;
    /* border: 1px solid #ccc; */
}
.label_font {
    color: #000000;
    font-size: 12px;
    /* font-weight: 600; */
    line-height: 30px;
}
/* Checkout Button Styling */
.checkout-btn-container-final {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5px;
}
.checkout-btn {
    background-color: #2DB3A3;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}
.checkout-btn:hover {
    background-color: #258f85;
}
/* h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 50px;
} */