
    .top-header {
      background-color: #0b3b80;
      color: #fff;
      padding: 6px 0;
      font-size: 14px;
      line-height: 1.4;
    }
.team-item img {
    height: 350px;
}
    .top-header a {
      color: #fff;
      text-decoration: none;
    }
    li.nav-item {
    font-size: 16px;
}

    .top-header a:hover {
      text-decoration: underline;
    }

    .top-header i {
      color: #fff;
      margin-right: 6px;
      font-size: 15px;
    }

    .top-left-info span {
      margin-right: 25px;
      display: inline-flex;
      align-items: center;
    }

    .top-social {
      display: flex;
      align-items: center;
    }

    .top-social a {
      color: #fff;
      margin-left: 15px;
      font-size: 16px;
      transition: 0.3s;
    }

    .top-social a:hover {
      color: #7dc242;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      background-color: #fff;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
      padding: 12px 0;
    }

    .navbar-brand img {
      height: 55px;
    }

    .navbar-nav .nav-link {
      color: #000;
      font-weight: 500;
      margin: 0 8px;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #7dc242; /* green hover */
    }

    /* ===== CALL BOX ===== */
    .call-box {
      display: flex;
      align-items: center;
      background: #fff;
      border-radius: 50px;
      padding: 6px 15px;
      box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
      margin-right: 15px;
    }

    .call-box i {
      font-size: 20px;
      color: #0b3b80;
      margin-right: 10px;
    }

    .call-box .call-text {
      line-height: 1.2;
      font-size: 14px;
      color: #000;
      font-weight: 600;
    }

    /* ===== QUOTE BUTTON ===== */
    .quote-btn {
      background-color: #0b3b80;
      color: #fff;
      border: none;
      padding: 8px 16px;
      font-weight: 600;
      transition: 0.3s;
      border-radius: 0px !important
    }
   .quote-btn-1 {
      background-color: #6AAE20;
      color: #fff;
      border: none;
      padding: 8px 16px;
      font-weight: 600;
      transition: 0.3s;
      border-radius: 0px !important
    }
    .quote-btn:hover {
      background-color: #092f66;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      .call-box {
        margin-top: 10px;
      }
    }

    @media (max-width: 767px) {
      .top-left-info {
        flex-direction: column;
        text-align: center;
      }

      .top-left-info span {
        margin-right: 0;
        margin-bottom: 5px;
      }

      .top-social {
        justify-content: center;
        margin-top: 5px;
      }
    }
     /* FIX: Top header hides behind navbar on mobile */
@media (max-width: 767px) {
  .top-header {
    position: relative;
    z-index: 9999;
  }

  nav.navbar {
    position: relative;
    z-index: 99;
  }

  .navbar-toggler {
    z-index: 99999;
  }
}
