/* General Reset */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #222;
    line-height: 1.6;
    background-color: white;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 2rem 0;
  }
  
  /* Hero */
  .hero {
    background: url('images/buildinghero.jpg') center/cover no-repeat;
    color: #16436f;
    text-align: center;
    padding: 100px 20px;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  /* Overview */
  .overview h2, .features h2, .process h2, .testimonials h2, .cta h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Features */
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .feature-box {
    background: #16436f;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
  }
  
  /* Process Steps */
  .steps {
    list-style: none;
    padding: 0;
  }
  
  .steps li {
    background: #eef2f3;
    padding: 15px;
    border-left: 5px solid #003366;
    margin-bottom: 10px;
  }

  .projects {
    background-color: #f9f9f9;
    padding: 60px 20px;
  }
  
  .projects .subtitle {
    text-align: center;
    color: #16436f;
    margin-bottom: 30px;
  }
  
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;

    transition: transform 0.3s ease;
  }
  
  .project-card:hover {
    transform: scale(1.02);
  }
  
  .project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  
  .project-info {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }
  
  .project-info h3 {
    margin: 0;
    font-size: 1.1rem;
  }
  
  .project-info p {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: #ddd;
  }
  
  /* CTA */
  .cta {
    background: white;
    color: #003366;
    text-align: center;
    padding: 40px 10px;
  }
  
  .btn-primary {
    background: #ffa500;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
  }
  