@import url('https://fonts.googleapis.com/css2?family=Sen:wght@600&display=swap');

body {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
    color: black;
}

.heading-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 10px;
    border: 2px solid #f8f9fa; /* Match border with the fill color */
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: blue; /* Text color should be blue */
    background-color: #f8f9fa; /* Match the example inner fill color */
    transition: background-color 0.3s, transform 0.3s;
    height: 125px; /* Adjust height if needed */
}

.heading-box:hover {
    background-color: #e2e6ea;
    transform: scale(1.05);
}

.heading-box h2 {
    margin: 0;
    color: blue; /* Ensure the text color is blue */
}

/* Apply the Sen font to the body, or specific elements as needed */
.container-fluid {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
    color: black !important; /* Ensures the text is black */
}

/* Increase the font size of the navbar brand and links */
.navbar-brand {
    font-family: 'Sen', sans-serif;
    font-weight: bold;
    color: rgb(164, 13, 13) !important;
    font-size: 2rem; /* Increase font size */
}

.nav-link.active, .nav-link.bold-link {
    font-weight: bold;
    color: black !important; /* Ensures the text is black */
    font-size: 2rem; /* Increase font size */
}

.dropdown-toggle {
    font-weight: bold;
    color: black;
    transition: all 0.3s;
    font-size: 1.25rem; /* Increase font size */
}

.dropdown-toggle:hover {
    transform: translateY(-7.5px);
    background-color: rgb(231, 231, 235);
    border: rgb(231, 231, 235);
    color: black;
}

.nav-item {
    font-weight: bold;
    color: black;
    transition: all 0.3s;
    font-size: 1.25rem; /* Increase font size */
}

.nav-item:hover {
    transform: translateY(-7.5px);
    background-color: rgb(231, 231, 235);
    border: rgb(231, 231, 235);
    color: black;
}
