/* === 7TECH Website Styles === */
body {
  font-family: "Rajdhani", sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #001F3F;
}

header {
  background-color: #001F3F;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  height: 50px;
}

.nav-menu a {
  color: #00AEEF;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
}

.nav-menu a:hover {
  color: white;
}

.hero {
  background: linear-gradient(135deg, #001F3F, #00AEEF);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero .btn {
  background-color: white;
  color: #001F3F;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-block;
  font-weight: bold;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.section.alt {
  background-color: #f5f9ff;
}

.services-list {
  list-style-type: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.services-list li {
  padding: 5px 0;
  color: #001F3F;
}

.contact-form {
  max-width: 400px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
}

.contact-form input, .contact-form textarea {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #00AEEF;
  border-radius: 5px;
}

.contact-form button {
  background-color: #00AEEF;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.footer {
  background-color: #001F3F;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
}
