/* =============== X-Stack Styles =============== */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f5f7fa;
  color: #222;
  line-height: 1.6;
}

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

header {
  background: #001f3f;
  color: white;
  padding: 20px 0;
}

header h1 {
  margin: 0;
  font-size: 2.2em;
  display: inline-block;
}

header nav {
  float: right;
  margin-top: 10px;
}

header ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

header a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

header a:hover {
  color: #00d8ff;
}

#services-intro {
  background: #e6f2ff;
  padding: 60px 0;
  text-align: center;
}

#services-intro h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.service-section {
  background: #fff;
  padding: 40px 0;
}

.service-card {
  background: #ffffff;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.service-card h3 {
  margin: 15px 0;
  font-size: 1.8em;
  color: #003366;
}

.service-card p {
  font-size: 1.05em;
  color: #444;
}

.badge-tech {
  background: #007bff;
  color: white;
  padding: 6px 15px;
  border-radius: 25px;
  font-size: 0.8em;
  font-weight: bold;
  display: inline-block;
}

#contact-form {
  background: #f0f2f5;
  padding: 60px 0;
  text-align: center;
}

#contact-form h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.contact-form {
  max-width: 600px;
  margin: 30px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.btn:hover {
  background: #0056b3;
}

.contact-info {
  margin-top: 40px;
}

.contact-info h4 {
  font-size: 1.6em;
  margin-bottom: 10px;
}

footer {
  background: #001f3f;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.9em;
}
