/*!
Theme Name: CGPE PRD
Theme URI: https://cgpeprd.vatsalguru.com/
Author: Vatsal Parmar
Author URI: 
Description: Creative Agency WordPress Theme
Version: 1.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: 
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Custom Styles */
.menu-nav .main-menu ul li a {
    color: #ffffff;
}

.menu-nav .main-menu ul li:hover > a {
    color: #fff ;
}

.menu-nav .main-menu ul li.current-menu-item > a {
    color: #ffffff ;
}

/* Submenu Styles */
.navbar-wrap ul li .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 200px;
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99;
    color: #0000;
}

.navbar-wrap ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-wrap ul li .sub-menu li {
    display: block;
    margin: 0;
    padding: 0;
}

.navbar-wrap ul li .sub-menu li a {
    color: #333333 !important;
    padding: 8px 20px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.navbar-wrap ul li .sub-menu li a:hover {
    color:#27596E;
    background: rgba(0,0,0,0.05);
}

.navbar-wrap ul li .sub-menu li.active a {
    color:#27596E;
}