

body {
    font-family: 'Inter', sans-serif;
    background-color: rgb(249, 250, 251);
    color: #333;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    flex-direction: column;
}


.choose {
    background-color: #f04438;
    color: white;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    border: none; /* Removes border for a clean look */
    border-radius: 5px; /* Rounded corners */
}

.choose:disabled {
    background-color: #f04438;
    cursor: not-allowed;
    color: white; /* Ensure disabled text color remains white */
}

.choose:hover:not(:disabled) {
    background-color: #d42c2c;
    color: white;
}

/* Style for Plan Upgraded Popup */
.plan-upgraded-popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 50%; /* Vertically center the popup */
    transform: translateY(-50%); /* Adjusts to exactly center vertically */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    text-align: center; /* Center text horizontally */
}

.plan-upgraded-popup-content {
    display: inline-block; /* For better centering */
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    color: green;
    font-weight: bold;
}

/* Style for the modal */
.modal-1 {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black */
    padding-top: 60px;
}

.modal-content-1 {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Custom Button Group Styling */


.custom-btn-group {
    display: inline-flex;    
    /* flex-wrap: nowrap; */
    border: 1px solid #ced4da;
    border-radius: 8px ¡important;
    /* overflow: hidden; */
    /* margin-bottom: 20px; */
}

.custom-btn-group  {
    flex: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    background-color: #ffffff;
    border: none;
    border-right: 1px solid #ced4da;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 0;
}
/* Faded button style for the current plan */
button.order-button.faded {
    background-color: #f04438 !important; /* Light grey background */
    color: #fff !important; /* Light grey text */
    cursor: not-allowed; /* No pointer on hover */
    border: 1px solid #ccc !important; /* Subtle border to indicate disabled state */
}


    /* .custom-btn-group .btn:last-child {
        border-right: none;
    } */

.custom-btn-group  {
    background-color: #dee5fc;
    color: #000000;
    font-weight: bold;
}
.btn.active{
    background-color: #f04438;
    color:#fff;
}

.custom-btn-group  {
    background-color: #e9ecef;
    color: #212529;
}

@media (max-width: 768px) {
    .custom-btn-group {
        flex-direction: column;
        width: 90%;
    }

    .custom-btn-group .btn {
        padding: 10px;
        font-size: 14px;
    }

    .custom-btn-group .btn:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #ced4da;
    }
}

@media (max-width: 576px) {

    .h-main {
        font-size: 18px; /* Reduce main header size */
    }

    .p-main {
        font-size: 14px; /* Adjust text size */
    }
}

/* Typography and Layout */
.h-main {
    margin-top: 20px;
    font-weight: bold;
    font-size: 24px;
}

.p-main {
    font-size: 16px;
    margin-top: -5px;
    color: #6c757d;
}

.line {
    width: 100%;
    height: 1px;
    background-color: #dee2e6;
    margin-top: 10px;
    margin-bottom: 20px;
}



/* Toggle Button Styles */
.toggle-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-button {
    border: none;
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.1em;
    margin: 0 10px;
    color: #f04438;
    transition: background-color 0.3s, color 0.3s;
}

.toggle-button.active {
    background-color: #f04438;
    color: #ffffff;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Individual Card Styles */
.card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    width: 320px;
    height: 450px;
    text-align: center;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
}

.card h3 {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
}

.card h2 {
    font-size: 2.8em;
    margin: 5px 0;
    color: #444;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    flex-grow: 1;
}

.card ul li {
    margin: 12px 0;
    font-size: 1.1em;
    color: #555;
    display: flex;
    align-items: center;
}

.card ul li:before {
    content: "✔";
    color: green;
    margin-right: 10px;
    font-weight: bold;
}

.card ul li.unavailable {
    color: #bbb;
}

.card ul li.unavailable:before {
    content: "✖";
    color: red;
}

/* Order Button Styles */
.order-button {
    background-color: #f04438;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.order-button:hover {
    background-color: #f04438;
    transform: scale(1.05);
}

/* Card-Specific Styles */
.basic {
    border-top: 8px solid #f04438;
}

.standard {
    border-top: 8px solid #f04438;
}

.premium {
    border-top: 8px solid #f04438;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}
