  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", Arial, sans-serif;
    }

    body {
      color: #fff;
      background-color: #0a0a0a;
    }

    header {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1000;
    }

    header .logo img {
      height: 70px;
    }

    header nav ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    header nav ul li a {
      text-decoration: none;
      color: #fff;
      font-size: 1rem;
      transition: color 0.3s;
    }

    header nav ul li a:hover {
      color: #00d4ff;
    }

    .hero {
      height: 100vh;
      background: url("image/bg.webp") no-repeat center center / cover;
      display: flex;
      align-items: center;
      padding: 0 80px;
      position: relative;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
    }

    .hero-content {
      position: relative;
      max-width: 700px;
      z-index: 1;
    }

    .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
    }

    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #ddd;
    }

    .btn {
      padding: 14px 28px;
      background: #00d4ff;
      color: #000;
      font-weight: bold;
      text-decoration: none;
      border-radius: 5px;
    }

    section {
      padding: 80px 20px;
    }

    section h2 {
      text-align: center;
      font-size: 2.2rem;
      color: #00d4ff;
      margin-bottom: 60px;
    }

    /* SERVICES */
    .service-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto 90px auto;
    }

    .service-image {
      width: 100%;
      height: 400px;
      border-radius: 14px;
      overflow: hidden;
    }

    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .service-row h3 {
      font-size: 26px;
      margin-bottom: 15px;
    }

    .service-row p {
      font-size: 18px;
      color: #ccc;
      margin-bottom: 18px;
      line-height: 1.6;
    }

    .service-row a {
      color: #00d4ff;
      font-weight: bold;
      text-decoration: none;
    }

    /* CONTACT */
    .form-container {
      max-width: 850px;
      margin: auto;
      background: #1a1a1a;
      padding: 40px;
      border-radius: 12px;
    }

    form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    form input, form textarea {
      padding: 14px;
      border-radius: 8px;
      border: none;
    }

    form textarea {
      grid-column: span 2;
      height: 120px;
    }

    form button {
      grid-column: span 2;
      padding: 16px;
      background: #00d4ff;
      border: none;
      font-weight: bold;
      cursor: pointer;
    }

    footer {
      background: #0a0a0a;
      padding: 60px 40px;
    }

    footer .footer-container {
      max-width: 1200px;
      margin: auto;
    }

    .bottom {
      text-align: center;
      margin-top: 40px;
      color: #777;
    }

    @media (max-width: 768px) {
      .service-row {
        grid-template-columns: 1fr;
      }

      .service-image {
        height: 260px;
      }

      form {
        grid-template-columns: 1fr;
      }

      form textarea,
      form button {
        grid-column: 1;
      }
    }
	
	
	/* SUCCESS / ERROR MESSAGE */
.form-message {
  max-width: 850px;
  margin: 0 auto 20px auto; /* center + spacing */
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}

.form-message.success {
  background: rgba(0, 230, 118, 0.15);
  color: #00e676;
  border: 1px solid rgba(0, 230, 118, 0.4);
}

.form-message.error {
  background: rgba(255, 82, 82, 0.15);
  color: #ff5252;
  border: 1px solid rgba(255, 82, 82, 0.4);
}


/* ===== FOOTER BASE ===== */
.site-footer {
  background-color: #0a0a0a; /* Pure black like site */
  padding: 70px 0 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #ffffff;
}

/* ===== CONTAINER ===== */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ===== LOGO ===== */
.footer-logo {
  margin-bottom: 30px;
}

/* ===== REACH OUT SECTION ===== */
.footer-reach h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-underline {
  display: block;
  width: 80px;
  height: 3px;
  background-color: #f5b400; /* Yellow underline */
  margin-bottom: 28px;
}

/* ===== LINKS ===== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f5b400;
}

/* ===== EMAIL ===== */
.footer-email a {
  text-decoration: none;
  color: #cfcfcf;
  font-size: 16px;
}

.footer-email a:hover {
  color: #ffffff;
}

/* ===== COPYRIGHT ===== */
.footer-bottom {
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;   /* Centered as requested */
  font-size: 14px;
  color: #bdbdbd;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 30px;
  }

  .footer-reach h3 {
    font-size: 24px;
  }

  .footer-links a {
    font-size: 16px;
  }
}


  </style>