  html {
  font-size: 110%; /* zoom that ting bro */
}

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Arial', sans-serif;
      background-color: #1b1b1b;
      color: #000;
      font-size: 1.05rem; /* Consider 1.05rem */
    }

    header {
  background-color: #1b1b1b;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}

header::before, 
.connect::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(white 1px, transparent 1px);
  background-size: 40px 40px;
  /* animation: moveStars 40s linear infinite; */
  opacity: 0.2;
  z-index: 0;
}

@keyframes moveStars {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-100px, -100px);
  }
}


header * {
  position: relative;
  z-index: 1;
}


    header h1 {
      font-family: 'Press Start 2P', monospace;
      font-size: 1rem;
      margin-bottom: 1rem;
       line-height: 1.6;
    }

    header h2 {
      font-family: 'Press Start 2P', monospace;
      font-size: 1.5rem;
      line-height: 2rem;
    }

    nav {
      position: absolute;
      top: 1rem;
      right: 2rem;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      margin-left: 1rem;
      font-size: 0.9rem;
    }

    .subheading {
      font-size: 1.2rem;
      margin-top: 1rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    section {
      padding: 3rem 1rem;
      text-align: center;
    }

   .about {
      background-color: #1f4dbc;
      color: white;
    }



    .about h3 {
      font-family: 'Press Start 2P', monospace;
      margin-bottom: 1rem;
    }

    .services {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      background-color: #f5f5f5;
    }

    .card {
      background: white;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border-radius: 8px;
      padding: 1.5rem;
      width: 380px;
      text-align: left;
    }

    .card h4 {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.8rem;
      margin-bottom: 1rem;
    }

    .card ul {
      list-style: none;
    }

    .card li::before {
      content: "✔️ ";
    }

    .faq {
      background-color: #1f4dbc;
      color: white;
    }

    .faq h3 {
      font-family: 'Press Start 2P', monospace;
      margin-bottom: 1rem;
    }

    .faq ul {
      list-style: none;
      max-width: 600px;
      margin: auto;
      text-align: left;
    }

    .faq li {
      margin: 0.5rem 0;
      border-bottom: 1px solid #fff;
      padding-bottom: 0.5rem;
    }

    .faq-item {
  margin: 1rem auto;
  max-width: 600px;
  text-align: left;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid #fff;
}

.faq-answer {
  display: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #f0f0f0;
  border-left: 3px solid #fff;
  background-color: #1b1b1b;
  margin-bottom: 0.5rem;
}

.connect {
  position: relative;
  background-color: #1b1b1b;
  color: #fff;
   padding: 4rem 1rem; /* both top & bottom padding */
  overflow: hidden;
  z-index: 1;
}


.connect * {
  position: relative;
  z-index: 1;
}

    

    .connect h3 {
      font-family: 'Press Start 2P', monospace;
      margin-bottom: 1rem;
    }

    .connect p {
      margin-bottom: 2rem;
    }

    form {
      max-width: 400px;
      margin: auto;
      display: flex;
      flex-direction: column;
    }

    form input, form textarea {
      margin-bottom: 1rem;
      padding: 0.75rem;
      border: none;
      border-radius: 4px;
    }

    form button {
      padding: 0.75rem;
      border: none;
      background-color: #1f4dbc;
      color: white;
      border-radius: 4px;
      cursor: pointer;
    }

    footer {
      text-align: center;
      font-size: 0.7rem;
      margin-top: 2rem;
      color: white;
    }

.services h3 img {
  height: 40px;
  margin-right: 10px;
}
    .main-footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  border-top: 2px solid #333;
    margin-top: 0; /* Ensure this is not pushing it up */
}

.main-footer .footer-content p {
  margin: 0.3rem 0;
}



.top-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: black;
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  gap: 1rem;
  overflow: hidden;
}

.top-navbar.show {
  transform: translateY(0);
}

.icon-wrapper {
  background-color: white;
  height: 100%;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
}

.top-icon {
  height: 30px;
}

.nav-title {
  text-align: center;
  width: 100%;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
    font-size: 1.4rem;
  letter-spacing: 1px;
}

.top-socials {
  position: absolute;
  right: 0.5rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

/* 🧠 Responsive fix */
@media (max-width: 500px) {
  

.nav-title {
  text-align: left;
  width: auto;
  margin-left: 60px; /* leaves space from logo on the left */
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
  
  .top-socials img {
    height: 12px;
  }

  .top-socials {
    gap: 0.3rem;
  }

  .top-navbar {
    height: auto;
   
    justify-content: space-between;
    padding: 0.5rem 1rem;
  }

 .top-socials {
  margin-top: 0;
   position: static;
  display: flex;
   gap: 0.4rem;
  align-items: center; /* 🧠 this is key */
}

  .icon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
  }
}


.top-socials img {
  height: 18px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.top-socials img:hover {
  opacity: 1;
}

/* ===================== 
.portfolio {
  position: relative;
  padding: 4rem 1rem;
  text-align: center;
  background-color: #1b1b1b;
  color: white;
  overflow: hidden;
  z-index: 1;
}

.portfolio::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(white 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
  z-index: 0;
}

.portfolio h3 {
  font-family: 'Press Start 2P', monospace;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.portfolio p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  color: #ccc;
  position: relative;
  z-index: 1;
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.portfolio-item {
  background: #111;
  padding: 1rem;
  border-radius: 8px;
  width: 280px;
  box-shadow: 0 0 8px rgba(255,255,255,0.05);
  transition: transform 0.2s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.portfolio-item h4 {
  margin: 0.5rem 0;
  font-size: 1rem;
  font-weight: bold;
}

.portfolio-item p {
  font-size: 0.85rem;
  color: #aaa;
}
*/

p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
