
    body {
      margin: 0;
      font-family: "Poppins";
      background-color: #f7f7f7;
      font-size: medium;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      width: 90%;
      background-color: rgba(255, 255, 255, 0.75);
      margin-left: 50px;
      border-radius: 50px;
      z-index: 1000;  
      transition: all 0.4s ease;
    }
    .navbar.scrolled {
      background-color: #ffffff;
      position: fixed;
      box-shadow: 0 3px 10px rgba(0,0,0,0.2);
      display: flex;
      border-radius: 10px;
      width: 100%;
      margin-left: 0px;
    }
    .navbar-brand {
      color: #003D79;
      margin-left: 43px;
      margin-top: 10px;
      margin-bottom: 10px;
      font-size: 22px;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .navbar-brand img {
      width: 185px;
      height: 50px;
      padding: 5px;
    }
    .navbar-menu {
      display: flex;
      margin-top: 10px;
      margin-right: 43px;
      margin-bottom: 10px;
      gap: 10px;
      align-items: center;
      transition: all 0.3s ease;
    }

    .nav-link {
      color: #003D79;
      text-decoration: none;
      font-weight: 500;
      padding: 10px 12px;
      border-radius: 6px;
      transition: all 0.3s ease;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.3s;
      transition: all 0.3s ease;
    }

    .nav-link:hover {
      background-color: #f9c500;
      color: #ffffff;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      border-radius: 6px;
      min-width: 200px;
      top: 30px;
      background-color: rgb(255, 255, 255);
      left: 0;
      box-shadow: 0 3px 8px rgba(0,0,0,0.15);
      flex-direction: column;
    }

    .dropdown-content a {
      color: #003D79;
      padding: 10px 14px;
      text-decoration: none;
      display: block;
      border-radius: 4px;
    }

    .dropdown-content a:hover {
      background-color: #003D79;
      color:#fff
    }

    .dropdown:hover .dropdown-content {
      display: block;
      animation: fadeIn 0.3s ease;
    }
    .nav-link.active,
    .dropdown:hover > .nav-link {
      background-color: #f9c500;
      color: #ffffff;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .menu-toggle {
      display: none;
      background: none;
      color: #003D79;
      font-size: 26px;
      border: none;
      cursor: pointer;
    }

    @media (max-width: 991px) {
      .navbar {
        flex-wrap: wrap;
        background-color: #ffffff;
        position:sticky;
        width: 100%;
        border-radius: 0;
        margin-left: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
      }

      .menu-toggle {
        display: block;
        margin-right: 40px;
      }

      .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-left: 25px;
        gap: 5px;
        animation: fadeIn 0.5s ease;
        z-index: 1000;
        transition: all 0.4s ease;
      }
      .navbar-brand img {
        margin-bottom: 7px;
        margin-top: 3px;
      }
      .navbar-brand{
        margin-left: 20px;
      }
      .navbar-menu.show {
        display: grid;
      }

      .navbar-menu a {
        width: 100%;
        text-align: left;
        display: flex;
      }

      .dropdown-content {
        position: static;
        color: #000000;
        box-shadow: none;
        margin-left: 10px;
      }
      .dropdown-content a {
        color: #003D79;
        padding: 10px 14px;
        text-decoration: none;
        display: block;
        border-radius: 4px;
      }
      .dropdown:hover .dropdown-content {
        display: none;
      }

      .dropdown.active .dropdown-content {
        display: flex;
      }
    }

    @media (min-width: 992px) and (max-width: 1200px) {
      .navbar-menu {
        gap: 15px;
      }

      .nav-link {
        font-size: 15px;
        padding: 6px 10px;
      }
    }
