/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
  }
  
  h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007BFF;
    color: #fff;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .btn:hover {
    background: #0056b3;
    transform: scale(1.05);
  }
  
  .resume-btn {
    background: #00ff88;
    color: #0a0a0a;
    font-weight: 500;
  }
  
  .resume-btn:hover {
    background: #00cc6a;
  }
  
  .highlight {
    color: #00ff88;
    border-bottom: 2px solid #00ff88;
    padding-bottom: 2px;
  }
  
  /* Navigation Bar */
  #navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1a1a1a;
    border-bottom: 1px solid #00ff88;
    z-index: 1000;
    padding: 15px 0;
  }
  
  #navbar .container {
    display: flex;
    justify-content: center;
    padding: 0;
  }
  
  #navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
    align-items: center;
  }
  
  #navbar ul li a {
    color: #e0e0e0;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
  }
  
  #navbar ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #00ff88;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
  }
  
  #navbar ul li a:hover {
    color: #00ff88;
    transform: translateY(-3px);
  }
  
  #navbar ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  #navbar ul li a.resume-btn {
    background: #00ff88;
    color: #0a0a0a;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  #navbar ul li a.resume-btn:hover {
    background: #00cc6a;
    transform: translateY(-3px);
  }
  
  /* Contact Button at the Top Right */
  .contact-button-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .contact-btn {
    background: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .contact-btn:hover {
    background: #0056b3;
  }
  
  .contact-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #00ff88;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  .contact-dropdown.show {
    display: block;
  }
  
  .contact-dropdown p {
    margin: 0 0 10px;
    font-size: 0.9rem;
  }
  
  .contact-dropdown a {
    color: #00ff88;
    text-decoration: underline;
  }
  
  /* Home Section */
  #home {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #fff;
    text-align: center;
    padding: 150px 0;
  }
  
  #home h1 {
    font-size: 4rem;
    margin-bottom: 10px;
  }
  
  #home .subtitle {
    font-size: 1.5rem;
    margin: 10px 0 20px;
    color: #ff00ee;
  }
  
  .home-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  /* About Me Section */
  #about {
    padding: 80px 0;
    background: #1a1a1a;
  }
  
  #about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
  }
  
  /* Skills Section */
  #skills {
    padding: 80px 0;
    background: #0a0a0a;
  }
  
  .skills-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .category {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #00ff88;
    width: 100%;
    max-width: 300px;
  }
  
  .category h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }
  
  .skill {
    background: #0a0a0a;
    color: #00ff88;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #00ff88;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .skill:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px #00ff88;
  }
  
  /* Projects Section */
  #projects {
    padding: 80px 0;
    background: #1a1a1a;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .project-card {
    background: #0a0a0a;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #00ff88;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #00ff88;
  }
  
  /* Experience Section */
  #experience {
    padding: 80px 0;
    background: #0a0a0a;
  }
  
  .experience-item {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #00ff88;
  }
  
  .experience-item h3 {
    font-size: 1.2rem;
    color: #00ff88;
  }
  
  .experience-item p {
    font-size: 0.9rem;
    color: #e0e0e0;
  }
  
  .experience-item ul {
    list-style: disc;
    padding-left: 20px;
    color: #e0e0e0;
  }
  
  /* Footer */
  footer {
    background: #1a1a1a;
    color: #e0e0e0;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #00ff88;
    margin-top: 40px;
  }
  
  footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  footer p {
    margin: 0;
    font-size: 0.9rem;
  }
  
  footer .social-links {
    display: flex;
    gap: 15px;
  }
  
  footer .social-links a {
    color: #00ff88;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  footer .social-links a:hover {
    color: #00cc6a;
  }
  
  /* Scroll-to-Top Button */
  .scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00ff88;
    color: #0a0a0a;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
  }
  
  .scroll-to-top-btn.visible {
    opacity: 1;
  }
  
  .scroll-to-top-btn:hover {
    background: #00cc6a;
    transform: scale(1.1);
  }