/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ================= NAVBAR ================= */
.cyber-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */
.cyber-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 22px;
  font-weight: 800;
}

.cv-blue {
  color: #2563eb; /* Axiomnet blue */
}

.cv-security {
  color: #111;
  font-weight: 700;
}

/* ================= NAV LINKS ================= */
.cyber-nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.cyber-nav-links li {
  position: relative;
}

.cyber-nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  transition: color 0.2s ease;
}

.cyber-nav-links a:hover {
  color: #2563eb;
}

/* ================= AUTH LINKS ================= */
.cyber-nav-links li a[href*="login"],
.cyber-nav-links li a[href*="signup"] {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #111;
  font-size: 13px;
}

.cyber-nav-links li a[href*="signup"] {
  background: linear-gradient(90deg, #2563eb, #22c55e);
  color: #ffffff;
  border: none;
}

/* ================= PROFILE ================= */
.profile-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.profile-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.profile-name {
  font-size: 14px;
  font-weight: 500;
  color: #111;
}

/* ================= DROPDOWN ================= */
.profile-dropdown {
  position: absolute;
  top: 48px;
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  min-width: 200px;
  padding: 10px 0;
  display: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.profile-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: #111;
  text-decoration: none;
  transition: background 0.2s ease;
}

.profile-dropdown a:hover {
  background: #f3f4f6;
}

.logout-btn {
  color: #dc2626;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .cyber-navbar {
    padding: 16px 24px;
  }

  .cyber-nav-links {
    gap: 16px;
  }

  .profile-name {
    display: none;
  }
}
/* ================= FOOTER ================= */
.footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  margin-top: 100px;
  font-family: "Inter", system-ui, sans-serif;
}

/* GRID */
.footer-grid {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

/* COLUMN */
.footer-col h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #111;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #2563eb;
}

/* ICONS */
.footer-col .icon {
  margin-right: 6px;
  font-size: 14px;
}

/* BOTTOM TEXT */
.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
