/* ===== RESET ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* ===== DESKTOP HEADER ===== */
.desktop-header#desktopHeader {
    position: relative;
    transition: all 0.3s ease;
}

.desktop-header#desktopHeader.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(0deg, rgba(61, 105, 131, 1) 1%, rgba(9, 154, 154, 1) 92%) !important;
}

/* .logo img {
    height: 50px;
} */


#desktopHeader .header-menu ul li a {
    padding: 30px 0;
}

.header-menu ul.sub_menu li a {
    padding: 12px 20px !important;
}

/* MENU */
/* .desktop-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.desktop-menu a {
    text-decoration: none;
    color: #000;
} */

/* DROPDOWN */
/* .has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    display: none;
    padding: 10px;
}

.has-dropdown:hover .dropdown {
    display: block;
} */

/* ===== MOBILE HEADER ===== */
.mobile-header-new {
    display: none;
    background: #099a9a;
    background: linear-gradient(0deg, rgba(61, 105, 131, 1) 1%, rgba(9, 154, 154, 1) 92%) !important;
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.mobile-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo img {
    height: 40px;
}

/* HAMBURGER */
.hamburger-new span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
}

/* MOBILE MENU */
.mobile-menu-new {
    position: fixed;
    /* right: -100%; */
    left: -100%;
    top: 0;
    width: 280px;
    height: 100%;
    background: #f1f1f1;
    transition: 0.3s;
    z-index: 99999;
    padding: 20px;
    border-radius: 0 20px 0 0;
}

.mobile-menu-new.active {
    /* right: 0; */
    left: 0;
}

.menu-section-mobile {
    padding: 10px 12px;
    max-height: 400px;
    height: 100vh;
}

.mobile-menu-new ul {
    list-style: none;
}

.mobile-menu-new ul li {
    border-bottom: 1px solid #d3d3d3;
    padding: 0 15px;
}

.mobile-menu-new ul li i {
    margin-right: 10px;
}

.mobile-menu-new a,
.mobile-menu-new span {
    color: #1a1a1a;
    display: block;
    margin: 5px 0;
    cursor: pointer;
}

/* SUBMENU */
.mobile-menu-new .has-sub ul {
    display: none;
    margin-left: 10px;
}

.mobile-menu-new .has-sub.active ul {
    display: block;
}

.mobile-menu-new li.has-sub.active ul li {
    padding: 0 !important;
}

.has-sub ul li i,
#products-menu ul li i {
    font-size: 11px;
    margin-right: 5px !important;
}

/* OVERLAY */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 99998;
}

.overlay.active {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .desktop-header {
        display: none;
    }

    .mobile-header-new {
        display: block;
    }
}


body.menu-open,
body.sticky-active {
    padding-top: 80px;
    /* adjust based on header height */
}

/* ==== Procduct Menu =========== */
#products-menu ul {
    margin-left: 10px;
}

#products-menu ul li {
    padding: 0;
}

#products-menu ul li:last-child {
    border-bottom: 0px;
}

/* ---- */

.mobile-menu-footer {
    position: absolute;
    bottom: 0px;
    background: linear-gradient(0deg, rgba(61, 105, 131, 1) 1%, rgba(9, 154, 154, 1) 92%) !important;
    width: 100%;
    left: 0;
    padding: 10px;
    color: #fff;
}

.mobile-menu-footer p {
    color: #fff;
    font-size: 13px;
    float: left;
    margin-bottom: 0;
    padding: 5px 0;
}

.mobile-social {
    display: flex;
    gap: 20px;
    float: right;
    font-size: 20px;
}

.mobile-social a{
    color: #fff
}