   h3, label {
    font-weight: bold;
    color: white;
  }

  .nav-bar {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
  display: flex; /* Arrange list items horizontally */
  background-color: black; /* Set background color to black */
}

.nav-bar li {
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
  font-size:10px;
}

.nav-bar a {
  display: block; /* Ensure links fill the list items */
  padding: 6px 8px; /* Add some padding around the links */
  color: white; /* Set link text color to white */
  text-decoration: none; /* Remove underline from links */
  font-size:10px;
}

.nav-bar a:hover {
  background-color: #575757; /* Change background on hover */
}


  .hr-gradient {
            border: 2;
            height: 4px;
            background: linear-gradient(to right, #f4d0f6, #feb47b);
            margin: 20px 0;
        }

 #customAlert {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgb(0,0,0);
            background-color: rgba(0,0,0,0.4);
        }
        #customAlertContent {
            background-color: #fefefe;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 300px;
            text-align: center;
        }
        #customAlertClose {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }
        #customAlertClose:hover,
        #customAlertClose:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }



   .upibtn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100px;
            padding: 6px;
            margin: 5px;
            color: black;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: 0.3s;
        }
        .upibtn img {
            width: 70px;
            height: 40px;
  
        }
         .upibtn:hover {
          color: black;
           background-color:#e7e7de;
        }
        .google-pay { background-color: #e7e7de; }
        .phonepe { background-color: #e7e7de; }
        .paytm { background-color: #e7e7de; }
        .amazon-pay { background-color: #e7e7de; }
        .jio-pay { background-color: #e7e7de; }
        .btn:hover { opacity: 0.8; }



         #toast2 {
            visibility: hidden;
            min-width: 250px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 5px;
            padding: 12px;
            position: fixed;
            left: 50%;
            bottom: 30px;
            transform: translateX(-50%);
            font-size: 14px;
            z-index: 1000;
        }

        /* Show animation */
        #toast2.show {
            visibility: visible;
            animation: fadeInOut 3s;
        }

         
         #toast {
            visibility: hidden;
            min-width: 250px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 5px;
            padding: 12px;
            position: fixed;
            left: 50%;
            bottom: 30px;
            transform: translateX(-50%);
            font-size: 14px;
            z-index: 1000;
        }

        /* Show animation */
        #toast.show {
            visibility: visible;
            animation: fadeInOut 3s;
        }

        @keyframes fadeInOut {
            0% { opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { opacity: 0; }
        }
    
    
    
        