:root {
    --black: #000000;
    --pacific-cyan: #2AA9D0;
    --sky-blue: #74BEDD;
    --blue-ncs: #2688C4;
}

body {
    margin: 0px !important;
    font-family: 'Segoe UI', sans-serif;
    color: var(--black);
    background: #f9f9f9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header.navbar {
    background: linear-gradient(to right, var(--pacific-cyan), var(--blue-ncs));
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.text-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    font-family: 'Segoe UI', sans-serif;
    animation: fadeInLogo 1s ease-in-out;
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header nav a {
    margin: 0 1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.main-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

footer
{
    line-height:0px !important;
}

footer.footer {
    background: linear-gradient(to right, var(--sky-blue), var(--blue-ncs));
    color: white;
    text-align: center;
    padding: 1rem;
    position: sticky;
    bottom: 0;
    width: 100%;
    margin-top: auto;
}
h2 {
    font-family: 'Segoe UI Semibold', sans-serif;
    font-size: 2rem;
    color: #003366
}
h3 {
    font-family: 'Segoe UI Semibold', sans-serif;
    font-size: 1.6rem;
    color: #003366;
}
h4 {
    font-family: 'Segoe UI Semibold', sans-serif;
    font-size: 1.5rem;
    color: #004a99;
}
p {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}
ul {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}
.button {
    background: linear-gradient(to right, var(--blue-ncs), var(--pacific-cyan));
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}

.dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    
}

    .button:hover {
        background: linear-gradient(to right, var(--sky-blue), var(--blue-ncs));
    }

.card-title {
    font-family: 'Segoe UI Semibold', 'Segoe UI', sans-serif;
    font-size: 1.25rem;
}
.card-text {
font-family: 'Segoe UI', sans-serif; 
font-size: 0.95rem; 
color: #555;
}
/*Standard cod*/

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;
}

