@font-face {
  font-family: 'Eonex';
  src: url('/assets/font/Eonex-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
}

header {
  background-color: #111;
  padding: 1px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.eonexfont {
     font-family: 'Eonex', sans-serif;
    text-transform: uppercase;
}
a .eonexfont {
    color: white;
    text-decoration: none;
}
header a {
    text-decoration: none;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
    
    :hover {
    text-decoration: underline;
    color: #6211FF;
}
    &:hover {
    text-decoration: underline;
    color: #6211FF;
}
}

header img.logo {
  height: 40px;
  border-radius: 50px ;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #6211FF;
}
#heroimg {
      
        z-index: -1;
        position: absolute;
        opacity: 50%;
    }
    @media screen and (min-width: 769px) {
        #heroimg {
            max-width: 100vw;
        }
    }
    @media screen and (max-width: 768px) {
        #heroimg {
            transform: rotate(-90deg);
            transform-origin: center center;
            height: 100vw;
            width: auto;
        }
    }
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(0.25);
  
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-button {
  background: #6211FF;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #580FE5;
}

.content {
  padding: 1.5rem;
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.6;
}

section.content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

form input, form select, form textarea {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border-radius: 6px;
  border: none;
  box-sizing: border-box;
}

form button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background: #6211FF;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 1rem;
}

form button:hover {
  background: #580FE5;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .cta-button {
    font-size: 1.2rem;
  }

  .content {
    max-width: 800px;
  }
}

    .timeline {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 2em;
        }

        .step {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
            max-width: 700px;
            background: #000;
            padding: 1.5em 2em;
            margin: 1em 0;
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            text-align: left;
        }

        .step.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .icon {
            font-size: 1.8em;
            margin-right: 0.5em;
        }

        .arrow {
            font-size: 2em;
            margin: 0.3em 0;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .arrow.visible {
            opacity: 1;
            transform: translateY(0);
        }

        ul {
            padding-left: 1.2em;
        }

        ul li {
            margin-bottom: 0.3em;
        }

footer {
  position: relative;
  background: radial-gradient(ellipse 80% 40% at bottom center, rgba(255,255,255,0.81) 0%, rgba(0,0,0,1) 40%);




  overflow: hidden;
}

footer p {
    text-align: center;
}

