body{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
}



/* Add this inside <style> or external CSS */
.hero {
    background: linear-gradient(135deg, #000, #333);
    color: white;
    padding: 100px 20px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fffbe6;
  }
  
  .cta-button {
    background-color: white;
    color: #ff6600;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #fff2e6;
  }
  

  .works-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .work-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
  }
  
  .work-card:hover {
    transform: translateY(-5px);
  }
  
  .work-card h3 {
    margin-bottom: 10px;
  }
  
  .work-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
  }
  
  .work-card a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
  }
  
  .work-card a:hover {
    text-decoration: underline;
  }

  
  .footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
  }