MR SIP body {margin:0;font-family:Arial, sans-serif;} header { display:flex;justify-content:space-between;align-items:center; padding:10px 20px;flex-wrap:wrap; } .header-left {display:flex;align-items:center;gap:10px;} .header-left img {width:50px;height:auto;} .header-text h1 {font-size:22px;margin:0;font-weight:900;} .header-text p {font-size:10px;margin:0;font-weight:700;color:#666;} /* ✅ Desktop view ke liye search box center */ .header-search { flex:1; max-width:450px; margin:0 20px; position:relative; display:flex; order:2; /* ✅ beech me fix */ } .header-search input { width:100%;padding:8px 40px 8px 12px;border:1px solid #ddd; border-radius:4px;font-size:14px;transition:border .3s; } .header-search input:focus {border-color:#00e0c6;outline:none;} .header-search button { position:absolute;right:5px;top:50%;transform:translateY(-50%); border:none;font-size:16px;color:#fff;cursor:pointer; padding:6px 12px;border-radius:4px; background:#00e0c6; /* ✅ changed */ } .search-results { position:absolute;top:110%;left:0;width:100%;background:#fff; border:1px solid #ddd;border-radius:4px;box-shadow:0 2px 6px rgba(0,0,0,.1); max-height:250px;overflow-y:auto;display:none;z-index:1000; } .search-results li { list-style:none;padding:8px 12px;font-size:14px;cursor:pointer; transition:background .2s; } .search-results li:hover { background:#00e0c6; /* ✅ changed */ color:#fff; } .header-social {display:flex;gap:12px;font-size:18px;} .header-social a {color:#333;text-decoration:none;transition:color .3s;} .header-social a:hover {color:#00e0c6;} .header-actions {display:flex;align-items:center;gap:8px;order:3;} .header-actions button { padding:8px 14px;border:none;border-radius:4px;cursor:pointer;font-size:14px; } .quick-btn {background:#f5f5f5;color:#000;border:1px solid #ddd;} .login-btn {background:#002d62;color:#fff;} /* ✅ Toggle */ .menu-toggle { font-size:22px;cursor:pointer;margin-left:8px; color:#002d62;font-weight:900; display:none;background:none;border:none;box-shadow:none; } .menu-toggle i {pointer-events:none;} .menu-toggle.active {color:#00e0c6;} /* ✅ toggle active color */ /* Nav */ nav {background:#fff;} nav ul { list-style:none;margin:0;padding:0; display:flex;gap:25px;justify-content:center;flex-wrap:wrap; } nav ul li {position:relative;} nav ul li a { text-decoration:none;color:#000;font-size:15px;font-weight:bold; padding:5px 8px;border-radius:6px; transition:background .3s,color .3s,transform .2s; display:inline-block; } nav ul li a:hover { color:#fff; background:#00e0c6; /* ✅ changed */ transform:scale(1.05); } nav ul li ul { display:none;position:absolute;top:100%;left:0; background:#fff;list-style:none;padding:10px 0;min-width:180px;z-index:10; } nav ul li:hover ul {display:block;} nav ul li ul li a { display:block;font-size:14px;font-weight:bold; padding:6px 15px;border-radius:4px; } nav ul li ul li a:hover { color:#fff; background:#00e0c6; /* ✅ changed */ } /* Responsive */ @media(max-width:991px){ header {flex-direction:column;align-items:center;} .header-left {order:1;} .header-search { order:0; width:100%; margin:10px 0; max-width:100%; } .header-actions {order:2;} .menu-toggle{display:inline-block;} nav ul{flex-direction:column;align-items:flex-start;gap:10px; padding:10px 20px;display:none;} nav ul.show{display:flex;animation:slideDown .3s ease;} nav ul li ul{position:static;padding:5px 0;} .header-social { margin-top:10px;display:flex;justify-content:center;width:100%; } } @keyframes slideDown{ from{opacity:0;transform:translateY(-10px);} to{opacity:1;transform:translateY(0);} }
MR SIP Logo

MR SIP

Invest today for tomorrow

// ✅ Mobile menu toggle const toggle=document.querySelector(‘.menu-toggle’); const navMenu=document.querySelector(‘nav ul’); toggle.addEventListener(‘click’,()=>{ navMenu.classList.toggle(‘show’); toggle.classList.toggle(‘active’); // ✅ toggle color change }); // ✅ Search functionality const searchInput=document.getElementById(‘menuSearch’); const searchBtn=document.getElementById(‘searchBtn’); const resultsBox=document.getElementById(‘searchResults’); const menuLinks=document.querySelectorAll(‘#mainMenu a’); // Footer menu links from given footer code const footerLinksData=[ {name:”Equity Funds”,href:”https://mrsip.in/668-2/”}, {name:”Debt Funds”,href:”#”}, {name:”Hybrid Funds”,href:”#”}, {name:”Tax Saver Fund (ELSS)”,href:”#”}, {name:”Index Funds”,href:”#”}, {name:”Downloads”,href:”#”}, {name:”Non Business Days”,href:”#”}, {name:”NAV History”,href:”#”}, {name:”IDCW”,href:”#”}, {name:”Total Expense Ratio”,href:”#”}, {name:”Mandatory Disclosures”,href:”#”}, {name:”Schemes ISIN codes”,href:”#”}, {name:”GSTIN Details”,href:”#”}, {name:”Facilities Offered”,href:”#”}, {name:”Numerical Examples”,href:”#”}, {name:”GST Registration”,href:”#”}, {name:”GST Filing”,href:”#”}, {name:”Income Tax Filing”,href:”#”}, {name:”TDS Filing”,href:”#”}, {name:”Company Registration (LLP, PVT.LTD)”,href:”#”}, {name:”SIP Calculator”,href:”#”}, {name:”SWP Calculator”,href:”#”}, {name:”Lumpsum Calculator”,href:”#”}, {name:”Mutual Fund Returns Calculator”,href:”#”}, {name:”EMI Calculator”,href:”#”} ]; function searchMenu(){ const term=searchInput.value.trim().toLowerCase(); resultsBox.innerHTML=”; if(term.length{ const text=link.textContent.toLowerCase(); if(text.includes(term) && !seen.has(text)){ matches.push({name:link.textContent,href:link.getAttribute(‘href’)}); seen.add(text); } }); footerLinksData.forEach(item=>{ const text=item.name.toLowerCase(); if(text.includes(term) && !seen.has(text)){ matches.push(item); seen.add(text); } }); if(matches.length>0){ matches.forEach(item=>{ const li=document.createElement(‘li’); li.textContent=item.name; li.onclick=()=>{window.location.href=item.href;}; resultsBox.appendChild(li); }); resultsBox.style.display=’block’; } else { resultsBox.style.display=’none’; } } searchInput.addEventListener(‘input’,searchMenu); searchBtn.addEventListener(‘click’,searchMenu); document.addEventListener(‘click’,(e)=>{ if(!document.querySelector(‘.header-search’).contains(e.target)){ resultsBox.style.display=’none’; } });
MR SIP Responsive Slider | MR SIP Investments body, html { margin: 0; padding: 0; width: 100%; } .slider { position: relative; width: 100%; height: 80vh; /* Default desktop height */ overflow: hidden; background: #000; /* Black for safety background */ border-radius: 20px; /* Rounded corners */ display: flex; justify-content: center; align-items: center; } .slider img { max-width: 100%; max-height: 100%; width: auto; height: auto; opacity: 0; transition: opacity 1s ease-in-out; border-radius: 20px; /* Images also rounded */ background: #000; position: absolute; } .slider img.active { opacity: 1; z-index: 1; } /* Modern Circle Buttons */ .btn { position: absolute; top: 50%; transform: translateY(-50%); background: #fff; color: #000; border: none; font-size: 2rem; font-weight: bold; cursor: pointer; padding: 12px 16px; border-radius: 50%; z-index: 2; box-shadow: 0px 4px 8px rgba(0,0,0,0.3); transition: background 0.3s, transform 0.2s; } .btn:hover { background: #f1f1f1; transform: scale(1.1); } .prev { left: 15px; } .next { right: 15px; } /* Tablet View (768px – 1024px) */ @media (min-width: 768px) and (max-width: 1024px) { .slider { height: 70vh; } } /* Mobile View (max 767px) */ @media (max-width: 767px) { .slider { height: 55vh; } .btn { font-size: 1.5rem; padding: 8px 10px; } } /* Large Desktop (min 1200px) */ @media (min-width: 1200px) { .slider { height: 90vh; } }
Systematic Investment Plan for Wealth Creation by MR SIP Lumpsum Investment Strategy with MR SIP for Long Term Goals Child Education Planning through Mutual Funds by MR SIP Retirement Planning Solutions with MR SIP Dream Home Investment Planning with MR SIP SIPs Dream Car Investment through Systematic Investment Plan Health and Life Insurance Options from MR SIP Portfolio Review and Wealth Creation Services by MR SIP
let slides = document.querySelectorAll(“.slider img”); let currentIndex = 0; let slideInterval; const intervalTime = 4000; // 4 seconds function showSlide(index) { slides.forEach((slide, i) => { slide.classList.remove(“active”); if (i === index) slide.classList.add(“active”); }); currentIndex = index; } function nextSlide() { let newIndex = (currentIndex + 1) % slides.length; showSlide(newIndex); } function prevSlide() { let newIndex = (currentIndex – 1 + slides.length) % slides.length; showSlide(newIndex); } function startSlider() { slideInterval = setInterval(nextSlide, intervalTime); } function stopSlider() { clearInterval(slideInterval); } // Start on load startSlider(); // Pause on hover const slider = document.getElementById(“slider”); slider.addEventListener(“mouseenter”, stopSlider); slider.addEventListener(“mouseleave”, startSlider);
Features Section body { font-family: ‘Arial’, sans-serif; background: #fff; margin: 0; padding: 0; } .features { display: flex; justify-content: space-between; align-items: stretch; padding: 30px 40px; background: #fff; } .feature-box { flex: 1; text-align: left; padding: 0 20px; border-right: 1px solid #e5e5e5; } .feature-box:last-child { border-right: none; } .feature-box img { width: 50px; /* icon size */ margin-bottom: 12px; display: block; } .feature-box h3 { font-size: 16px; font-weight: 700; /* bold heading */ margin: 0 0 8px; color: #000; } .feature-box p { font-size: 14px; color: #666; margin: 0; line-height: 1.4em; font-weight: 400; /* normal thin text */ } /* NEW badge style (for Starter Kit) */ .new-badge { display: inline-block; background: #ff6b3d; color: #fff; font-size: 10px; font-weight: bold; padding: 2px 6px; border-radius: 3px; margin-left: 6px; text-transform: uppercase; } /* Responsive (Mobile) */ @media (max-width: 768px) { .features { flex-direction: column; padding: 20px; } .feature-box { border-right: none; border-bottom: 1px solid #e5e5e5; padding: 15px 0; } .feature-box:last-child { border-bottom: none; } }
Investment Ideas

Investment Ideas

Curated selection of funds and plans for you

Tools & Calculators

Tools & Calculators

Wide range of tools to help you with your investments

Register Mandate

Register Mandate

For hassle free recurring investments

Check NAV

Check NAV

Get the latest NAV of all schemes

Starter Kit

Starter Kit NEW INVESTOR?

Everything you need to plan your investment

Get Statements

Get Statements

Get your statements mailed to your registered email ID

MR SIP – Apne Dreams Ko Skip Nahi SIP Karo body{ margin:0; font-family:Arial, sans-serif; background:#fff; color:#333; } .hero{ display:flex; align-items:center; justify-content:space-between; background:#00275e; padding:60px 10%; color:#fff; flex-wrap:wrap; } .hero-text{ flex:1; min-width:280px; margin-bottom:30px; } .hero-text h1{ font-size:clamp(34px,5vw,70px); font-weight:900; line-height:1.4; background:linear-gradient(90deg, red, orange, yellow, lime, cyan, blue, violet); -webkit-background-clip:text; -webkit-text-fill-color:transparent; text-shadow:4px 4px 10px rgba(0,0,0,0.8),0 0 20px rgba(255,255,255,0.8),0 0 40px rgba(255,255,255,0.6); } .hero-text h1 span{ display:block; margin-bottom:28px; } .hero-image{ flex:1; min-width:250px; text-align:center; } .hero-image img{ width:100%; max-width:320px; border-radius:25px; } .form-section{ background:#fff; padding:30px; max-width:900px; margin:-50px auto 40px auto; border-radius:12px; box-shadow:0 4px 15px rgba(0,0,0,0.15); position:relative; z-index:10; } .form-section h2{ font-size:clamp(18px,2.5vw,22px); margin-bottom:20px; font-weight:600; } .form-row{ display:flex; gap:15px; margin-bottom:20px; flex-wrap:wrap; } .form-row input{ flex:1; min-width:200px; padding:12px 15px; border-radius:6px; border:1px solid #ccc; font-size:14px; } .submit-btn{ background:#c8102e; color:white; padding:12px 30px; border:none; border-radius:6px; font-size:16px; font-weight:bold; cursor:pointer; transition:0.3s; width:100%; max-width:200px; } .submit-btn:disabled{ opacity:0.6; cursor:default; } .form-message{ margin-top:12px; padding:12px 15px; border-radius:8px; display:none; } .form-message.success{ background:#e6ffef; color:#064e2a; border:1px solid #8af0b0; display:block; } .form-message.error{ background:#fff0f0; color:#6b0b0b; border:1px solid #f1a0a0; display:block; } .error-text{ color:#b00020; font-size:12px; margin-top:5px; display:none; } @media(max-width:1024px){ .hero{ padding:40px 6%; } } @media(max-width:768px){ .hero{ flex-direction:column; text-align:center; } .hero-text{ margin-bottom:20px; } .hero-image img{ max-width:250px; } } @media(max-width:480px){ .hero-text h1{ font-size:30px; } .hero-image img{ max-width:200px; } }

Apne Dreams Ko SKIP Nahi SIP Karo!

Hero Image

Want to know more about Systematic Investment Plans

Please enter a valid name (letters only).
Enter a valid 10-digit Indian mobile number.
Please enter a valid email address.

By entering your personal details, you hereby authorize MR SIP and/or its authorized service provider(s) to contact you and this will override any NDNC registration made by you.

(function(){ const form = document.getElementById(‘leadForm’); const submitBtn = document.getElementById(‘submitBtn’); const msgBox = document.getElementById(‘formMessage’); const nameInput = form.querySelector(‘[name=”name”]’); const phoneInput = form.querySelector(‘[name=”phone”]’); const emailInput = form.querySelector(‘[name=”email”]’); const nameError = document.getElementById(‘nameError’); const phoneError = document.getElementById(‘phoneError’); const emailError = document.getElementById(’emailError’); function validateName() { const nameRegex = /^[A-Za-z\s]+$/; if (!nameRegex.test(nameInput.value.trim())) { nameError.style.display = ‘block’; return false; } nameError.style.display = ‘none’; return true; } function validatePhone() { const phoneRegex = /^[6-9]\d{9}$/; if (!phoneRegex.test(phoneInput.value.trim())) { phoneError.style.display = ‘block’; return false; } phoneError.style.display = ‘none’; return true; } function validateEmail() { const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; if (!emailRegex.test(emailInput.value.trim())) { emailError.style.display = ‘block’; return false; } emailError.style.display = ‘none’; return true; } form.addEventListener(‘submit’, async function(e){ e.preventDefault(); const validName = validateName(); const validPhone = validatePhone(); const validEmail = validateEmail(); if (!validName || !validPhone || !validEmail) { return; } if (form.querySelector(‘[name=”_gotcha”]’).value) { return; } const fd = new FormData(form); if (fd.get(’email’)) fd.set(‘_replyto’, fd.get(’email’)); submitBtn.disabled = true; const origText = submitBtn.textContent; submitBtn.textContent = ‘Sending…’; try { const res = await fetch(form.action, { method: form.method, body: fd, headers: { ‘Accept’: ‘application/json’ } }); if (res.ok) { msgBox.className = ‘form-message success’; msgBox.textContent = ‘Thank you — your details have been submitted successfully!’; form.reset(); } else { let data; try { data = await res.json(); } catch(e){ data = null; } msgBox.className = ‘form-message error’; msgBox.textContent = (data && data.error) ? data.error : ‘Submission failed — please try again later.’; } } catch (err) { msgBox.className = ‘form-message error’; msgBox.textContent = ‘Network error — please check your connection and try again.’; } finally { submitBtn.disabled = false; submitBtn.textContent = origText; } }); nameInput.addEventListener(‘input’, validateName); phoneInput.addEventListener(‘input’, validatePhone); emailInput.addEventListener(‘input’, validateEmail); })();
Mutual Fund & Insurance Partners | MR SIP body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; margin: 0; padding: 0; background: #f9f9f9; } /* Heading */ .section-heading { text-align: center; font-size: 22px; font-weight: 700; margin: 32px 16px 16px; color: #222; } .logo-slider { width: 100%; max-width: 900px; margin: 0 auto 40px; overflow: hidden; position: relative; border-radius: 16px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); background: #fff; } .logo-track { display: flex; transition: transform 0.6s ease; will-change: transform; } .logo-slide { flex: 0 0 100%; display: grid; place-items: center; padding: 28px 20px; box-sizing: border-box; text-align: center; } .logo-figure { display: grid; gap: 12px; justify-items: center; width: 100%; height: 100%; } .logo-figure img { max-width: 100%; max-height: 160px; object-fit: contain; background: #f7f7f7; border-radius: 10px; padding: 12px; } .logo-figure img[style*=”visibility: hidden”] { display: none; } .brand-name { font: 600 18px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #222; letter-spacing: 0.2px; } .dots { position: absolute; bottom: 8px; left: 0; right: 0; display: flex; gap: 6px; justify-content: center; padding: 8px 0 12px; } .dot { width: 8px; height: 8px; border-radius: 50%; background: #d7d7d7; transition: transform 0.2s ease, background 0.2s ease; } .dot.active { background: #111; transform: scale(1.15); }

Your Trusted Mutual Fund / Insurance Distributor, Partnered With 🤝

NJ Wealth Mutual Fund logo
NJ Wealth
One Centricity Financial logo
One Centricity
HDFC Ergo Health Insurance logo
HDFC Ergo Health Insurance
HDFC Life Insurance logo
HDFC Life Insurance
Kotak Life Insurance logo
Kotak Life Insurance
Bajaj Allianz Insurance logo
Bajaj Allianz
Axis MAX Life Insurance logo
Axis MAX Life Insurance
ICICI Prudential Insurance logo
ICICI Prudential
Care Health Insurance logo
Care Health Insurance
Manipalcigna Health Insurance logo
Manipalcigna Health Insurance
Star Health Insurance logo
Star Health Insurance
Niva Bupa Health Insurance logo
Niva Bupa Health Insurance
Tata AIG Insurance logo
Tata AIG Insurance
(function() { const track = document.getElementById(‘logoTrack’); const slider = document.getElementById(‘partnerSlider’); const slides = Array.from(track.children); const total = slides.length; const dotsWrap = document.getElementById(‘dots’); const dots = slides.map((_, i) => { const d = document.createElement(‘span’); d.className = ‘dot’ + (i === 0 ? ‘ active’ : ”); dotsWrap.appendChild(d); return d; }); let index = 0; let timer = null; const intervalMs = 3000; function goTo(i) { index = (i + total) % total; track.style.transform = `translateX(-${index * 100}%)`; dots.forEach((d, j) => d.classList.toggle(‘active’, j === index)); } function start() { stop(); timer = setInterval(() => goTo(index + 1), intervalMs); } function stop() { if (timer) clearInterval(timer); timer = null; } slider.addEventListener(‘mouseenter’, stop); slider.addEventListener(‘mouseleave’, start); goTo(0); start(); })();
MR SIP Footer body { margin: 0; background: #fff; /* Page default white */ } /* FOOTER (Menus + Social) */ .footer { background-color: #0d1b2a; color: #e0e0e0; padding: 40px 20px; font-family: Arial, sans-serif; } .footer h5 { color: #ffffff; font-weight: 600; margin-bottom: 15px; } .footer ul { list-style: disc; /* ✅ Show dots */ padding-left: 18px; /* ✅ Proper alignment */ } .footer a { color: #b0bec5; text-decoration: none !important; font-size: 14px; display: inline-block; transition: 0.3s ease; } .footer a:hover { color: #00e0c6; font-weight: 600; /* ✅ Hover thickness */ } .menu-box { background: #112a45; padding: 25px 30px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); } .footer .contact-info p { margin: 5px 0; font-size: 14px; color: #b0bec5; } /* SOCIAL LINKS */ .footer-top { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; padding: 15px 0; margin-top: 20px; border-top: 2px solid rgba(255,255,255,0.3); } .footer-section { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; } .footer-section span { font-size: 14px; margin-right: 10px; } .social-links { display: flex; align-items: center; gap: 6px; } .social-links a img { height: 32px; width: 32px; border-radius: 6px; } /* COPYRIGHT SECTION (OUTSIDE FOOTER) */ .footer-bottom { text-align: center; padding: 15px; font-size: 14px; background: #fff; /* White background */ color: #333; /* Dark text */ border-top: 2px solid #ccc; /* Divider line */ } /* ✅ FIX: Validate Button Style */ .btn-validate { background-color: #007bff; color: #fff !important; border: none; padding: 6px 12px; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; transition: 0.3s ease; } .btn-validate:hover { background-color: #0056b3; } .btn-validate:disabled { background-color: #6c757d !important; cursor: not-allowed; opacity: 1 !important; /* Prevent blur effect */ }
{ “@context”: “https://schema.org”, “@type”: “Organization”, “name”: “MR SIP”, “url”: “https://www.mrsip.in”, “logo”: “https://mrsip.in/wp-content/uploads/2025/08/cropped-cropped-sip_logo-removebg-preview.png”, “sameAs”: [ “https://www.facebook.com/share/176x4cc867/”, “https://www.instagram.com/mutualfund_sahi_hai?igsh=MW90cTd2NHVvaHNsMg==”, “https://youtube.com/@mr.sipformutualfund?si=MSvuXYqTWRRdfkgH”, “https://www.threads.com/@mutualfund_sahi_hai”, ] }

Scroll to Top