/* header.css */

/* Base styles for the entire document */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Header styles */
  .site-header {
    background-color: #4da6ff; /* Less intense blue color */
    color: white;
    padding: 5px 0; /* Reduced padding for a cleaner look */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky; /* Make the header sticky */
    top: 0; /* Stick to the top */
    width: 100%;
    z-index: 1000; /* Ensure it stays above other content */
    text-align: center; /* Center align the content */
  }
  
  /* Navbar styles */
  .navbar {
    display: flex;
    justify-content: center; /* Center align the navbar items */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: sticky; /* Sticky position */
    z-index: 1000; /* Ensure it stays above other content */
    top: 0; /* Stick to the top */
  }
  
  /* Brand styles */
  .nav-brand {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    margin-right: auto;
    position: sticky; /* Sticky position */
    z-index: 1000; /* Ensure it stays above other content */
  }
  
  /* Navigation links */
  .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    position: sticky; /* Sticky position */
    z-index: 1000; /* Ensure it stays above other content */
  }
  
  .nav-links li {
    position: relative;
    margin-left: 20px;
    position: sticky; /* Sticky position */
    z-index: 1000; /* Ensure it stays above other content */
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: sticky; /* Sticky position */
    z-index: 1000; /* Ensure it stays above other content */
  }
  
  .nav-links a:hover {
    color: #f0f0f0;
  }
  
  /* Dropdown styles */
  .dropdown {
    display: none;
    position: absolute;
    background-color: #4da6ff;
    list-style: none;
    margin: 0;
    padding: 0;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .dropdown li {
    margin: 0;
  }
  
  .dropdown a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  /* Show dropdown on hover */
  .dropdown-parent:hover .dropdown {
    display: block;
  }
  
  /* Hover effect for dropdown */
  .dropdown a:hover {
    background-color: #8b3fff; /* Mix of blue and red */
    color: white;
  }
  
  /* Arrow styles */
  .arrow {
    font-size: 12px;
    margin-left: 5px;
  }
  
  /* Responsive text sizes */
  @media (max-width: 600px) {
    .nav-brand {
      font-size: 20px; /* Smaller brand font size for small screens */
    }
  
    .nav-links a {
      font-size: 16px; /* Smaller link font size for small screens */
    }
  }
  
  @media (min-width: 601px) and (max-width: 1200px) {
    .nav-brand {
      font-size: 22px; /* Medium brand font size for medium screens */
    }
  
    .nav-links a {
      font-size: 17px; /* Medium link font size for medium screens */
    }
  }
  

  