

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a23;
  color: #f0f0f0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

/* Header */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #111;
  padding: 1rem 2rem;
  border-bottom: 1px solid #444;
  z-index: 2;
  position: relative;
}

.logo-nav-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 60px;
}

.company-name {
  font-size: 1.8rem;
  color: #00f0ff;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-top: 1rem;
}

nav a {
  color: #f0f0f0;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00f0ff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 5rem 2rem 3rem;
  background: radial-gradient(circle at top, #1f1f3b, #0a0a23);
  z-index: 1;
  position: relative;
}

.hero h2 {
  font-size: 2.5rem;
  color: #00f0ff;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Main Content */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.about-section {
  background-color: #1f1f3b;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
  margin-bottom: 2rem;
}

.about-section h3 {
  color: #00f0ff;
  margin-bottom: 1rem;
}

.about-section p,
.about-section ul {
  margin-bottom: 1rem;
}

.about-section ul {
  padding-left: 1.2rem;
}

.about-section li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.section-image {
  margin-top: 1rem;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
}

.highlight {
  color: #00f0ff;
  font-weight: bold;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #111;
  color: #aaa;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}
