.header123 {
  background-color: #002366;
    display: flex;
    height: 100px;
    width: auto;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px 10px 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color:#D3D3D3;
    margin-bottom: 0px;}
    
  .logo {
    display: flex;
    align-items: center;
  } 
  .logo img {
    width: 100px;
    height: 80px; 
    margin-right: 10px;
    mix-blend-mode: difference;
  }
  .logo-text h1 {
    font-size: 18px;
    margin: 0;
  }
  .logo-text p {
    font-size: 12px;
    margin: 0;
    color: rgb(118, 118, 118);
  }
  .search-bar1 {
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    height: 40px;
    width: 270px;
    border-radius: 20px;
    border: none;
  }
  .search-bar1 input {
    background-color: #ffffff;
    padding-left: 10px;
    height: 38px;
    width: 200px;
    border-radius: 20px;
    border: none;
  }
  input:focus {
    outline: none; 
    border: none;
  }
 .search-bar1 ::placeholder{
  padding-left: 10px;
 }
  .voice-search, .search-button {
    border: none;
    cursor: pointer;
    background-color: #ffffff;
    mix-blend-mode: darken;
  }
  .voice-search img{
    width: 35px;
    height: 35px;
  }
  .search-button img{
    width: 25px;
    height: 25px;
  }
  .voice-search img:hover, .search-button img:hover{
    transform: scale(1.2);
    transition-duration: 0.25s;
  }
  
  .menu-buttons {
    display: flex;
    align-items: center;
    margin-right: 20px;
  }
  .menu-button {
    background-color: #c3ebed;
    border: none;
    color: black;
    padding: 10px 20px 10px 20px;
    margin-left: 20px;
    border-radius: 20px;
    cursor: pointer;
  }

  .menu-button:hover{
    background:linear-gradient(to left,white,rgb(148, 181, 242)  );
    transition-duration: 0.25s;
  }
  .profile-pic {
    margin-left: 25px;
    width: 50px; 
    height: 50px; 
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #d6d6d6;
}

.profile-pic img {
    width: 100%;
    height: auto; 
    border-radius: 50%;
}

/* Existing header styles (logo, search bar, buttons) remain the same */

/* New Navigation Bar styles */
.nav-links {
  display: flex;
  justify-content: space-between;
  background-color: #d8dde1; /* Light purple background */
  padding: 5px 20px; /* Spacing around the links */
  box-shadow: 0 2px 12px gray;
  top: 0%;
  position: sticky;
  z-index: 1000;

}

.nav-link {

  background: none;
  color: black;
  font-family: 'Georgia';
  border:none;
  font-size: 17px;
  font-weight: bold;
  padding: 10px 15px;
  transition: color 0.3s, background-color 0.3s;
  border-radius: 5px;
  cursor: pointer;

}

.nav-link:focus{
  background-color: #002366;
  color: white;

}

.nav-link:hover{
  background-color: #c3ebed;
  color: black;
  
}


.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 17px;
  font-weight: bold;
  padding: 10px 15px;
  transition: color 0.3s, background-color 0.3s;
  border-radius: 5px;
}

.nav-links:hover {
  background-color:#f8f4f4;
} 

/* Full width for better tapping on mobile */
/* Ensuring the navigation is responsive */

/* @media (max-width: 768px) {
  .nav-links {
      flex-direction: column;
      align-items: center;
  }

  .nav-links a {
      padding: 10px 0;
      width: 100%; 
      text-align: center;
  }
} */
  
.notification-icon {
  position: relative;
}

.notification-icon .fa-bell {
  font-size: 24px; /* Adjust size as needed */
  color: #ee7e07; /* Adjust color as needed */
}

.notification-icon:hover {
  color: #007bff; /* Change color on hover */
}


