/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');



/* 2. Base Styles */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.line,
.word {
  overflow: hidden;
}

.line,
.char {
  transform: translateY(100%);
  opacity: 0;
}

.clip-path {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

/* Buttons */

.light-btn {
  background-color: white;
  color: black;
  padding: 12px 12px 12px 32px;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: 0.3s all ease-in-out;
}


.light-btn span {
  height: 41px;
  width: 41px;
  border-radius: 100px;
  background-color: black;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s all ease-in-out;
}

.light-btn:hover {
  background-color: black;
  color: white;
}

.light-btn:hover span {
  height: 41px;
  width: 41px;
  border-radius: 100px;
  background-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: 0.3s all ease-in-out;
  transform: rotate(-45deg);
}


/* Light trand button */

.light-btn-trans {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 12px 12px 32px;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: 0.3s all ease-in-out;
}


.light-btn-trans span {
  height: 41px;
  width: 41px;
  border-radius: 100px;
  background-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: 0.3s all ease-in-out;
}

.light-btn-trans:hover {
  background-color: white;
  color: black;
}

.light-btn-trans:hover span {
  height: 41px;
  width: 41px;
  border-radius: 100px;
  background-color: black;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s all ease-in-out;
  transform: rotate(-45deg);
}


/* Dark Btn */

.dark-btn {
  background-color: black;
  color: white;
  padding: 12px 12px 12px 32px;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: 0.3s all ease-in-out;
  border: none;
}


.dark-btn span {
  height: 41px;
  width: 41px;
  border-radius: 100px;
  background-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: 0.3s all ease-in-out;
}

.dark-btn:hover {
  background-color: #5423e7;
  color: white;
}

.dark-btn:hover span {
  height: 41px;
  width: 41px;
  border-radius: 100px;
  background-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: 0.3s all ease-in-out;
  transform: rotate(-45deg);
}

/* Dark trand button */

.dark-btn-trans {
  background-color: transparent;
  color: black;
  border: 1px solid rgb(0, 0, 0);
  padding: 12px 12px 12px 32px;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: 0.3s all ease-in-out;
}


.dark-btn-trans span {
  height: 41px;
  width: 41px;
  border-radius: 100px;
  background-color: black;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s all ease-in-out;
}

.dark-btn-trans:hover {
  background-color: black;
  color: white;
}

.dark-btn-trans:hover span {
  height: 41px;
  width: 41px;
  border-radius: 100px;
  background-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: 0.3s all ease-in-out;
  transform: rotate(-45deg);
}


/* Apply Btn */
.apply-btn{
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  color: black;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
  padding-bottom: 0.3rem;
}

.apply-btn svg{
  height: 20px;
  width: 20px;
  transition: 0.3s all ease-in-out;
}

.apply-btn:hover svg{
  transform: translateX(5px);
}

.apply-btn::after{
  content: "";
  height: 1px;
  width: 100%;
  background-color: black;
  position: absolute;
  bottom: 0;
  left: 0;
}

