.header_class {
  background-color: var(--bg-dark);
  display: flex;
  justify-content: space-between;
  padding: 15px 60px;
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
}
.logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  margin-left: 100px;
}
.aTag {
  display: inline-block;
  transition: transform 0.1s ease;
}
.aTag:hover {
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

nav ul li a:hover {
  color: var(--white);
}
/* nav ul li a:focus {
  background: linear-gradient(90deg, #ba2f87, #183897);
  background-clip: text;
  -webkit-text-fill-color: transparent;
} */
.get-started {
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
  border: none;
  padding: 8px 16px;
  color: var(--white);
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.get-started:hover {
  background: linear-gradient(90deg, #102a73, #8e256a);
}
nav ul li a.active-nav {
  background: linear-gradient(90deg, #ba2f87, #183897);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
