:root {
  --primary: #1E3A8A;
  --accent: #FF7F32;
}
body { padding-top: 100px;
}


#header-placeholder .navbar {
  border-bottom: 3px solid #000 !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: var(--primary);
}

.bg-primary { background-color: var(--primary) !important; }
.btn-primary { background-color: var(--primary); border: none; }
.btn-primary:hover { background-color: #152866; }
.btn-warning { background-color: var(--accent); border: none; }

.header-navbar-section .nav-link {
  color: #fff !important;
}

.nav-item { 
  font-size: 1.2rem;
}

.card {
  background-color: #e6eeff;
}

.card-hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
  border: 2px solid rgba(21, 40, 102, 0.9);
  background-color: #dbe7ff;
  cursor: default;
}

.card-title {
  font-weight: 600;
  font-size: 1.35rem;
  color: #1a1a1a; /* deep neutral for contrast */
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

.card-thumb img,
.card-thumb svg {
  width: 80px;
  height: 80px;
  display: block;
  border-radius: 8px;
}
.card-content { min-width: 0; } /* ensure text truncation/wrapping works in flex */

.services-card-section {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.services-card-section .row + .row {
  margin-top: 2.5rem !important;
}

.hero-split-section {
  overflow: hidden;
}

.hero-inner {
  max-width: 1120px;
  /* padding-left: 1rem;
  padding-right: 1rem; */
}

.hero-split-row {
  min-height: 22rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-summary {
  max-width: 40rem;
}

.hero-image-shell {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 22rem;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero-image-shell {
    justify-content: flex-end;
  }
}

.hero-avatar {
  position: relative;
  z-index: 1;
  height: 22rem;
  width: min(100%, 18rem);
  object-fit: cover;
  object-position: center 12%;
  border-radius: 1.5rem;
  box-shadow: 0 22px 48px rgba(0,0,0,0.28);
}

@media (max-width: 991.98px) {
  body {
    padding-top: 90px;
  }

  .hero-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-split-row {
    min-height: auto;
  }

  .hero-copy,
  .hero-summary {
    max-width: none;
  }

  .hero-image-shell {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-avatar {
    height: 18rem;
    width: min(100%, 15rem);
  }

}


















/* Gradient button to match your screenshot */
.btn-gradient {
  background: linear-gradient(90deg, #6a0dad, #ff33aa);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient:hover,
.btn-gradient:focus {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Form inputs styling */
form .form-control {
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #1a1a1a;
}

form .form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255,127,50,0.25);
}

.contact-section {
  background-color: #152866;
}

.contact-alert,
.contact-confirmation {
  max-width: 52rem;
  background-color: #edf3ff;
  color: #152866;
  border: 1px solid #b9c9f2;
  border-radius: 1rem;
  padding: 1.5rem;
}

.contact-confirmation {
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

.contact-section .form-control {
  background-color: #edf3ff;
  border-color: #b9c9f2;
}

.contact-section .form-control.is-invalid {
  border-color: #ffb4a8;
}

.contact-section .invalid-feedback {
  color: #ffd7d0;
  font-size: 0.95rem;
}

.contact-section .form-control.is-invalid:focus {
  border-color: #ffb4a8;
  box-shadow: 0 0 0 0.2rem rgba(255,180,168,0.25);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
