/* Global */
body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #00ff00;
    font-family: 'Fira Code', monospace;
  }
  #particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
  }
  
  
  /* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid #00ff00;
    z-index: 1000;
    flex-wrap: wrap;
  }
  
  .logo {
    font-weight: bold;
    color: #00ff00;
    font-size: 18px;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: #00ff00;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
  }
  
  .nav-links a:hover {
    text-shadow: 0 0 5px #00ff00;
  }
  
  /* Hamburger */
  .hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #00ff00;
  }
  
  #menu-toggle {
    display: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background: #000;
      padding-top: 10px;
    }
  
    #menu-toggle:checked + .hamburger + .nav-links {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }
  
    header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-links a {
      padding: 10px 20px;
    }
  }
  #preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #00ff00;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
    text-align: left;
    box-sizing: border-box;
    overflow-y: auto;
  }
  
  #boot-terminal {
    white-space: pre-wrap;
    line-height: 1.6;
    max-width: 800px;
    text-align: left;
    width: 100%;
    word-break: break-word;
  }
  
  /* Fade-out animation */
  .preloader-hide {
    animation: fadeOut 1s ease-in-out forwards;
  }
  
  @keyframes fadeOut {
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
  
  /* 📱 Responsive for small screens */
  @media (max-width: 600px) {
    #preloader {
      font-size: 12px;
      padding: 10px;
    }
  
    #boot-terminal {
      line-height: 1.4;
    }
  }
  
  
  
  /* Hero Section */
  #hero {
    position: relative;
    height: 100vh;
    color: #00ff00;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    font-family: 'Fira Code', monospace;
  }
  
  #particles-hero {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
    opacity: 0.3;
  }
  
  #hero .container {
    position: relative;
    z-index: 2;
    padding: 20px;
  }
  
  #hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  #hero .highlight {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
  }
  
  #hero .typing-text {
    font-size: 1.2rem;
    min-height: 30px;
    margin-bottom: 30px;
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffff;
  }
  
  .btn-glitch {
    background: transparent;
    color: #00ff00;
    padding: 12px 24px;
    border: 1px solid #00ff00;
    font-family: 'Fira Code', monospace;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .btn-glitch:hover {
    background-color: #00ff00;
    color: #000;
    box-shadow: 0 0 10px #00ff00;
  }
  
  /* About Section */
#about {
    /* background-color: #0a0a0a; */
    padding: 100px 20px;
    color: #00ff00;
    border-top: 1px solid #00ff00;
  }
  
  .container {
    max-width: 900px;
    margin: auto;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
    border-left: 4px solid #00ff00;
    padding-left: 10px;
    font-family: 'Fira Code', monospace;
  }
  
  .about-content p {
    font-size: 18px;
    line-height: 1.7;
    margin: 15px 0;
  }
  
  .terminal-text {
    font-weight: bold;
    color: #00ff00;
    font-family: 'Fira Code', monospace;
  }
  
  .system-info {
    margin-top: 20px;
    border-top: 1px dashed #00ff00;
    padding-top: 20px;
  }
  
  .about-bio {
    margin-top: 30px;
    font-style: italic;
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .btn-glitch {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 25px;
    color: #00ff00;
    border: 1px solid #00ff00;
    background: transparent;
    text-decoration: none;
    font-family: 'Fira Code', monospace;
    transition: 0.3s;
  }
  
  .btn-glitch:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 10px #00ff00;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .section-title {
      font-size: 22px;
    }
  
    .about-content p {
      font-size: 16px;
    }
  }
  

  #skills {
    /* background-color: #0d0d0d; */
    padding: 100px 20px;
    color: #00ff00;
    border-top: 1px solid #00ff00;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  
  .skill-box {
    background-color: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    padding: 15px 10px;
    text-align: center;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 0 5px #00ff00;
  }
  
  .skill-box:hover {
    background-color: #00ff00;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 15px #00ff00;
  }
  #projects {
    /* background-color: #000; */
    padding: 100px 20px;
    color: #00ff00;
    border-top: 1px solid #00ff00;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .project-card {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid #00ff00;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ff00;
    transition: 0.3s;
  }
  
  .project-card:hover {
    background-color: #00ff00;
    color: #000;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0 20px #00ff00;
  }
  
  .project-card a {
    color: #00ff00;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: 0.2s;
  }
  
  .project-card:hover a {
    color: #000;
    font-weight: bold;
  }
  
  .project-title {
    font-family: 'Fira Code', monospace;
    font-size: 18px;
    margin-bottom: 10px;
  }
  #contact {
    /* background-color: #0d0d0d; */
    padding: 100px 20px;
    color: #00ff00;
    border-top: 1px solid #00ff00;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    background-color: transparent;
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 10px 15px;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    resize: none;
    transition: 0.3s;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px #00ff00;
    background-color: rgba(0, 255, 0, 0.05);
  }
  
  .contact-form button {
    background-color: transparent;
    border: 1px solid #00ff00;
    color: #00ff00;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #00ff00;
    color: #000;
    box-shadow: 0 0 10px #00ff00;
    transform: scale(1.05);
  }
  #footer {
    /* background-color: #000; */
    padding: 60px 20px;
    text-align: center;
    color: #00ff00;
    border-top: 1px solid #00ff00;
  }
  
  .terminal-line {
    font-family: 'Fira Code', monospace;
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.8;
  }
  
  .footer-text {
    font-size: 14px;
    opacity: 0.6;
  }
  
  .social-links {
    margin-top: 20px;
  }
  
  .social-links a {
    margin: 0 10px;
    color: #00ff00;
    font-family: 'Fira Code', monospace;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid transparent;
    padding: 5px 10px;
    transition: 0.3s;
  }
  
  .social-links a:hover {
    border: 1px solid #00ff00;
    background-color: #00ff00;
    color: #000;
    box-shadow: 0 0 10px #00ff00;
  }
        