.elementor-137 .elementor-element.elementor-element-07051d4{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-137 .elementor-element.elementor-element-07051d4{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-39efd92 *//* --- Header Wrapper --- */
.custom-header {
    background-color: #ffffff;
    height: 130px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    overflow: visible;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* --- Logo Section --- */
.logo img {
    height: 100px;
    width: auto;
    transform: scale(1.4); 
    transform-origin: left center;
    transition: transform 0.3s ease;
}

/* --- Navigation Menu (Desktop) --- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: 0.3s;
}

.nav-menu ul li a:hover, 
.nav-menu ul li a.active {
    color: #1a6d0a;
}

.whatsapp-btn {
    background-color: #116004;
    color: white !important;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #a81d1d;
    transition: all 0.3s ease;
}

/* --- Hamburger Icon (Hidden on Desktop) --- */
.menu-checkbox { display: none; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #116004;
    border-radius: 5px;
    transition: 0.3s;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) { /* Trigger for tablets/mobile */
    .custom-header {
        height: 100px;
    }
    .logo img {
        transform: scale(1.1);
    }

    .hamburger { display: flex; order: 3; } /* Moves menu icon to the right */
    
    .nav-menu {
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        display: none; /* Hidden by default */
        text-align: center;
        z-index: 999;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    /* When checkbox is checked, show the menu */
    .menu-checkbox:checked ~ .nav-menu {
        display: flex;
    }

    /* Animation for Hamburger to "X" */
    .menu-checkbox:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .menu-checkbox:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
    .menu-checkbox:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}/* End custom CSS */