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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0b0b;
  color: #fff;
  line-height: 1.6;
}

/* /* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #111;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
}

nav a {
  margin: 0 15px;
  color: #ddd;
  text-decoration: none;
}

.btn {
  padding: 10px 20px;
  background: linear-gradient(90deg, #00e0ff, #0077ff);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  opacity: 0.8;
}

/* Contact Section */
.contact-section {
  padding: 50px 20px;
  background: #111;
  border-top: 1px solid #222;
}

.contact-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  color: #00e0ff;
}

.contact-section .subtitle {
  text-align: center;
  margin-bottom: 30px;
  color: #ccc;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.info-box {
  background: #151515;
  padding: 20px;
  border-radius: 10px;
  min-width: 220px;
  text-align: center;
  flex: 1;
}

.info-box h3 {
  margin-bottom: 10px;
  color: #00e0ff;
}

.info-box a {
  color: #fff;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00e0ff;
}
/* Center content in the middle of the page */
.center-page {
  min-height: 100vh;            /* Full screen height */
  display: flex;
  justify-content: center;      /* Horizontally center */
  align-items: center;          /* Vertically center */
  text-align: center;
  padding: 40px 20px;
}

.services-content {
  max-width: 1100px;
  width: 100%;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #0b0b0b;
  color: #777;
  font-size: 14px;
  border-top: 1px solid #222;
}
