/* Navbar container */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  
  .navbar {
    background-color: #f8f9fa;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  /* Center logo */
  /*.navbar-brand {*/
  /*  display: flex;*/
  /*  justify-content: center;*/
  /*  align-items: center;*/
    /*position: absolute; */
  /*  left: 50%;*/
  /*  transform: translateX(-50%);*/
  /*}*/
  
  /* Navbar items */
  .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .navbar-nav .nav-item {
    margin: 0 15px;
  }
  
  /* Phone number on left */
  .navbar .d-flex .mr-3 {
    font-size: 14px;
    color: #000;
  }
  
  /* Navbar menu items styling */
  .nav-link {
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  /* Navbar toggler button */
  .navbar-toggler {
    z-index: 1060;
  }
  
  
  /* Active Link */
  .navbar-nav .nav-link.active {
    color: #007bff;
    font-weight: bold;
  }
  
  img.logo {
    max-width: 130px;
    /*filter: brightness(0) invert(1);*/
  }
  img.project-logo {
    max-width: 150px;
    /*filter: brightness(0) invert(1);*/
  }
  
  /* Absolute Navbar Adjustment */
  .absolute-nav {
    position: absolute;
    z-index: 2;
    margin-top: 8rem;
  }
  
  /* Navbar in expanded state */
  .navbar-expand-lg .navbar-nav {
    flex-direction: column !important;
    height: 100vh;
    width: 300px;
    background: #ddd;
  }
  
  /* Modal styling */
  .modal.right .modal-dialog {
    position: fixed;
    margin: 0;
    right: 0;
    height: 100vh;
    width: 30%;
  }
  
  .modal.right .modal-content {
    height: 100vh;
    border-radius: 0;
    background: #000;
  }
  
  .modal-header {
    justify-content: space-between;
  }
  
  .closeicon {
    width: 30px;
    filter: brightness(0);
  }
  
  .menuicon {
    width: 50px;
    filter: brightness(0);
  }
  .modal-menu {
    position: fixed;
    top: 0;
    right: -100%;
    min-width: 400px;
    height: 100%;
    background: #000000;
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  }

  .modal-menu.active {
    right: 0;
  }

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
  }

  .modal-body ul {
    list-style: none;
    padding: 1rem;
  }

  .modal-body li {
    margin-bottom: 1rem;
  }

  .toggleMenu {
    cursor: pointer;
  }

.company-pmry-color{
  color: #b8860b;
}
.company-pmry-color:hover{
  color: #1E1E1E;
}
.filter-white {
  filter: brightness(0) invert(1);
}
.filter-black {
  filter: brightness(0) invert(0);
}
.header-img{
    border-radius: 9pc;
}
  