/* src/client/styles.css */
body {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #999;
  background-color: black;
  text-align: center;
  padding-top: 80px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: sans-serif;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.App {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid #333;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
}
.nav-links button {
  background: none;
  border: none;
  color: #999;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}
.nav-links button:hover {
  color: white;
}
.nav-links button.active {
  color: white;
  border-bottom: 2px solid #666;
}
.page {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex: 1;
}
.home-page {
  padding-top: 4rem;
}
.hero-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}
.globe-container {
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.counter {
  margin-top: 1rem;
  color: #666;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-card {
  background: #111;
  border: 1px solid #333;
  padding: 1.5rem;
  border-radius: 8px;
}
.stat-card h3 {
  color: white;
  margin-bottom: 0.5rem;
}
.page-subtitle {
  color: #666;
  margin-bottom: 2rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.product-card {
  background: #111;
  border: 1px solid #333;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: left;
}
.product-tag {
  display: inline-block;
  background: #222;
  color: #888;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.product-card h3 {
  color: white;
  margin-bottom: 0.5rem;
}
.product-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.product-card li {
  padding: 0.5rem 0;
  color: #888;
}
.product-card li::before {
  content: "\2713  ";
  color: #666;
}
.how-it-works {
  margin-top: 3rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.step {
  background: #111;
  border: 1px solid #333;
  padding: 1.5rem;
  border-radius: 8px;
}
.step-number {
  width: 50px;
  height: 50px;
  background: #222;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.project-card {
  background: #111;
  border: 1px solid #333;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: left;
}
.project-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.project-stats {
  display: flex;
  justify-content: space-between;
  background: #222;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.project-stats span {
  color: #888;
}
.project-card h3 {
  color: white;
  margin-bottom: 0.5rem;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.about-card {
  background: #111;
  border: 1px solid #333;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: left;
}
.about-card h2 {
  color: white;
  margin-bottom: 1rem;
}
.certificates {
  margin-top: 3rem;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.cert-card {
  background: #111;
  border: 1px solid #333;
  padding: 1.5rem;
  border-radius: 8px;
  color: #888;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.contact-card {
  background: #111;
  border: 1px solid #333;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: left;
}
.contact-card h2 {
  color: white;
  margin-bottom: 1rem;
}
.contact-card a {
  color: #888;
}
.contact-form {
  background: #111;
  border: 1px solid #333;
  padding: 2rem;
  border-radius: 8px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
.contact-form h2 {
  color: white;
  margin-bottom: 1.5rem;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  background: #222;
  border: 1px solid #444;
  color: white;
  padding: 0.75rem;
  border-radius: 4px;
  font-family: inherit;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
}
.contact-form button {
  background: #333;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #444;
}
footer {
  background: #0a0a0a;
  border-top: 1px solid #333;
  padding: 2rem;
  margin-top: auto;
}
footer p {
  color: #666;
  margin: 0.5rem 0;
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-title {
    font-size: 2rem;
  }
  .page {
    padding: 1rem;
  }
}
/*# sourceMappingURL=index.css.map */
