/*
 Theme Name: FlickTab Child
 Theme URI: https://flicktab.com/
 Description: Professional child theme for GeneratePress, customized & developed by FlickTab Web & Digital Solutions.
 Author: Anoop Vaish
 Author URI: https://flicktab.com/
 Template: generatepress
 Version: 1.0.0
*/
/* ================================
   Overall Navigation Bar Settings
================================= */




/* ================================
   Desktop Navigation (md and up)
================================= */

/* === Logo & Navigation Styling for GP === */


/* Navigation links */
.main-navigation .main-nav ul li a {
    position: relative;
    color: #374151; /* default gray */
    padding: 0.75rem 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover underline effect */
.main-navigation .main-nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;  /* text ke thoda niche line */
    width: 0%;
    height: 2px;
    background-color: #2563EB; /* blue */
    transition: width 0.3s ease;
    border-radius: 2px;
}

.main-navigation .main-nav ul li a:hover {
    color: #2563EB;
}

.main-navigation .main-nav ul li a:hover::after {
    width: 100%; /* hover par underline expand hogi */
}
