.elementor-1851 .elementor-element.elementor-element-4dd5caa{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f894865 *//* Nav style */
.grid-image a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.grid-container {
      display: flex;
	  justify-content: space-between;
      align-items: center;
      max-width: 1500px;
      margin: 0px auto;
      padding: 0px 10px;
    }

    .grid-image {
      display: flex;
      align-items: center;
    }

    .grid-image img {
      width: 50px;
      border-radius: 10px;
    }

    .grid-logo-title {
      margin-left: 10px;
      margin-top: 30px;
      font-size: 1.4rem;
      font-weight: bold;
      display: flex;
      align-items: center;
    }

    .grid-list {
      display: flex;
      align-items: center;
      gap: 20px; 
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 4px;
      width: 25px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .hamburger div {
      height: 3px;
      width: 100%;
      background-color: #333;
      border-radius: 2px;
    }

    .grid-list-ul {
      list-style: none;
      display: flex;
      gap: 20px;
      padding-top: 25px;
    }

    .grid-list-ul li {
      position: relative;
    }

    .grid-list-ul a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      padding: 6px 10px;
      display: inline-block;
    }
    
    .grid-list-ul li .dropdown li a:hover {
  background-color: transparent;
}

    .dropdown {
      list-style: none;
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border-radius: 5px;
      z-index: 100;
      padding: 10px 0;
      min-width: 160px;
    }

    .dropdown li a {
      display: block;
      padding: 8px 20px;
      white-space: nowrap;
    }

    .dropdown li a:hover {
      background-color: #f0f0f0; 
    }

    .grid-list-ul li:hover .dropdown {
      display: block;
    }

    .nav-cta {
      padding: 10px 20px;
      background: #0077cc;
      color: white;
      border: none;
      border-radius: 20px;
      font-size: 1rem;
      cursor: pointer;
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: #005fa3;
      color: #fff;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .grid-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .grid-image img {
    width: 35px;
  }

  .grid-logo-title {
    font-size: 1rem;
  }

  .grid-list {
    position: relative;
  }

  .hamburger {
    display: flex;
    margin-left: 10px;
  }

  .grid-list-ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    z-index: 999;
    width: 200px;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .grid-list-ul.show {
    display: flex;
  }

  .grid-list-ul li {
    width: 100%;
  }

  .grid-list-ul a {
    padding: 10px 20px;
    width: 100%;
    text-align: left;
  }

  .dropdown {
    position: static;
    background: transparent ;
    box-shadow: none;
    padding: 0; 
    display: none;
  } 
  .dropdown li a:hover {
  background-color: transparent;
}
  .grid-list-ul li:hover .dropdown {
    display: flex !important;
    flex-direction: column;
    margin-left: -20px;
  }

  .dropdown li a {
    padding-left: 30px;
  }

  .nav-cta {
    display: none;
  }
    }/* End custom CSS */