• Call Us+91 70707 59347
  • Login

Welcome To Bringup Foundation !

/* Styles for the popup container */ .popup { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 1; } /* Styles for the popup content */ .popup-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: #fff; padding: 20px; border-radius: 5px; text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } /* Styles for the close button */ .close-popup { position: absolute; top: 10px; right: 10px; font-size: 24px; cursor: pointer; } /* Styles for the button to open the popup */ button { padding: 10px 20px; background-color: #7b61ff; color: #fff; border: none; cursor: pointer; } /* Additional styles for your website content can be placed here */