/* Global */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;       /* reduced thickness */
  border-bottom: 2px solid #DC143C;
  z-index: 1000;
  height: 60px;            /* fixed height for snug fit */
}

.nav-logo img {
  height: 48px;            /* logo fits neatly inside bar */
  width: auto;
  display: block;
}

.nav-tagline {
  flex: 1;                     /* fills space between logo and links */
  text-align: center;          /* centers text */
  color: #fff;                 /* white text */
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.5px;

  /* Glow effect */
  text-shadow: 0 0 6px rgba(255,255,255,0.8),
               0 0 12px rgba(255,255,255,0.6),
               0 0 18px rgba(255,255,255,0.4);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95em;        /* slightly smaller text */
  transition: 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #DC143C;
  font-weight: bold;
  border-bottom: 2px solid #DC143C;
}

/* Hero Section */
.hero {
  background: url('assets/durban-skyline-grid.jpg') center/cover no-repeat;
  min-height: 85vh;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.cta {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 32px;
  background: linear-gradient(to bottom, #ff4d4d, #b30000); /* glossy gradient */
  color: #fff;
  border-radius: 12px; /* capsule shape */
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #800000; /* beveled edge */
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.4), /* inner shine */
              inset 0 -2px 4px rgba(0,0,0,0.4),      /* inner shadow */
              0 4px 12px rgba(220,20,60,0.6);        /* outer glow */
  transition: all 0.2s ease;
  position: relative;
}

/* Glass highlight strip */
.cta::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0));
  border-radius: 10px;
  pointer-events: none;
}

.cta:hover {
  background: linear-gradient(to bottom, #ff6666, #990000);
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.5),
              inset 0 -2px 6px rgba(0,0,0,0.5),
              0 6px 16px rgba(220,20,60,0.8);
  transform: translateY(-2px); /* lift effect */
}

/* Pressed-down effect */
.cta:active {
  background: linear-gradient(to bottom, #cc0000, #660000); /* darker red */
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.6); /* stronger inner shadow */
  transform: translateY(2px) scale(0.97);      /* slight shrink + push down */
}



/* Block Sections */
.block {
  padding: 70px 20px;
  border-bottom: 1px solid #222;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

h1, h2 {
  font-family: 'Exo 2', sans-serif;
  color: #DC143C;
}

/* Cards */
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  background: #111;
  border: 1px solid #DC143C;
  padding: 18px;
  width: 260px;
  border-radius: 8px;
  transition: 0.3s;
  text-align: center;
}

.card:hover {
  box-shadow: 0 0 20px #DC143C;
}

.popular {
  border: 2px solid #DC143C;
  box-shadow: 0 0 30px #DC143C;
}

.badge {
  display: block;          /* forces onto its own line */
  margin-top: 6px;         /* adds a little gap below the title */
  background: #DC143C;
  color: #fff;
  font-size: 0.8em;
  padding: 2px 6px;
  border-radius: 4px;
}


/* Threat Stats */
.threat .stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 25px auto;
  max-width: 1000px;
}

.stat {
  background: #111;
  border: 1px solid #DC143C;
  padding: 18px;
  border-radius: 8px;
  width: 200px;
  text-align: center;
}

/* Pricing Lists */
.pricing ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  text-align: center;
}

.pricing ul li {
  margin: 6px 0;
  color: #ccc;
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  margin-top: 25px;
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}

.comparison th, .comparison td {
  border: 1px solid #DC143C;
  padding: 10px;
  color: #fff;
}

.comparison th {
  background: #DC143C;
  color: #fff;
  font-weight: bold;
}

.comparison td:first-child {
  font-weight: bold;
  color: #ccc;
}

.comparison td {
  background: #222;
}

.comparison td:nth-child(2) {
  background: #151515;
  font-weight: bold;
  color: #00ff99;
}

/* Contact Form */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 20px auto;
}

.contact input, .contact textarea, .contact button {
  padding: 10px;
  border: none;
  border-radius: 4px;
}

.contact input, .contact textarea {
  background: #111;
  color: #fff;
  text-align: center;
}

.contact textarea {
  min-height: 120px;
}

.contact button {
  background: #DC143C;
  color: #fff;
  cursor: pointer;
}

.contact button:hover {
  background: #a30f2a;
}

.contact-info {
  margin-top: 20px;
  color: #ccc;
}

.about ul {
  list-style-position: inside;   /* brings bullets closer to text */
  padding-left: 0;               /* removes extra indent */
  margin: 0;                     /* resets default margin */
}

.about li {
  margin: 6px 0;                 /* vertical spacing between items */
  padding-left: 0;               /* no extra gap before text */
}
