/* Navigation Bar */
.navbar {
    background: #357689; /* Professional dark blue shade */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds depth */
}

/* Logo Styling */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.navbar-brand .logo {
    width: 40px; /* Adjust width for the logo */
    height: auto;
    border-radius: 5px; /* Optional: adds rounded edges */
}

.navbar-brand span {
    margin-left: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}


.navbar-nav .nav-link {
    font-size: 1rem; /* Standard size for readability */
    color: #fff;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #618f9c; /* Gold hover color for links */
    background-color: rgb(242, 250, 250);
}

/* Authentication Buttons */
.auth-buttons .btn {
    font-size: 0.9rem; /* Keep the font size consistent */
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px; /* Balanced padding for buttons */
    border-radius: 30px; /* Rounded, modern look */
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.language-toggle img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.dropdown-menu {
    min-width: auto;
    text-align: left;
}
.nav-item .dropdown-menu {
    top: 100%; /* Adjust dropdown position to move slightly lower */
}
/* Hover Effects */
.auth-buttons .btn:hover {
    transform: translateY(-2px); /* Slight elevation on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
.btn-light {
    color: #357689;
    border: 1px solid #357689;
       background-color: #fff;
}
.btn-light:hover {
    color: #fff;
    background-color: #357689;
    border: 1px solid #357689;
}

/* Sign Up Button */
.btn-warning {
    color: #fff;
    background-color: #678086; /* Muted professional tone */
    border: none;
}

.btn-warning:hover {
    background-color: #5a696d; /* Slightly darker tone for hover */
    color: #fff;
}

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem; /* Slightly smaller for mobile */
    }

    .navbar-nav .nav-link {
        margin: 5px 0; /* Reduces spacing for compact layout */
        text-align: center; /* Center-align links on collapse */
    }

    .auth-buttons {
        flex-direction: column; /* Stack buttons vertically on mobile */
        margin-top: 10px;
    }

    .auth-buttons .btn {
        width: 100%; /* Full-width buttons for better UX */
        margin-bottom: 5px;
    }
}
/* Authentication Buttons */
.auth-buttons .btn {
    font-size: 0.9rem; /* Keep the font size consistent */
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px; /* Balanced padding for buttons */
    border-radius: 30px; /* Rounded, modern look */
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Hover Effects */
.auth-buttons .btn:hover {
    transform: translateY(-2px); /* Slight elevation on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Login Button */
.btn-light {
    color: #357689;
    background-color: #fff;
    border: 1px solid #357689;
}

.btn-light:hover {
    color: #fff;
    background-color: #357689;
    border: 1px solid #357689;
}

/* Sign Up Button */
.btn-warning {
    color: #fff;
    background-color: #678086; /* Muted professional tone */
    border: none;
}

.btn-warning:hover {
    background-color: #5a696d; /* Slightly darker tone for hover */
    color: #fff;
}
.ms-3 {
    margin-left: 0 !important; /* Resets margin-left globally */
}

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
    .auth-buttons {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        margin-top: 10px;
    }

    .auth-buttons .btn {
        width: 100%; /* Full-width buttons for mobile */
        margin-bottom: 10px; /* Spacing between stacked buttons */
        padding: 12px; /* Larger touch area for mobile users */
    }
}
