    :root {
      --neon-green: #39ff14;
      --matrix-green: #00ff41;
      --hacker-purple: #8a2be2;
      --dark: #0a0a0a;
      --darker: #050505;
      --card: #111111;
      --terminal: #0f0f0f;
    }

    body {
      background-color: var(--dark);
      color: #e0e0e0;
      font-family: 'JetBrains Mono', monospace;
      scroll-behavior: smooth;
      background-image: 
        radial-gradient(circle at 10% 20%, rgba(57, 255, 20, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.02) 0%, transparent 20%);
    }

    h1, h2, h3, h4 {
      font-family: 'Orbitron', sans-serif;
      letter-spacing: 1px;
    }

    .text-accent { color: var(--neon-green); }
    .text-purple { color: var(--hacker-purple); }
    .btn-accent {
      background: transparent;
      color: var(--neon-green);
      border: 1px solid var(--neon-green);
      border-radius: 0;
      padding: 10px 25px;
      font-weight: 700;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      font-family: 'Orbitron', sans-serif;
    }

    .btn-accent:hover {
      background: rgba(57, 255, 20, 0.1);
      color: var(--matrix-green);
      box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
      transform: translateY(-2px);
    }

    .btn-accent:active {
      transform: translateY(0);
    }

    .btn-purple {
      background: transparent;
      color: var(--hacker-purple);
      border: 1px solid var(--hacker-purple);
      border-radius: 0;
      padding: 10px 25px;
      font-weight: 700;
      transition: all 0.3s ease;
    }

    .btn-purple:hover {
      background: rgba(138, 43, 226, 0.1);
      color: #b362ff;
      box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
    }

    .hero {
      background: linear-gradient(to bottom, var(--darker), var(--dark));
      padding: 120px 0 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        linear-gradient(135deg, rgba(57, 255, 20, 0.03) 0%, transparent 50%),
        linear-gradient(-135deg, rgba(138, 43, 226, 0.03) 0%, transparent 50%);
      pointer-events: none;
    }

    .hero h1 {
      font-size: 3.5rem;
      text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
      margin-bottom: 20px;
    }

    .hero .lead {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto;
    }

    .section-padding {
      padding: 80px 0;
    }

    .terminal {
      background-color: var(--terminal);
      border: 1px solid rgba(57, 255, 20, 0.2);
      border-radius: 5px;
      padding: 20px;
      font-family: 'Ubuntu Mono', monospace;
      position: relative;
      margin: 30px 0;
    }

    .terminal::before {
      content: "TERMINAL";
      position: absolute;
      top: -12px;
      left: 15px;
      background: var(--terminal);
      padding: 0 10px;
      font-size: 0.8rem;
      color: var(--neon-green);
    }

    .terminal .prompt {
      color: var(--neon-green);
    }

    .terminal .command {
      color: #4d88ff;
    }

    .terminal .comment {
      color: #666;
      font-style: italic;
    }

    .card {
      background-color: var(--card);
      border: 1px solid rgba(57, 255, 20, 0.1);
      border-radius: 0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: all 0.3s ease;
      color: #e0e0e0;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 100%;
      background: var(--neon-green);
      transition: all 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(57, 255, 20, 0.2);
      border-color: rgba(57, 255, 20, 0.3);
    }

    .card:hover::before {
      width: 5px;
      background: var(--matrix-green);
    }

    .card-purple::before {
      background: var(--hacker-purple);
    }

    .card-purple:hover {
      box-shadow: 0 10px 25px rgba(138, 43, 226, 0.2);
      border-color: rgba(138, 43, 226, 0.3);
    }

    .card-purple:hover::before {
      background: #b362ff;
    }

    .nav-link {
      color: #aaa !important;
      margin-right: 15px;
      font-family: 'Orbitron', sans-serif;
      letter-spacing: 1px;
      position: relative;
      padding: 5px 0;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--neon-green);
      transition: width 0.3s ease;
    }

    .nav-link:hover {
      color: var(--neon-green) !important;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .navbar {
      background-color: rgba(10, 10, 10, 0.9) !important;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    }

    .footer {
      background-color: var(--darker);
      padding: 60px 0 30px;
      border-top: 1px solid rgba(57, 255, 20, 0.1);
    }

    .feature-icon {
      font-size: 2rem;
      margin-bottom: 15px;
      color: var(--neon-green);
    }

    .feature-icon.purple {
      color: var(--hacker-purple);
    }

    .glow {
      text-shadow: 0 0 10px currentColor;
    }

    .hacker-badge {
      display: inline-block;
      background: rgba(57, 255, 20, 0.1);
      border: 1px solid var(--neon-green);
      padding: 3px 10px;
      font-size: 0.8rem;
      margin: 0 5px 5px 0;
      border-radius: 3px;
    }

    .hacker-badge.purple {
      background: rgba(138, 43, 226, 0.1);
      border-color: var(--hacker-purple);
    }

    .typewriter {
      overflow: hidden;
      border-right: 3px solid var(--neon-green);
      white-space: nowrap;
      margin: 0 auto;
      letter-spacing: 2px;
      animation: 
        typing 3.5s steps(40, end),
        blink-caret 0.75s step-end infinite;
    }

    @keyframes typing {
      from { width: 0 }
      to { width: 100% }
    }

    @keyframes blink-caret {
      from, to { border-color: transparent }
      50% { border-color: var(--neon-green); }
    }

    .matrix-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      opacity: 0.1;
    }

    .tooltip-inner {
      background-color: var(--neon-green);
      color: black;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.8rem;
    }

    .tooltip.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
    .tooltip.bs-tooltip-top .tooltip-arrow::before {
      border-top-color: var(--neon-green);
    }

    .form-control {
      background-color: var(--terminal);
      border: 1px solid rgba(57, 255, 20, 0.2);
      border-radius: 0;
      color: white;
    }

    .form-control:focus {
      background-color: var(--terminal);
      color: white;
      border-color: var(--neon-green);
      box-shadow: 0 0 0 0.25rem rgba(57, 255, 20, 0.25);
    }

    .alert-success {
      background-color: rgba(57, 255, 20, 0.1);
      border: 1px solid var(--neon-green);
      color: var(--neon-green);
      border-radius: 0;
    }

    .timeline {
      position: relative;
      padding-left: 30px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 7px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--neon-green), var(--hacker-purple));
    }

    .timeline-item {
      position: relative;
      margin-bottom: 30px;
    }

    .timeline-item::before {
      content: "";
      position: absolute;
      left: -30px;
      top: 5px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--neon-green);
      border: 2px solid var(--dark);
    }

    .timeline-item:nth-child(2n)::before {
      background: var(--hacker-purple);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      color: var(--neon-green);
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
      40% {transform: translateY(-20px) translateX(-50%);}
      60% {transform: translateY(-10px) translateX(-50%);}
    }

    .pricing-card .price {
      font-size: 2.5rem;
      font-family: 'Orbitron', sans-serif;
      margin: 15px 0;
    }

    .pricing-card .price span {
      font-size: 1rem;
      color: #777;
    }

    .pricing-card .list-unstyled li {
      padding: 8px 0;
      border-bottom: 1px dashed rgba(255,255,255,0.1);
    }

    .pricing-card .list-unstyled li:last-child {
      border-bottom: none;
    }

    .testimonial-card {
      border-left: 3px solid var(--neon-green);
      padding-left: 20px;
    }

    .testimonial-card.purple {
      border-left-color: var(--hacker-purple);
    }

    .social-icon {
      display: inline-block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      border: 1px solid rgba(57, 255, 20, 0.3);
      color: var(--neon-green);
      margin-right: 10px;
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      background: rgba(57, 255, 20, 0.1);
      color: var(--matrix-green);
      transform: translateY(-3px);
    }

    .social-icon.purple {
      border-color: rgba(138, 43, 226, 0.3);
      color: var(--hacker-purple);
    }

    .social-icon.purple:hover {
      background: rgba(138, 43, 226, 0.1);
      color: #b362ff;
    }
.text-muted {
    color: rgb(184 184 184 / 75%) !important;
}

.accordion-body
 {
     color: rgb(184 184 184 / 75%) !important;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .lead {
    font-size: 1.1rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .terminal {
    padding: 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 15px;
  }
  
  .hero {
    padding: 100px 0 80px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .navbar-nav {
    padding-top: 15px;
  }
  
  .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
  
  .card {
    margin-bottom: 20px;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .timeline::before {
    left: 5px;
  }
  
  .timeline-item::before {
    left: -26px;
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 576px) {
  :root {
    font-size: 14px;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .btn-accent, .btn-purple {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .terminal {
    padding: 10px;
    font-size: 0.85rem;
  }
  
  .terminal::before {
    left: 10px;
    font-size: 0.7rem;
  }
  
  .feature-icon {
    font-size: 1.5rem;
  }
  
  .pricing-card .price {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding-left: 15px;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-right: 8px;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
}

/* Special adjustments for very small screens */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .typewriter {
    white-space: normal;
    border-right: none;
    animation: none;
  }
  
  .hacker-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
  }
  
  .scroll-indicator {
    bottom: 15px;
    font-size: 1.5rem;
  }
}

/* Responsive typography */
h1 { font-size: calc(1.375rem + 1.5vw); }
h2 { font-size: calc(1.325rem + 0.9vw); }
h3 { font-size: calc(1.3rem + 0.6vw); }
h4 { font-size: calc(1.275rem + 0.3vw); }

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive iframes and embeds */
iframe, embed, object {
  max-width: 100%;
}

/* Grid adjustments for mobile */
@media (max-width: 768px) {
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Form adjustments */
@media (max-width: 576px) {
  .form-control {
    font-size: 0.9rem;
    padding: 0.375rem 0.75rem;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
}

/* Accordion adjustments */
@media (max-width: 768px) {
  .accordion-button {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .accordion-body {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

