/* Base styles */
:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --neon-blue: #00ffff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff00;
    --neon-purple: #8a2be2;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Glitch overlay */
  .glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(to bottom, transparent 0%, rgba(0, 255, 255, 0.03) 50%, transparent 100%);
    pointer-events: none;
    animation: glitch 5s infinite;
    z-index: 1000;
  }
  
  @keyframes glitch {
    0% {
      background-position: 0 0;
    }
    20% {
      background-position: -20px 0;
    }
    40% {
      background-position: 20px 0;
    }
    60% {
      background-position: 0 10px;
    }
    80% {
      background-position: 0 -10px;
    }
    100% {
      background-position: 0 0;
    }
  }
  
  /* Header and Navigation */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
  }
  
  nav ul li {
    margin: 0 1rem;
  }
  
  .neon-button {
    font-family: "Orbitron", sans-serif;
    color: aqua;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid var(--neon-blue);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .neon-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 185, 185, 0.2), transparent);
    transition: all 0.5s ease;
  }
  
  .neon-button:hover {
    color: var(--bg-color);
    background-color: var(--neon-blue);
    box-shadow: 0 0 20px var(--neon-blue);
  }
  
  .neon-button:hover::before {
    left: 100%;
  }
  
  /* Main content */
  main {
    padding-top: 80px;
  }
  
  .parallax {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: -1;
  }
  
  .content {
    text-align: center;
  }
  
  h1,
  h2 {
    font-family: "Orbitron", sans-serif;
    margin-bottom: 1rem;
  }
  
  .glitch {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0.05em 0 0 var(--neon-pink), -0.05em -0.025em 0 var(--neon-blue), -0.025em 0.05em 0 var(--neon-green);
    animation: glitch 1s infinite;
  }
  
  .glitch::before,
  .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-pink);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
  }
  
  .glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-blue);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
  }
  
  @keyframes glitch-anim {
    0% {
      clip: rect(17px, 9999px, 94px, 0);
    }
    20% {
      clip: rect(37px, 9999px, 44px, 0);
    }
    40% {
      clip: rect(58px, 9999px, 66px, 0);
    }
    60% {
      clip: rect(80px, 9999px, 115px, 0);
    }
    80% {
      clip: rect(105px, 9999px, 147px, 0);
    }
    100% {
      clip: rect(129px, 9999px, 37px, 0);
    }
  }
  
  .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
  }
  
  .neon-circuit {
    width: 100%;
    height: 200px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M10 10 L90 10 L90 90 L10 90 Z" fill="none" stroke="%2300ffff" stroke-width="2"/><path d="M30 10 L30 90 M50 10 L50 90 M70 10 L70 90 M10 30 L90 30 M10 50 L90 50 M10 70 L90 70" stroke="%2300ffff" stroke-width="1"/></svg>');
    background-size: 100px 100px;
    animation: circuit-animation 10s linear infinite;
  }
  
  @keyframes circuit-animation {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 100px 100px;
    }
  }
  
  /* About section */
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
  }
  
  .skill-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--neon-purple);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px var(--neon-purple);
  }
  
  .skill-card h3 {
    font-family: "Orbitron", sans-serif;
    color: var(--neon-purple);
    margin-bottom: 1rem;
  }
  
  /* Projects section */
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
  }
  
  .project-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--neon-blue);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .project-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
      from 0deg at 50% 50%,
      var(--neon-blue) 0deg,
      transparent 60deg,
      transparent 300deg,
      var(--neon-pink) 360deg
    );
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .project-card:hover::before {
    opacity: 0.3;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .project-card h3 {
    font-family: 'OrbitHere';
  
  transform: rotate(360deg);
  }
  
  .project-card h3 {
    font-family: "Orbitron", sans-serif;
    color: var(--neon-green);
    margin-bottom: 1rem;
  }
  
  .project-card p {
    margin-bottom: 1rem;
  }
  
  .github-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .github-link:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
  }
  
  /* Contact section */
  .contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
  
  .form-group {
    position: relative;
    margin-bottom: 2rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.5rem;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--neon-blue);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-group label {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--neon-pink);
  }
  
  .form-group input:focus + label,
  .form-group textarea:focus + label,
  .form-group input:not(:placeholder-shown) + label,
  .form-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-20px);
    font-size: 0.8rem;
    color: var(--neon-pink);
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    background-color: rgba(10, 10, 10, 0.8);
  }
  
  /* Responsive design */
  @media screen and (max-width: 768px) {
    .glitch {
      font-size: 3rem;
    }
  
    .skills-grid,
    .project-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--bg-color);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
  }
  
.img{
    height: auto;
    width: auto;

}

  img{
    height: 175px;
    width: 175px;
    border-radius: 30px;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-icon {
    color: white;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #22c55e;
}

.icon {
  font-size: 3rem;
  animation: bounce 2s infinite;
}