:root {
  --bg-dark: #0b1220;
  --bg-light: #111827;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --accent: #38bdf8;
}

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

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  background: var(--bg-light);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 1.5rem;
  font-weight: 500;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 800px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

footer {
  background: #020617;
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.card ul {
  padding-left: 1.2rem;
}

.card li {
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

nav a {
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  background: var(--accent);
  color: #020617;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56,189,248,0.3);
}

/* Team card specific styling */
.team-card h3 {
  text-align: center;
  margin-bottom: 0.25rem;
}

.team-card p strong {
  display: block;
  text-align: center;
  margin-bottom: 0.6rem;
}

.team-card p {
  text-align: left;        /* or justify if you prefer */
  line-height: 1.55;
  font-size: 0.95rem;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}


.company-description p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
@media (max-width: 768px) {
  .company-description p {
    text-align: left;
  }
}
.contact-form {
  max-width: 600px;
  margin-top: 2rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.4rem;
  background: #020617;
  border: 1px solid #1f2933;
  color: var(--text-main);
  border-radius: 4px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form button {
  margin-top: 1rem;
}

