/* Start Home Page Css 09-06-2025 */

body {
      font-family: 'Poppins', sans-serif;
      background-color: #f9f9f9;
    }

    .navbar {
      background: linear-gradient(90deg, #0d6efd, #6610f2);
    }

    .navbar-brand,
    .nav-link {
      color: #fff !important;
      font-weight: 500;
    }

    .nav-link:hover {
      text-decoration: none;
    }

    .hero {
      background: linear-gradient(135deg, #0d6efd, #6610f2);
      color: white;
      padding: 80px 0;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .hero h1 {
      font-size: 48px;
      font-weight: 700;
    }

    .hero p {
      font-size: 18px;
      margin-top: 10px;
    }

    main {
      padding: 60px 15px;
    }

    .feature-list li {
      margin-bottom: 10px;
    }

    footer {
      background: #212529;
      color: #fff;
      text-align: center;
      padding: 20px 0;
      margin-top: 60px;
    }

/* End Home Page Css */


/* Chat Css */
.chat-box { max-width: 600px; margin: auto; padding: 20px; }
.message { padding: 10px; border-radius: 10px; margin-bottom: 10px; }
.user { background-color: #f0f0f0; text-align: right; }
.bot { background-color: #e0ffe0; text-align: left; }
/* end chat css */


/* Phone Pay Css */

   body .container .phonepe {
            max-width: 650px;
            margin: auto;
            padding: 20px;
            border: 1px solid #ccc;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        body .container .phonepe input {
            width: 100% !important;
            padding: 10px !important;
            margin: 10px 0 !important;
            border: 1px solid #ccc !important;
            border-radius: 5px !important;
            font-size: 16px !important;
        }

        body .container .phonepe button {
            background-color: blue !important;
            color: white !important;
            padding: 10px 20px !important;
            border: none !important;
            border-radius: 5px !important;
            cursor: pointer !important;
            font-size: 16px !important;
        }

        body .container .phonepe button:hover {
            background-color: darkblue !important;
        }

        /* Prevent Notify CSS from affecting other styles */
        .notify-container {
            all: unset !important;
        }


/* End Phone Pay Css */


/* Razorpay css */

  .loader-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    color: white;
}
.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #012549;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
.processing{
    font-size: 18px;
    line-height: 26px;
    color: black;
    font-weight: 900;
    font-family: 'Lora', serif;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.d-none {
    display: none !important;
}

body .payment-container {
    background-color: #fff;
    max-width: 400px;
    margin: auto;
    padding: 30px 20px;
    border: 1px solid #ccc;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body .payment-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

body .payment-container p {
    font-size: 14px;
    color: #555;
}

body .payment-container input {
    width: 92%;
    padding: 12px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

body .payment-container button {
    background-color: #1a73e8;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

body .payment-container button:hover {
    background-color: #1259c3;
}

.payment-processing {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.payment-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.8);
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.payment-loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}


/* 05-08-2025 */



@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* End Razorpay css  */

