* {
  font-family: "Afacad Flux", sans-serif;
  font-weight: 600;
  scroll-behavior: smooth;
}

/* navbar code  */
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: background-color 0.3s ease;
}

.nav-link {
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* custom select option select field */
& .custom-select {
  position: relative;
  cursor: pointer;
  transition: box-shadow 100ms linear;

  & .select-selected {
    padding: 14px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
  }

  &:focus {
    outline: none;
  }

  & .select-items {
    opacity: 0;
    max-height: 300px;
    translate: 0px 20px;
    pointer-events: none;
    position: absolute;
    overflow-y: auto;
    background-color: #f9f9f9;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    transition: all 100ms linear;

    & div {
      padding: 10px;
      cursor: pointer;

      &:hover {
        background-color: #f1f1f1;
      }

      &:focus {
        outline: none;
        background-color: #f1f1f1;
      }
    }
  }

  &.select-arrow-active .select-items {
    opacity: 1;
    translate: 0px 0px;
    pointer-events: auto;
  }
}

.select-items div:hover {
  background-color: #f1f1f1;
}

.fa-caret-down {
  transition: transform 0.3s;
}

.rotate {
  transform: rotate(180deg);
}

.bg-gradient-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

/*  */

.step-container {
  position: relative;
}

.step-container::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 2rem);
  background-color: rgb(33 196 93);
  z-index: 2;
}
.step-container:last-child::before {
  display: none;
  transition: box-shadow 200ms ease-in;
}

.form-input:focus {
  box-shadow: 0 0 0 1px rgb(33 196 93);
  outline: none;
}

/* product details page modal scrollbar */
.modal-content-container {
  min-height: 60%;
}

/* Modern Custom Scrollbar Styles */
.modal-content {
  /* Enable custom scrollbar */
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #cbd5e1 #f1f5f9; /* For Firefox */
  width: 100%;
}

.step-content {
  display: inline;
  min-height: 100%;
}

.desktop-dropdown::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.desktop-dropdown::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.desktop-dropdown::-webkit-scrollbar-track {
  background-color: #f1f5f9;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

#hero-canvas {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #164e37, #136f9a);
}


@media (max-width: 575px) {
  #navbar {
      background-color: black;
  }

  #mobile-menu {
      background-color: black; /* Set the mobile menu background to black */
      color: white; /* Ensure text is visible on a black background */
  }

  
}


  
