/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  section {
    scroll-margin-top: 40px;
  }

  
  body {
    font-family: "Poppins", sans-serif;
    background-color: #0d0d0d;
    color: #f5f5f5;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* Header */
  .header {
    background: #111;
    border-bottom: 2px solid #d97700;
    padding: 1rem 0;
    position: static;
    top: 0;
    z-index: 100;
  }
  
  .logo {
    font-size: 1.8rem;
    color: #f5f5f5;
  }
  
  .logo span {
    color: #ff8800;
  }
  
  .header nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .header nav a {
    text-decoration: none;
    color: #f5f5f5;
    transition: color 0.3s;
  }
  
  .apps nav a:hover {
    color: #ff8800;
  }

  .apps nav a {
    text-decoration: none;
    color: #f5f5f5;
    transition: color 0.3s;
  }
  a:hover {
    color: #ff8800;
  }

  a {
    text-decoration: none;
    color: #f5f5f5;
    transition: color 0.3s;
  }
  
  .header nav a:hover {
    color: #ff8800;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(to right, #1a1a1a, #0d0d0d);
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
    color: #ff8800;
  }
  
  .hero-content p {
    margin: 1rem 0;
    color: #ccc;
  }
  
  .btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: #ff8800;
    color: #0d0d0d;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #d97700;
  }
  
  /* Sections */
  section {
    padding: 1rem 0;
  }
  
  h1 {
    color: #ff8800;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  h2 {
    color: #ff8800;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  h3 {
    color: #ff8800;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  p {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  /* Projects */
  .apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .apps-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s, border-color 0.3s;
  }
  
  .apps-card:hover {
    transform: translateY(-5px);
    border-color: #ff8800;
  }
  
  /* Contact */
  .contact {
    text-align: center;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #333;
    color: #888;
  }
  