/*
Theme Name: Green Cube Solutions
Theme URI: http://localhost/green-cube-solutions/
Author: Green Cube Solutions
Author URI: http://localhost/green-cube-solutions/
Description: Green Cube Solutions is a custom, responsive WordPress theme designed for businesses and corporate websites. It features a clean, modern design, optimized performance, SEO-friendly code, and a flexible layout to showcase services, projects, and company information.
Version: 1.0
Text Domain: green-cube-solutions
*/


.whatsapp-sticky img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 20;
}


.header-links ul .current_page_item>a {
    color: var(--cyan);
}

.navbar-nav.me-auto.mb-2.mb-lg-0>ul#menu-mobile-menu>li>a {
    color: #114981
}

.navbar-nav.me-auto.mb-2.mb-lg-0>ul#menu-mobile-menu .current_page_item>a {
    color: var(--cyan);
}

.the-process-main .blog-page-grid-main {
    padding: 30px 0 0 0 !important;
}
.wpcf7 form.sent .wpcf7-response-output,.wpcf7 form.invalid .wpcf7-response-output{
	border:none!important;
}
.wpcf7 form .wpcf7-response-output{
	margin:unset !important;
}


/* Main Menu */
.header-links .menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-links .menu > li {
    position: relative;
}

/* Sub Menu */
.header-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: #fff;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    display: none;
    flex-direction: column; /* Reset flex */
    gap: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
    border-radius: 8px;
    z-index: 999;
}

.header-links .menu > li:hover > .sub-menu {
    display: block;
}

.header-links .sub-menu li {
    display: block;
    width: 100%;
}

.header-links .sub-menu li a {
    display: block;
    padding: 12px 16px;
    color: #222;
    text-decoration: none;
}

.header-links .sub-menu li a:hover {
    background: #f5f5f5;
}
.header-links .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 0;
}
/* Arrow */
.header-links .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg) translateY(-2px);
}

/*mobile*//* 
Mobile Menu */
.mobile-menu .menu-item-has-children {
    position: relative;
}

.mobile-menu .menu-item-has-children > a {
    position: relative;
    display: block;
    padding-right: 40px;
}

.mobile-menu .submenu-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    transition: .3s;
}

.mobile-menu .submenu-toggle.open {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-menu .sub-menu {
    display: none;
    list-style: none;
    padding-left: 15px;
    margin-top: 10px;
}

.mobile-menu .sub-menu.active {
    display: block;
}

/*.mobile-menu .sub-menu li {*/
/*    margin: 8px 0;*/
/*}*/

.mobile-menu .sub-menu li a {
    display: block;
    padding: 8px 0;
    color: #114981;
    font-size: 14px;
    text-transform: none !important;
}

.navbar-nav.me-auto.mb-2.mb-lg-0>ul#menu-mobile-menu{
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}