﻿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;
}
.bg-pri {
    background-color: navy;
    color: white;
}

/* Navbar background (optional) */
.navbar {
    background-color: navy !important;
}

/* Normal nav link color */
.navbar-nav .nav-link {
    color: #ff9800 !important; /* Light Orange */
    font-weight: 600;
}

    /* Hover color */
    .navbar-nav .nav-link:hover {
        color: #e65100 !important; /* Darker Orange */
    }

    /* Active page color */
    .navbar-nav .nav-link.active {
        color: #ffcc00 !important; /* Gold */
    }

.construction-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin: 20px auto;
    /* border: 2px solid #ff9800;*/
    padding: 5px 0;
    background: white;
}

.construction-text {
    display: inline-block;
    padding-left: 100%;
    font-size: 18px;
    font-weight: bold;
    color: navy;
    animation: scrollText 12s linear infinite;
}

/* Continuous Left → Right */
@keyframes scrollText {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}
