/* Global Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
  }

     

  /* Top Bar */
  .top-bar {
    display: flex;
    align-items: center;
    padding: 10px 8px;
    background-COLOR: #07f5d5; /* Professional blue */
    color: white;
    width: 100%;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .logo-image {
width: 220px; /* Set the width */
height: 65px; /* Set the height */
display: block; /* Make it block for centering */
margin: 0 auto; /* Center the image */
}

/* Adjust search section */
.search {
flex: 1; /* Allow search to take available space */
text-align: right; /* Align search to the right */
}

  .logo img {
    width: 220px;
    display: block; /* Make it block for centering */
    margin: 0 auto; /* Center the image */
  }

  .welcome-text {
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
  }

  /* Side Navigation Styles */
  .sidenav {
    height: 100%;
    width: 250px; /* Fixed width */
    position: fixed;
    z-index: 1;
    top: 0;
    left: -250px; /* Start off-screen to the left */
    background-color: #f4f4f4; /* Light gray for contrast */
    overflow-x: hidden;
    overflow-y: auto; /* Enable vertical scrollbar */
    transition: left 0.5s ease; /* Transition effect for sliding */
    padding-top: 60px;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
  }

  /* Open class to bring the sidebar into view */
  .sidenav.open {
    left: 0; /* Move into view */
  }

  .sidenav a {
    padding: 12px 22px;
    text-decoration: none;
    font-size: 18px;
    color: #333;
    display: block;
    transition: padding-left 0.3s ease, color 0.3s ease, background-color 0.3s ease;
    outline: none; /* Removes blue outline on focus */
  }

  .sidenav a:hover {
    color: white;
    padding-left: 50px;
    background-color: #007bff;
  }

  .sidenav .closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 30px;
  }

  .menu-icon {
    font-size: 27px;
    cursor: pointer;
    color: black;
  }

  /* Menu section styling */
  .menu-section, .info-section, .social-section {
    margin-top: 10px;
    padding: 0 8px;
    margin-left: 1px;
    text-align: left; /* Align content to the left */
  }

  h3 {
    color: #787373;
    text-align: left; /* Align section headings to the left */
  }
  
  h2 {
    color: black;
    text-align: left;
    margin-left: 20px;
   
  }

  /* Icon Styles */
  .fa-icon {
    margin-right: 10px;
    color: #0073B1;
  }

  /* Info section & Social section */
  .info-section a, .social-section a {
    font-size: 16px;
  }

  /* Button hover effects for "About Us", "Contact", etc. */
  .info-section a:hover, .social-section a:hover {
    color: #007bff;
    text-decoration: underline;
  }

  /* Footer section styling */
  .footer-section {
    margin-top: 30px;
    padding: 0 8px;
    text-align: center; /* Align footer content to the left */
    margin-bottom: 90px; /* Space before footer */
  }

  /* Additional styles to center logo and sections */
  .logo {
    text-align: center; /* Center the logo text */
    margin-bottom: 20px; /* Space between logo and menu */
  }
  
  .search a:hover {
    color: white;
    padding-left: 10px;
  }
  
  .search{
    color: white;
    flex: 1;
    text-align: right;
    margin-right: 16px;
    font-size: 18px;
    font-weight: 250;
  
  }
  .is{
    margin-left: 38%;
  }
  @media (max-width: 800px) {
    .is{
    margin-left: 30px;
  }
  }

  @media (max-width: 600px) {
    .is{
    margin-left: 20px;
  }
   
      }
