/*
Theme Name: Navobyte Cybersecurity
Author: Navobyte
Version: 1.0
*/

:root {
  --blue: #0052CC;
  --green: #7CFF00;
  --dark: #0A0F1C;
  --light: #F8FAFC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Nav Styles */
nav {
  background: rgba(10, 15, 28, 0.98);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(124, 255, 0, 0.2);
}

.logo img { height: 55px; }

.nav-links { display: flex; gap: 2rem; }

.nav-links a { color: white; text-decoration: none; font-weight: 500; }

.nav-links a:hover { color: var(--green); }

.hamburger { display: none; font-size: 1.8rem; color: white; cursor: pointer; }

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; width: 100%; background: var(--dark); padding: 1rem 0; }
  .nav-links.active { display: flex; }
  .hamburger { display: block; }
}

/* General Sections */
.section { padding: 120px 5% 80px; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: var(--dark); }

/* Footer */
footer { background: var(--dark); color: white; padding: 60px 5% 30px; text-align: center; }