/* General Styles */
body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    color: #ffffff;
    background-color: #1a1a1a;
  }
  
  .section {
    padding: 60px 20px;
    text-align: center;
  }
  
  h1, h2, h3, h4 {
    color: #ff4d4d;
  }

  a {
    color: #ff4d4d;
    text-decoration: none;
    font-weight: bold;
  }
  
  p {
    line-height: 1.6;
    margin: 20px 0;
  }
  
  /* Floating Header */
  .floating-header {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 1000;
  }
  
  .floating-header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
  }
  
  .floating-header nav ul li {
    display: inline;
  }
  
  .floating-header nav ul li a {
    color: #ff4d4d;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .floating-header nav ul li a:hover {
    color: #ffffff;
  }
  
  /* Hero Section */
  #hero {
    background: linear-gradient(180deg, #330000, #1a1a1a);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .hero-content {
    text-align: center;
    max-width: 600px;
  }
  
  .hero-image {
    margin: 20px 0;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }
  
  button {
    background-color: #ff4d4d;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #d43d3d;
  }
  
  /* Stats Section */
  .stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .stat-item {
    background: #262626;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  .progress-bar {
    background: #4d4d4d;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    height: 20px;
    margin-top: 10px;
  }
  
  .progress-bar::before {
    content: "";
    display: block;
    height: 100%;
    background: #ff4d4d;
    width: var(--progress-value, 0%);
    transition: width 0.5s ease-in-out;
  }
  
  /* Projects Section */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .project-item {
    background: #262626;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  .project-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  
  /* Contact Section */
  form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  input, textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #4d4d4d;
    border-radius: 5px;
    background: #1a1a1a;
    color: #ffffff;
  }
  
  button[type="submit"] {
    align-self: center;
  }
  
  /* Footer */
  footer {
    background: #262626;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
  }
  
  footer .social-links a {
    color: #ff4d4d;
    text-decoration: none;
    margin: 0 10px;
  }
  
  footer .social-links a:hover {
    color: #ffffff;
  }
  