/* MBK Custom Homepage Styles */
body {
    font-family: 'Segoe UI', sans-serif;
    color: #2B2B2B;
    margin: 0;
  }
  
  .mbk-hero {
    background: url('https://via.placeholder.com/1200x600') center/cover no-repeat;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mbk-hero .overlay {
    background: rgba(10, 34, 57, 0.6);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 10px;
  }
  .mbk-btn {
    background: #3A845E;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    margin: 10px 5px;
    text-decoration: none;
  }
  .mbk-btn.secondary {
    background: #CDA349;
  }
  .mbk-about, .mbk-services, .mbk-contact {
    background: #EFE8D8;
    padding: 60px 20px;
    margin: 30px 0;
    border-radius: 10px;
    text-align: center;
  }
  .project-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .project-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
  }
  .project-card img {
    width: 100%;
    height: auto;
  }
  .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .service-box {
    background: white;
    padding: 20px;
    border-left: 5px solid #CDA349;
    border-radius: 8px;
    min-width: 250px;
  }
  .mbk-footer {
    background: #0A2239;
    color: white;
    text-align: center;
    padding: 20px;
  }
  