/* Override Bootstrap's text-primary class */
.text-primary {
    color: #12255a !important; /* Replace with your desired color */
}

/* Custom styling for the h1 and h3 elements */
h1, h3 {
    color: #12255a !important; /* Replace with the color of your choice */
}


/* Custom button styles */
.btn-primary {
    background-color: #a3eacd; /* Change this to your desired button color */
    border-color: #a3eacd; /* Adjust the border color as well */
    color: #12255a; /* Adjust the text color */
}

.btn-primary:hover {
    background-color: #a3eacd; /* Change the hover color */
    border-color: #a3eacd; /* Adjust the border color on hover */
    color: #12255a; /* Adjust the text color */
}

/* Customize the color of the navbar links */
.navbar-item {
    color: #12255a !important; /* Replace with your desired color */
}

/* Optionally change the hover state color of the links */
.navbar-item:hover {
    color: #0D1A3F !important; /* Replace with a darker shade for hover effect */
}

/* Change the default link color */
a {
    color: #12255a; /* Replace with your desired color */
    text-decoration: none; /* Remove underline if needed */
}

/* Change the hover state color of all links */
a:hover {
    color: #0D1A3F; /* Darker shade or any color for hover effect */
    text-decoration: underline; /* Add underline on hover if needed */
}