.navbar-custom {
  background-color: #072f66;
}

.navbar-brand img {
  height: 50px;
}

.nav-link.active {
  border-bottom: 2px solid white;
}

.dropdown-menu {
  min-width: 8rem;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  padding: 0.5rem 1rem;
  white-space: nowrap;
  font-weight: 500;
}

.dropdown-toggle {
  padding: 6px 14px;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Softer text colors */
.hero-content h1 {
  color: #f1f1f1;
}

.hero-content p,
section p {
  color: #d0d0d0;
}

/* page-specific helpers */
.card .card-title{color:#0d1b3d}
.card .card-text{color:#6b7280}  /* softer gray */
.fade-in {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease-out;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

.section-who{
  position:relative;
  background:url('images/gear-gold.jpg') center/cover no-repeat;
  color:#eef1f5;
}
.section-who::before{
  content:""; position:absolute; inset:0;
  background:rgba(7,47,102,.55); /* navy overlay for readability */
}
.section-who .content{ position:relative; z-index:1; }

.feature-card {
  border: 1px solid #e8eef6;
  border-left: 4px solid #072f66;
  border-radius: 14px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7,47,102,.08);
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #eef4fb;
  color: #072f66;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: .5rem;
  font-size: 1.25rem;
}



