/* Bottom Announcement */
      .gov-announcement {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.85);
        border-radius: 20px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        min-height: 110px; 
        padding: 15px 25px;
        display: flex;
        align-items: center;
        backdrop-filter: blur(25px);
        width: 550px; /* Fixed wider box */
        text-decoration: none;
        justify-content: center;
      }
      .gov-announcement-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
      }
      .gov-announcement-header img {
        width: 80px; /* Bigger logo */
        height: 80px;
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
      }
      .gov-announcement-title h5 {
        margin: 0;
        font-weight: 900;
        color: #0d6efd;
        font-size: 1.4em; /* Bigger title */
      }
      .gov-announcement-text p {
        margin: 5px 0 0 0;
        font-size: 1.1em; /* Bigger subtitle */
        color: #111;
        font-weight: 600;
      }

      /* Animations */
      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-8px);
        }
      }
    

      /* Responsive */
      @media (max-width: 768px) {
        /* .nifanyaje-box {
        position: static;
        width: 100%;
        margin-top: 15px;
      } */
        .gov-announcement {
          width: 90%;
          right: 5%;
        }
        .gov-announcement-header img {
          width: 45px;
          height: 45px;
        }
        .gov-announcement-title h5 {
          font-size: 1em;
        }
        .gov-announcement-text p {
          font-size: 0.85em;
          text-decoration: none;
        }
      }