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

/* Body */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Header */
header {
  background: #000;
  border-bottom: 2px solid #FF007F;
  text-align: center;
  padding: 20px 10px;
}
header h1 {
  font-family: 'Bangers', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FF007F;
  letter-spacing: 1px;
}
header .tagline {
  font-size: 1.1em;
  color: #FFCC00;
  margin-top: 4px;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
nav li { margin: 5px 15px; }
nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s;
}
nav a:hover { color: #FF007F; }

/* Containers */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}

/* Intro */
#intro {
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  text-align: center;
  padding: 80px 20px;
}
#intro h2 {
  font-family: 'Rock Salt', cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #FFCC00;
  margin-bottom: 15px;
}
#intro p {
  font-size: 1.2em;
  color: #CCC;
  max-width: 900px;
  margin: 0 auto;
}

/* Section Layouts */
section {
  padding: 60px 20px;
}
section h2 {
  font-family: 'Rock Salt', cursive;
  color: #00FF00;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 15px;
}
section p {
  color: #CCC;
  font-size: 1.1em;
}

/* Flex Content (Services) */
#dfir .container,
#malware .container,
#vuln-analysis .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

#dfir img,
#malware img,
#vuln-analysis img {
  flex: 0 0 25%;
  max-width: 25%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px #111;
}

#dfir div,
#malware div,
#vuln-analysis div {
  flex: 1;
  min-width: 250px;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  #dfir .container,
  #malware .container,
  #vuln-analysis .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #dfir img,
  #malware img,
  #vuln-analysis img {
    max-width: 70%;
  }
}

/* Who We Are */
#who-we-are {
  background: #111;
  text-align: center;
}
#who-we-are p {
  color: #EEE;
  max-width: 900px;
  margin: 0 auto;
}

/* Contact */
#contact {
  background: #222;
  text-align: center;
}
#contact a {
  color: #FF007F;
  text-decoration: none;
}
#contact a:hover { text-decoration: underline; }

/* Footer */
footer {
  background: #000;
  color: #777;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
  border-top: 1px solid #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  nav ul { flex-direction: column; }
  #dfir .container, #malware .container,
  #cyber-intel .container, #pen-testing .container {
    flex-direction: column;
  }
  section { padding: 40px 10px; }
}
