/* Logo SVG color control */
.logo-svg .logo-path {
  fill: #fff; /* Default: black logo for white bg */
  transition: fill 0.3s;
}

nav.nav-light .logo-svg .logo-path {
  fill: #111; /* White logo for dark bg */
}

nav.nav-light .sign-in-button {
  color: #111; /* White logo for dark bg */
}

nav .line {
  background-color: #fff; /* White logo for dark bg */
}

nav.nav-light  .line {
  background-color: #111; /* White logo for dark bg */
}

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  font-family: "Manrope", sans-serif;
}

.btn-transparent-gradient {
  background: linear-gradient(
    90deg,
    rgba(153, 153, 153, 0) 0%,
    rgba(118, 120, 128, 0.25) 100%
  );
}

.section-bg-gradient {
  background: linear-gradient(180deg, #050505 4.55%, #02010d 18.01%);
}

.line-section-bg {
  background: rgba(173, 155, 200, 0.48);
  border-radius: 65px;
}

.line-section-header-text {
  background: linear-gradient(271.17deg, #d1cbe9 -30.53%, #e5e5e5 70.15%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffffff;
}

button {
  cursor: pointer;
}
.why-choose-charge-bg {
  background: linear-gradient(180deg, #050505 4.55%, #02010d 18.01%);
}

.hamburger {
  width: 50px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px 12px;
  position: relative;
  border-radius: 20px;
}

.hamburger::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: #000;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  opacity: 0;
}

.hamburger:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.line {
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.hamburger:hover .line {
  background: #fff;
}

.line-top,
.line-bottom {
  width: 38px;
}

.line-middle {
  width: 32px;
}

.hamburger:hover .line-top,
.hamburger:hover .line-bottom {
  width: 28px;
}

.hamburger:hover .line-middle {
  width: 40px;
}

.slider-container {
  width: 120px;
  height: 43px;
  padding: 0;
  position: relative;
  background: white;
  border-radius: 43px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.slider-track {
  width: 100%;
  height: 8px;
  background: #f9f9f9;
  border-radius: 10px;
  position: relative;
}

.slider-fill {
  height: 100%;
  background: #7f5dff;
  border-radius: 10px;
  position: absolute;
  left: 0;
  animation: sliderAnimation 4s ease-in-out infinite;
}

@keyframes sliderAnimation {
  0% {
    width: 10%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 10%;
  }
}

.slider-button {
  width: 30px;
  height: 16px;
  background: #7f5dff;
  border-radius: 49px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  animation: buttonAnimation 4s ease-in-out infinite;
  transition: transform 0.2s;
}

.slider-button:hover {
  transform: translateY(-50%) scale(1.05);
}

@keyframes buttonAnimation {
  0% {
    left: 0%;
  }
  50% {
    left: calc(100% - 48px);
  }
  100% {
    left: 0%;
  }
}
/* 
/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
