.navbar-logo {
  max-width: 100%;
}
@media (max-width: 576px) {
:root {
  --bs-primary: #061b67;
}
.navbar-logo {
    height: 80px;
  }
}

.navbar-nav .nav-item {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.navbar-nav .nav-link {
  border: 1px solid #061b67;
  border-radius: 0.375rem;
  padding: 0.375rem 0.75rem;
  color: #061b67;
}
.navbar-nav .nav-link:hover {
  border-color: #061b67;
  background: rgba(6, 27, 103, 0.08);
  color: #061b67;
}
.navbar-nav .ph {
  width: auto;
  height: auto;
  background: transparent;
  font-size: inherit;
  border-radius: 0;
  color: inherit;
}

.ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: #061b67;
  color: #fff;
  font-size: 1.1rem;
}

h2 .ph, h3 .ph {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
}

.badge .ph {
  width: auto;
  height: auto;
  background: transparent;
  color: inherit;
  font-size: inherit;
  border-radius: 0;
}

h4 .ph {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.4rem;
  font-size: 1rem;
}

@keyframes cta-pulse {
  0%   { transform: scale(1);   background-color: transparent;          border-color: transparent;         box-shadow: 0 0 0 0 rgba(6, 27, 103, 0); }
  25%  { transform: scale(1.04); background-color: rgba(6,27,103,0.12); border-color: #061b67;             box-shadow: 0 0 0 10px rgba(6, 27, 103, 0.18); }
  55%  { transform: scale(0.97); background-color: rgba(6,27,103,0.18); border-color: #061b67;             box-shadow: 0 0 0 20px rgba(6, 27, 103, 0); }
  80%  { transform: scale(1.01); background-color: rgba(6,27,103,0.05); border-color: rgba(6,27,103,0.3); box-shadow: 0 0 0 0 rgba(6, 27, 103, 0); }
  100% { transform: scale(1);    background-color: transparent;          border-color: transparent;         box-shadow: 0 0 0 0 rgba(6, 27, 103, 0); }
}

.cta-pulse {
  animation: cta-pulse 0.8s ease-out;
  border: 2px solid transparent;
}

.cta-pulse h2,
.cta-pulse .card-title {
  animation: cta-heading-flash 0.8s ease-out;
}

@keyframes cta-heading-flash {
  0%   { color: inherit; }
  35%  { color: #061b67; }
  100% { color: inherit; }
}
