/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  background: #000; /* fallback */
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  

  /* Background Image Settings */
  background-image: url("/assets/unsplash_prMn9KINLtI.png");
  background-size: cover;       /* cover entire screen */
  background-repeat: no-repeat; /* no repeating */
  background-position: center;  /* center image */
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7); /* change opacity here */
  z-index: -1;
}
:root {
  --accent: #8007E3; /* cyber purple */
}

footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #222;
  /* margin-top: 60px; */
  color: #777;
  font-size: 13px;
}
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;
}

nav ul li a.active {
  border-bottom: 2px solid #8007E3;
}

.logo img {
  /* height: 90px; */
    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: auto; 
  min-height: unset; /* remove forced viewport height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  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;
}



.hero h1 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 600;
}

.hero h1 span {
  color: #8007E3;
  font-size: 3rem;
}
.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;
}









/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  background: #000000;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
}

:root {
  --accent: #8007E3; /* cyber purple */
}
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: auto; 
  min-height: unset; /* remove forced viewport height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  padding: 120px 20px 40px; 
  margin-bottom: 0; 
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 600;
}

.hero h1 span {
  color: #8007E3;
  font-size: 3rem;
}
.hero p {
  font-size: 1.2rem;
  margin-top: 20px;
}
footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #222;
  /* margin-top: 60px; */
  color: #777;
  font-size: 13px;
}
/* Button */
.hero button {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  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;
}

/* ================================================ */


.audit-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.audit-card {
  display: flex;
  background-color: rgba(32, 32, 32, 0.5);
  border-radius: 40px;
  padding: 1rem;
  width: 80%;
  /* min-width: 700px; */
  max-width: 1500px;
  color: #fff;
  box-shadow: 0 0 10px #8007E3;
  justify-content: space-between; /* pushes text & image to edges */
  align-items:center;
  gap: 0; /* removes flex gap */
  max-height: max-content;
}

.audit-card2 {
  display: flex;
  flex-direction: row-reverse;  /* flips order */
  background-color: rgba(32, 32, 32, 0.5);
  border-radius: 40px;
  padding: 1rem;
  width: 80%;
  max-width: 1500px;
  color: #fff;
  box-shadow: 0 0 10px #8007E3;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  max-height: max-content;
}

.audit-content {
  flex: 1;
  padding: 1rem;
}

.audit-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.audit-content p {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.audit-image {
  flex: 1;
}

.audit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps ratio but covers */
  border-radius: 30px;
}

.tool-img {
    width: 250px;          /* control the size */
    height: auto;
    aspect-ratio: 4/3;     /* keeps 4:3 ratio */
    object-fit: cover;
    border-radius: 6px;
}


/* Contact Section Styles */


.email-container {
  display: flex;
  align-items: center;
  background: #aaa;
  border-radius: 25px;
  padding: 5px 10px;
  max-width: 500px;
  margin: 30px auto;  /* centers horizontally */
}


.email-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-family: 'Orbitron', sans-serif; /* match your site font */
  font-size: 12px;
  padding: 10px;
}

.email-btn {
  background: linear-gradient(90deg, #8007E3, #d000ff);
  background-size: 200% 200%;
  background-position: left;
  border: none;
  color: white;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  transition: background-position 0.5s ease, opacity 0.3s ease, color 0.3s ease;
}

.email-btn:hover {
  opacity: 0.8;
  background-position: right;  /* makes the gradient slide smoothly */
  color: #000;
}


