  @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');


  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      line-height: 27px;
      /* font-family: 'Inter', sans-serif; */
      /* font-family: 'Lato', sans-serif; */
      font-family: 'Montserrat', sans-serif;
      /* font-family: 'Open Sans', sans-serif; */
      /* font-family: "PT Sans", sans-serif; */
      /* font-family: 'Hanken Grotesk', sans-serif; */
      /* font-style: normal; */
  }

  html {
      scroll-behavior: smooth;
      font-size: clamp(14px, 1.5vw, 16px);
  }



  .summernote-output * {
      all: unset;
      font-family: inherit;
      font-size: inherit;
  }

  .paragraph {
      font-size: 16px;
      text-decoration: none solid rgb(114, 114, 114);
      color: rgb(114, 114, 114);
      line-height: 27px;
      font-weight: 400;
      font-family: "PT Sans", sans-serif !important;
  }


  label.required::after {
      content: " *";
      color: rgb(219, 16, 16);
  }

  .get-in-touch-btn {
      background-color: #F48036;
      color: #fff;
      transition: all 0.3s ease-in-out;
  }

  .get-in-touch-btn:hover {
      background-color: #fd6405;
      color: #fff;
  }


  /* navbar */
  .navbar {
      background-color: #fff;
      border-bottom: 1px solid #ddd;
      padding-top: 0.6rem;
      padding-bottom: 0.6rem;
  }

  .navbar-brand img {
      height: 45px;
      margin-right: 8px;
  }

  .navbar-nav {
      gap: 2rem;
  }

  .navbar-nav .nav-item {
      position: relative;
  }

  .navbar-nav .nav-link {
      color: #000;
      text-transform: uppercase;
      padding: 0.75rem 1rem;
      font-size: 13px;
      line-height: 21px;
      font-weight: 400;
  }

  .dropdown-item {
      color: #000;
      font-size: 13px;
      line-height: 21px;
      font-weight: 400;
      margin-bottom: 7px;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus,
  .navbar-nav .nav-link.active {
      color: #F48036;
  }

  /* Vertical line between links — perfectly centered */
  .navbar-nav .nav-item:not(:last-child)::after {
      content: "";
      position: absolute;
      right: -25%;
      top: 50%;
      transform: translateY(-50%);
      height: 60%;
      width: 1px;
      background-color: #ddd;
  }

  /* Dropdown style */
  .dropdown-menu {
      background-color: #fff;
      border: none;
      border-radius: 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      margin-top: 0;
      display: block;
      /* keep it block to allow transitions */
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease-in-out;
  }

  .dropdown.show .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .dropdown-item:hover {
      color: #fff;
      background-color: #F48036;
  }

  /* .dropdown:hover>.dropdown-menu {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  } */

  /* Desktop hover effect only */
  @media (min-width: 992px) {
      .dropdown:hover .dropdown-menu {
          display: block;
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
          pointer-events: auto;
      }
  }

  @media screen and (max-width: 640px) {
      .navbar-nav {
          gap: 1rem;
      }

      .navbar-collapse {
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background-color: #fff;
          z-index: 999;
      }

      .dropdown-menu {
          background-color: #fff;
          border: none;
          border-radius: 0;
          box-shadow: none;
          margin-top: 0;
          display: block;
          /* keep it block to allow transitions */
          opacity: 0;
          visibility: hidden;
          transform: translateY(10px);
          transition: all 0.3s ease-in-out;
      }

      .dropdown-menu .dropdown-item {
          color: #000;
          border-bottom: 1px solid #ddd;
          padding: 10px 50px;
      }

  }

  .bi-search {
      font-size: 1.2rem;
      color: #000;
  }

  .navbar-collapse {
      justify-content: center;
  }

  .navbar-nav-end {
      margin-left: auto;
  }

  @media (max-width: 991.98px) {
      .dropdown-menu {
          display: none;
      }

      .dropdown.show .dropdown-menu {
          display: block;
          opacity: 1;
          visibility: visible;
          transform: none;
      }

      .navbar-nav .nav-item::after {
          display: none;
      }

      .navbar-collapse {
          justify-content: start;
      }

      .navbar-nav-end {
          margin-left: 0;
      }

      .dropdown-menu {
          transform: none !important;
          opacity: 1 !important;
          visibility: visible !important;
      }
  }



  /* footer */
  .footer-container {
      /* background-color: #292929; */
      background-color: #30444F;
      padding-top: 70px;
      text-align: start;
      color: #fff;
  }

  .footer-link {
      color: #fff;
      text-decoration: none;
      display: block;
      margin-bottom: 10px;
  }

  .footer-link:hover {
      color: #F48036;
  }

  .footer-logo-img {
      height: 150px;
  }

  .footer-title {
      font-weight: 600;
      font-size: 17px;
      line-height: 27px;
      font-family: 'Montserrat', sans-serif;
  }


  /* breadcrumb */
  .breadcrumb {
      background-color: #266673;
      color: #fff;
  }