html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Custom Styles for Unicorn Software */
.navbar-dark {
  background-color: #0066cc !important;
}

.bg-primary {
  background-color: #0066cc !important;
}

.btn-primary {
  background-color: #0066cc;
  border-color: #0066cc;
}

.btn-primary:hover {
  background-color: #0052a3;
  border-color: #0052a3;
}

.text-primary {
  color: #0066cc !important;
}

.card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Navigation */
.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease-in-out;
}

.navbar-dark .nav-link:hover {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Footer */
footer {
  background-color: #212529 !important;
}

footer a:hover {
  color: #ffffff !important;
}

/* Forms */
.form-control:focus,
.form-select:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* Buttons */
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
}

/* Hero sections */
.display-4 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Cards */
.border-primary {
  border-color: #0066cc !important;
  border-width: 2px !important;
}

/* Accordion */
.accordion-button:not(.collapsed) {
  background-color: #e6f2ff;
  color: #0066cc;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
  border-color: #0066cc;
}

/* Badges */
.badge {
  font-weight: 500;
  padding: 0.4em 0.8em;
}