.navbar-custom{
    background-color:#FFFFFF; /* light background */
}

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

.nav-link{
    font-weight:400;
}
.navbar-brand img{
    height:100px;
}
.nav-link.active{
     color:#45A52A!important;
}
.navbar {
    border-bottom: none !important;
    box-shadow: none !important;
}
.navbar-toggler {
    border: none;
    background: #f5f5f5;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: #e9e9e9;
}

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

/* Custom hamburger icon */
.navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 2px;
    background-color: #45A52A;
    position: relative;
    display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #333;
    left: 0;
    transition: all 0.3s ease;
}

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

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


/* ########################TABS####################### */
.modern-tabs {
  background: #f5f6f8;
  padding: 6px;
  border-radius: 50px;
  width: 100%;
  margin: auto;
  
}

.modern-tabs .nav-link {
  border-radius: 50px !important;
  padding: 10px 25px;
  font-weight: 600;
  color: #555;
  transition: all 0.3s ease;
}

.modern-tabs .nav-link:hover {
  background: rgba(46, 125, 50, 0.08);
  color: #2e7d32;
}

.modern-tabs .nav-link.active {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
}

