@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Sora:wght@100..800&display=swap');
html {
  scroll-behavior: smooth;
}

.containerHeader{
  font-family: "Sora", sans-serif;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 10px 0px;
  position: relative;
}

.logoHeader{
  text-align: end;
}

.logoImageHeader{
  width: 40%;
  height: 40%;
}

.navHeaderMenuList{
  display: flex;
  gap: 20px;
  justify-content: center;
  text-align: center;
}

.menuListItem a{
  color: #fff;
  text-decoration: none;
  transition: scale 0.3s ease, color 0.3s ease;
}

.menuListItem{
  transition: scale 0.3s ease;
}

.menuListItem:hover{
  scale: 1.1;
}

.menuListItem a:hover{
  color: #9563c1;
}

.menu-toggle {
  display: none;
}

.nav-toggle {
  display: none;
}

@media (max-width: 768px) {

  .containerHeader {
    position: relative;
    background-color: transparent;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
  }

  .headerTopMobile{
    display: flex;
    align-items: center;
  }

.logoHeader{
  text-align: start;
}

.logoImageHeader{
  height: 100%;
}

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-toggle-bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
  }

  .navHeader {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgb(27, 2, 47);
    color: #fff;
    padding: 1rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .navHeaderMenuList {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .navHeaderMenuList a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
  }

  .menu-toggle:checked ~ .navHeader {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Header style end */

.roadmapMainContainer{
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
  position: relative;
  margin-bottom: 50px;
}

.row{
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  gap: 50px;
  margin: 0 auto;
  width: 100%;
}

.row-rightArrow {
  background-image: url(../../landing/img/roadmap/44.gif);
  background-repeat: no-repeat;
  background-size: 26vw 15vw;
  background-position: 33% center; 
}

.row-leftArrow {
  background-image: url(../../landing/img/roadmap/45.gif);
  background-repeat: no-repeat;
  background-size: 26vw 15vw; 
  background-position: 68% center;
}




.phaseInfo{
  width: 30%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: 470px 300px;
  padding: 70px 30px 0px 30px;
  font-family: "Sora", sans-serif;
}

.textPhaseInfo-left{
  text-align: start;
  padding-left: 20px;
}

.textPhaseInfo-right{
  padding-right: 20px;
  text-align: end;
}
@keyframes animatedBorder {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.gradient-border {
  position: relative;
  display: inline-block;
  height: 100%;
  padding: 3px;
  border-radius: 5%;
  background: linear-gradient(90deg,
    rgba(80, 6, 142, 0.52),
    rgba(255, 255, 255, 0.435)
    );
  background-size: 200% 100%;
  box-shadow: 0 0 60px rgba(104, 0, 169, 0.6);
  transition: transform 0.5s;
}

.gradient-border:hover{
  transform: scale(1.1);
}


.phaseMainInfo {
  padding: 50px;
  width: 350px;
  background-color: #41083e4a;
  border-radius: 5%;  
  text-align: start;
  font-family: "Sora", sans-serif;
  color: white;
  }

.phaseList{
  display: flex;
  flex-direction: column;
 list-style-type: disc;
 gap: 10px;
}



.textPhaseInfo{
  font-size: 25px;
}



.roadmapMainContainer .row {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.roadmapMainContainer .row.visible {
  opacity: 1;
  transform: translateY(0);
}



@keyframes animatedBorder {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes bounceUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.gradientBorderCard {
  position: relative;
  display: inline-block;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(90deg,
    rgb(92, 9, 128),
    rgb(97, 10, 117),
    rgb(79, 7, 113),
    rgb(94, 1, 113),
    rgb(74, 26, 80));
  background-size: 200% 100%;
  animation: animatedBorder 4s linear infinite;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.307), 0 0 40px rgba(104, 0, 169, 0.6);
}

.gradientBorderCard a{
  text-decoration: none;
  color: #fff;
}

.roadmapInfoCard {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  text-align: center;
  background-color: #491761;
  border-radius: 50%;
  height: 150px;
  width: 140px;
  z-index: 1000;
  animation: bounceUpDown 10s ease-in-out infinite; 
  font-family: "Sora", sans-serif;
}

.roadmapInfoCard h2 {
  font-size: 1.1rem;
}

.roadmapInfoCard p {
  font-size: 0.9rem;
}


.roadmapInfo {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 50px;
  flex-wrap: wrap; 
  margin-bottom: 100px;
}


@keyframes bounceUpDown {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}


@media (max-width:768px){
  .row {
    flex-direction: column;
    align-items: center;
    background-position: center center !important;
    background-size: contain;
    background-repeat: no-repeat;
    gap: 10px;
    background-image: none;
  }

  .phaseInfo {
    order: 1; 
    width: 100%;
    height: 30%;
    padding: 20px;
    background-size: contain;
    background-position: center;
  }

  .gradient-border{
    order: 2;
  }

  .phaseMainInfo {
    width: 100%;
    padding: 30px;
  }

  .textPhaseInfo-left,
  .textPhaseInfo-right {
    padding: 0;
    text-align: center;
  }

  .roadmap-title-head{
    font-size: 4rem;
  }

  .roadmap-title{
    padding-bottom: 0px;
    margin-bottom: 30px;
  }

  .roadmapInfo{
    display: none;
    justify-content: center;
    margin: 0 auto;
  }

  .roadmapInfoCard{
    justify-content: center;
    height: 150px;
    width: 150px;;
  }

  .copyright{
    text-align: center;
  }

  .gradient-border{
    width: 100%;
  }
}


.scroll-to-top {
  position: fixed;
  bottom: 5%;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #4d056e82;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none; 
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top:hover {
  background-color: #500c43;
}

