{"id":441,"date":"2023-08-17T08:03:25","date_gmt":"2023-08-17T08:03:25","guid":{"rendered":"https:\/\/demosites.royal-elementor-addons.com\/nature-v2\/?page_id=19"},"modified":"2025-04-03T09:29:49","modified_gmt":"2025-04-03T09:29:49","slug":"services","status":"publish","type":"page","link":"https:\/\/yogeshbhandari7753.com.np\/?page_id=441","title":{"rendered":"Gallery"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"441\" class=\"elementor elementor-441\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-91036c7 e-flex e-con-boxed e-con e-parent\" data-id=\"91036c7\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5a48877 elementor-widget elementor-widget-html\" data-id=\"5a48877\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Navbar with Fixed Position & Dropdown<\/title>\n    <style>\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n            font-family: Arial, sans-serif;\n        }\n\n        body {\n            padding-top: 70px; \/* Prevents content from hiding behind the navbar *\/\n        }\n\n        .nav {\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            padding: 1.5rem 5%;\n            background-color: white;\n            width: 100%;\n            position: fixed;\n            top: 0;\n            left: 0;\n            z-index: 9999; \/* Ensures navbar stays on top *\/\n            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);\n        }\n\n        .nav-container {\n            display: flex;\n            align-items: center;\n            width: 100vw;\n            max-width: 1200px;\n            justify-content: space-between;\n            position: relative;\n        }\n\n        .left-links, .right-links {\n            display: flex;\n            gap: 2rem;\n            flex: 1;\n        }\n\n        .left-links {\n            justify-content: flex-start;\n        }\n\n        .right-links {\n            justify-content: flex-end;\n        }\n\n        .nav-logo {\n            flex: 0 1 auto;\n            display: flex;\n            justify-content: center;\n            min-width: 180px;\n        }\n\n        .nav-logo img {\n            height: 40px;\n            width: auto;\n            transition: transform 0.3s ease;\n        }\n\n        a {\n            text-decoration: none;\n            color: black;\n            font-weight: 500;\n            text-transform: uppercase;\n            font-size: 0.9rem;\n            letter-spacing: 0.5px;\n            white-space: nowrap;\n        }\n\n        .dropdown {\n            position: relative;\n        }\n\n        .dropdown-content {\n            display: none;\n            position: absolute;\n            background-color: white;\n            min-width: 160px;\n            box-shadow: 0px 8px 16px rgba(0,0,0,0.1);\n            z-index: 9999;\n            top: 100%;\n            left: 0;\n        }\n\n        .dropdown:hover .dropdown-content {\n            display: block;\n        }\n\n        .dropdown-content a {\n            padding: 12px 16px;\n            display: block;\n            font-size: 0.85rem;\n        }\n\n        .dropdown-content a:hover {\n            background-color: #f8f8f8;\n        }\n\n        .hamburger {\n            display: none;\n            cursor: pointer;\n            flex-direction: column;\n            gap: 5px;\n        }\n\n        .hamburger div {\n            width: 25px;\n            height: 3px;\n            background-color: black;\n            transition: 0.3s;\n        }\n\n        .mobile-menu {\n            display: none;\n            flex-direction: column;\n            position: absolute;\n            top: 100%;\n            left: 0;\n            width: 100%;\n            background-color: white;\n            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);\n            z-index: 9999;\n        }\n\n        .mobile-menu a {\n            padding: 12px 16px;\n            border-bottom: 1px solid #ddd;\n            text-align: center;\n        }\n\n        .media-dropdown-content {\n            display: none;\n            flex-direction: column;\n            background-color: #f9f9f9;\n        }\n\n        .media-dropdown-content a {\n            padding: 10px;\n            border-bottom: 1px solid #ddd;\n        }\n\n        .media-dropdown.active .media-dropdown-content {\n            display: flex;\n        }\n\n        @media (max-width: 768px) {\n            .nav-container {\n                flex-direction: row;\n                align-items: center;\n            }\n\n            .left-links, .right-links {\n                display: none;\n            }\n\n            .hamburger {\n                display: flex;\n            }\n\n            .mobile-menu.active {\n                display: flex;\n            }\n\n            .media-dropdown-btn {\n                display: block;\n                cursor: pointer;\n                padding: 12px 16px;\n                text-align: center;\n                border-bottom: 1px solid #ddd;\n            }\n        }\n        \n        \/*blogs*\/\n        .blogs-row {\n            display: flex;\n            justify-content: center;\n            align-items: center;\n            height: auto;\n            background-color: #fff;\n        }\n\n        .blogs-text {\n            font-size: 2rem;\n            font-weight: bold;\n            text-transform: uppercase;\n            color: black;\n            position: relative;\n            cursor: pointer;\n            padding: 54px 12px 0px 12px;\n        }\n\n        \/* Underline animation *\/\n        .blogs-text::after {\n            content: \"\";\n            position: absolute;\n            left: 0;\n            bottom: -5px;\n            width: 100%;\n            height: 3px;\n            background-color: #dd0404;\n            transform: scaleX(0);\n            transform-origin: right;\n            transition: transform 0.3s ease-out;\n        }\n\n        .blogs-text:hover::after {\n            transform: scaleX(1);\n            transform-origin: left;\n        }\n\n        \/* Responsive font size *\/\n        @media (max-width: 768px) {\n            .blogs-text {\n                font-size: 1.5rem;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n\n    <div class=\"nav\">\n        <div class=\"nav-container\">\n            <div class=\"hamburger\" onclick=\"toggleMenu()\">\n                <div><\/div>\n                <div><\/div>\n                <div><\/div>\n            <\/div>\n\n            <div class=\"left-links\">\n                <a href=\"#services\">Services<\/a>\n                <div class=\"dropdown\">\n                    <a href=\"#\">Media<\/a>\n                    <div class=\"dropdown-content\">\n                        <a href=\"https:\/\/yogeshbhandari7753.com.np\/?page_id=441\">Gallery<\/a>\n                        <a href=\"https:\/\/yogeshbhandari7753.com.np\/?page_id=655\">Blogs<\/a>\n                        <a href=\"https:\/\/yogeshbhandari7753.com.np\/#testi\">Testimonials<\/a>\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <div class=\"nav-logo\">\n                <a href=\"https:\/\/yogeshbhandari7753.com.np\/\">\n                    <img decoding=\"async\" src=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/cropped-Untitled_design-10-removebg-preview.png\" alt=\"Logo\">\n                <\/a>\n            <\/div>\n\n            <div class=\"right-links\">\n                <a href=\"https:\/\/yogeshbhandari7753.com.np\/#contact\" class=\"contact-link\">Contact<\/a>\n            <\/div>\n\n            <div class=\"mobile-menu\" id=\"mobileMenu\">\n                <a href=\"#services\">Services<\/a>\n                \n                <!-- Mobile Dropdown for Media -->\n                <div class=\"media-dropdown\" onclick=\"toggleMediaDropdown()\">\n                    <div class=\"media-dropdown-btn\">Media \u25bc<\/div>\n                    <div class=\"media-dropdown-content\">\n                        <a href=\"https:\/\/yogeshbhandari7753.com.np\/?page_id=441\">Gallery<\/a>\n                        <a href=\"https:\/\/yogeshbhandari7753.com.np\/?page_id=655\">Blogs<\/a>\n                        <a href=\"https:\/\/yogeshbhandari7753.com.np\/#testi\">Testimonials<\/a>\n                    <\/div>\n                <\/div>\n\n                <a href=\"#\" class=\"contact-link\">Contact<\/a>\n            <\/div>\n        <\/div>\n    <\/div>\n    \n    <div class=\"blogs-row\">\n        <div class=\"blogs-text\">GALLERY<\/div>\n    <\/div>\n\n    <script>\n        function toggleMenu() {\n            document.getElementById(\"mobileMenu\").classList.toggle(\"active\");\n        }\n\n        function toggleMediaDropdown() {\n            document.querySelector(\".media-dropdown\").classList.toggle(\"active\");\n        }\n    <\/script>\n\n<\/body>\n<\/html>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-524c5b6 e-flex e-con-boxed e-con e-parent\" data-id=\"524c5b6\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-951d0d5 elementor-widget elementor-widget-gallery\" data-id=\"951d0d5\" data-element_type=\"widget\" data-settings=\"{&quot;lazyload&quot;:&quot;yes&quot;,&quot;gallery_layout&quot;:&quot;grid&quot;,&quot;columns&quot;:4,&quot;columns_tablet&quot;:2,&quot;columns_mobile&quot;:1,&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;link_to&quot;:&quot;file&quot;,&quot;aspect_ratio&quot;:&quot;3:2&quot;,&quot;overlay_background&quot;:&quot;yes&quot;,&quot;content_hover_animation&quot;:&quot;fade-in&quot;}\" data-widget_type=\"gallery.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-gallery__container\">\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/kid-5.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"kid-5.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODI5LCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcL2tpZC01LmpwZyIsInNsaWRlc2hvdyI6Ijk1MWQwZDUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/kid-5-146x300.jpg\" data-width=\"146\" data-height=\"300\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/kid-6.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"kid-6.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODI4LCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcL2tpZC02LmpwZyIsInNsaWRlc2hvdyI6Ijk1MWQwZDUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/kid-6-186x300.jpg\" data-width=\"186\" data-height=\"300\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/kid-3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"kid-3.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODI3LCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcL2tpZC0zLmpwZyIsInNsaWRlc2hvdyI6Ijk1MWQwZDUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/kid-3-150x300.jpg\" data-width=\"150\" data-height=\"300\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/kid-1.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"kid-1.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODI2LCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcL2tpZC0xLmpwZyIsInNsaWRlc2hvdyI6Ijk1MWQwZDUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/kid-1-137x300.jpg\" data-width=\"137\" data-height=\"300\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/team-mark.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"team-mark.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODI0LCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcL3RlYW0tbWFyay5qcGciLCJzbGlkZXNob3ciOiI5NTFkMGQ1In0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/team-mark-300x240.jpg\" data-width=\"300\" data-height=\"240\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/testimonial-03.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"testimonial-03.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODIzLCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcL3Rlc3RpbW9uaWFsLTAzLmpwZyIsInNsaWRlc2hvdyI6Ijk1MWQwZDUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/testimonial-03.jpg\" data-width=\"60\" data-height=\"60\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/team-james.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"team-james.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODIyLCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcL3RlYW0tamFtZXMuanBnIiwic2xpZGVzaG93IjoiOTUxZDBkNSJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/team-james-300x240.jpg\" data-width=\"300\" data-height=\"240\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/text-quotes-.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"text-quotes-.png\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODE4LCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcL3RleHQtcXVvdGVzLS5wbmciLCJzbGlkZXNob3ciOiI5NTFkMGQ1In0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/text-quotes-.png\" data-width=\"256\" data-height=\"256\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/member3.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"member3.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODE3LCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcL21lbWJlcjMuanBnIiwic2xpZGVzaG93IjoiOTUxZDBkNSJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/member3.jpg\" data-width=\"250\" data-height=\"250\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/9.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"9.png\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODE1LCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcLzkucG5nIiwic2xpZGVzaG93IjoiOTUxZDBkNSJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/9.png\" data-width=\"64\" data-height=\"64\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/60.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"60.png\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODE0LCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcLzYwLnBuZyIsInNsaWRlc2hvdyI6Ijk1MWQwZDUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/60.png\" data-width=\"64\" data-height=\"64\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/63.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"63.png\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODEzLCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcLzYzLnBuZyIsInNsaWRlc2hvdyI6Ijk1MWQwZDUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/63.png\" data-width=\"64\" data-height=\"64\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/10.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"10.png\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODEyLCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcLzEwLnBuZyIsInNsaWRlc2hvdyI6Ijk1MWQwZDUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/10.png\" data-width=\"64\" data-height=\"64\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/14.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"14.png\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODExLCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcLzE0LnBuZyIsInNsaWRlc2hvdyI6Ijk1MWQwZDUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/14.png\" data-width=\"64\" data-height=\"64\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/67.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"67.png\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODEwLCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcLzY3LnBuZyIsInNsaWRlc2hvdyI6Ijk1MWQwZDUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/67.png\" data-width=\"64\" data-height=\"64\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/47.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"47.png\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODA5LCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcLzQ3LnBuZyIsInNsaWRlc2hvdyI6Ijk1MWQwZDUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/47.png\" data-width=\"64\" data-height=\"64\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/logo_v2.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"logo_v2.png\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6ODA1LCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcL2xvZ29fdjIucG5nIiwic2xpZGVzaG93IjoiOTUxZDBkNSJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/logo_v2.png\" data-width=\"176\" data-height=\"50\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/Logo-1.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"Logo.png\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NzkyLCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNVwvMDNcL0xvZ28tMS5wbmciLCJzbGlkZXNob3ciOiI5NTFkMGQ1In0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2025\/03\/Logo-1.png\" data-width=\"279\" data-height=\"69\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2024\/03\/image11.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"image11.png\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NzczLCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDNcL2ltYWdlMTEucG5nIiwic2xpZGVzaG93IjoiOTUxZDBkNSJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2024\/03\/image11-284x300.png\" data-width=\"284\" data-height=\"300\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2024\/03\/Mask-Group-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"Mask-Group-2.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NzY1LCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDNcL01hc2stR3JvdXAtMi5qcGciLCJzbGlkZXNob3ciOiI5NTFkMGQ1In0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2024\/03\/Mask-Group-2.jpg\" data-width=\"270\" data-height=\"285\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2024\/03\/image5-2.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"image5-2.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NzY0LCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDNcL2ltYWdlNS0yLmpwZyIsInNsaWRlc2hvdyI6Ijk1MWQwZDUifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2024\/03\/image5-2-284x300.jpg\" data-width=\"284\" data-height=\"300\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2024\/03\/Mask-Group.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"Mask-Group.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NzYzLCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDNcL01hc2stR3JvdXAuanBnIiwic2xpZGVzaG93IjoiOTUxZDBkNSJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2024\/03\/Mask-Group.jpg\" data-width=\"270\" data-height=\"286\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2024\/03\/image10.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"image10.png\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NzcyLCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDNcL2ltYWdlMTAucG5nIiwic2xpZGVzaG93IjoiOTUxZDBkNSJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2024\/03\/image10-284x300.png\" data-width=\"284\" data-height=\"300\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2024\/03\/image9.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"951d0d5\" data-elementor-lightbox-title=\"image9.png\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NzcxLCJ1cmwiOiJodHRwczpcL1wveW9nZXNoYmhhbmRhcmk3NzUzLmNvbS5ucFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDNcL2ltYWdlOS5wbmciLCJzbGlkZXNob3ciOiI5NTFkMGQ1In0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/yogeshbhandari7753.com.np\/wp-content\/uploads\/2024\/03\/image9-284x300.png\" data-width=\"284\" data-height=\"300\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Navbar with Fixed Position &#038; Dropdown Services Media Gallery Blogs Testimonials Contact Services Media \u25bc Gallery Blogs Testimonials Contact GALLERY<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_canvas","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_kadence_starter_templates_imported_post":false,"footnotes":""},"class_list":["post-441","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/yogeshbhandari7753.com.np\/index.php?rest_route=\/wp\/v2\/pages\/441","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/yogeshbhandari7753.com.np\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/yogeshbhandari7753.com.np\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/yogeshbhandari7753.com.np\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/yogeshbhandari7753.com.np\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=441"}],"version-history":[{"count":42,"href":"https:\/\/yogeshbhandari7753.com.np\/index.php?rest_route=\/wp\/v2\/pages\/441\/revisions"}],"predecessor-version":[{"id":1860,"href":"https:\/\/yogeshbhandari7753.com.np\/index.php?rest_route=\/wp\/v2\/pages\/441\/revisions\/1860"}],"wp:attachment":[{"href":"https:\/\/yogeshbhandari7753.com.np\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=441"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}