/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  background: #141414;
  color: #fff;
  font-family: 'Orbitron';
}

:root {
  --accent: #8007E3; /* cyber purple */
}
.company{
  /* color: transparent; */
  text-decoration: none;
  list-style: none;
}

header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 200px;
  padding: 20px 80px;

  background: rgba(0, 0, 0, 0.2);   
  backdrop-filter: blur(10px);      
  -webkit-backdrop-filter: blur(10px);

  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

header .logo {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 3px;
}

.logo img {
  height: 60px;
  width: auto;
}

nav {
  background: transparent;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #8007E3;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;

  background: 
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.7)), 
    url("/assets/unsplash_prMn9KINLtI.png") no-repeat center center;
  background-size: cover;
}
nav ul li a.active {
  color: #8007E3;  
  border-bottom: 2px solid #8007E3; /* ← missing semicolon */
}
.hero h5 {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 10px;
}
footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #222;
  /* margin-top: 60px; */
  color: #777;
  font-size: 13px;
}
.hero h1 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 600;
}

nav ul li a.active {
  color: var();
  border-bottom: 2px solid #8007E3;
}


.hero h1 span {
  color: #8007E3;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 20px;
}

/* Button */
.hero button {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  font-family: 'Orbitron';
  border-radius: 25px;
  background: #fff;
  color: #000;
  cursor: pointer;
  transition: color 0.3s ease;
}


.hero button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;  
  width: 0%;
  height: 100%;
  background: #8007E3;
  transition: width 0.5s ease;
  z-index: 0;
}


.hero button:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}


.hero button span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.hero button:hover span {
  color: #eeebeb;
}
.companyabt{
    list-style: none;
    text-decoration: none;
    color: #8007E3;
}