.site-header {
    height: 100px;
    z-index: 1000; 
    position: relative; 
}

  .site-header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/*.site-header nav {*/
/*    height: 100%;*/
/*    z-index: 1000;  */
/*    position: relative;*/
/*}*/

.navbar-brand img{
    max-width: 150px;
    height: 60px;
    /* border: 2px solid #b0a9a9; */
}

.navbar-collapse {
    z-index: 1000;
}

/* .site-header nav ul li a {
    /* font-size: 18px;
    font-weight: 300; 
   
} */

/* dropdown */
.dropdown-menu {
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: 150px; /* Changed to 150px */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    left: 50%;
    transform: translateX(-50%);
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-item {
    padding: 12px 15px; /* Reduced padding */
    color: #666;
    font-size: 14px; /* Slightly smaller font */
   
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    white-space: normal; /* Enables text wrapping */
    word-wrap: break-word; /* Ensures long words wrap */
    line-height: 1.3; /* Better line height for wrapped text */
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #508bca;
    color: #000;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Responsive styles */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: white;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        width: 100%;
    }

    .navbar-brand img{
        max-width: 100px;
        height: 50px;
        border: 2px solid #b0a9a9;
    }
}