@media( max-width: 1399px ) {
    body, html {
        font-size: 16px;
    }
    .hm-logo{
        width: 10rem;
    }
}

@media( max-width: 1199px ) {
 body, html {
        font-size: 15px;
    }
        /* Show hamburger on small screens */
    .mobile-menu-toggle {
    background-color: #0fa53d; /* green background */
    padding: 10px; /* space inside the button */
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px; /* space between lines */
    cursor: pointer;
    }
    .mobile-menu-toggle span {
      display: block;
    width: 20px; /* length of the lines */
    height: 2px; /* thickness of the lines */
    background-color: white;
    }

    /* Mobile menu panel (only on small screens) */
    .mobile-menu {
        display: block; /* visible in DOM but off-screen */
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100%;
        background: #003828; /* Dark green like screenshot */
        color: white;
        padding: 20px;
        transition: left 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    


    /* Open state */
    .mobile-menu.open {
        left: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mobile-menu-header img {
        height: 35px;
    }
    .close-menu {
        background: #00b14f; /* green close button */
        color: white;
        border: none;
        font-size: 20px;
        width: 30px;
        height: 30px;
        border-radius: 4px;
        cursor: pointer;
    }

    .mobile-menu-list li {
        padding: 10px 0;
        font-weight: 600;
    }
    .mobile-menu-list a {
        color: white;
        text-decoration: none;
        font-weight: 600;

    }

    /* Submenu styling */
    .submenu {
        padding-left: 15px;
        display: none;
    }
    .dropdown.open .submenu {
        display: block;
    }
}

@media( max-width: 767px ) {
    .map{
        width: 100%;
    }
}

@media( max-width: 575px ) {
    .boxone{
        width: 100%;
        padding-top: 4rem;
        padding-bottom: 4rem;
        height: auto;

    }
    .boxinside p {
    font-size: 1.4rem;
    
    }
    .banner h1 {
        font-size: 2.8rem;
    }
    .banner h2{
        font-size: 1.8rem;
    }
    .banner h3{
        font-size: 1rem;
    }
    .banner{
        background-image: url('../images/mobile-bg.png');
    }
    .img-box {
        height: 14rem;
    }
    .section3 .boxinside {
        font-size: 1.5rem;
    }
    .btn {
        font-size: 1.2rem !important;
    }
    .banner > .container {
        display: flex;
        flex-direction: column;
        row-gap: 12rem;
    }
    .banner2 > .container {
    display: block !important; /* overrides flex */
    row-gap: 0; /* row-gap only works with flex/grid, so reset it */
}

    
}

@media(max-width: 359px) {
    .section3 .boxinside {
        font-size: 1.2rem;
    }
}




