 .section-title {
      color: #0f2f2d;
      font-weight: 700;
      margin-bottom: 2rem;
    }
    .section-subtitle {
      color: #a07b2d;
      font-size: 0.8rem;
      letter-spacing: 2px;
      font-weight: 600;
    }
    .project-title {
      font-weight: 700;
      color: #0f2f2d;
      margin-top: 1rem;
    }
    .project-location {
      color: #7f8c8d;
      font-size: 0.9rem;
    }
    .title-line {
      display: inline-block;
      width: 30px;
      height: 2px;
      background-color: #a07b2d;
      margin-right: 10px;
      vertical-align: middle;
    }

    
    /* Team section */
    .core-team {
      padding: 64px 16px;
    }
    .core-team .section-title {
      text-align: center;
      margin-bottom: 36px;
    }
    .core-team .section-title h2 {
      color: var(--accent);
      font-weight: 800;
      font-size: 1.8rem;
      margin-bottom: 6px;
    }
    .core-team .section-title p {
      color: var(--muted);
      margin: 0;
    }

    /* Card */
    .team-card {
      background: var(--card);
      border-radius: 12px;
      padding: 28px 20px;
      text-align: center;
      box-shadow: 0 0 10px 10px rgba(16,16,16,0.06);
      transition: transform .28s ease, box-shadow .28s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: start;
    }
    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 44px rgba(16,16,16,0.10);
    }

    /* Avatar */
    .team-avatar {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      overflow: hidden;
      display: inline-block;
      border: 6px solid #dfa667;
      box-shadow: 0 8px 24px rgba(223,166,103,0.16);
      margin-bottom: 18px;
      background: #eee;
    }
    .team-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .team-name {
      color: #111;
      font-weight: 800;
      font-size: 1.05rem;
      margin: 0 0 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%;
    }
    .team-role {
      color: #dfa667;
      font-weight: 700;
      margin-bottom: 12px;
      font-size: 0.95rem;
    }

    .team-divider {
      width: 56px;
      height: 3px;
      border-radius: 99px;
      background-color: #dfa667;
      margin: 8px auto 0;
    }

    /* Small description (optional) */
    .team-desc {
      color: var(--muted);
      font-size: 0.92rem;
      margin-top: 14px;
      line-height: 1.35;
    }

    /* Responsive behavior: grid spacing */
    .team-col { margin-bottom: 1rem; }

    @media (min-width: 992px) {
      .core-team { padding: 84px 16px; }
      .team-card { padding: 34px 26px; }
    }

    /* Accessible focus for keyboard users */
    .team-card:focus-within {
      outline: 3px solid rgba(223,166,103,0.18);
      outline-offset: 6px;
    }


     .wa-widget{
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 9999;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }
  /* Label box */
  .wa-label{
    display: inline-block;
    padding: 12px 20px;
    border-radius: 999px;
    background: #DFA667;           /* slate-900 */
    color: #f9fafb;                 /* gray-50  */
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    white-space: nowrap;
    transition: transform .25s ease, opacity .25s ease;
  }
  /* Text swap via CSS */
  .wa-label::before{ content: "Contact Us"; }
  .wa-widget:hover .wa-label::before{ content: "WhatsApp"; }

  /* Round WhatsApp button */
  .wa-btn{
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: grid; place-items: center;
    box-shadow: 0 10px 24px rgba(37,211,102,.45);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .wa-btn i{ font-size: 26px; color: #fff; }
  .wa-widget:hover .wa-btn{
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 14px 30px rgba(37,211,102,.55);
  }

  /* Optional: smaller on mobile */
  @media (max-width: 420px){
    .wa-label{ display:none; }      /* hide label on very small screens */
    .wa-btn{ width: 50px; height: 50px; }
    .wa-btn i{ font-size: 22px; }
  }
    /* Map Container Styling */
  .map-container {
    position: relative;
    width: 100%;
    height: 460px;   /* fix height for section */
    overflow: hidden;
  }

  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   /* iframe fills parent */
    border: 0;
  }


  