<style>
  /* Popup Overlay */
  #redirectPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s;
  }

  /* Popup Box */
  #redirectPopup .popup-content {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 15px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    font-family: 'Arial', sans-serif;
    position: relative;
    animation: slideDown 0.5s;
  }

  #redirectPopup h2 {
    color: #0073aa;
    margin-bottom: 15px;
  }

  #redirectPopup p {
    color: #333;
    margin: 8px 0;
  }

  #redirectPopup a {
    color: #0073aa;
    font-weight: bold;
    text-decoration: none;
  }

  #redirectPopup .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    color: #999;
    cursor: pointer;
  }

  #redirectPopup .close-btn:hover {
    color: #0073aa;
  }

  /* Animations */
  @keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
  @keyframes slideDown { from {transform: translateY(-20px);} to {transform: translateY(0);} }
</style>

<div id="redirectPopup">
  <div class="popup-content">
    <span class="close-btn" onclick="closePopup()">×</span>
    <h2>Website Migrated!</h2>
    <p>Our website has moved from:</p>
    <p><a href="https://bapujicoopbank.com">https://bapujicoopbank.com</a></p>
    <p>To the new domain:</p>
    <p><a href="https://bcb.bank.in">https://bcb.bank.in</a></p>
    <p>You will be redirected in <span id="countdown">5</span> seconds.</p>
    <p>If not, <a href="https://bcb.bank.in">click here</a>.</p>
  </div>
</div>

<script>
  document.addEventListener("DOMContentLoaded", function() {
    var popup = document.getElementById('redirectPopup');
    popup.style.display = 'flex';

    var countdown = 5;
    var countdownElement = document.getElementById('countdown');

    var interval = setInterval(function() {
      countdown--;
      countdownElement.textContent = countdown;
      if (countdown <= 0) {
        clearInterval(interval);
        window.location.href = 'https://bcb.bank.in';
      }
    }, 1000);
  });

  function closePopup() {
    document.getElementById('redirectPopup').style.display = 'none';
  }
</script>



<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//bapujicoopbank.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://bapujicoopbank.com/post-sitemap.xml</loc>
		<lastmod>2025-09-12T13:53:52+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://bapujicoopbank.com/page-sitemap.xml</loc>
		<lastmod>2025-09-13T12:46:34+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://bapujicoopbank.com/member-message-sitemap.xml</loc>
		<lastmod>2025-09-12T13:56:53+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://bapujicoopbank.com/category-sitemap.xml</loc>
		<lastmod>2025-09-12T13:53:52+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->