/*============================================
    MAIN COLORS
    --------------

    Dark Blue       #0e4876  // Header Navbar, Sidebar Header, Footer background color
    Dark Gray       #333     // Sidebar list items links
    Teal            #36949a  // Page header titles
    Aqua            #a3d4d7  // Accordion elements
    Light Blue      #1eafee  // Social icon background color

=============================================*/



/*============================================
    GENERAL STYLES
=============================================*/


/* ----------- Header--------- */
.header{
	position: relative!important;
	height:90px!important;
}

.row.header-img {
	display: none;
/*    margin-top: 0px!important;*/
}

.logo-container {
/*	position: relative;*/
}

.logo {
/*	position: absolute;*/
/*	bottom: auto;*/
}

.margin-top-40 {
	margin-top: 40px;
}


/* ----------- icons--------- */
.fa {
  padding: 15px;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
  margin-right: 8px;
}

.fa-instagram {
  background: #125688;
  color: white;
  margin-right: 8px;
}
.fa-twitter {
  background: #1DA1F2;
  color: white;
  margin-right: 8px;
}


/* Hide nested menus by default */
.nested-menu {
    display: none;
    list-style-type: none;
    padding-left: 20px;
	margin-top: 10px;
}

/* Toggle button styling */
.toggle-menu-sidebar {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

/* Icon styles */
.toggle-icon-sidebar {
    font-weight: bold;
    margin-left: 10px;
}

/* Highlight the active link */
.active-link-sidebar {
    font-weight: bold;
    color: #00a8b6!important;
}

.side-menu-list li a:hover {
	 color: #00a8b6!important;
}

/* 🔹 Style for Active Parent `<li>` */
li.active-link-sidebar {
    font-weight: bold;
    color: #00a8b6!important;
}

/* 🔹 Active Sidebar Parent Text */
li.active-link-sidebar > a {
    font-weight: bold;
    color: #00a8b6!important;
}


/* Show nested menu when an active link is inside */
.nested-menu {
    display: none;
}

/*Breadcrumbs */
.breadcrumbs-right {
    text-align: right;
    display: block;
}

.breadcrumb {
    display: inline-flex;
    justify-content: flex-end;
    background-color: #f8f9fa;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 14px;
}


/* ----------- Footer--------- */
li.nav-item {
    padding: 5px 8px;
}

ul.footer-menu {
	margin-top: 20px;
	margin-bottom: 20px;
}

ul.footer-menu li a {
	font-size: 13px;
	color: #ffffff;
	padding: 5px 10px;
}

.footer-copyright {
	margin-top: 20px;
}

/* ----------- MObile Styles --------- */
@media (max-width: 575.98px) {
	div#navbarSupportedContent {
        background-color: #f8f9fa00;
        padding: 10px;
        box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
    }
    .header {
        height: 90px!important;
    }

	.hide-top-mobile {
/*		visibility: hidden;*/
	}
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    background: white;
  }
}
/* Ensure mobile navbar is hidden on larger screens */
@media (min-width: 576px) {
    .mobile-navbar {
        display: none !important;
    }

    /* Ensure desktop navbar is visible on larger screens */
    .desktop-navbar {
        display: flex !important;
    }

    /* Fix Bootstrap's forced hiding of .navbar-collapse */
    .navbar-expand-sm .navbar-collapse {
        display: flex !important;
    }
	
	div#mobileNav {
    display: none !important;
	}

}

/* Hide the desktop navbar on smaller screens */
@media (max-width: 575px) {
    .desktop-navbar {
        display: none !important;
    }
	
	.side-menu-list {
        display: none !important;
    }

    /* Show the mobile navbar when toggled */
    .navbar-expand-sm .navbar-collapse.show {
        display: block !important;
    }
	
	.navbar-dark .navbar-nav .nav-link {
    color: rgb(255 255 255);
	}
}