
  /* General navbar style */
  .navbar {
    padding: 0.8rem 1rem;
    background-color: rgb(8, 44, 75);
  }

.text-center {
  text-align: left !important;
}

  .navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-style: italic;
    color: #1b1464 !important;
  }
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    width: clamp(360px, 28vw, 480px) !important; /* responsive between 360–480px */
    justify-content: center;
  }
}


  .navbar-brand img {
  height: auto;
  max-height: 70px; /* increased from 40px — adjust as needed */
  width: 100%;
  max-width: 220px; /* allows the image to take more width */
  transition: all 0.3s ease;
  margin-left: 50px;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    gap: 50px !important;
  }
}

@media (max-width: 991px) {
  .navbar-brand img {
    max-height: 50px; /* smaller on mobile */
    max-width: 160px;
    margin-left: 0 !important;
  }
}



  
  .nav-link {
    font-weight: 600;
    color: #000 !important;
    transition: color 0.3s;
  }

  .nav-link:hover {
    color:  #F23005!important;
  }

  .email-btn {
  position: relative;
  display: inline-block;
  background-color: #F23005; /* base orange */
  color: white !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  white-space: nowrap;
  margin-right: 30px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}


  /* Mobile menu */
  @media (max-width: 991px) {
    .navbar-collapse {
      background-color: #12161c;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 1rem 0;
      z-index: 1000;
    }

    .navbar-nav .nav-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      padding: 0.5rem 1rem;
    }

    .nav-link {
      color: #fff !important;
      font-weight: 600;
    }

    .navbar-toggler {
      border: none;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    .navbar-toggler-icon {
      background-image: none;
      width: 24px;
      height: 2px;
      background-color: #000;
      position: relative;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
      content: "";
      position: absolute;
      width: 24px;
      height: 2px;
      background-color: #000;
      left: 0;
    }

    .navbar-toggler-icon::before {
      top: -6px;
    }

    .navbar-toggler-icon::after {
      top: 6px;
    }
  }

.thm-breadcrumb :hover{
  color: #F23005 !important;
}