<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>ShreeDigital - Your Digital Partner</title>

    <!-- Tailwind CSS CDN -->

    <script src="https://cdn.tailwindcss.com"></script>

    <!-- Google Font - Inter -->

    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">

    <style>

        body {

            font-family: 'Inter', sans-serif;

        }

    </style>

</head>

<body class="bg-gray-50 text-gray-800 antialiased flex flex-col min-h-screen">


    <!-- Header Section -->

    <header class="bg-gradient-to-r from-blue-600 to-indigo-700 text-white shadow-lg py-4 md:py-6">

        <div class="container mx-auto px-4 flex justify-between items-center">

            <!-- Brand Logo/Name -->

            <a href="#" class="text-3xl font-bold tracking-tight rounded-md p-2 hover:bg-white hover:text-blue-600 transition-all duration-300">

                ShreeDigital

            </a>


            <!-- Navigation Menu (for larger screens) -->

            <nav class="hidden md:flex space-x-6">

                <a href="#home" class="text-white hover:text-blue-200 transition-colors duration-200 text-lg">Home</a>

                <a href="#services" class="text-white hover:text-blue-200 transition-colors duration-200 text-lg">Services</a>

                <a href="#about" class="text-white hover:text-blue-200 transition-colors duration-200 text-lg">About Us</a>

                <a href="#contact" class="text-white hover:text-blue-200 transition-colors duration-200 text-lg">Contact</a>

            </nav>


            <!-- Mobile Navigation Toggle (Hamburger Icon) -->

            <div class="md:hidden">

                <button id="mobile-menu-button" class="text-white focus:outline-none">

                    <svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">

                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path>

                    </svg>

                </button>

            </div>

        </div>


        <!-- Mobile Menu (initially hidden) -->

        <div id="mobile-menu" class="md:hidden bg-blue-700 px-4 pt-2 pb-4 space-y-2 hidden">

            <a href="#home" class="block text-white hover:bg-blue-600 py-2 px-3 rounded-md transition-colors duration-200">Home</a>

            <a href="#services" class="block text-white hover:bg-blue-600 py-2 px-3 rounded-md transition-colors duration-200">Services</a>

            <a href="#about" class="block text-white hover:bg-blue-600 py-2 px-3 rounded-md transition-colors duration-200">About Us</a>

            <a href="#contact" class="block text-white hover:bg-blue-600 py-2 px-3 rounded-md transition-colors duration-200">Contact</a>

        </div>

    </header>


    <!-- Main Content Area -->

    <main class="container mx-auto px-4 py-8 flex-grow">

        <!-- Hero Section -->

        <section id="home" class="text-center py-16 md:py-24 bg-white shadow-xl rounded-xl mb-12">

            <h1 class="text-4xl md:text-6xl font-extrabold text-blue-700 mb-4">

                Empowering Your Digital Journey

            </h1>

            <p class="text-lg md:text-xl text-gray-600 max-w-3xl mx-auto mb-8">

                ShreeDigital offers innovative solutions for web development, digital marketing, and IT consulting to help your business thrive online.

            </p>

            <a href="#services" class="inline-block bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-8 rounded-full shadow-lg transform transition-all duration-300 hover:scale-105">

                Explore Our Services

            </a>

        </section>


        <!-- Services Section -->

        <section id="services" class="py-12 md:py-16">

            <h2 class="text-3xl md:text-4xl font-bold text-center text-blue-700 mb-10">Our Services</h2>

            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">

                <!-- Service Card 1 -->

                <div class="bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300">

                    <h3 class="text-xl font-semibold text-gray-900 mb-3">Web Development</h3>

                    <p class="text-gray-600">

                        Crafting responsive, high-performance websites tailored to your business needs. From custom sites to e-commerce platforms.

                    </p>

                </div>

                <!-- Service Card 2 -->

                <div class="bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300">

                    <h3 class="text-xl font-semibold text-gray-900 mb-3">Digital Marketing</h3>

                    <p class="text-gray-600">

                        Boosting your online presence with SEO, social media marketing, and targeted ad campaigns.

                    </p>

                </div>

                <!-- Service Card 3 -->

                <div class="bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300">

                    <h3 class="text-xl font-semibold text-gray-900 mb-3">IT Consulting</h3>

                    <p class="text-gray-600">

                        Providing expert advice and solutions for your technology infrastructure and digital strategy.

                    </p>

                </div>

            </div>

        </section>


        <!-- About Us Section -->

        <section id="about" class="py-12 md:py-16 bg-white shadow-xl rounded-xl mt-12">

            <h2 class="text-3xl md:text-4xl font-bold text-center text-blue-700 mb-10">About ShreeDigital</h2>

            <div class="max-w-4xl mx-auto px-4 text-center">

                <p class="text-lg text-gray-700 mb-6">

                    ShreeDigital is dedicated to helping businesses, big and small, navigate the complexities of the digital world. Our team of experts brings a blend of creativity, technical prowess, and strategic insight to every project. We believe in building lasting relationships with our clients, providing solutions that drive real results.

                </p>

                <p class="text-lg text-gray-700">

                    Our mission is to innovate, collaborate, and deliver excellence, ensuring our clients achieve their digital goals with confidence.

                </p>

            </div>

        </section>


        <!-- Contact Section -->

        <section id="contact" class="py-12 md:py-16">

            <h2 class="text-3xl md:text-4xl font-bold text-center text-blue-700 mb-10">Get in Touch</h2>

            <div class="max-w-2xl mx-auto bg-white p-8 rounded-lg shadow-md">

                <form class="space-y-6">

                    <div>

                        <label for="name" class="block text-sm font-medium text-gray-700">Name</label>

                        <input type="text" id="name" name="name" class="mt-1 block w-full px-4 py-2 border border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500 sm:text-sm" placeholder="Your Name" required>

                    </div>

                    <div>

                        <label for="email" class="block text-sm font-medium text-gray-700">Email</label>

                        <input type="email" id="email" name="email" class="mt-1 block w-full px-4 py-2 border border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500 sm:text-sm" placeholder="your@example.com" required>

                    </div>

                    <div>

                        <label for="message" class="block text-sm font-medium text-gray-700">Message</label>

                        <textarea id="message" name="message" rows="4" class="mt-1 block w-full px-4 py-2 border border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500 sm:text-sm" placeholder="Your message..." required></textarea>

                    </div>

                    <button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-4 rounded-md shadow-md transform transition-all duration-300 hover:scale-105 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2">

                        Send Message

                    </button>

                </form>

            </div>

        </section>

    </main>


    <!-- Footer Section -->

    <footer class="bg-gray-800 text-white py-6 mt-12">

        <div class="container mx-auto px-4 text-center text-gray-400">

            <p>&copy; 2025 ShreeDigital. All rights reserved.</p>

            <p class="mt-2">

                <a href="#" class="hover:text-white transition-colors duration-200">Privacy Policy</a> |

                <a href="#" class="hover:text-white transition-colors duration-200">Terms of Service</a>

            </p>

        </div>

    </footer>


    <!-- JavaScript for Mobile Menu Toggle -->

    <script>

        document.getElementById('mobile-menu-button').addEventListener('click', function() {

            const mobileMenu = document.getElementById('mobile-menu');

            mobileMenu.classList.toggle('hidden');

        });


        // Close mobile menu when a link is clicked

        document.querySelectorAll('#mobile-menu a').forEach(item => {

            item.addEventListener('click', () => {

                document.getElementById('mobile-menu').classList.add('hidden');

            });

        });

    </script>

</body>

</html>

Shreedigital

हमारे द्वारा दी जाने वाले सेवाए ___



1- पैन कार्ड संबन्धित सुधार , न्यू पैन कार्ड आवेदन एवं मिनटो मे प्राप्त करे 


2- आधार कार्ड बिना किसी दस्तावेज़ का सुधार करे एवं आधार से संबन्धित समस्याओ के Visit कर      सकते है|


3- वोटर कार्ड मे सुधार एवं सुधार साथ ही पीवीसी स्मार्ट कार्ड मे प्रिंट मिनटो मे प्राप्त करे|


4- बैंक खाता Zero Balence  मे खोले |


5-जमीन संबन्धित कार्य रशीद, मुटेशन, परमिसन , रजिस्ट्री इत्यादि|


6- रासन कार्ड संबंधी आवेदन एवं सुधार कार्य |


7- जन्म प्रमाण पत्र संबंधी कार्य|


8- लॉस्ट / खोया पैन न॰ , आधार न॰ प्राप्त करे |


आधार में जन्म तिथि सुधार क्रॉस लिमिट |

                                                         आधार में सुधार 

> नाम सुधार

> जन्म तिथि

>जेंडर

>घर का पता चेंज के लिए कॉल करें |

रांची सेण्टर के लिए बुक अपॉइंटमेंट|

>> आधार खो गया, बार -बार बनाने पर नहीं बन रहा है सहायता के कॉल करें |

Mobile no- 8863000043, 7543877287

Aadhaar card lost ho gaya.

 How To Find Lossed Aadhar Card: आज के समय आधार कार्ड सबसे महत्वपूर्ण दस्तावेजों में से एक हैं. बगैर इसके आपके अधिकतर काम अधूरे रहते हैं. हर जगह आधार की मांग आपसे की जाएगी. ऐसे में अगर आपका आधार कार्ड खो जाए तो निश्चित ही आपको दिक्कतों का सामना करना पड़ सकता है. साथ ही अगर आपका फोन नंबर रजिस्टर्ड नहीं है तो आपको काफी दिक्कतों का सामना करना पड़ सकता है. लेकिन ऐसे में आपको परेशान होने की जरूरत नहीं है क्योंकि आप ऑनलाइन प्रक्रिया के माध्यम से दोबारा अपना आधार कार्ड प्राप्त कर सकते हैं. खो गया आपका आधार कार्ड, अब क्या करें? जानें कैसे दोबारा पा सकते हैं अपना आधार

इसके लिए आपको सबसे पहले आधार की अधिकारिक वेबसाइट www.uidai.gov.in पर जाना होगा. इसके बाद आपको आधार सेवा टैब में जाकर Order Aadhaar Reprint पर क्लिक करना होगा. यहां एक नया पेज खुलेगा जहां आपसे 12 अंकों का आधार नंबर या 16 अंकों का वर्चुअल आईडी नंबर सबमिट करने को कहा जाएगा. इसके बाद नीचे दिए गए कैप्चा को भरकर अपने Mobile number is not Registered पर टिक कर दें. अब आपके सामने नए मोबाइल नंबर को दर्ज करने का विकल्प आएगा. नंबर को दर्ज करते ही आपके फोन पर एक OTP आएगा.

अब इस ओटीपी को आप सबमिट करें औऱ नियम व शर्ते पढ़कर इसे I Agree पर क्लिक करें. इसके बाद अगले पेज पर आपसे 50 रुपये पेमेंट करने का विकल्प आएगा. पेमेंट आप किसी भी तरीके से कर सकते हैं, विकल्प आपको पेज पर दिख जाएंगे. पेमेंट करने के बाद आपको एक रिसिप्ट दी जाएगी, जिसे आपको डाउनलोड करना होगा. अब दोबारा आधार कार्ड को प्रिंट करके UIDAI द्वारा आपके दिए गए पते पर भेज दिया जाएगा. बता दें कि यहां जो मोबाइल नंबर आप दर्ज करेंगे, वह आधार में रजिस्टर नहीं होगा. आधार में रजिस्टर करने की प्रक्रिया अलग है.

आधार में मोबाइल नं. अपडेट या लिंक करने का पूरा प्रोसेस |



Aadhaar Card को अपने मोबाइल नंबर के साथ इस तरह करें लिंक, आधार की ऑनलाइन सेवाओं के लिए है बेहद जरूर

वैसे तो आधार कार्ड (Aadhaar Card) के लिए नामांकन कराते समय ही मोबाइल नंबर UIDAI के साथ रजिस्टर करवा लेना चाहिए। लेकिन अगर मोबाइल नंबर रजिस्टर्ड नहीं है या नया मोबाइल नंबर आधार कार्ड के साथ रजिस्टर्ड करवाना हो, तो कार्डधारक स्थायी नामांकन केंद्र जाकर ऐसा करवा सकते हैं। आधार के साथ मोबाइल नंबर रजिस्टर या अपडेट कराने के लिए कोई भी दस्तावेज जमा कराने की आवश्यकता नहीं होती है। आइए जानते हैं कि इसकी क्या प्रक्रिया है।

स्टेप 1. सबसे पहले भारतीय विशिष्ट पहचान प्राधिकरण (UIDAI) की वेबसाइट https://www.uidai.gov.in/ पर जाना होगा और 'माय आधार' टैब पर जाकर 'लोकेट एन एनरोलमेंट सेंटर' पर क्लिक करना होगा।

स्टेप 2. अब एक पेज खुलेगा जहां से राज्य, पिन कोड या अपना पता दर्ज कर कार्डधारक अपने निकटतम नामांकन केंद्र का पता प्राप्त कर सकते हैं।

स्टेप 3. इसके बाद कार्डधारक को अपने निकटतम नामांकन केंद्र जाना होगा और आधार सुधार फॉर्म भरना होगा।

स्टेप 4. इस आधार सुधार फॉर्म में कार्डधारक को अपना मोबाइल नंबर दर्ज करना होगा। यह वह एक्टिव मोबाइल नंबर होना चाहिए, जिसे कार्डधारक आधार के साथ अपडेट करवाना चाहता है।

स्टेप 5. अब कार्डधारक को यह आधार सुधार फॉर्म सबमिट करना होगा और प्रमाणिकरण के लिए अपने बॉयोमेट्रिक्स देने होंगे।

स्टेप 6. इसके बाद कार्डधारक को एक स्लिप दी जाएगी। इस स्लिप में एक अपडेट रिक्वेस्ट नंबर (Enrolment no) दर्ज होगा।

Book or order Aadhaar Appointment and Aadhaar PVC Smart Card.

Order Aadhaar PVC Smart card Rs-50/ 

Note- 3 copy order karne par free home delivery Only Ranchi Kanke Road,

Appointment aadhaar update and new .
Charge Rs.50

Call or Whatsapp-8863000043,





Aadhaar Update

आधार कार्ड में अपडेट कराना है नया एड्रेस पर डॉक्यूमेंट नहीं है तो इन तरीकों का कर सकते हैं इस्तेमाल
आधार कार्ड में बिना एड्रेस प्रूफ के अपना नया एड्रेस अपडेट कराना है तो आपको यूआईडीएआई ने कुछ ऑप्शन मुहैया कराए हैं.
आधार कार्ड में अपडेट कराना है नया एड्रेस पर डॉक्यूमेंट नहीं है तो इन तरीकों का कर सकते हैं इस्तेमाल

नई दिल्लीः अगर आपको अपने आधार कार्ड में एड्रेस अपडेट कराना है पर आपके पास कोई डॉक्यूमेंट नहीं है तो आपको मुश्किल लगेगा कि कैसे इस काम को किया जाए. हालांकि आधार जारी करने वाली संस्था यूआईडीएआई आपको ये सुविधा देती है कि आप बिना किसी डॉक्यूमेंट के भी आधार कार्ड में एड्रेस अपडेट करा सकते हैं. इसके लिए आपको क्या-क्या करना होगा, इसकी जानकारी यहां पर दी जा रही है.

बिना किसी डॉक्यूमेंट के आधार कार्ड में एड्रेस अपडेट ऐसे कराएं
यूआईडीएआई की वेबसाइट uidai.gov.in पर लॉग ऑन करने के बाद आपको माई आधार सेक्शन में अपडेट योर आधार का मेन्यू मिल जाएगा. इसी में जाने पर आपको ‘रिक्वेस्ट फॉर आधार वैलिडेशन लेटर’ का ऑप्शन मिलेगा. इसके बाद एक नया पेज खुलेगा जहां 12 अंक की आधार संख्या या 16 अंक की वर्चुअल आईडी के साथ कैप्चा कोड डालना होगा और सेंड ओटीपी पर क्लिक करना होगा.

इसके बाद आपके रजिस्टर्ड मोबाइल नंबर पर भेजे गए 6 अंक के ओटीपी या आठ अंक के टीओटीपी को डालने के बाद लॉगिन बटन पर क्लिक कीजिए. इसके बाद आपको वेरिफायर यानी जो आपके पते को वैरिफाई करेंगे उस परिवार या व्यक्ति का विवरण डालना होगा. इसके तहत जो आपका एड्रेस की वैरिफाई करेंगे उस शख्स का आधार नंबर डालना होगा.

वेरिफाई करने वाले शख्स को उसके रजिस्टर्ड मोबाइल संख्या पर एक लिंक मिलेगा जिसपर क्लिक करने के साथ ही उसे एक ओटीपी मिलेगा जिसे आधार पोर्टल पर ओटीपी और कैप्चा कोड डालना होगा. वैरिफिकेशन करने के साथ ही आपको एसएमएस के जरिए सर्विस रिक्वेस्ट नंबर मिलेगा जिसके बाद आपको एसआरएन नंबर के साथ लॉगइन करके डिक्लियेरेशन पर टिक करना होगा और सबमिट बटन दबाना होगा.

इसके बाद लोकल लैंग्वेज में एड्रेस को एडिट करते ही सेव बटन पर क्लिक करना पड़ेगा. उसके बाद डिक्लियेरेशन पर टिक करने के बाद सबमिट करें. अब वैरिफाई करने वाले के पते पर पोस्ट के जरिए एक एड्रेस वैलिडेशन लैटर मिलेगा जिसमें एक सीक्रेट कोड हासिल होगा. ये मिलने के बाद आपको यूआईडीएआई के ऑनलाइन एड्रेस अपडेट पोर्टल पर लॉगइन करना है, सीक्रेट कोड के जरिए एड्रेस अपडेट करना है और नए एड्रेस को चेक करने के बाद आखिरी रिक्वेस्ट डालनी होगी. इसके बाद आपको एक यूआरएन मिलेगा जिसके जरिए आपके आवेदन की स्थिति पता लगाई जा सकती है.




Aadhaar Update

 <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="view...