  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Aria', sans-serif;
    }

    nav {
      background: #444A9E;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      padding: 12px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1000;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand img {
      width: 45px;
      height: 45px;
      object-fit: contain;
    }

    .brand span {
      font-size: 20px;
      font-weight: 600;
      color: #fff;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .nav-links a {
      text-decoration: none;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      padding: 8px 10px;
      border-radius: 4px;
      transition: background 0.3s, color 0.3s;
    }

    .nav-links a:hover {
      background-color: #fff;
      color: #000;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 40px;
      left: 0;
      background: white;
      border: 1px solid #ccc;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      border-radius: 4px;
      min-width: 160px;
      flex-direction: column;
      z-index: 999;
    }

    .dropdown-toggle span{
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      padding: 8px 10px;
      border-radius: 4px;
      transition: background 0.3s, color 0.3s;
    }

    .dropdown-toggle span:hover{
     background-color: #eee;
      color: #000;
    }

    .dropdown-content a {
      padding: 10px 15px;
      font-size: 16px;
      border-bottom: 1px solid #eee;
      color: #000;
      text-decoration: none;
    }

    .dropdown-content a:hover {
      background-color: #fff;
      color: #444A9E;
    }

    .dropdown-content.show {
      display: flex;
      flex-direction: column;
    }

    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
      border: none;
      background: none;
      color: white;
    }


    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        align-items: flex-start;
      }

      .menu-toggle {
        display: block;
        position: absolute;
        right: 30px;
        top: 15px;
      }

      .nav-links {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        display: none;
        padding-top: 15px;
        border-top: 1px solid #ddd;
      }

      .nav-links.show {
        display: flex;
      }

      .dropdown-content {
        position: relative;
        top: 0;
        left: 0;
        box-shadow: none;
        border: none;
        padding-left: 15px;
      }

      .dropdown-content.show {
        display: flex;
      }
    }

    @media (max-width: 768px) {

      .brand img {
        width: 35px;
        /* Smaller logo */
        height: 35px;
      }

      .brand span {
        font-size: 16px;
        /* Smaller font size */
      }
    }

    /* Google Translate Styling */
    #google_translate_element select {
      padding: 4px;
      font-size: 0.85rem;
      border-radius: 4px;
    }

    .goog-logo-link,
    .goog-te-gadget span {
      display: none !important;
    }

    .goog-te-gadget {
      color: var(--text-main) !important;
    }

    .dropdown-toggle .dropdown-icon {
      font-size: 16px;
      transition: transform 0.3s ease;
      color: rgb(228, 228, 228);
    }

   

    .dropdown-content.show~.dropdown-toggle .dropdown-icon {
      transform: rotate(180deg);
    }