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;
}
.hover-warning:hover {
    color: #f59e0b !important;
    transition: color 0.2s ease;
}

.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;
}
/* Pro MNC Navbar Link Animations & Styling */
.pro-nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

    .pro-nav-link:hover {
        color: #f59e0b !important; /* Industrial Warning Yellow */
    }

    /* Sleek bottom underline effect on hover */
    .pro-nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 5px;
        left: 1rem;
        background-color: #f59e0b;
        transition: width 0.3s ease;
    }

    .pro-nav-link:hover::after {
        width: calc(100% - 2rem);
    }