/* style.css */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0f2027;  /* deep tech vibe gradient */
  background: linear-gradient(to right, #2c5364, #203a43, #0f2027);
  color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.nav-header {
  background-color: #111;
  padding: 10px 0;
}

.logo {
  color: #00c4ff;
  font-size: 28px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin: 0;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  
  color: #fff;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px #000;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
}

.cta-button {
  background-color: #00c4ff;
  color: #111;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0099cc;
}

.about {
  padding: 60px 20px;
  background-color: #182c39;
  text-align: center;
}

.about h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

footer {
  background-color: #111;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.tool-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.tool-buttons .cta-button {
  flex: 1 1 auto;
  text-align: center;
  white-space: nowrap;
  padding: 12px 20px;
}