 html,
 .homebody {
    background: linear-gradient(to bottom right, #c9d844, #87b289);
    background-repeat: no-repeat;
    height: 100%;

 }

 .full-body-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
 }

 nav {
    background-color: rgb(255, 255, 255);
    height: 70px;
    display: flex !important;
    justify-content: space-between;
    padding: 10px 20px;

 }

 nav a {
    padding: 0px;
    margin-top: 0px;
    display: flex;
    text-decoration: none;
 }

 nav a:hover {
    padding: 0px;
    margin-top: 0px;
    display: flex;
    text-decoration: none;
 }

 nav i {
    font-size: 40px;
    margin-top: 0px;
 }

 nav span {
    font-size: 26px;
    font-weight: 600;
    color: black;
    padding: 4px 10px 5px 16px;
    /* vertical-align: middle; */
 }

 .download-bt {
    display: block;
    background: #1e88e5;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    text-decoration: none;
    height: 40px;
    width: 120px;
    font-size: large;
    font-weight: 400;
    text-align: center;
 }

 .download-bt:hover {
    display: block;
    background: #1e88e5;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    text-decoration: none;
    height: 40px;
    width: 120px;
    font-size: large;
    font-weight: 400;
    text-align: center;
 }

 .container {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    width: 100%;
    margin-top: 40px;
    padding-top: 80px;
 }

 .content img {
    border-radius: 50%;
    margin: 30px;
 }

 .content h1 {
    font-size: 28px;
    font-weight: 600;
 }

 .content p span {
    color: gray;
 }

 .content p {
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0;
 }

 .bt-li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 }

 .bt-li .bt {
    background-color: #1e88e5;
    color: white;
    height: 39px;
    width: 67%;
    border-radius: 30px;
    text-decoration: none;
    padding: 9px 5px;
    margin: 10px;
    font-weight: 600;
 }

 .bt-li .preview {
    color: gray;
    font-weight: 600;
    text-decoration: none;
 }

 .bt-li .preview:hover {
    color: gray;
    font-weight: 600;
    text-decoration: none;
 }

 @media screen and (max-width:300px) {
    .container {
       text-align: center;
       background: white;
       border-radius: 10px;
       padding: 20px;
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
       max-width: 300px;
       width: 100%;
       margin-top: 40px;
       padding-top: 80px;
    }
    
 }



 /* Login & Register Page Design */

 .login {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* background: url(./assets/img/bg-img.jpeg) no-repeat center center/cover; */

 }

 @keyframes shake-validation {

    0%,
    100% {
       transform: translateX(0) scale(1);
    }

    20% {
       transform: translateX(-8px) scale(0.98);
    }

    40% {
       transform: translateX(8px) scale(0.98);
    }

    60% {
       transform: translateX(-8px) scale(0.98);
    }

    80% {
       transform: translateX(8px) scale(0.98);
    }
 }

 .container {
    position: relative;
    width: 400px;
    background-color:#3b3838;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transform-origin: center;
    transition: transform 0.3s ease-out;
 }

 .shake {
    animation: shake-validation 0.4s ease-in-out;
 }

 /* Shake animation */
 /* .shake {
   animation: shake 0.5s;
}

@keyframes shake {
   0%, 100% {
       transform: translateX(0);
   }
   25% {
       transform: translateX(-10px);
   }
   50% {
       transform: translateX(10px);
   }
   75% {
       transform: translateX(-10px);
   }
} */


 .tabs {
    display: flex;
    justify-content: space-around;
    background-color: #4c4f4c;
    color: white;
 }

 .tabs button {
    flex: 1;
    padding: 10px 0;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 16px;
 }

 .tabs button.active {
    background-color: #878a87;
    font-weight: bold;
 }

 .brand {
    color: white;
    font-size: 28px;
    font-family: sans-serif;
 }

 .form-container {
    padding: 20px;
    display: none;
 }

 .form-container.active {
    display: block;
 }

 .form-container input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #ccc;
    background: none;
    color: white;
    outline: none;
 }

 .form-container input:focus {
    border-bottom: 2px solid #ffffff;
 }

 .form-container .toggle-password {
    position: absolute;
    right: 30px;
    margin-top: -35px;
    cursor: pointer;
    color: white;
 }

 .form-container button {
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
 }

 .form-container .whatsapp {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    font-weight: bold;
    height: 50px;
    border-radius: 5px;
 }

 .form-container .whatsapp img {
    margin-right: 10px;
 }

 .form-footer {
    text-align: center;
    margin-top: 10px;
    color: white;
    font-size: 12px;
 }

 .form-footer img {
    height: 30px;
    margin: 5px;
 }

 .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/bg-img.jpeg') no-repeat center center/cover;
    filter: blur(4px);
    z-index: -1;
 }

 .buffer-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
 }

 .buffer-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
 }

 .loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
 }

 @keyframes spin {
    0% {
       transform: rotate(0deg);
    }

    100% {
       transform: rotate(360deg);
    }
 }

 .buffer-content p {
    margin: 0;
    color: #333;
    font-size: 16px;
 }

 .error-message {
    background: #ff6b6b;
    color: white;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 10px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 }


 /* Dashboard */


 .amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
 }

 .amount-btn {
    flex: 0 0 calc(33.33% - 10px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease;
 }

 .amount-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
 }

 @media (max-width: 480px) {
    .amount-btn {
       flex: 0 0 calc(50% - 10px);
    }
 }


 /* payment Model */

 .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
 }

 .modal-content {
    background: white;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
 }

 .close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
 }

 .payment-options {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
 }

 .payment-option {
    text-align: center;
    padding: 11px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
 }

 .payment-option:hover {
    background: #f5f5f5;
 }

 .payment-option img {
    width: 50px;
    margin-bottom: 10px;
 }

 button[type="submit"][name="next"] {
    width: 100%;
    padding: 12px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: normal;
    font-family: inherit;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
 }

 button[type="submit"][name="next"]:hover {
    background-color: #c0cbc1;
 }



 /* upi Payment */

 .payment-page {
    background: #f5f5f5;
    min-height: 100vh;
    padding: 20px;
 }

 .back-btn {
    padding: 8px 15px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    cursor: pointer;
 }

 .upi-details {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
    text-align: center;
 }

 button[type="submit"][name="payment"] {
    width: 100%;
    padding: 12px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: normal;
    font-family: inherit;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
 }

 button[type="submit"][name="payment"]:hover {
    background-color: #c0cbc1;
 }


 .file-upload {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
 }

 .file-upload label {
    width: 100%;
    padding: 12px;
    background: none;
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
 }

 .file-upload label:hover {
    background: #eee;
    border-color: #999;
 }

 .file-upload input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
 }

 /* Hide default file input appearance */
 .file-upload input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
    width: 0;
 }

 .container .upi-head {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
 }


 /* loading overlay */

 .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
 }

 .loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
 }

 .loading-overlay p {
    color: white;
    font-size: 16px;
 }

 @keyframes spin {
    0% {
       transform: rotate(0deg);
    }

    100% {
       transform: rotate(360deg);
    }
 }



 /* QR model style */

 .modal-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 70%;
    max-width: 500px;
 }

 .full-qr {
    width: 50%;
    height: auto;
    display: block;
    border-radius: 4px;
 }

 .qr-frm {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
 }

 /*  */
 .modal-content {
    background: #1a1a1a;
    color: white;
    border-radius: 8px;
    padding: 20px;
 }

 .modal h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
 }

 .qr-frm input[type="text"] {
    width: 100%;
    padding: 12px;
    background: none;
    border-bottom: 1px solid #f6f6f6;
    color: white;
    border-radius: none;
    margin-bottom: 5spx;
 }

 .qr-frm .file-upload {
    margin: 15px 0;
    width: 100%;

 }

 .qr-frm .file-upload label {
    display: block;
    padding: 1px;
    background: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    /* text-align: center; */
    border: none;
    font-size: 10px;
    margin-bottom: -10px;
 }

 .qr-frm button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #e6e8e6;
    color: rgb(17, 17, 17);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
 }

 .qr-frm button[type="submit"]:hover {
    background: #737573;
 }

 .close {
    color: white;
 }

 @media (max-width: 768px) {

    /* .modal-content {
       width: 70%;
   } */
    .qr-frm {
       flex-direction: column;
       align-items: center;
    }

    .qr-frm img,
    .qr-frm form {
       width: 70%;
    }

    .modal-content {
       position: absolute;
       top: 40%;
       left: 50%;
       transform: translate(-50%, -50%);
       background: rgb(14, 100, 14, 0.8);
       padding: 20px;
       border-radius: 8px;
       width: 70%;
       max-width: 500px;
    }

    .qr-frm button[type="submit"] {
       width: 100%;
       padding: 6px;
       background: #d3d4d3;
       color: rgb(0, 0, 0);
       border: none;
       border-radius: 5px;
       cursor: pointer;
       font-size: 16px;
       transition: background 0.3s ease;
    }
 }



 /* loading buffer in qr payment */

 .buffer-container {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0,0,0,0.8);
   z-index: 9999;
   display: none;
   justify-content: center;
   align-items: center;
}

.loader {
   border: 5px solid #f3f3f3;
   border-top: 5px solid #3498db;
   border-radius: 50%;
   width: 50px;
   height: 50px;
   animation: spin 1s linear infinite;
}

@keyframes spin {
   0% { transform: rotate(0deg); }
   100% { transform: rotate(360deg); }
}

.copy-icon {
    cursor: pointer;
    margin-left: 10px;
    color: #4CAF50;
    transition: color 0.3s ease;
}

.copy-icon:hover {
    color: #45a049;
}