.navbar .navbar-brand img
{
    width: 150px;
}

.navbar .nav-link
{
    font-weight: 600;
    font-size: 22px;
}


.navbar
{
    box-shadow: 0 5px 4px 0 rgba(0, 0, 0, .1);
}


.navbar .contact-btn
{
    background-color: #009CBD !important;
    border-color: #009CBD !important  ;
    border-radius: 10px;
    color: #fff;
    padding: 8px 30px;
    font-weight: 600;
    font-size: 22px;
}

.navbar .nav-link.active {
    color: #006175 !important;
    position: relative; /* Required for positioning the ::after element */
}

.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -12%;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #006175; /* Adjust the color to match your desired design */
}


.navbar-item .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 139px;
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
}

.navbar-item:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    display: block;
}

.dropdown-toggle::after
{
    border-top: unset !important;
    content: none !important;
}

a:hover
{
    text-decoration: unset !important;
    color: #006175 !important;
}

.dropdwon-active
{
    color: #006175 !important;
    font-weight: 700;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
    color: #006175;
}

.sidebar-header img
{
    width: 85px;
}

/* Sidebar styles */
.sidebar {
    width: 250px;
    height: 100%;
    background: #F2F2F2;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1050;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

.sidebar .sidebar-active
{
    color: #006175 !important;
}

/* Style for the dropdown container */
.sidebar .navbar-item .dropdown-menu-sidebar {
    display: none; /* Hidden by default */
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
    border-top: 2px dotted #BFBFBF;
}

/* Display dropdown on hover */
.sidebar .navbar-item:hover .dropdown-menu-sidebar {
    display: block;
}

/* Style for individual dropdown items */
.dropdown-itemx {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    display: block;
}

.dropdown-itemx:hover {
    background-color: #f0f0f0;
    color: #006175;
}



.sidebar .navbar-item
{
    border-bottom: 1px solid #BFBFBF;
}

.sidebar .nav-link
{
    color: #828282;
    font-size: 16px ;
    font-weight: 600;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 20px;
    background-color: white;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    font-size: 40px;
    color: #006175;
}


#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler
{
    border: unset !important;
}

.navbar-toggler .navbar-toggler-icon
{
    color: #006175;
}


/* Sidebar opened state */
.sidebar.open {
    right: 0;
}

#overlay.visible {
    display: block;
}

/* Style for the dropdown container */
.navbar-item .custom-dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position it just below the link */
    left: 0;
    width: 315px; /* Adjust width as needed */
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
}

/* Show dropdown on hover */
.navbar-item:hover .custom-dropdown-menu {
    display: block;
}

/* Style for individual dropdown items */
.custom-dropdown-menu li {
    border-bottom: 1px solid #f0f0f0; /* Subtle separator */
    position: relative;
}

.custom-dropdown-menu li:last-child {
    border-bottom: none; /* Remove border from the last item */
}

.custom-dropdown-item {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    display: block;
    font-size: 16px; /* Adjust as needed */
    transition: all 0.3s ease;
}

.footer-end
{
    background: #16374A;
}

/* Language Selector Styles */
.navbar .dropdown {
    position: relative;
}

.navbar .dropdown .dropdown-menu {
    position: absolute;
    right: 0;
    min-width: 120px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: none;
}

.navbar .dropdown .dropdown-menu.show {
    display: block;
}

.navbar .dropdown .dropdown-toggle {
    color: #006175 !important;
    cursor: pointer;
    /* padding: 8px 12px; */
}

.navbar .dropdown .dropdown-item {
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
}

.navbar .dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .navbar .dropdown {
        margin-right: 1rem;
    }
    
    .navbar .dropdown .dropdown-menu {
        right: -10px;
    }
}