html {
  font-size: 14px;
}

@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: 60px;
}

.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;
}

/* Solutions & Equipment responsive grid balance */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* Mega Menu Group Headers (Non-clickable titles) */
.mega-menu-header {
  cursor: default !important;
  user-select: none;
}

/* Mega Menu Custom Scrollbar & Equipment Enhancements */
.mega-menu-scroll {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
.mega-menu-scroll::-webkit-scrollbar {
  width: 5px;
}
.mega-menu-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.mega-menu-scroll::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 4px;
}
.mega-menu-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #94a3b8;
}

.equipment-preview-img {
  transition: transform 0.3s ease;
}
.equipment-preview-card:hover .equipment-preview-img {
  transform: scale(1.03);
}
