/* General Styles */
body, h1, h2, h3, h4, p {
    font-family: 'Agency FB' !important;
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0 75px 0;
    width: 100%;
}

.navbar .logo {
    margin-left: 45px;
    margin-bottom: 80px;
}

.navbar .logo img {
    width: 150px;
    height: 150px;
    object-fit: fill;
}

/* Navigation Links */
.navbar .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0 auto 80px auto;
    padding: 0;
}

.navbar .nav-links li {
    margin: 0 15px;
}

.navbar .nav-links a.btnn {
    color: #010626;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 23px;
    font-weight: 500;
    border: 1.5px solid transparent;
    border-radius: 5px;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}



/* Add underline for the active link */
.btnn.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;  /* Thickness of the underline */
    background-color: #0B59BF;  /* Blue color for the underline */
    margin-top: 5px;  /* Space between text and underline */
    position: absolute;
    left: 0;
    bottom: -5px;  /* Positioning the underline below the text */
}

.btnn {
    border: none;
    outline: none;
    padding: 10px 16px;
    background-color: #f1f1f1;
    cursor: pointer;
    font-size: 18px;
    position: relative;
    text-decoration: none; /* Ensure no underline by default */
}


/* Make sure link container is relative for proper positioning */
.nav-links a {
    position: relative;  /* Required for the ::after pseudo-element to be positioned correctly */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        margin: 20px 0 40px 0;
    }

    .navbar .logo {
        margin-left: 0;
    }

    .navbar .nav-links {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .navbar .nav-links li {
        margin: 10px 0;
    }

    .navbar .nav-links a.btnn {
        padding: 10px 15px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .navbar .nav-links a.btnn {
        padding: 10px 15px;
        font-size: 16px;
    }
}
