    body {
        background-color: #ecf5ff;
        color: black;
        margin: 0;
        padding: 0;
    }
    .containerbox {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 85px;
        flex-direction: column;
        padding: 20px;
    }
    .big-box {
        border: 2px solid #00549a;
        padding: 20px;
        margin: 10px;
        text-align: center;
        border-radius: 10px;
        width: 100%;
        max-width: 1100px;
    }
    .tnc {
        text-align: center;
        margin-top: -10px;
        font-size: 12px;
    }
    .tnc a {
        margin: 0 10px;
        color: #00549a;
        text-decoration: none;
    }
    .tnc a:hover {
        text-decoration: underline;
    }
    .box {
        border: 0px solid #fff;
        padding: 20px;
        margin: 20px;
        border-radius: 10px;
        flex: 1;
    }
    #bank-details {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    #bank-details .box {
        max-width: 100%;
        margin: 10px 0;
    }
    #qr-code {
        width: 100%;
        max-width: 300px;
        height: 350px;
    }
    .vertical-line {
        display: none;
    }

    @media (min-width: 768px) {
        #bank-details {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        .vertical-line {
            display: block;
            border-left: 2px solid #00549a;
            height: 350px;
            margin: 0 20px;
        }
    }
    footer {
        background: #00549a;
        color: white;
        text-align: center;
        padding: 10px 0;
        position: fixed;
        width: 100%;
        bottom: 0;
    }
    footer .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    footer a {
        color: #fff;
        text-decoration: none;
        margin: 0 10px;
    }
    footer a:hover {
        text-decoration: underline;
    }
    @media (max-width: 767px) {
        .tnc {
            text-align: center;
            margin: 20px 0;
        }
        .tnc a {
            display: block;
            margin: 5px 0;
        }
        #bank-details {
            flex-direction: column;
            align-items: center;
        }
        #qr-code {
            margin-top: 20px;
        }
        #upi-code {
            margin-bottom: 30px;
        }
        .big-box {
            height: auto;
        }
        .box {
        border: 0px solid #fff;
        padding: 0px;
        margin: 20px;
        border-radius: 10px;
        flex: 1;
    }
        
    }
    .button {
        align-items: center;
        font-size: 16px;
        font-weight: bold;
        background-color: #00549a;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        text-decoration: none;
    }
    .button:hover {
        color: white;
     
    }
    .button i {
        margin-right: 8px; /* Space between the icon and text */
    }
    hr {
        border: 1px solid #00549a;
        width: 100%;
        margin: 40px  0 auto;

    }

/*Payment Poup */
.buttononline {
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    background-color: #00549a;
    color: white;
    padding: 7px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    width: 150px;
}

.button-container {
    text-align: center;
    margin-top: -10px; /* Add some top margin for better visual */
}

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.popup-content {
    background-color: #ecf5ff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    text-align: left;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block; /* Make labels block elements so they stack vertically */
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"], input[type="submit"] {
    width: 100%; /* Make input fields take full width of the container */
    padding: 8px;
    box-sizing: border-box; /* Ensure padding is included in the width */
    border: 1px solid #ccc;
    border-radius: 5px;
    text-transform: uppercase;
}

input[type="number"], input[type="submit"] {
    width: 100%; /* Make input fields take full width of the container */
    padding: 8px;
    box-sizing: border-box; /* Ensure padding is included in the width */
    border: 1px solid #ccc;
    border-radius: 5px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}
input[type="submit"] {
    background-color: #00549a;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}