.navbar-header{
	    position: absolute;
    left: 20px;
}



  .important-btn {
    display: inline-block;
    background: #ffcc00;
    color: #0c4270 !important;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 25px;
    text-transform: uppercase;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-left: 15px;
  }

  .important-btn:hover {
    background: #ffd633;
    transform: scale(1.1);
  }

  /* Optional: smooth pulse animation (zoom in-out automatically) */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
  }

  .important-btn {
    animation: pulse 2s infinite;
  }
</style>
