  :root {
      --dark-bg: #05080d;
      --teal: #7CFFCB;
      --terminal-black: #020406;
      --glow: rgba(124, 255, 203, 0.2);
  }
html {
  scroll-behavior: smooth;
}
  canvas {
      display: block;
      vertical-align: bottom;
  }

  /* ---- particles.js container ---- */
  #particles-js {
      width: 100%;
      height: 100vh;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: 50% 50%;
   
  }
  .particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: -1;
}

  /* ---- stats.js ---- */
  .count-particles {
      background: #000022;
      position: absolute;
      top: 48px;
      left: 0;
      width: 80px;
      color: #13E8E9;
      font-size: .8em;
      text-align: left;
      text-indent: 4px;
      line-height: 14px;
      padding-bottom: 2px;
      font-family: Helvetica, Arial, sans-serif;
      font-weight: bold;
  }

  .js-count-particles {
      font-size: 1.1em;
  }

  #stats,
  .count-particles {
      -webkit-user-select: none;
      margin-top: 5px;
      margin-left: 5px;
  }

  #stats {
      border-radius: 3px 3px 0 0;
      overflow: hidden;
  }

  .serv{
    padding-top: 2%;
    padding-bottom: 2%;
     color: #7CFFCB;
  }

  .service-icon i {
    font-size: 2.5rem;
    color: var(--teal);
    /* Efecto de resplandor sutil */
    filter: drop-shadow(0 0 8px var(--glow));
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    /* El icono brilla más al pasar el mouse */
    filter: drop-shadow(0 0 15px var(--teal));
    transform: scale(1.1);
}

/* Estilo del Carrusel Cyberpunk */
.border-ducky {
    border: 1px solid rgba(124, 255, 203, 0.3);
    background: var(--terminal-black);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.carousel-img {
    height: 450px;
    object-fit: cover;
    filter: grayscale(30%) contrast(110%);
}

.carousel-indicators [data-bs-target] {
    background-color: var(--teal);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 5px var(--teal));
}

.text-teal {
    color: var(--teal);
}

/* Lista de bullets estilo terminal */
.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li::before {
    content: "> ";
    color: var(--teal);
    font-weight: bold;
}
.social-link{
    font-size: x-large;
    color:#00ff41;
}
.bullet-list li {
    margin-bottom: 10px;
    opacity: 0.9;
}

  .count-particles {
      border-radius: 0 0 3px 3px;
  }

  .logo {
      text-align: center;
      width: 90%;
      margin-left: auto;
      margin-right: auto;
      white-space: pre-wrap;
      word-wrap: break-word;
      color: #7CFFCB;
      padding-top: 10%;
  }

   .logo-mobile {display: none;}

  @media (max-width: 700px) {
      .logo {
          display: none;
      }

      .logo-mobile {
          display: block;
          text-align: center;
          width: 80%;
          margin-left: auto;
          margin-right: auto;
      }

  }

  body {
      background: var(--dark-bg);
      color: #e0e0e0;
      font-family: 'Inter', sans-serif;
  }

  .code-font {
      font-family: 'Fira Code', monospace;
      color: var(--teal);
  }

  /* Cards */
  .service-card {
      background: var(--terminal-black);
      border: 1px solid rgba(124, 255, 203, 0.3);
      padding: 30px;
      border-radius: 4px;
      height: 100%;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
  }

  .service-card:hover {
      border-color: var(--teal);
      box-shadow: 0 0 20px var(--glow);
  }

  /* Buttons */
  .btn-ducky {
      background: var(--teal);
      color: var(--dark-bg);
      font-weight: 700;
      text-transform: uppercase;
      border: none;
      padding: 12px 25px;
      border-radius: 0;
      transition: 0.3s;
  }

  .btn-ducky:hover {
      background: #fff;
      box-shadow: 0 0 15px var(--teal);
  }

  .btn-outline-ducky {
      border: 1px solid var(--teal);
      color: var(--teal);
      background: transparent;
      padding: 8px 15px;
      font-size: 0.8rem;
      margin-top: auto;
  }

  .btn-outline-ducky:hover {
      background: var(--teal);
      color: var(--dark-bg);
  }

  /* Modals Estilo Terminal */
  .modal-content {
      background: var(--terminal-black);
      border: 2px solid var(--teal);
      border-radius: 0;
      color: #e0e0e0;
      box-shadow: 0 0 40px rgba(124, 255, 203, 0.4);
  }

  .modal-header {
      border-bottom: 1px solid rgba(124, 255, 203, 0.2);
  }

  .modal-footer {
      border-top: 1px solid rgba(124, 255, 203, 0.2);
  }

  .btn-close-white {
      filter: invert(1) grayscale(100%) brightness(200%);
  }

  /* Typing Animation */
  .typed-text {
      color: var(--teal);
      text-shadow: 0 0 10px var(--glow);
  }

  .cursor {
      background: var(--teal);
      display: inline-block;
      width: 10px;
      animation: blink 0.8s infinite;
  }

  @keyframes blink {

      0%,
      100% {
          opacity: 1;
      }

      50% {
          opacity: 0;
      }
  }

  /* Formulario */
  .form-control {
      background: transparent;
      border: 1px solid rgba(124, 255, 203, 0.5);
      color: white;
      border-radius: 0;
  }

  .form-control:focus {
      background: rgba(124, 255, 203, 0.05);
      border-color: var(--teal);
      box-shadow: none;
      color: white;
  }



  .lead {
      font-family: 'Courier New', monospace;
      color: #7CFFCB;
      text-shadow: 0 0 8px #00ff41;
      font-size: 2rem;
      font-weight: bold;
  }

  /* El cursor parpadeante */
  #typewriter::after {
      content: "|";
      animation: blink 0.7s infinite;
  }



  @keyframes blink {

      0%,
      100% {
          opacity: 1;
      }

      50% {
          opacity: 0;
      }
  }