/* Global layout and background */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #0d1117;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navbar styling */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  background: #ffffff;
  padding: 14px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #0d1117;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0078ff;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
  color: #0078ff;
}

@media (max-width: 768px) {
  .navbar {
    justify-content: space-between;
    gap: 0;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    text-align: right;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* Main Content Box */
.content {
  background: #161b22;
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  flex: 1;
}

h1,
h2 {
  color: #58a6ff;
  margin-top: 0;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact-form label {
  font-weight: bold;
  color: #ffffff;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #444;
  border-radius: 8px;
  font-size: 1em;
  background: #0d1117;
  color: #ffffff;
}

.contact-form button {
  background: #0078ff;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #00c6ff;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  color: #0d1117;
  font-size: 0.9em;
  border-top: 1px solid #eee;
  margin-top: auto;
}
