/* Reset & Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Base Styles */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Header */
  header {
    background: #333;
    color: #fff;
    padding: 20px 0;
  }
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .logo {
    font-size: 1.8rem;
    margin-left: 10px;
  }
  header nav ul {
    list-style: none;
  }
  header nav ul li {
    display: inline;
    margin: 0 15px;
  }
  header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
  }
  
  /* Hero Section */
  .hero {
    background: url('images/background.jpeg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
  }
  .hero-content {
    width: 100%;
  }
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  /* Button */
  .btn {
    display: inline-block;
    background: #e8491d;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  .btn:hover {
    background: #cf3f14;
  }
  
  /* Sections */
  section {
    padding: 60px 0;
  }
  
  /* About Section */
  .about {
    background: #f4f4f4;
    text-align: center;
  }
  .about h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
  }
  .about p {
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
  }
  
  /* Services Section */
  .services {
    text-align: center;
  }
  .services h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
  }
  .services-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .service-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
  }
  .service-box h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  /* Projects Section */
  .projects {
    background: #f4f4f4;
  }
  .projects h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
  }
  .project-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .project-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
  }
  .project-item img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  
  /* Contact Section */
  .contact {
    background: #fff;
    text-align: center;
  }
  .contact h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
  }
  #contactForm {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  #contactForm input,
  #contactForm textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
  }
  #contactForm button {
    width: 150px;
    align-self: center;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
    }
    header nav ul li {
      display: block;
      margin: 10px 0;
    }
    .services-wrapper {
      flex-direction: column;
      align-items: center;
    }
    .project-gallery {
      flex-direction: column;
      align-items: center;
    }
  }
  