

@media (min-width: 992px) {
  .theme-navigation-and-icons .theme-menu-area .theme-menu ul li a {
    color: #013A51;
    font-weight: 600;
    padding: 10px 15px;
    position: relative;
    text-decoration: none;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
  }

  /* Selected menu item */
  .theme-navigation-and-icons .theme-menu-area .theme-menu ul li.theme-menu-selected > a {
    color: #013A51;
  }

  .theme-navigation-and-icons .theme-menu-area .theme-menu ul li.theme-menu-selected > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 2px;
    background-color: #013A51;
  }

  /* Hover effect */
  .theme-navigation-and-icons .theme-menu-area .theme-menu ul li a:hover {
    color: #D22B2B;
  }

  /* Underline effect on hover */
  .theme-navigation-and-icons .theme-menu-area .theme-menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 2px;
    background-color:  #D22B2B; /* Blue underline on hover */
    transition: width 0.3s ease;
  }

  .theme-navigation-and-icons .theme-menu-area .theme-menu ul li a:hover::after {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .zptext.zptext-align-mobile-left {
    text-align: center !important;
  }
}


}
.zpdark-section a {
    color: #ffffff;
}


.theme-header .zpcontainer .theme-branding-info .theme-site-name-caption .theme-site-name {
    color: #D22B2B;
    font-size: 45px;
    font-family: 'arial', sans-serif;
    font-weight: 600;
    text-transform: none;
    line-height: normal;
    letter-spacing: normal;
}