body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}



.container {
    max-width: 600px;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 40px;
    background-color: #081797 !important;
    color: white;
    text-align: center;
    line-height: 15px; /* Center the text vertically */
}

.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000; /* High z-index to keep it on top */
    top: 0; /* Align to the top */
}
.navbar-nav .nav-link {
    font-size: 19px; /* Increase font size */
    font-family: 'League Spartan', sans-serif;
    padding: 10px 15px;
    text-align: center;
    color: black; /* Optional: Adjust padding for better spacing */
}

.navbar-brand img {
    padding-left: 15px; /* Left padding for the logo */
}
/* Style for the Apply Now button */
.btn-outline-primary {
    color: white; /* White text color */
    background-image: linear-gradient(45deg, #081797 0%, #081797 100%); /* Gradient background */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
  
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    color: #fff; /* White text color on hover/focus */
    background-image: linear-gradient(45deg, rgb(2, 74, 156) 0%, rgb(10, 75, 145) 100%);
    box-shadow: 0 0 10px #081797; /* Subtle shadow for depth */
}


/* Optional: Add a small right margin to the ion-icon inside the button for spacing */
.btn-outline-primary ion-icon {
    margin-right: 5px;
}
/* Adjust alignment of actions in the navbar */
.navbar .d-flex {
    align-items: center; /* Center alignment vertically */
}

/* Additional adjustment to the Apply Now button for better spacing */
.btn-outline-primary {
    margin-left: auto; /* Pushes the button to the right */
    margin-right: 15px; /* Ensures some space on the right end */
}
.nav-item .btn {
    padding: 0.5rem 1rem; /* Adjust padding to match the height and alignment of other nav links */
    margin-left: 10px; /* Space between Home and Apply Now button */
    line-height: normal; /* Adjust line height to vertically center text if needed */
}


.navbar-nav {
    margin: 0 auto; /* Center align the nav items */
    align-items: center;
}
.nav-item {
    padding: 0 18px; 
    font-weight: 500px;
    color: black;/* Fixed padding between nav items */
}
.navbar-collapse {
    justify-content: center; /* Ensures items stay centered on all views */
}
.apply-button {
    padding: 0.5rem 1rem; /* Padding to match other nav items */
}


/* Ensure the button is centered on smaller screens */
.apply-now-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Float the button to the right on larger screens */
@media (min-width: 992px) {
    .apply-now-container {
        justify-content: flex-end;
        width: auto;
    }
}




/* Remove focus background color from dropdown items */
.navbar .dropdown-menu .dropdown-item:focus, 
.navbar .dropdown-menu .dropdown-item:hover {
    background-color: transparent; /* Makes background transparent on focus */
    color: #0056b3; /* Change this color to suit your design needs */
}

/* Ensure the dropdown remains visible and functional */
.navbar .dropdown-menu {
    border-color: #ccc; /* Optional: change if you have a specific border color in mind */
}




/*CERTIFICATE CSS*/
.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}
 
.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background-color: #081797!important;
    border: none;
    padding: 10px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #081797 !important;
}

.card {
    border: 1px solid #033e7d !important;
    border-radius: 5px;
    line-height: 1rem;
}

.card-header {
    background-color: #033e7d !important;
    color: white;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    font-size: 1.25rem;
}

.card-body {
    padding: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.col-md-4, .col-md-8 {
    flex: 1;
    padding: 5px;
}

.very-tight-row {
    margin-bottom: 5px;
}

.card-title {
    margin: 0;
    font-size: 1rem;
}

.card-text {
    margin: 0;
    font-size: 1rem;
}

#verificationResult {
    color: red;
    font-weight: bold;
}
