.navigation-bar {
  width: 100vw;
  max-width: 850px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: var(--br-16);
  padding: 12px ;
  box-sizing: border-box;
  box-shadow: var(--shadow-drop);
  overflow: visible;
}

.navigation-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  overflow: visible;
}

.myfinalyst-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.myfinalyst-logo-child {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.myfinalyst {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.64px;
  color: var(--color-black);
}

/* Navigation Links */
.breadcrumb-group {
  display: flex;
  align-items: center;
  gap: 27px;
  overflow: visible;
}

.product-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
}

.product {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-black);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.product:hover {
  color: var(--Brand-Color-Codes-Rain-Forest);
}

.product.active {
  font-weight: 600;
  color: var(--Brand-Color-Codes-Rain-Forest);
}

.caretdown-icon {
  width: var(--width-16);
  height: var(--height-16);
  transition: transform 0.3s ease;
}



.product-dropdown.active .caretdown-icon {
  transform: rotate(180deg);
}

.buttons-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tertiary-button {
  width: var(--width-72);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.login {
  font-size: var(--fs-16);
  font-weight: 500;
  color: var(--Brand-Color-Codes-Rain-Forest);
  padding-right: -2px;
}

.primary-button {
  cursor: pointer;
  border: none;
  padding: 8px 14px;
  background-color: var(--color-mediumseagreen);
  height: 40px;
  border-radius: 8px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  transition: background-color 0.2s ease;
}

.primary-button:hover {
  background-color: #359970;
}

.schedule-a-demo {
  font-size: 15px;
  letter-spacing: -0.02em;
  top: -2px;
  position: relative;
}

.product-dropdown {
  position: relative;
  z-index: 1;
}

.product-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 30px);
  transform: translateX(-50%) ;
  left: 50%;
  width: 340px;
  height: 345px;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: visible;
  z-index: 50;
}

.dropdown-menu.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-60%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 12px;
  background: transparent;
  margin-bottom: 8px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.dropdown-item:last-of-type {
  margin-bottom: 0;
}

.dropdown-item:hover,
.dropdown-item.submenu-active {
  background: #EFF7F0;
  font-weight: 800;
}

.dropdown-item:hover .register-trigger,
.dropdown-item.submenu-active .register-trigger {
  font-weight: 600;
  color: #205a46;
}

.dropdown-item.active {
  background: #EFF7F0;
}

.dropdown-item.active .register-trigger {
  font-weight: 600;
  color: #205a46;
}

.item-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.item-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: translateY(10px);
}

.item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.register-trigger {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #152521;
  text-decoration: none;
}

.register-trigger.active {
  font-weight: 600;
  color: #205a46;
}

.item-description {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #809790;
}

.submenu-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.submenu-arrow img {
  width: 16px;
  height: 16px;
}

.submenu {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  left: calc(100% + 10px);
  top: -10px;
  width: 280px;
  background: #f4faf5;
  border-radius: 0 16px 16px 0;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 40;
  box-sizing: border-box;
  min-height: 345px;
  max-height: 345px;

}

.submenu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.submenu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 10px;
}

.submenu-item {
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 14px;
  color: #205a46;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease, font-weight 0.2s ease;
  margin-bottom: 4px;
}

.submenu-item:last-of-type {
  margin-bottom: 0;
}

.submenu-item::after {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url('/public/assets/images/arrowgrey.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.submenu-item:hover {
  background: #e3f2ea;
  font-weight: 600;
  color: #205a46;
}

.submenu-item:hover::after {
  background-image: url('/public/assets/images/Arrow1@2x.png');
}

.submenu-cta {
  background: #e8f4ed;
  border-radius: 12px;
  padding: 10px 16px;
  margin-top: auto;
}

.cta-title {
  font-size: 14px;
  font-weight: 500;
  color: #205a46;
  margin: 0;
  line-height: 1.4;
}

.cta-description {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
  padding: 3px;
}

.cta-button {
  background-color: var(--color-mediumseagreen);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  align-self: flex-start;
  margin-top: 8px;
}

.cta-button:hover {
  background-color: #359970;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.logo-link:hover {
  opacity: 0.9;
}

@media screen and (max-width: 1100px) {
  .navigation-bar {
    width: 100%;
    max-width: 1100px;
  }
}

button,
input,
select,
textarea {
  font-family: "DM Sans";
}

.submenu-top-align {
  top: -180px !important;
  
}

@media screen and (max-width: 1280px) {
.navigation-bar {
  width: 100vw;
  max-width: 650px;
  height: 45px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 12px ;
  box-sizing: border-box;
  box-shadow: var(--shadow-drop);
  overflow: visible;
}

.navigation-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  overflow: visible;
}

.myfinalyst-logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.myfinalyst-logo-child {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

.myfinalyst {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.64px;
  color: var(--color-black);
}

/* Navigation Links */
.breadcrumb-group {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: visible;
}

.product-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
}

.product {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-black);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.product:hover {
  color: var(--Brand-Color-Codes-Rain-Forest);
}

.product.active {
  font-weight: 400;
  color: var(--Brand-Color-Codes-Rain-Forest);
}

.caretdown-icon {
  width: var(--width-16);
  height: var(--height-16);
  transition: transform 0.3s ease;
}



.product-dropdown.active .caretdown-icon {
  transform: rotate(180deg);
}

.buttons-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tertiary-button {
  width: var(--width-72);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.login {
  font-size: var(--fs-16);
  font-weight: 500;
  color: var(--Brand-Color-Codes-Rain-Forest);
  padding-right: -2px;
}

.primary-button {
  cursor: pointer;
  border: none;
  padding: 8px 14px;
  background-color: var(--color-mediumseagreen);
  height: 30px;
  border-radius: 8px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  transition: background-color 0.2s ease;
}

.primary-button:hover {
  background-color: #359970;
}

.schedule-a-demo {
  font-size: 15px;
  letter-spacing: -0.02em;
  top: -2px;
  position: relative;
}

.product-dropdown {
  position: relative;
  z-index: 1;
}

.product-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 30px);
  transform: translateX(-50%) ;
  left: 50%;
  width: 340px;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: visible;
  z-index: 50;
  min-height: 345px;
}

.dropdown-menu.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-60%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 12px;
  background: transparent;
  margin-bottom: 8px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.dropdown-item:last-of-type {
  margin-bottom: 0;
}

.dropdown-item:hover,
.dropdown-item.submenu-active {
  background: #EFF7F0;
  font-weight: 800;
}

.dropdown-item:hover .register-trigger,
.dropdown-item.submenu-active .register-trigger {
  font-weight: 600;
  color: #205a46;
}

.dropdown-item.active {
  background: #EFF7F0;
}

.dropdown-item.active .register-trigger {
  font-weight: 600;
  color: #205a46;
}

.item-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.item-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: translateY(10px);
}

.item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.register-trigger {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.03em;
  color: #152521;
  text-decoration: none;
}

.register-trigger.active {
  font-weight: 600;
  color: #205a46;
}

.item-description {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #809790;
}

.submenu-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.submenu-arrow img {
  width: 16px;
  height: 16px;
}

.submenu {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  left: calc(100% + 10px);
  top: 0;
  width: 280px;
  background: #f4faf5;
  border-radius: 0 16px 16px 0;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 40;
  box-sizing: border-box;
  min-height: 345px;
  max-height: 345px;

}

.submenu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.submenu-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.submenu-item {
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 14px;
  color: #205a46;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease, font-weight 0.2s ease;
  margin-bottom: 4px;
}

.submenu-item:last-of-type {
  margin-bottom: 0;
}

.submenu-item::after {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url('/public/assets/images/arrowgrey.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.submenu-item:hover {
  background: #e3f2ea;
  font-weight: 600;
  color: #205a46;
}

.submenu-item:hover::after {
  background-image: url('/public/assets/images/Arrow1@2x.png');
}

.submenu-cta {
  background: #e8f4ed;
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: auto;
}

.cta-title {
  font-size: 14px;
  font-weight: 500;
  color: #205a46;
  margin: 0;
  line-height: 1.4;
}

.cta-description {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
  padding: 3px;
}

.cta-button {
  background-color: var(--color-mediumseagreen);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  align-self: flex-start;
  margin-top: 8px;
}

.cta-button:hover {
  background-color: #359970;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.logo-link:hover {
  opacity: 0.9;
}
}