/* Base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0F1111;
    color: #f4f4f4;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
  }
  
  /* Navbar */
  .navbar {
    background: #1a1a1a;
    padding: 20px 0;
  }
  
  .logo {
    color: #155d8c;
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
  }
  
  .nav {
    float: right;
  }
  
  .nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav a:hover {
    color: #155d8c;
  }
  
  /* Hero Section */
  .hero {
    background: url('../images/steel-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-content {
    background: rgb(33 33 33 / 60%);
    padding: 40px;
    border-radius: 10px;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    display: inline-block;
    background: #155d8c;
    color: #fff;
    padding: 10px 25px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .cta-button.light {
    background: transparent;
    border: 2px solid #155d8c;
    color: #155d8c;
  }
  
  /* Sections */
  .about, .services-preview, .projects-preview {
    padding: 60px 0;
    text-align: center;
  }
  
  h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #155d8c;
  }
  
  .service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
  }
  
  .service-item {
    background: #1f1f1f;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .service-item:hover {
    transform: translateY(-5px);
  }
  
  .footer {
    background: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav {
      float: none;
      text-align: center;
      margin-top: 10px;
    }
  
    .nav a {
      display: block;
      margin: 10px 0;
    }
  
    .hero h2 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .service-grid {
      flex-direction: column;
      align-items: center;
    }
  }
  


  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
  }

  
  .menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav {
      display: none;
      flex-direction: column;
      background: #1a1a1a;
      position: absolute;
      top: 70px;
      right: 20px;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }
  
    .nav.show {
      display: flex;
    }
  
    .nav a {
      margin: 10px 0;
    }

    
  }
  

  @media (max-width: 768px) {
    .nav.show {
      position: fixed;
      z-index: 9999;
      width: 100vw;
      left: 0;
      bottom: 0;
      padding-top: 50px;
      height: 100vh;
      top: 8%;
  }

  .container {
    display: flex
;
    align-items: center;
    justify-content: space-between;
}


}


img.mainlogo {
  max-width: 115px;
}

.navbar > .container {
  display: flex
;
  align-items: center;
  gap: 25px;
}