/* Keep your original desktop styles for .right, .nav-links, etc. */

/* Hide mobile nav on desktop by default */
.mobile-navigation {
    display: none;
}
.mobile-navigation input {
    display: none;
}
.recaptcha_main {
    margin-bottom: 24px;
}

/* Media Query for mobile devices */
@media screen and (max-width: 970px) {
    
    /* Hide the entire original desktop menu */
    .desktop-navigation {
        display: none;
    }

    /* Show the new mobile menu container */
    .mobile-navigation {
        display: block;
    }

    /* Style the slide-out panel */
    .mobile-menu-panel {
        position: fixed;
        top: 0;
        left: -100%; /* Hidden by default */
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: #242526;
        padding: 60px 0 20px 0;
        z-index: 1000;
        overflow-y: auto;
        transition: left 0.3s ease-in-out;
    }

    /* When the toggle checkbox is checked, slide the panel in */
    #mobile-menu-toggle:checked ~ .mobile-menu-panel {
        left: 0;
    }
    
    .mobile-menu-panel .close-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        color: #fff;
        font-size: 25px;
    }

    /* Styling for the list inside the mobile menu */
    .mobile-menu-panel ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu-panel ul li {
        border-bottom: 1px solid #3A3B3C;
    }
    
    /* Style for main links and dropdown labels */
    .mobile-menu-panel ul li a,
    .mobile-menu-panel ul li label {
        display: block;
        padding: 15px 20px;
        color: #f2f2f2;
        font-size: 18px;
        text-decoration: none;
        font-weight: 500;
    }

    .mobile-menu-panel ul li label {
        cursor: pointer;
        position: relative;
    }
    
    /* Arrow for dropdowns */
    .mobile-menu-panel ul li label::after {
        content: '›';
        position: absolute;
        right: 20px;
        font-size: 25px;
        transform: rotate(90deg);
        transition: transform 0.2s ease;
    }

    /* Submenu styling */
    .mobile-drop-menu {
        background-color: #1c1c1c;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
	    .wrapper .btn {
        background: #000;
        margin-top: -14px;
        border-radius: 5px;
        padding: 10px 20px;
    }
.wrapper .btn.close-btn {
        position: absolute;
        right: 10px;
        top: 20px;
        /* padding: 12px; */
        /* width: 30px; */
        /* height: 30px; */
    }
	section.single-news-new.sp_int .post-item.wow.fadeInUp h2 {
    margin-bottom: 0;
}
	section.pro_quality_wrapper.sp_int .certicificate_main_item h3 {
    color: #000;
}
	section.our-blog.sp h2.map-title.text-start.mb-3 {
        font-size: 20px;
        line-height: 36px;
    }
    body nav.sticky {
        box-shadow: 2px 2px 11px 2px #adadadb3 !important;
    }
	nav#navbar {
    height: 80px;
    /* background: #eee; */
    box-shadow: 2px 2px 0px 0px #eee;
}
    section.internal_page_banner {
        padding-top: 30px;
        height: 30vh;
    }
    .mobile-drop-menu li a {
        padding-left: 40px; /* Indent submenu links */
        font-size: 16px;
        color: #ccc;
    }
    
    .mobile-drop-menu li:last-child {
        border-bottom: none;
    }

    /* When a dropdown checkbox is checked, expand the submenu */
    input[id^="mobile-drop-"]:checked ~ .mobile-drop-menu {
        max-height: 500px; /* A large enough value to show all items */
        transition: max-height 0.4s ease-in;
    }

    /* Rotate arrow on open */
    input[id^="mobile-drop-"]:checked + label::after {
        transform: rotate(-90deg);
    }
	
	.logo {
    width: 275px;
    position: relative;
}
	
	.logo:before {
    content: '';
    position: absolute;
    background: #fff;
    bottom: 8px;
    left: -3px;
    width: 40px;
    height: 27px;
    border-radius: 50%;
    z-index: -1;
    padding: 44px;
}
}