.top-bar {
     background: #083622;
     color: #fff;
     font-size: 13px;
     padding: 5px 0;
}

.top-bar a {
     color: #fff;
     text-decoration: none;
     /* margin-left: 15px; */
}

.main-header {
     background: #E8E2C7;
     padding: 0px;
     border-bottom: 1px solid #e5e7eb;
}

.header-wrapper {
     display: flex;
     justify-content: space-between;
     align-items: center;
}

.logo-area {
     display: flex;
     align-items: center;
     gap: 15px;
}

.logo-area img {
     width: 85px;
     height: 85px;
     object-fit: contain;
     filter: drop-shadow(2px 4px 6px #2a4173);
     background: #E8E2C7;
}

.logo-text h2 {
     margin: 0;
     color: #2a4173;
     font-size: 30px;
     font-weight: 700;
}

.logo-text p {
     margin: 0;
     color: #555;
     font-size: 15px;
}

.logo-text span {
     color: #777;
     font-size: 14px;
}

.search-btn {
     border: none;
     background: #2a4173;
     color: #fff;
     width: 50px;
     height: 50px;
     border-radius: 50%;
}

.main-navbar {
     background: #2a4173 !important;
}

.custom-dropdown {
     background: #ffffff;
     border: 1px solid #e5e7eb;
     border-radius: 0;
     min-width: auto;
     padding: 10px 0;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
     z-index: 99999;
}

.custom-dropdown .dropdown-item {
     color: #000;
     font-size: 16px;
     padding: 12px 22px;
}

.custom-dropdown .dropdown-item:hover {
     background: #f5f5f5;
     color: #000;
}

.nav-item.dropdown:hover .dropdown-menu {
     display: block;
     margin-top: 0;
}