pramaan

Sustainability in Electronics Starts with Trust: Why the Industry Needs a Digital Passport for Devices

Sustainability in Electronics Starts with Trust... </p> <!-- open full blog on click of read more --> <a href="https://gadgetguruz.com/blogs/why-electronics-industry-needs-digital-passports" class="readmore_blog">Read more</a> </div> </div> </div> </div> <!-- pagination show here --> <section class="paginationBlog"> <div class="container"> <div class="row"> <div class="col-lg-10 d-flex justify-content-end"> </div> </div> </div> </section> <div class="consent-banner" id="consentBanner"> <p class="text-light">We use cookies to enhance your experience on the Gadget Guruz website. Some cookies are essential for functionality, while others help us analyze site performance and deliver personalized content. By clicking "Accept All," you consent to all cookies. You can customize your preferences below. <a href="https://gadgetguruz.com/privacy-policy" target="_blank">Learn more</a>.</p> <div class="consent-buttons"> <button class="btn-accept" onclick="acceptAllCookies()">Accept All</button> <button class="btn-customize" onclick="toggleCustomize()">Customize</button> </div> <div class="consent-customize" id="customizeSection"> <label><input type="checkbox" id="essentialCookies" checked disabled> Essential Cookies (Required)</label> <label><input type="checkbox" id="analyticsCookies"> Analytics Cookies</label> <label><input type="checkbox" id="marketingCookies"> Marketing Cookies</label> <button class="btn-save" onclick="savePreferences()">Save Preferences</button> </div> <script> window.onload = function () { // Only show the banner if no consent has been previously given // This is called *after* the page fully loads, so it won't block initial rendering if (!localStorage.getItem('cookieConsent')) { document.getElementById('consentBanner').classList.add('show'); } }; function acceptAllCookies() { const preferences = { essential: true, analytics: true, marketing: true }; localStorage.setItem('cookieConsent', JSON.stringify(preferences)); document.getElementById('consentBanner').classList.remove('show'); updateConsentState(); // Call the update function defined below } function toggleCustomize() { const customizeSection = document.getElementById('customizeSection'); customizeSection.classList.toggle('show'); } function savePreferences() { const preferences = { essential: true, analytics: document.getElementById('analyticsCookies').checked, marketing: document.getElementById('marketingCookies').checked }; localStorage.setItem('cookieConsent', JSON.stringify(preferences)); document.getElementById('consentBanner').classList.remove('show'); updateConsentState(); // Call the update function defined below } function updateConsentState() { const consent = JSON.parse(localStorage.getItem('cookieConsent')); if (consent) { gtag('consent', 'update', { 'ad_storage': consent.marketing ? 'granted' : 'denied', 'ad_user_data': consent.marketing ? 'granted' : 'denied', 'ad_personalization': consent.marketing ? 'granted' : 'denied', 'analytics_storage': consent.analytics ? 'granted' : 'denied' }); } } </script> </div> <!-- jquery scripts for faster load --> <script src="https://code.jquery.com/jquery-3.7.1.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <!-- Bootstrap JavaScript Libraries --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.11.7/umd/popper.min.js" defer></script> <!-- sweetalert --> <script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js" defer></script> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11" defer></script> <script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js" defer></script> <!-- owl js --> <script src="https://gadgetguruz.com/assets/js/owl.carousel.min.js" defer></script> <script src="https://gadgetguruz.com/assets/js/main.js" defer></script> <script src="https://gadgetguruz.com/assets/js/scroll-animations.js"></script> <div id="globalLoader" class="global-loader"> <div class="loader-content"> <div class="spinner"></div> <p id="loaderText" style="display: none;">Processing...</p> </div> </div> <style> /* Global Loader Styles */ .global-loader { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 9999; justify-content: center; align-items: center; } .global-loader.show { display: flex; } .loader-content { text-align: center; } .spinner { border: 4px solid rgba(255, 255, 255, 0.3); border-radius: 50%; border-top: 4px solid #fff; width: 40px; height: 40px; animation: spin 1s linear infinite; margin: 0 auto 10px; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #loaderText { color: #fff; font-size: 14px; font-weight: 500; } </style> <script> // ==================== Global Loader Handler ==================== (function () { const loader = document.getElementById('globalLoader'); function showLoader() { if (loader) loader.classList.add('show'); } function hideLoader() { if (loader) loader.classList.remove('show'); } // Show loader on form submit only (exclude availability check) document.addEventListener('submit', function (e) { console.log('Form submitted:', e.target.id); if (e.target.id === 'availabilityCheck') { console.log('Skipping loader for availability check'); return; } console.log('Showing loader'); showLoader(); // Hide loader after timeout as fallback setTimeout(hideLoader, 30000); }, true); // Hide loader on page load, navigation, and errors window.addEventListener('load', hideLoader); window.addEventListener('beforeunload', hideLoader); window.addEventListener('error', hideLoader); })(); // ==================== Global Flash Message Handler ==================== (function () { var flash = null; if (!flash) return; // nothing to show function showSwal() { if (!flash) return; // map server key to swal options var icon = (flash.type === 'error') ? 'error' : (flash.type === 'warning') ? 'warning' : (flash.type === 'info') ? 'info' : 'success'; var swalNode = { icon: icon, confirmButtonText: 'OK' }; if (flash.title) { swalNode.title = flash.title; } if (flash.isHtml) { swalNode.html = flash.text; } else { swalNode.text = flash.text; } if (typeof Swal !== 'undefined' && Swal.fire) { Swal.fire(swalNode); } else if (typeof swal !== 'undefined') { swal(flash.text, '', icon); } // clear reference after shown flash = null; } // pageshow handles bfcache/back/forward restores — skip showing in those cases window.addEventListener('pageshow', function (event) { var navEntries = (performance && performance.getEntriesByType) ? performance.getEntriesByType('navigation') : []; var navType = (navEntries && navEntries[0] && navEntries[0].type) ? navEntries[0].type : (performance && performance.navigation ? performance.navigation.type : null); var isBackForward = event.persisted || navType === 'back_forward' || navType === 2; if (isBackForward) return; // prefer waiting for DOM ready if scripts are deferred if (document.readyState === 'complete' || document.readyState === 'interactive') { showSwal(); } else { document.addEventListener('DOMContentLoaded', showSwal); } }, false); })(); </script> <script> $(document).ready(function () { var radioValue = $("input[name='address']:checked").val(); $('#setaddress').val(radioValue); $('.address').on('click', function () { var radioValue = $("input[name='address']:checked").val(); $('#setaddress').val(radioValue); }); }); </script> <script> $(document).ready(function () { var radioValue = $("input[name='address']:checked").val(); $('#setaddress').val(radioValue); $('#setaddress1').val(radioValue); $('.address').on('click', function () { var radioValue = $("input[name='address']:checked").val(); $('#setaddress').val(radioValue); $('#setaddress1').val(radioValue); }); }); </script> <!-- Search Section --> <script> let navbarBtn = document.getElementById('navbarBtn'); navbarBtn.addEventListener('click', function () { document.getElementById('navbarSupportedContent').classList.add('open_nabar'); }); let navbarBtnclose = document.getElementById('navbarBtn_close'); navbarBtnclose.addEventListener('click', function () { document.getElementById('navbarSupportedContent').classList.remove('open_nabar'); }) let searchBtn = document.getElementById('search_btn'); searchBtn.addEventListener('click', function () { document.getElementById('mobile_search').classList.add('open_nabar'); }); let searchBtnclose = document.getElementById('close_search_bar'); searchBtnclose.addEventListener('click', function () { document.getElementById('mobile_search').classList.remove('open_nabar'); }); var urls = 'https://gadgetguruz.com'; </script> <!-- close ---> <script type="text/javascript"> function addToCart(product_id, name, regular_price, product_image) { var urls = 'https://gadgetguruz.com'; $.ajax({ url: urls + '/ajax-add-to-cart', type: "POST", data: { _token: $('meta[name="csrf-token"]').attr('content'), product_id: product_id, product_name: name, regular_price: regular_price, product_image: product_image, product_qty: 1 }, success: function (data) { swal({ title: "Product Added!", text: "The product has been added in the cart.", icon: "success", timer: 3000, buttons: true }).then(() => { location.reload(); }); }, error: function (xhr, status, error) { if (xhr.status === 419) { alert('Session expired. Please refresh the page and try again.'); window.location.href = 'https://gadgetguruz.com'; } else { console.error('Error:', error); alert('An error occurred. Please try again.'); } } }); } function addToCartTowishlist(product_id, name, regular_price, product_image) { var urls = 'https://gadgetguruz.com'; var product_id = product_id; var product_name = name; var regular_price = regular_price; var product_image = product_image; var product_qty = 1; $.ajax({ url: urls + '/ajax-add-to-cart-wishlist', type: "POST", data: { _token: 'FDYTz2YZP45vvn9lLhveeLH87RvKzbRkhyUZucU3', contentType: false, 'product_id': product_id, 'product_name': product_name, 'regular_price': regular_price, 'product_image': product_image, 'product_qty': product_qty }, success: function (data) { swal("Product Added!", "To Cart", "success"); location.reload(); } }); } </script> <script type="text/javascript"> function buy_Now(product_id, name, regular_price, product_image) { var urls = 'https://gadgetguruz.com'; var product_id = product_id; var product_name = name; var regular_price = $('.regular_price').val(); var product_image = product_image; var product_qty = 1; $.ajax({ url: urls + '/ajax-add-to-cart', type: "POST", data: { _token: 'FDYTz2YZP45vvn9lLhveeLH87RvKzbRkhyUZucU3', contentType: false, 'product_id': product_id, 'product_name': product_name, 'regular_price': regular_price, 'product_image': product_image, 'product_qty': product_qty }, success: function (data) { // swal("Product Added!", "To Cart", "success"); //location.reload(urls+'/cart'); //window.open(urls+'/cart').focus(); window.location.href = urls + '/cart'; //location.reload(false); } }); } </script> <script type="text/javascript"> function deleteToCart(product_id) { var urls = 'https://gadgetguruz.com'; var product_id = product_id; $.ajax({ url: urls + '/delete-from-cart', type: "POST", data: { _token: 'FDYTz2YZP45vvn9lLhveeLH87RvKzbRkhyUZucU3', contentType: false, 'product_id': product_id }, success: function (data) { swal("Product Deleted!", "To Cart", "success"); location.reload(); } }); } function addToWishlist(product_id, name, regular_price, selling_price, product_image, qty) { var urls = 'https://gadgetguruz.com'; var product_id = product_id; var product_name = name; var selling_price = selling_price; var regular_price = regular_price; var product_image = product_image; var product_qty = qty; $.ajax({ url: urls + '/ajax-add-to-wishlist', type: "POST", data: { _token: 'FDYTz2YZP45vvn9lLhveeLH87RvKzbRkhyUZucU3', contentType: false, 'product_id': product_id, 'product_name': product_name, 'regular_price': regular_price, 'product_image': product_image, 'product_qty': product_qty, 'selling_price': selling_price }, success: function (data) { if (data.status == 1) { $('.wishlistadd-' + product_id).addClass('wishes'); } else if (data.status == 2) { alert('Already added in wishlist.'); } else { window.location.href = urls + "/register"; } } }); } function deleteToWishlist(product_id) { var urls = 'https://gadgetguruz.com'; var product_id = product_id; $.ajax({ url: urls + '/delete-from-wishlist', type: "POST", data: { _token: 'FDYTz2YZP45vvn9lLhveeLH87RvKzbRkhyUZucU3', contentType: false, 'product_id': product_id }, success: function (data) { if (data.status == 1) { $('.wishlistdelete-' + product_id).removeClass("wishes"); setInterval(function () { $(".deletewishlistrefresh").load(" .deletewishlistrefresh >*"); }, 1000); } else { window.location.href = urls + "/register"; } } }); } $(document).ready(function () { $('.clear_wishlist').click(function (e) { e.preventDefault(); $.ajax({ url: urls + '/clear-wishlist-cookie', type: 'GET', success: function (response) { swal("Wishlist Empty!", "success"); location.reload(); window.location.reload(); } }); }); }); </script> <script type="text/javascript"> var urls = 'https://gadgetguruz.com'; function increment_quantity(qtt, cart_id) { var inputQuantityElement = $("#input-quantity-" + cart_id); var newQuantity = parseInt($(inputQuantityElement).val()) + 1; if (qtt >= newQuantity) { save_to_db(cart_id, newQuantity); } else { $('#qty-error' + cart_id).removeClass('d-none').text('Quantity is Max, not available !'); //$(".qttdiv").show(); } } function decrement_quantity(qtt, cart_id) { var inputQuantityElement = $("#input-quantity-" + cart_id); if ($(inputQuantityElement).val() > 1) { var newQuantity = parseInt($(inputQuantityElement).val()) - 1; if (qtt >= newQuantity) { save_to_db(cart_id, newQuantity); } else { $('#qty-error' + cart_id).removeClass('d-none').text('Quantity is Max, not available !'); // $(".qttdiv").show(); } } } function updateQuantity(itemId, quantity) { document.getElementById('input-quantity-' + itemId).value = quantity; save_to_db(itemId, quantity); } function save_to_db(cart_id, new_quantity) { var inputQuantityElement = $("#input-quantity-" + cart_id); $.ajax({ url: urls + '/update-to-cart', data: { cart_id: cart_id, new_quantity: new_quantity, _token: 'FDYTz2YZP45vvn9lLhveeLH87RvKzbRkhyUZucU3' }, type: 'post', success: function (response) { swal({ title: "Product Updated!", text: "The quantity has been updated in the cart.", icon: "success", timer: 3000, buttons: true }).then(() => { location.reload(); }); } }); } </script> <script type="text/javascript"> $('#firsthide').hide(); $(function () { $("#cntct-btn").click(function () { if ($.trim($(".select_utc").val()) == "") { alert("Please select availibility!"); //$('#messageBlank').show(); } }); }); </script> <script type="text/javascript"> $(document).ready(function () { $(".shippingsearch").click(function () { var cityid = $('#city_id').val(); $.ajax({ url: urls + '/filter-shipping', data: { cityid: cityid, _token: 'FDYTz2YZP45vvn9lLhveeLH87RvKzbRkhyUZucU3' }, type: 'post', success: function (response) { if (response.status == "success") { $('.shippingdetailhide').show(); // $('.availableproduct').show('This product available, please check delevery option.'); $("#flate_price").html(response.message.flateprice); $("#next_day_price").html(response.message.next_day_price); $('.shipping_price').val(response.message.flateprice); $('.shipping_pricess').val(response.message.next_day_price); $('#message').hide(); } else if (response.status == "error") { $('#message').show(); $('#message').text(response.message); $('.shippingdetailhide').hide(); } } }); }); }); </script> <script> $('#message_alert_show').hide(); function gotowhatsapp() { var service = document.getElementById("service").value; var device = document.getElementById("device").value; var pincode = document.getElementById("exampleFormControlInput1").value; if (service == '') { swal({ text: "Please Select Service!", icon: "warning", dangerMode: true, }) } else if (device == '') { swal({ text: "Please Select Device!", icon: "warning", dangerMode: true, }) } else if (pincode == '') { swal({ text: "Please Enter Pincode!", icon: "warning", dangerMode: true, }) //window.location.href =urlsss; } else { var urlsss = "https://wa.me/7838423438?text=" + "Service: " + service + "%0a" + "Device: " + device + "%0a" + "Pincode: " + pincode; window.open(urlsss, '_blank').focus(); } } $("#talktoexpert").click(function () { var devices = $("input[name='devices']:checked").val(); var productusage = $("input[name='productusage']:checked").val(); var product_service = $("input[name='product_service']:checked").val(); var form = $("#handpicked"); if ($('input[name="devices"]:checked').length == 0) { swal({ text: "Please select device!", icon: "warning", dangerMode: true, }) } else if ($('input[name="productusage"]:checked').length == 0) { swal({ text: "Please select product usage!", icon: "warning", dangerMode: true, }) } else { $.ajax({ type: "POST", url: urls + '/handpicked-send-watsap', data: form.serialize(), success: function (response) { var whatsappurl = "https://wa.me/7838423438?text=" + "Handpicked for you:-" + "%0a" + "Device Name: " + response.cat + "%0a" + "Usage: " + response.tag + "%0a" + "Condition: " + response.product_service; window.open(whatsappurl, '_blank').focus(); } }); } }); $("#make_payment").click(function () { var name = $('.name').val(); var pincode = $('.pincode').val(); var mobile = $('.mobile').val(); var form = $("#msform"); if (name == '') { swal({ text: "Please Enter Name!", icon: "warning", dangerMode: true, }) } else if (mobile == '') { swal({ text: "Please Enter Mobile Number!", icon: "warning", dangerMode: true, }) } else if (pincode == '') { swal({ text: "Please Enter Pincode!", icon: "warning", dangerMode: true, }) } else { $.ajax({ type: "POST", url: urls + '/store-repair-info', data: form.serialize(), success: function (response) { var jsonObj = JSON.parse(response); var whatsappurl = "https://wa.me/7838423438?text=" + "Device Name: " + jsonObj.device_name + "%0a" + "Issue: " + jsonObj.issue_name + "%0a" + "Name:" + jsonObj.name + "%0a" + "Mobile No:" + jsonObj.mobile + "%0a" + "Pincode: " + jsonObj.pincode; //window.location.href =whatsappurl; window.open(whatsappurl, '_blank').focus(); //window.location.reload(urls); $('#message_alert_show').show(); } }); } }); </script> <script> $('.selectdevicenextbtn').attr('disabled', 'disabled'); $('.selectissuebtn').attr('disabled', 'disabled'); $('.select_device').click(function () { $('.selectdevicenextbtn').removeAttr('disabled'); }); $(".select_issue").click(function () { $('.selectissuebtn').removeAttr('disabled'); }); </script> <script> function check_availability() { //var zcode = $("#zip_code").val(); var cityid = $('#city_id').val(); var shipping_price = $('input[name="shipping_price"]:checked').val(); var total_itom_price = $('#total_itom_price').val(); // var total_itom_price = $('#shipping_price').val(); if (cityid == '') { swal({ text: "Please check product calculation shipping by city!", icon: "warning", dangerMode: true, }) } else if ($('input[type=radio][name=shipping_price]:checked').length == 0) { swal({ text: "Please check delivery acceptance!", icon: "warning", dangerMode: true, }) } else { $.ajax({ url: urls + '/check-city', data: { 'cityid': cityid, 'shipping_price': shipping_price, 'total_itom_price': total_itom_price, _token: 'FDYTz2YZP45vvn9lLhveeLH87RvKzbRkhyUZucU3' }, type: 'post', success: function (response) { if (response == 1) { window.location.replace(urls + '/checkout'); // alert('send checkout'); //window.open(urlsss, '_blank').focus(); } else { swal({ text: "Your Shipping address is not available!", icon: "warning", dangerMode: true, }) } }, }); } return false; } function check_availabilitys() { window.location.replace(urls + '/checkout'); } </script> <script type="text/javascript"> // Clear Cart Data $(document).ready(function () { $('.clear_cart').click(function (e) { e.preventDefault(); $.ajax({ url: urls + '/clear-cart-cookie', type: 'GET', success: function (response) { window.location.reload(); //alertify.set('notifier','position','top-right'); // alertify.success(response.status); } }); }); }); </script> <script type="text/javascript"> //Load More Retting $(document).ready(function () { var _token = $('input[name="_token"]').val(); // load_blogdata('', _token); function load_rattingdata(id = "", user_id = "", url_segment = "", product_id = "", _token) { $.ajax({ url: "https://gadgetguruz.com/rattingpagination", method: "POST", beforeSend: function () { $('#loading-image').show(); }, data: { id: id, user_id: user_id, url_segment: url_segment, product_id: product_id, _token: _token }, success: function (data) { //alert(data[0]['description']); $('.filters_results').append(data); }, complete: function () { $('#loading-image').hide(); }, error: function (textStatus, errorThrown) { $('#load_more_ratting').css('display', 'none'); } }) } $(document).on('click', '#load_more_ratting', function () { //alert('datatest'); var id = $('input[name=last_id]').last().val(); var product_id = $('input[name=product_id]').val(); var url_segment = $('input[name=url_segment]').val(); var user_id = $('input[name=user_id]').val(); $('#load_more_ratting').html('<b>Loading...</b>'); load_rattingdata(id, user_id, url_segment, product_id, _token); }); }); </script> <footer id="footer"> <div class="container"> <div class="row"> <div class="col-xl-9 col-md-12 d-flex footer-first"> <div class="row d-md-flex justify-content-between w-100"> <ul class="ul-footer col-4 col-sm-auto col-lg-2"> <h5 class="footer-heading">Services</h5> <!-- <li><a href="https://gadgetguruz.com/products-category" class="footer-link">Buy</a> </li> --> <li><a href="https://gadgetguruz.com/repairs" class="footer-link">Repair</a></li> <li><a href="https://gadgetguruz.com/sell" class="footer-link">Sell</a></li> <li><a href="https://gadgetguruz.com/recycle" class="footer-link">Recycle</a></li> <li><a href="https://gadgetguruz.com/contact-us" class="footer-link">Free consultation</a></li> <li><a href="https://gadgetguruz.com/book-technician" class="footer-link">Book Technician</a></li> </ul> <ul class="ul-footer col-4 col-sm-auto col-lg-2"> <h5 class="footer-heading">Popular</h5> <li><a href="https://gadgetguruz.com/enterprise/products/serkit" class="footer-link">Serkit</a></li> <!-- <li><a href="https://gadgetguruz.com/products-category/laptop" class="footer-link">Laptops</a></li> <li><a href="https://gadgetguruz.com/products-category/mobile" class="footer-link">Mobile</a> </li> --> <li><a href="https://gadgetguruz.com/repairs" class="footer-link">Repairs</a></li> <li><a href="https://gadgetguruz.com/blogs" class="footer-link">Blogs</a></li> </ul> <ul class="ul-footer col-4 col-sm-auto col-lg-2"> <h5 class="footer-heading">Quick Links</h5> <!-- <li><a href="https://gadgetguruz.com/products-category" class="footer-link">Renewed products</a></li> --> <li><a href="https://gadgetguruz.com/affiliate" class="footer-link">Affiliate</a></li> <li><a href="https://gadgetguruz.com/amc-calculator" class="footer-link">AMC Calculator</a></li> <li><a href="https://gadgetguruz.com/register-technician" class="footer-link">Technicians Registration</a></li> <li><a href="https://wa.me/7838423438" class="footer-link">Remote support</a></li> <li><a href="https://gadgetguruz.com/contact-us-enterprise" class="footer-link">Partner with us</a></li> <li><a href="https://gadgetguruz.com/macbook-repair" class="footer-link">MacBook Repair</a></li> <li><a href="https://gadgetguruz.com/imac-repair" class="footer-link">iMac Repair</a></li> <li><a href="https://gadgetguruz.com/iphone-repair" class="footer-link">iPhone Repair</a></li> <li><a href="https://gadgetguruz.com/ipad-repair" class="footer-link">iPad Repair</a></li> </ul> <ul class="ul-footer col-4 col-sm-auto col-lg-2"> <h5 class="footer-heading">Legal</h5> <li><a href="https://gadgetguruz.com/terms_of_use" class="footer-link">Terms of Use</a></li> <li><a href="https://gadgetguruz.com/privacy-policy" class="footer-link">Privacy policy</a></li> <li><a href="https://gadgetguruz.com/shipping-policy" class="footer-link">Shipping Policy</a></li> <li><a href="https://gadgetguruz.com/refund-policy" class="footer-link">Return & <br> cancellation policy</a> </li> <li><a href="https://gadgetguruz.com/cookie-policy" class="footer-link">Cookie policy</a></li> </ul> <ul class="ul-footer col-4 col-sm-auto col-lg-2"> <h5 class="footer-heading">Company</h5> <li><a href="https://gadgetguruz.com/about-us" class="footer-link">About Us</a></li> <!-- <li><a href="https://gadgetguruz.com/startup" class="footer-link">For Startups</a></li> --> <li><a href="https://gadgetguruz.com/careers" class="footer-link">Careers</a></li> <li><a href="https://gadgetguruz.com/faqs" class="footer-link">FAQ </a></li> <li><a href="https://gadgetguruz.com/contact-us" class="footer-link">Contact us</a></li> </ul> </div> </div> <div class="col-xl-3 col-md-6"> <ul class="ul-footerBig "> <h5 class="footer-heading">Like to be first? </h5> <form action="https://gadgetguruz.com/subscrib-post" method="POST" class="newsletter" id="subscribe-form"> <input type="hidden" name="_token" value="FDYTz2YZP45vvn9lLhveeLH87RvKzbRkhyUZucU3" autocomplete="off"> <input type="email" placeholder="enter your email" name="email"> <button class="btn-main btn" type="submit">Subscribe</button> </form> <p class="fs-12 m-0 text-light mt-1">Then get your latest tech updates and offers before anyone else </p> <div class="social-sec mt-3"> <h5 class="footer-heading"><a href="https://gadgetguruz.com/signup-form">Get to know us better</a></h5> <ul class="social_media "> <li><a href="https://www.instagram.com/gadgetguruzindia?igsh=MTFpenF2NzZwc3hwaw==" class="social-link"><i class="fa-brands fa-instagram"></i></a></li> <li><a href="https://www.facebook.com/gadgetguruzs?mibextid=ZbWKwL" class="social-link"><i class="fa-brands fa-facebook"></i></a></li> <li><a href="https://www.youtube.com/@OfficialGadgetGuruz" class="social-link"><i class="fa-brands fa-youtube"></i></a></li> <li><a href="https://www.linkedin.com/company/gadget-guruz/" class="social-link"><i class="fa-brands fa-linkedin-in"></i></a></li> </ul> </div> <div class="fs-14 text-light mt-3">2024 Gadget Guruz. All rights reserved.</div> </ul> </div> </div> </div> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Gadget Guruz-Support-User

` `