/* Global styles */
body {
  margin: 5px;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background: linear-gradient(90deg, #7B2FF7, #00C0FF);
  color: #fff;
  padding: 5px 0;
}

.container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: #39FF14;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}

/* Hero Section */
.hero-text {
  background-color: rgba(255, 255, 255, 0.8); /* semi-transparent white */
  display: inline-block;
  padding: 20px;
  border-radius: 10px;
}

h2, h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

p {
  font-weight: 400;
  line-height: 1.6;
}
.btn-primary:hover {
  background-color: #c00; /* darker red */
}

.btn-primary {
  background-color: red;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  margin-right: 10px;
  border-radius: 5px;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid black;
  color: black;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
}

/* Services */
.services {
  padding: 60px 0;
  text-align: center;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* CTA */
.cta {
  background: linear-gradient(90deg, #00C0FF, #7B2FF7);
  color: white;
  padding: 5px;
  text-align: center;
}

/* ===============================
   Footer
   =============================== */
footer {
  padding: 15px 5px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

footer .socials {
  margin-top: 10px;
}

footer .socials a {
  font-size: 18px;
  color: #39FF14;
  margin: 0 10px;
  transition: color 0.3s;
}

footer .socials a:hover {
  color: #00C0FF;
}



/* ================================
   Responsive Design – Mobile First
   ================================ */

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero-text h2 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  form {
    width: 90%;
    margin: 0 auto;
  }

  .btn-primary,
  .btn-secondary {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  header {
    padding: 10px 0;
  }

  .hero {
    padding: 60px 0;
  }

  .cta h2 {
    font-size: 24px;
  }
}
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-right: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #7B2FF7;
    width: 100%;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    padding: 10px 0;
  }
}
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}





.contact {
  padding: 40px 20px;
  background: #f7f9fc;
}

.contact .container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #555;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus, textarea:focus {
  border-color: #007BFF;
  outline: none;
}
.contact {
  padding: 40px 20px;
  background: #f7f9fc;
}

.contact .container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #555;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus, textarea:focus {
  border-color: #007BFF;
  outline: none;
}

.site-footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 5px 0;
  margin-top: 10px;
}

.social-icons a {
  margin: 0 10px;
  color: #ccc;
  text-decoration: none;
  font-size: 1 rem;
}

.social-icons i {
  margin-right: 6 px;
}


