/*
Theme Name: Hub Child
Theme URI: http://hub.liquid-themes.com/
Author: Liquid Themes
Author URI: https://themeforest.net/user/liquidthemes
Template: hub
Description: Smart, Powerful and Unlimited Customizable WordPress Theme.
Version: 1.0
License: GNU General Public License
License URI: license.txt
Text Domain: hub-child
Tags: responsive, retina, rtl-language-support, blog, portfolio, custom-colors, live-editor
*/

.ld-module-sd > .ld-module-dropdown > .nav-trigger {
    left: auto!important;
    top: 0!important;
    right: 0!important;
}

.pos-abs .nav-trigger .bar {
    background-color: #F7EED9!important;
}

#primary-nav li {
    margin-left: 30px;
}

#primary-nav a {
  position: relative;
  text-decoration: none; /* Just in case your theme sets a default underline */
}

#primary-nav a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0px; 
  left: 0;
  background-color: #000; /* Change this to match your design */
  
  /* Start with the underline scaled down to 0 */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

#primary-nav a:hover::after {
  /* Scale it up to 100% on hover */
  transform: scaleX(1);
}