

<!DOCTYPE html>

<html lang="en">
<head>
    <!-- Google Tag Manager -->

<script>
        (function (w, d, s, l, i) {
            w[l] = w[l] || []; w[l].push({
                'gtm.start':

                    new Date().getTime(), event: 'gtm.js'
            }); var f = d.getElementsByTagName(s)[0],

                j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =

                    'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);

        })(window, document, 'script', 'dataLayer', 'GTM-5WMVFZ2');</script>

<!-- End Google Tag Manager -->


    <style type="text/css">

        table.noData thead,
        table.noData tbody {
            display: block;
        }

        table.noData tr {
            display: grid;
            grid-auto-flow: column;
        }

            table.noData tr td {
                text-align: center;
            }

        .field-validation-error {
            color: red !important;
        }

            .field-validation-error span {
                color: red !important;
            }

        .moretext {
            display: none;
        }

        .sk2footer .part1 {
            position: relative;
        }

            .sk2footer .part1 .fText {
                position: absolute;
                bottom: 5px;
                left: 0;
                text-align: center;
                width: 100%;
            }

                .sk2footer .part1 .fText p {
                    font-size: 10px;
                    color: #fff;
                    margin-bottom: 0;
                }

        .txt-transform h6 {
            text-transform: none !important;
        }


        .homepg3 .homesection1 label {
            display: block;
            position: relative;
            padding-left: 25px;
            margin: auto;
            cursor: pointer;
            color: #757575;
            font-size: 11px;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .homepg3 .homesection1 label input {
                position: absolute;
                opacity: 0;
                cursor: pointer;
                height: 0;
                width: 0;
            }

        .homepg3 .homesection1 .checkmark {
            position: absolute;
            top: 0;
            left: 0;
            height: 16px;
            width: 16px;
            border-radius: 50%;
            background-color: #eee;
        }

        header {
            height: 68px;
        }

        .diyform label {
            font-family: "canada-type-gibson";
            display: block;
            position: relative;
            padding-left: 25px;
            margin: auto;
            cursor: pointer;
            color: #757575;
            font-size: 11px;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .diyform label a {
                color: orangered;
                text-decoration: none;
            }

            .diyform label input {
                position: absolute;
                opacity: 0;
                cursor: pointer;
                height: 0;
                width: 0;
            }

                .diyform label input:checked ~ .checkmark {
                    background-color: #043B72;
                }

        .diyform .checkmark {
            position: absolute;
            top: 0;
            left: 0;
            height: 16px;
            width: 16px;
            border-radius: 50%;
            background-color: #eee;
        }

        .diyform label input:checked ~ .checkmark:after {
            display: block;
        }

        .diyform label .checkmark:after {
            left: 6px;
            top: 2px;
            width: 3.6px;
            height: 9px;
            border: solid white;
            border-width: 0 2px 2px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }
    </style>

    



<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta name="robots" content="index">

    <meta name="robots" content="follow">




    <link rel="canonical" href="https://www.sharekhan.com/scripts/jslibrary/slick-theme.min.css" />

















    
    <link rel="icon" type="image/x-icon" href="/favicon.ico">
    <link rel="icon" type="image/x-icon" sizes="32x32" href="/favicon-32x32.ico">
    <link rel="icon" type="image/x-icon" sizes="48x48" href="/favicon-48x48.ico">

    
    <script src="/Content/smart-search/app/bundle.js" defer></script>
    <link rel="preconnect" href="https://fonts.gstatic.com" />
    <link rel="preload" href="http://localhost:3001/chart/tradingviewchart.jsp" as="document">
    <link rel="stylesheet" href="/Content/smart-search/assets/css/bootstrap-custom.css">
    <link rel="stylesheet" href="/Content/smart-search/assets/css/app.css">
    <link rel="stylesheet" href="/Content/smart-search/assets/css/hint.min.css">
    <link rel="stylesheet" href="/Content/smart-search/assets/css/font.opensans.css">
    <link rel="manifest" href="/Content/smart-search/assets/manifest.webmanifest">
    


<link href="https://code.jquery.com/ui/1.13.2/themes/ui-lightness/jquery-ui.css" rel="stylesheet"/>
    <script async src="https://cse.google.com/cse.js?cx=0767bb5fc6fcd4eb0"></script>
    <script>

        function dataTableFilter() {
            var table = $('.tableSort .tableFilter > table').DataTable({
                "bProcessing": false,
                "sAutoWidth": false,
                "bDestroy": true,
                "sPaginationType": "bootstrap", // full_numbers
                "iDisplayStart ": 10,
                "iDisplayLength": 10,
                "bPaginate": false, //hide pagination
                "bFilter": false, //hide Search bar
                "bInfo": false, // hide showing entries
                "order": [[3, 'desc']]
            });

            $('.dataTable').removeAttr('style');

        }

        function SanitizerRedirectUrl(res) {
            var hrf = "";
            try {
                const myUrl = new URL(res);
                var host = myUrl.hostname;
                var str2 = "sharekhan.com";
                if (host.indexOf(str2) != -1) {
                    hrf = res;
                }
            }
            catch (err) {

            }

            return hrf;
        }

        function postReq(path, params, method) {
            const form = document.createElement('form');
            form.method = method;
            form.action = path;

            for (var key in params) {
                if (params.hasOwnProperty(key)) {
                    const hiddenField = document.createElement('input');
                    hiddenField.type = 'hidden';
                    hiddenField.name = key;
                    hiddenField.value = params[key];

                    form.appendChild(hiddenField);
                }
            }
            document.body.appendChild(form);
            form.submit();
        }
    </script>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>

    <script src="/bundles/Comman-header-js?v=Tt1lB2CilAO8aCZ8hH-QW6U5k9VI_jwT-ak6x3xyT_g1"></script>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/dompurify/3.0.6/purify.min.js"></script>


    <link href="https://cdn.jsdelivr.net/animatecss/3.5.2/animate.min.css" rel="stylesheet"/>

    <link href="/bundles/Comman-css?v=-jxs5N_X1um2DhJCLyICGwL7yGmyKLQDOlUr04T5Kjg1" rel="stylesheet"/>

    <link rel="stylesheet" href="/content/css/styleNewDesign219.css" />
     
    <style>
        .top-links a {
            font-size: 10.5px;
        }

        #navbar-toggle {
            margin-left: 12px;
        }

        .visitOldRes {
            position: relative;
            height: 30px;
            background: #F58220;
            text-align: center;
            align-items: center;
            justify-content: center;
            display: none;
        }

            .visitOldRes a {
                color: #FFFFFF;
                font-size: 12px;
                letter-spacing: 0.3px;
                font-family: RedHatDisplay-Medium;
            }

            .visitOldRes .btn-close {
                position: absolute;
                right: 7px;
                top: 50%;
                transform: translateY(-50%);
            }

        @media (min-width: 991px) {
            .top-links {
                padding-top: 7px;
            }

            .menu:hover ~ .login-link:after {
                bottom: -12px;
            }

            .visitOld {
                padding: 4px 17px 5px 18px !important;
                background: #EEEEEE;
                border: none !important;
                border-radius: 12px;
                font-size: 11px !important;
                letter-spacing: 0.28px;
                margin-right: 5px;
                display: inline !important;
            }

            .visitOldRes {
                display: none !important;
            }
        }

        @media only screen and (max-width: 767px) {
            .visitOldSpace {
                margin-bottom: 30px;
            }
        }

        .marquee {
            height: 28px;
            overflow: hidden;
            position: relative;
        }

            /* nested div inside the container */
            .marquee div {
                display: block;
                width: 200%;
                position: absolute;
                overflow: hidden;
                animation: marquee 20s linear infinite;
            }

            /* span with text */
            .marquee span,
            .marquee p {
                float: left;
                width: 100%;
                text-wrap: nowrap;
            }

        /* keyframe */
        @keyframes marquee {
            0% {
                left: 100%;
            }

            100% {
                left: -200%;
            }
        }
    </style>
    <script>
        function removeOldWeb() {
            var element = document.getElementById("visitOldRes");
            element.classList.remove("d-flex");
            var header = document.getElementById("header");
            header.classList.remove("visitOldSpace");
        }
    </script>
</head>
<body>
    <!-- Google Tag Manager (noscript) -->

<noscript>
    <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5WMVFZ2"
            height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>

<!-- End Google Tag Manager (noscript) -->


    

<style>
    @font-face {
        font-family: "canada-type-gibson";
        src: url("https://use.typekit.net/af/af6121/0000000000000000774d5006/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/af6121/0000000000000000774d5006/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/af6121/0000000000000000774d5006/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
        font-display: swap;
        font-style: normal;
        font-weight: 400;
        font-stretch: normal;
    }

    .top-links a:nth-child(1) {
        color: #fff;
        background: #F58220;
        padding: 5px;
        text-decoration: none;
    }

        .top-links a:nth-child(1):hover {
            text-decoration: underline;
        }

    .top-links a.loginTrade {
        border: 0;
        font-size: 11px;
        font-family: "RedHatDisplay-Bold";
        color: #043B72;
        padding-top: 5px;
    }

    .top-links a.tradeInvest {
        border: 0;
        font-size: 11px;
        font-family: "RedHatDisplay-Medium";
        background-color: #043B72;
        color: #fff;
        padding: 4px 8px;
        border-radius: 4px;
    }

    .searchHoladr .searchfilterList {
        margin: 0;
        padding: 0;
        position: absolute;
        width: 160px;
        background: var(--bgWhite);
        font-size: 12px;
        left: 0;
        -webkit-box-shadow: 0 0 7px 0 rgba(0,0,0,.2);
        -moz-box-shadow: 0 0 7px 0 rgba(0,0,0,.2);
        box-shadow: 0 0 7px 0 rgba(0,0,0,.2);
        border-bottom: 3px solid #98eccb;
        border-radius: 2px;
        -moz-border-radius: 2px;
        -webkit-border-radius: 2px;
        z-index: 2;
        top: 38px;
    }

    .searchHoladr .smart-search-list li.list-group-item {
        list-style: none;
        width: 100%;
        min-width: 100%;
        font-family: "canada-type-gibson";
    }

    .searchHoladr .searchfilterList li {
        list-style: none;
        width: 100%;
        min-width: 100%;
        font-family: "canada-type-gibson";
        padding: 0;
    }

    .searchHoladr .smart-search-list li.list-group-item.list-group-active {
        color: #F58220;
    }

    .searchHoladr .searchfilterList li a {
        display: block;
        font-size: 12px;
        padding: 8px 15px;
        border-left: 3px solid transparent;
        text-decoration: none;
        border-bottom: 1px solid var(--allborder);
        margin: 0;
        font-family: "canada-type-gibson";
        background: transparent;
    }

    .smart-search-list li.list-group-item a {
        padding: 0 !important;
        margin: 0;
        font-family: "canada-type-gibson";
        color: #F58220;
        text-decoration: none;
        background: transparent;
    }

    .searchicon .searchwrap:before {
        content: " ";
        background: url(../images/polygon.svg);
        position: absolute;
        top: -6px;
        height: 6px;
        width: 15px;
        right: 15px;
    }

    .searchwrap {
        position: absolute;
        background: #F58220;
        box-shadow: 0 3px 6px #ccc;
        border-radius: 6px;
        padding: 10px;
        right: -5px;
        top: 50px;
        display: none;
        z-index: 9999;
    }

        .searchwrap .searchHoladr {
            background: #fff;
            border: 1px solid #9e9e9e;
            display: flex;
            /*justify-content: space-between;*/
            align-items: center;
        }

    #___gcse_0 {
        width: 230px;
    }

    .gsc-control-cse {
        padding: 0;
    }

    .table.gsc-search-box {
        margin: 0;
        height: 36px;
    }

    form.gsc-search-box {
        margin: 0;
    }

    .search-btn .searchwrap {
        display: none;
    }

    a.position-relative.searchbtnone.mx-0.open .searchwrap {
        display: block;
    }

    a.position-relative.search-btn.mx-0 .searchwrap {
        display: none;
    }

    .searchHoladr .main-label span.selected-item {
        font-size: 12px;
        font-family: "canada-type-gibson";
        width: 110px;
    }

    .searchHoladr .main-label {
        display: flex;
        align-items: center;
        width: 110px;
        margin-right: 10px;
    }

    .main-label i.svg {
        margin: 0 !important;
    }

    table.gsc-search-box .gsib_a {
        padding: 0px 10px;
    }

    .gsc-input-box {
        border: none;
        border-left: 1px solid #bfbfbf;
    }

    .searchHoladr button.search-submit {
        position: absolute;
        font-size: 15px;
        right: 10px;
    }

    .searchHoladr input[type=text] {
        font-size: 12px;
        font-family: "canada-type-gibson";
    }

        .searchHoladr input[type=text].command {
            width: 210px;
        }

    .gsc-search-button-v2, .gsst_a .gscb_a {
        display: none;
    }

    .searchfilterList.filterList {
        display: block;
    }

    @media screen and (max-width: 992px) {
        .top-links {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: end;
            gap: 10px 0;
        }

        .tradeInvest {
            border: 0;
            font-family: "RedHatDisplay-Medium";
            background-color: #043B72;
            color: #fff;
            padding: 3px 6px;
            border-radius: 4px;
            font-size: 11px;
            margin-left: 8px;
            margin-right: auto;
        }

        .searchHoladr .searchfilterList {
            width: 150px !important;
            height: auto;
        }

            .searchHoladr .searchfilterList li a {
                padding: 8px !important;
            }
    }

    @media screen and (min-width: 992px) {
        nav {
            /*top: 4px;*/
            position: relative;
        }

        .login-link {
            z-index: 9999;
        }
    }

    @media screen and (max-width:767px) {
        .searchHoladr {
            min-width: 260px;
            position: relative;
            left: 0;
            right: 0;
        }

        .searchicon .searchwrap:before {
            content: " ";
            background: url(../fonts/polygon.svg);
            position: absolute;
            top: -6px;
            height: 6px;
            width: 15px;
            right: 15px;
        }
    }

    @media screen and (max-width:576px) {
        .searchwrap {
            width: 100%;
            right: 0;
        }

        .searchicon .searchwrap:before {
            content: " ";
            background: none;
        }

        .searchwrap .searchHoladr {
            min-width: max-content;
            width: 100%;
        }
    }

    @media screen and (min-width:576px) and (max-width:992px) {
        .searchicon {
            position: relative;
        }

        .searchwrap {
            top: 41px;
            right: 0;
        }

        .smart-search-list {
            width: auto !important;
        }
    }



    @media screen and (min-width: 992px) and (max-width:1276px) {
        .nav-list a {
            font-size: 0.85vw !important;
            margin-inline: 0.5vw !important;
        }

        .logomain {
            margin-top: 0;
        }

            .logomain img {
                width: 20vw !important;
                position: static !important;
            }

        .navigation {
            position: static !important;
            box-shadow: none !important;
        }

        .headernav {
            box-shadow: 0 0 6px #ccc;
            background: #FFF;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .homesection1 {
            padding-top: 0 !important;
            margin-top: -25px !important;
        }
    }

    @media screen and (min-width: 1276px) {
        .nav-list a {
            font-size: 0.85vw !important;
            margin-inline: 0.5vw !important;
        }

        .homesection1 {
            padding-top: 0 !important;
            margin-top: -20px !important;
        }
    }

    .top-links a:nth-child(1) {
        color: #fff;
        background: #F58220;
        padding: 5px;
    }

    #header {
        height: 80px;
    }


    .top-links {
        margin-right: 8vw;
    }
</style>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script>
    $(document).ready(function () {
        $(".navigation .searchbtnone").click(function () {
            $(".searchwrap").toggle();
        });
    });

    $(document).mouseup(function (e) {
        var popup = $(".searchwrap");
        if (!$('.searchbtnone').is(e.target) && !popup.is(e.target) && popup.has(e.target).length == 0) {
            popup.hide(500);
        }
    });

</script>
<div id="header" class="visitOldSpace">
    <div class="d-flex align-items-center justify-content-between headernav">
        <div class="d-lg-block d-none logomain">

                <a href="https://www.sharekhan.com">
                    <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/sharekhan_logo-202207131537046949004.svg?0" class="ml-2" alt="Mirae Asset Sharekhan" />
                </a>

        </div>
        <div class="navigation">
            <div class="visitOldRes d-flex" id="visitOldRes">
                <ul>
                <li class="menu me-2">
                    <img src="/Content/images/app-icon.png" style="padding-right:5px" alt="click" /><a href="https://v6yk.adj.st?adj_t=19b7oosu">DOWNLOAD SHAREKHAN APP</a>
                </li>
                </ul>
                <button type="button" class="btn-close" onclick="removeOldWeb()" aria-label="Close Download Sharekhan App Popup"></button>
            </div>
            <div class="">
                <div class="d-flex align-items-center justify-content-between">
                    <div>

                            <a href="https://www.sharekhan.com" class="d-lg-none">
                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/sharekhan_logo-202207131537046949004.svg?0" class="ml-2 logomobile" alt="Mirae Asset Sharekhan" />
                            </a>

                    </div>
                    <div class="text-end top-links lh-1 dropdown ">
                        
<a title="Become A Partner" href="https://www.sharekhan.com/demat/franchisee/business-partner" target="_blank">Become A Partner</a><a title="Support/Help" href="https://www.sharekhan.com/faq" target="_blank">Help</a><a title="Refer &amp; Earn" href="https://www.sharekhan.com/offers/refer-and-earn" target="_blank">Refer &amp; Earn</a>                                                    <a class="loginTrade" href="https://newtrade.sharekhan.com/skweb/login/">LOGIN / TRADE</a>
                    </div>
                </div>
                <div class="overlay"></div>
                <nav class="">
                    <div class="nav-mobile d-flex justify-content-end align-items-center d-lg-none d-block py-1 bg_light2_gray w-100">
                        
                                                <ul>
                        <li class="menu me-2">
                            <a class="position-relative" href="https://old.sharekhan.com/investmentcart"><img src="/Content/images/icons/cart.svg" alt="image" /></a>
                        </li>
                        </ul>
                            <a class="rounded-pill fs14 bg_green text_white px-2 py-1 me-2" href="https://diy.sharekhan.com/app/open-demat-account?sourceid=369&amp;campid=3488">OPEN DEMAT ACCOUNT</a>
                        <a id="navbar-toggle" href="javascript:void()" aria-label="Toggle Hamburger Menu"><span></span></a>
                    </div>
                    <ul class="nav-list">
                        <div class="navigation2 d-flex justify-content-start align-items-center d-lg-none d-block py-3 w-100 position-fixed top-0">
                                <a class="ltBtn" href="">LOGIN / TRADE</a>
                                <a class="border-bottom-1" href="https://diy.sharekhan.com/app/open-demat-account?sourceid=369&amp;campid=3488">OPEN ACCOUNT</a>
                            <a class="" href="javascript:void()">&nbsp;</a>
                        </div>

        <li class="menu">
                <a href="/financial-services" class="d-none d-lg-block">Products &amp; Services</a>
                            <ul class="navbar-dropdown p-lg-5 p-2 ps-4">
                    <div class="submenu submenu3">
                        <div class="d-lg-block d-none h-100">
                            <div class="d-flex flex-column justify-content-center h-100 title">
                                <h4>Products &amp; Services</h4>

                                <p>
                                    The Services you can explore include Equity, F&O, Commodity & Currency. You can also go for MFs, IPOs, Fixed Deposits & Bonds and NRI Services! Our Specialized Services cater to your specific needs with bespoke services. Our 360° Products cater to niche requirements: we offer PMS (PMS), F&O Solutions, Algo Solutions, Margin Funding & more!
                                    <a href="/financial-services">Know More</a>
                                </p>

                            </div>
                        </div>

                        <a class="pt-0 d-lg-none" href="/financial-services">
                            Products &amp; Services Overview
                        </a>



                            <div class="text_orange rhd_b pt-0 br10">
                                <h6 class="open">Our Products &amp; Services</h6>
                                <div class="d_grid sub2cl morethan5" style=&#39;display:block;&#39;>

                                        <a href="/equity-trading-account" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/EquityTrading-202207141242368926911.png" alt="" class="img-fluid">
                                            </span>
                                            <span>Equity Trading</span>


                                        </a>
                                        <a href="/ipo" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/IPO-202207141249416328501.png" alt="" class="img-fluid">
                                            </span>
                                            <span>IPO</span>


                                        </a>
                                        <a href="/options-trading-account" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/OptionsTrading-202207141245030237943.png" alt="" class="img-fluid">
                                            </span>
                                            <span>Options Trading</span>


                                        </a>
                                        <a href="/futures-trading-account" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/DerivativesTrading-202210191128293501034.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Futures Trading</span>


                                        </a>
                                        <a href="/futures-and-options" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/FnOSolutions-202508181417181768530.png" alt="" class="img-fluid">
                                            </span>
                                            <span>Futures &amp; Options Solutions</span>


                                        </a>
                                        <a href="/commodity-trading-account" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/commodity-202311061913508485743.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Commodity Trading</span>


                                        </a>
                                        <a href="/currency-trading-account" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/CurrencyTrading-202207141244080002014.png" alt="" class="img-fluid">
                                            </span>
                                            <span>Currency Trading</span>


                                        </a>
                                        <a href="/pattern-finder" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/pattern-finder-202311211654397937716.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Pattern Finder</span>


                                        </a>
                                        <a href="/algo-solutions" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/AlgoSolutions-202207141255172560269.png" alt="" class="img-fluid">
                                            </span>
                                            <span>Algo Solutions</span>


                                        </a>
                                        <a href="/financial-solutions" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/FinancingSolutions-202207141256475984031.png" alt="" class="img-fluid">
                                            </span>
                                            <span>Financing Solutions</span>


                                        </a>
                                        <a href="/nri-services" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/NRIServices-202207141251352013608.png" alt="" class="img-fluid">
                                            </span>
                                            <span>NRI Services</span>


                                        </a>
                                        <a href="/margin-funding" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/EMF-202207141257302189126.png" alt="" class="img-fluid">
                                            </span>
                                            <span>Margin Funding</span>


                                        </a>
                                        <a href="/sharekhan-one" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/SKOne35-202511261159064823299.png " alt="" class="img-fluid">
                                            </span>
                                            <span>Wealth Management Service – Sharekhan One</span>


                                        </a>
                                        <a href="/portfolio-management-services" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/PortfolioManagementServices-202207141253246205653.png" alt="" class="img-fluid">
                                            </span>
                                            <span>Portfolio Management Service</span>


                                        </a>
                                </div>
                            </div>
                            <div class="text_orange rhd_b br10">
                                <h6 class="">Mutual Funds</h6>
                                <div class="sub2cl morethan5 sub2cl morethan5" >

                                        <a href="https://www.sharekhan.com/sip-calculator" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/mf-calculator-202410081720006068185.png" alt="" class="img-fluid">
                                            </span>
                                            <span>MF Calculators</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/mutual-funds/sip-we-like" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/SIP-we-like-202410081723069959353.png" alt="" class="img-fluid">
                                            </span>
                                            <span>SIP We Like</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/mutual-funds/one-click-sip" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/one-click-sip-202410081725131618020.png" alt="" class="img-fluid">
                                            </span>
                                            <span>One Click SIP</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/mutual-funds/funds-we-like" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/funds-we-like-202410081727083014895.png" alt="" class="img-fluid">
                                            </span>
                                            <span>Funds We Like</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/mutual-funds/save-tax-under-80C" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/ELSS-202410081728396445441.png" alt="" class="img-fluid">
                                            </span>
                                            <span>Save Tax under 80C (ELSS)</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/mutual-funds/upcoming-and-current-nfo" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/NFO-202410081732097851124.png" alt="" class="img-fluid">
                                            </span>
                                            <span>New Fund Offering (NFO)</span>


                                        </a>
                                </div>
                            </div>
                            <div class="text_orange rhd_b pt-0 br10">
                                <h6 class="">Third Party Products</h6>
                                <div class="d_grid sub2cl morethan5" >

                                        <a href="/life-insurance" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/life-insurance-icon-202502101737275233469.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Life Insurance</span>


                                        </a>
                                        <a href="/bonds" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/Bonds-202207141250509439616.png" alt="" class="img-fluid">
                                            </span>
                                            <span>Fixed Deposits &amp; Bonds</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/mutual-funds" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/MutualFunds-202207141245512922954.png" alt="" class="img-fluid">
                                            </span>
                                            <span>Mutual Funds</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/corporate-deposit" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/corporate-deposit-202311211652231252965.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Corporate Deposit</span>


                                        </a>
                                </div>
                            </div>

                    </div>
                </ul>
        </li>
        <li class="menu">
                <a href="/trading-platforms" class="d-none d-lg-block">Platforms &amp; Calculators</a>
                            <ul class="navbar-dropdown p-lg-5 p-2 ps-4">
                    <div class="submenu">
                        <div class="d-lg-block d-none h-100">
                            <div class="d-flex flex-column justify-content-center h-100 title">
                                <h4>Platforms &amp; Calculators</h4>

                                <p>
                                    If you are serious, you will love our feature-rich, speedy platforms that will positively influence the way you trade and invest! Suitable for new-to-markets, traders and investors, our platforms and calculators help you stay ahead in the market by saving you time, being customizable and with intelligent automation. Oh, and did we mention Trading API?! 
                                    <a href="/trading-platforms">Know More</a>
                                </p>

                            </div>
                        </div>

                        <a class="pt-0 d-lg-none" href="/trading-platforms">
                            Platforms &amp; Calculators Overview
                        </a>



                            <div class="text_orange rhd_b pt-0 br10">
                                <h6 class="open">Our Platforms </h6>
                                <div class="sub2cl morethan5 sub2cl morethan5" style=&#39;display:block;&#39;>

                                        <a href="/sharekhan-trade-tiger" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/tradetiger-icon-202311061359016274866.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>TradeTiger</span>


                                        </a>
                                        <a href="/sharekhan-mobile-app" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/sharekhan-app-202504211705593797613.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Sharekhan App</span>


                                        </a>
                                        <a href="/sharekhan-dial-and-trade" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/dialntrade-icon-202311061359381750451.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Dial-N-Trade</span>


                                        </a>
                                        <a href="/sharekhan-website" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/website-icon-202311061401066923253.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Sharekhan Website</span>


                                        </a>
                                        <a href="/sharekhan-investiger" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/investiger-icon-202311061400154882435.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>InvesTiger</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/trading-api" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/icon_api-202311061349523679696.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Trading API</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/trading-api/documentation" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/documentation-icon-202311071809591760608.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Trading API Documentation</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/trading-api/faq" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/icon_faq-202311061351337604737.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Trading API FAQs</span>


                                        </a>
                                </div>
                            </div>
                            <div class="text_orange rhd_b pt-0 br10">
                                <h6 class="">Our Calculators</h6>
                                <div class="sub2cl morethan5 sub2cl morethan5" >

                                        <a href="/financial-calculator/brokerage-calculator" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/Brokerage_Calculator-01-202502251236353319354.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Brokerage Calculator</span>


                                        </a>
                                        <a href="/margin-calculator" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/Margin_Calculator-01-202502251237067691485.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Margin Calculator</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/span-calculator" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/Span_Calculator-01-202502251237385501052.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>SPAN Calculator</span>


                                        </a>
                                        <a href="/sip-calculator" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/SIPInvestment_Calculator-202207141144373964899.png" alt="" class="img-fluid">
                                            </span>
                                            <span>SIP Investment Calculator</span>


                                        </a>
                                        <a href="/lumpsum-calculator" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/LumpsumCalculator-202210191057510002854.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Lump sum Calculator</span>


                                        </a>
                                        <a href="/compare-mutual-funds" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/CompareMutualFunds-202207141149314345087.png" alt="" class="img-fluid">
                                            </span>
                                            <span>Compare Mutual Funds</span>


                                        </a>
                                        <a href="/goal-calculator" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/FinancialGoalCalculator-202207141155182579523.png" alt="" class="img-fluid">
                                            </span>
                                            <span>Financial Goal Calculator</span>


                                        </a>
                                        <a href="/elss-calculator" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/ELSSCalculator-202207141156439207336.png" alt="" class="img-fluid">
                                            </span>
                                            <span>ELSS Calculator</span>


                                        </a>
                                </div>
                            </div>

                    </div>
                </ul>
        </li>
        <li class="menu">
                <a href="/market-research" class="d-none d-lg-block">Research</a>
                            <ul class="navbar-dropdown p-lg-5 p-2 ps-4">
                    <div class="submenu2">
                        <div class="d-lg-block d-none h-100">
                            <div class="d-flex flex-column justify-content-center h-100 title">
                                <h4>Research</h4>

                                <p>
                                    Our pedigreed Research team, encompassing Fundamental, Technical and Mutual Funds Research, prides itself on high-performing products for trading recommendations across varying time horizons. Here's a peek at the inner workings that make it tick. Explore our proprietary Research philosophies, Research Reports and more!
                                    <a href="/market-research">Know More</a>
                                </p>

                            </div>
                        </div>

                        <a class="pt-0 d-lg-none" href="/market-research">
                            Research Overview
                        </a>



                            <div class="text_orange rhd_b pt-0 br10">
                                <h6 class="open">Research Overview</h6>
                                <div class="sub4cl morethan5 sub2cl morethan5" style=&#39;display:block;&#39;>

                                        <a href="/3r-fundamental-research" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/3r-research-202311062323207137240.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>3R Fundamental Research</span>


                                        </a>
                                        <a href="/pop-technical-research" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/POP-202311062338012451345.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>POP Technical Research</span>


                                        </a>
                                        <a href="/q-square-analysis" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/q-square-202311062338205891339.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Q Square Analysis for Mutual Funds</span>


                                        </a>
                                        <a href="/trader-market-research" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/research-trader-202311062339441214736.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Research for Trading</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/investor-market-research/new-to-market" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/icon_new_to_market-202505070951570687584.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>New To Market</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/mutual-funds-research/aggressive-portfolio" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/icon_model_portfolio-202505070951113818110.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Model Portfolio</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/investor-market-research/stocks-we-cover" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/icon_stocks_we_cover-202505070952485056448.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Stocks We Cover</span>


                                        </a>
                                        <a href="/investor-market-research" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/research-investor-202311062338402768919.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Research for Investing</span>


                                        </a>
                                        <a href="/mutual-funds-research-overview" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/research-mf-202311062339009490342.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Research Mutual Funds</span>


                                        </a>
                                        <a href="/investor-market-research/latest-call" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/latest calls-202311062324050893008.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Our Latest Calls</span>


                                        </a>
                                        <a href="/investor-market-research/reports" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/research-reports-202311070008493566470.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Research Report</span>


                                        </a>
                                </div>
                            </div>

                    </div>
                </ul>
        </li>
        <li class="menu">
                <a href="/pricing" class="d-none d-lg-block">Brokerage Charges</a>
                    </li>
        <li class="menu">
                <a href="/new-to-market" class="d-none d-lg-block">New To All This?</a>
                            <ul class="navbar-dropdown p-lg-5 p-2 ps-4">
                    <div class="submenu2">
                        <div class="d-lg-block d-none h-100">
                            <div class="d-flex flex-column justify-content-center h-100 title">
                                <h4>New To All This?</h4>

                                <p>
                                    New to the market and keen to know more? We've put together all you might need to know on this journey, leaning on our 23 years' experience hand-holding customers to get them started right in the markets. We'll give you the lowdown on what to look out for, what to avoid, how to gauge your risk appetite, learning resources and more! Shall we get started?
                                    <a href="/new-to-market">Know More</a>
                                </p>

                            </div>
                        </div>

                        <a class="pt-0 d-lg-none" href="/new-to-market">
                            New To All This Overview
                        </a>



                            <div class="text_orange rhd_b pt-0 br10">
                                <h6 class="open">New to All This Overview</h6>
                                <div class="sub4cl morethan5 sub2cl morethan5" style=&#39;display:block;&#39;>

                                        <a href="/why-mirae-asset-sharekhan" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/why-sharekhan-202311062353066355046.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Why Mirae Asset Sharekhan?</span>


                                        </a>
                                        <a href="/about-mirae-asset-sharekhan" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/AboutSharekhan-202207181143099370767.png" alt="" class="img-fluid">
                                            </span>
                                            <span>About Mirae Asset Sharekhan</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/our-team" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/OurTeam_icon-202508050846360405403.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Our Team</span>


                                        </a>
                                        <a href="/all-about-demat-account" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/AboutDemat-202207181142295474366.png" alt="" class="img-fluid">
                                            </span>
                                            <span>All About Demat A/C</span>


                                        </a>
                                </div>
                            </div>

                    </div>
                </ul>
        </li>
        <li class="menu">
                <a href="/learn-and-grow" class="d-none d-lg-block">Learn &amp; Grow</a>
                            <ul class="navbar-dropdown p-lg-5 p-2 ps-4">
                    <div class="submenu2">
                        <div class="d-lg-block d-none h-100">
                            <div class="d-flex flex-column justify-content-center h-100 title">
                                <h4>Learn &amp; Grow</h4>

                                <p>
                                    At Sharekhan, we believe in nurturing your trading journey for sustainable success. We are committed to empowering you with serious knowledge and serious resources you need to thrive in the stock market. Sharekhan is in it with you for the long run! Our offerings are designed to build your trading fundamentals and provide valuable insights into market dynamics that are tailored to enhance your skills with the right mix of new-to-market simplicity and the seriousness of a full-service broker. 
                                    <a href="/learn-and-grow">Know More</a>
                                </p>

                            </div>
                        </div>

                        <a class="pt-0 d-lg-none" href="/learn-and-grow">
                            Learn &amp; Grow Overview
                        </a>



                            <div class="text_orange rhd_b pt-0 br10">
                                <h6 class="open">Learn and Grow </h6>
                                <div class="sub4cl morethan5 sub2cl morethan5" style=&#39;display:block;&#39;>

                                        <a href="https://www.sharekhan.com/financial-blog/blog" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/icon_financial-blog-202408131618091409424.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Financial Blogs</span>


                                        </a>
                                </div>
                            </div>

                    </div>
                </ul>
        </li>
        <li class="menu">
                <a href="/market" class="d-none d-lg-block">Market Info</a>
                            <ul class="navbar-dropdown p-lg-5 p-2 ps-4">
                    <div class="submenu2">
                        <div class="d-lg-block d-none h-100">
                            <div class="d-flex flex-column justify-content-center h-100 title">
                                <h4>Market Info</h4>

                                <p>
                                    You can explore the latest Market News, Market Updates, Market Stats, Market Indices, Market Derivatives, Indian Indices, Global Indices, Index Contributors, our brand new Market Events & Calendar, NSE/BSE Holiday List, Trading Holiday Calendar, Market Summary, Market Stats and Budget 2023 in this vast section.
                                    <a href="/market">Know More</a>
                                </p>

                            </div>
                        </div>

                        <a class="pt-0 d-lg-none" href="/market">
                            Market Info Overview
                        </a>



                            <div class="text_orange rhd_b pt-0 br10">
                                <h6 class="open">Market Info Overview</h6>
                                <div class="sub4cl morethan5 sub2cl morethan5" style=&#39;display:block;&#39;>

                                        <a href="https://www.sharekhan.com/market-news-bulletin" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/icon_market-update-14-202408131551444167158.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Market Update</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/indian-indices-market" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/icon_market-indices-202408131603158510081.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Market Indices</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/news/market" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/icon_market-news-202408261109368161689.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Market News</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/most-active-derivatives" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/icon_market-derivatives-202408261203085662525.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Market Derivatives</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/market-stats" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/icon_market_stats-202409131152501739623.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Market Stats</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/market-update/market-snapshot" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/icon_market-summary-202409131221282173500.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Market Summary</span>


                                        </a>
                                        <a href="https://www.sharekhan.com/budget" class="d-flex align-items-center justify-content-start">
                                            <span class="iconL">
                                                <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/icon_budget-13-202504091531163619272.svg" alt="" class="img-fluid">
                                            </span>
                                            <span>Union Budget 2025-26  </span>


                                        </a>
                                </div>
                            </div>

                    </div>
                </ul>
        </li>
						                            <li class="menu d-lg-block d-none searchicon">
                                <a class="position-relative searchbtnone mx-0">
                                    <img src="/Content/images/icons/search.svg" alt="Search" />
                                </a>
                                <div class="searchwrap">
                                    <div class="row">
                                        <div class="col-md-12">
                                            <div id="smartsearch"> </div>
                                        </div>
                                    </div>
                                </div>
                            </li>
                        <li class="menu d-lg-block d-none pe-2">
                            <a class="position-relative" href="https://old.sharekhan.com/investmentcart">
                                <img src="/Content/images/icons/cart.svg" alt="cart" />
                                
                            </a>
                        </li>
                                <li class="login-link mx-2 d-lg-block d-none">
                                    <a href="https://diy.sharekhan.com/app/open-demat-account?sourceid=369&amp;campid=3488&amp;url=scriptsjslibraryslick-theme.min.css">OPEN DEMAT <br /> ACCOUNT</a>
                                </li>
                        <div class="d-flex flex-wrap justify-content-start align-items-center gap-2 d-lg-none d-block py-3 bg_white border-top w-100 position-fixed bottom-0">
                            <p class="mb-0 p-0 fs12 text_light_gray ps-3">Follow&nbsp;Us&nbsp;:</p>
                            <div class="d-flex flex-wrap justify-content-xl-around gap-3">
                                        <a href="https://twitter.com/Sharekhan">
                                            <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/twitter-1-202207141455156407415.svg" alt="facebook">
                                        </a>
                                        <a href="https://in.linkedin.com/company/sharekhan">
                                            <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/linkedin-1-202207141454102431156.svg" alt="facebook">
                                        </a>
                                        <a href="https://www.facebook.com/Sharekhan">
                                            <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/facebook-1-202207141249545497092.svg" alt="facebook">
                                        </a>
                            </div>

                        </div>

                    </ul>
                </nav>
            </div>
        </div>
    </div>

</div>




    










<div class="innBodyCont top-padding sk2main evn all">
    <section class="header-spacing text-center">

        <div class="container">


        </div>
    </section>



        <section class="text-center section-spacing bg_light2_gray services">
        <div class="container wow fadeInUp" data-wow-delay=".4s" data-wow-duration="1s">
            <h2>
                Quick Links
            </h2>
            <div class="relatedLinks">
                <p><a title="Investing Videos" href="/stock-market-videos/sharekhan-classroom/investing-videos" target="_blank">INVESTING VIDEOS</a> <a title="Platform Videos" href="/stock-market-videos/platform-features" target="_blank">PLATFORM VIDEOS</a> <a title="InvesTiger Videos" href="/stock-market-videos/investiger-app" target="_blank">INVESTIGER VIDEOS</a> <a title="How To Invest" href="/stock-market-videos/how-to-invest" target="_blank">HOW TO INVEST</a> <a title="Stock Market Weekly Guide" href="/stock-market-videos/stock-market-weekly-guide" target="_blank">STOCK MARKET WEEKLY GUIDE</a></p>
            </div>
        </div>
    </section>

</div>


<script>
    window.onload = function () {
        var paginationPage = parseInt($('.cdp').attr('actpage'), 10);
        $('.cdp_i').on('click', function () {
            var buttonLink = $(this).attr('href').toString();
            if (buttonLink != "javascript:void(0)") {
                var go = $(this).attr('href').replace('#!', '');
                if (go === '+1') {
                    paginationPage++;
                } else if (go === '-1') {
                    paginationPage--;
                } else {
                    paginationPage = parseInt(go, 10);
                }
                $('.cdp').attr('actpage', paginationPage);
            }
        });
    };

</script>

    
<style>
    .fa-twitter::before {
        display: none;
    }

    .fa-twitter img {
        width: 100%;
        max-width: 16px;
        height: auto;
    }
</style>
<style>
    .modal.homepg3#contactDetails2 {
        position: fixed;
        top: 0px;
        left: 0;
        z-index: 1060;
        display: none;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        outline: 0;
    }

    .demat-btn-hold {
        width: 100%;
        position: fixed;
        width: 100%;
        border: 0px solid red;
        padding: 0px;
        bottom: 0;
        display: none;
    }

    #contactDetails2 .modal.show .modal-dialog {
        transform: none;
    }

    #contactDetails2 .modal-dialog {
        position: relative;
        width: auto;
        margin: 0.5rem;
        pointer-events: none;
        margin: auto;
    }

    #contactDetails2 .modal-content {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        pointer-events: auto;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 0.3rem;
        outline: 0;
    }

    #contactDetails2 .modal-header {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1rem;
        border-bottom: 1px solid #dee2e6;
        border-top-left-radius: calc(0.3rem - 1px);
        border-top-right-radius: calc(0.3rem - 1px);
    }

        #contactDetails2 .modal-header .btn-close {
            padding: 0.5rem 0.5rem;
            margin: -0.5rem -0.5rem -0.5rem auto;
        }

    #contactDetails2 .btn-close {
        box-sizing: content-box;
        width: 1em;
        height: 1em;
        padding: 0.25em 0.25em;
        color: #000;
        background: transparent url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e) center / 1em auto no-repeat;
        border: 0;
        border-radius: 0.25rem;
        opacity: 0.5;
    }

    #contactDetails2 input[type="text"], #contactDetails2 input[type="email"], #contactDetails2 input[type="number"], #contactDetails2 input[type="password"], #contactDetails2 input[type="tel"], #contactDetails2 input[type="date"], #contactDetails2 select, #contactDetails2 textarea {
        width: 100%;
        padding: 8px 10px 8px 15px !important;
        height: auto;
        line-height: normal;
        color: #1e1d1d;
        border: 0;
        border-bottom: 1px solid #a4a4a4;
        background-color: transparent;
        border-radius: 0;
        font-family: "RedHatDisplay-Medium";
    }

    #contactDetails2 .rounded-pill {
        border-radius: 50rem !important;
    }

    #contactDetails2 .modal-body {
        position: relative;
        flex: 1 1 auto;
        padding: 1rem;
    }

    #contactDetails2 .mtb-logo {
        width: 100%;
        max-width: 144px;
        margin: auto;
    }

    #contactDetails2 .greybg {
        background-color: #FFFFFF;
        border-radius: 10px;
        text-align: center;
        /* padding: 19px 29px 10px 29px; */
        padding: 19px 15px 10px 15px;
        font-size: clamp(12px, 2vw, 16px);
        font-weight: 400;
    }

    #contactDetails2 .form-control {
        padding: 20px;
    }

    #contactDetails2 .form-control {
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    #contactDetails2 .text_dark_gray, div.text_dark_gray p, div.text_dark_gray p span {
        color: #212121 !important;
    }

    #contactDetails2 .btn-orange-solid {
        /*    min-width: 225px !important;*/
        font-size: 14px;
        font-weight: 400;
        font-family: "canada-type-gibson", sans-serif !important;
    }

    #contactDetails2 .boxgrey {
        max-width: 338px;
        width: 100%;
        height: 141px;
        padding: 10px 10px 10px 13px;
        border-radius: 23px;
    }

    #contactDetails2 .ortxt {
        text-align: left;
        font-size: 18px !important;
        color: #FFFFFF;
        margin: 0;
        line-height: 22px !important;
        font-family: "canada-type-gibson", sans-serif !important;
    }


    #contactDetails2 .ivtxt {
        width: 240px;
        text-align: left;
        font-size: 14px !important;
        letter-spacing: 0.15px;
        color: #FFF;
        margin: 0;
        line-height: 15px !important;
        padding-top: 4px;
        font-family: "canada-type-gibson", sans-serif !important;
    }

    #contactDetails2 .greybg span {
        color: #F58220;
        font-size: 15px;
        font-weight: 400;
        letter-spacing: 0.23px;
        line-height: 20px;
    }

    #contactDetails2 .greybg h6 {
        color: #212121;
        font-weight: 700;
        letter-spacing: 0.24px;
        line-height: 20px;
    }

    #contactDetails2 .captchafet {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        border: 1px solid #D6D6D6;
        border-radius: 33px;
    }

    #contactDetails2 .captchainwrap {
        width: 45%;
        padding: 5px;
    }

    #contactDetails2 .form-control.capinput, #contactDetails2 .form-control.capinput:focus {
        border: none !important;
        font-size: 15px;
        padding: 16px 7px;
        box-shadow: none !important;
    }

    #contactDetails2 .wavywrap {
        width: 58%;
        border: 1px solid #D6D6D6;
        border-radius: 33px;
        margin: 8px 5px;
        display: flex;
        background: whitesmoke 0% 0% no-repeat padding-box;
        padding: 5px 10px 10px 5px;
        justify-content: space-between;
        height: 47px;
        align-items: center;
        position: relative;
    }

    #contactDetails2 .captchaimage {
        width: 85%;
        padding: 0;
        background: transparent;
    }

    #contactDetails2 .refreshwrap {
        width: 15%;
        margin-top: 5px;
    }

        #contactDetails2 .refreshwrap #btnRefresh1 {
            border: none;
            background-color: whitesmoke;
            min-width: auto;
        }

    #contactDetails2 .homepg3 .homesection1 .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 16px;
        width: 16px;
        border-radius: 50%;
        background-color: #eee;
    }

    #contactDetails2 .homesection1 label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    #contactDetails2 .homesection1 label {
        display: block;
        position: relative;
        padding-left: 25px;
        margin: auto;
        cursor: pointer;
        color: #757575;
        font-size: 11px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

        #contactDetails2 .homesection1 label input:checked ~ .checkmark:after {
            display: block;
        }

        #contactDetails2 .homesection1 label .checkmark:after {
            left: 6px;
            top: 2px;
            width: 3.6px;
            height: 9px;
            border: solid white;
            border-width: 0 2px 2px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

    #contactDetails2 .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    #contactDetails2 .homesection1 label input:checked ~ .checkmark {
        background-color: #043B72;
    }

    #contactDetails2 .btn-orange-solid {
        padding: 8px 30px !important;
        line-height: 25px !important;
        width: auto !important;
        display: inline-block !important;
        max-width: max-content !important;
        color: #fff !important;
        background: #F58220 !important;
        font-family: RedHatDisplay-medium !important;
        color: #fff !important;
        border: 0 !important;
        letter-spacing: 1px !important;
        display: inline-block !important;
        text-align: center !important;
        vertical-align: middle !important;
        font-size: 14px !important;
        border-radius: 19px !important;
        text-transform: uppercase !important;
        transition: background-color 0.5s ease-in-out !important;
    }

    #contactDetails2 .btnexp {
        max-width: 132px !important;
        height: 27px;
        border-radius: 21px;
        text-align: left !important;
        padding: 1px 30px 3px !important;
        margin-right: 105px;
        margin-top: 5px;
    }

    .marau {
        margin: auto;
    }

    .greybgrs {
        background-color: #043B72;
        text-align: center;
        font-size: clamp(12px, 2vw, 16px);
        font-weight: 400;
    }

    .boxgrey {
        height: 150px;
        margin: auto;
    }

    .resorg {
        padding: 20px 20px 0;
        background-color: #F58220;
        border-top: 7px solid #4F4F4F;
    }

    @media screen and (max-width: 991.98px) {
        #contactDetails2 .btn-orange-solid {
            padding: 5px 12px;
            font-size: 12px;
            /*margin: 5px auto;*/
        }

        .demat-btn-hold {
            display: block;
        }

            .demat-btn-hold .demat-btn {
                background-color: #043B72;
                color: #fff;
                border-top-left-radius: 10px;
                border-top-right-radius: 10px;
                padding: 9px 10px 8px;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
                letter-spacing: 1.12px;
                z-index: 1;
                font-size: 14px;
                font-weight: 500;
            }

        #contactDetails2 .modal-dialog-bottom {
            display: flex;
            align-items: flex-end !important;
            min-height: calc(100% - -1px);
            margin: 0 auto;
            border-radius: 20px 20px 0 0;
        }

            #contactDetails2 .modal-dialog-bottom .modal-content {
                border-radius: 20px 20px 0 0;
            }

        #contactDetails2 .modal .homesection1 .btn-orange-solid {
            min-width: 100% !important;
        }

        .resorg {
            padding: 20px 20px 0;
            background-color: #F58220;
            border-top: 7px solid #4F4F4F;
        }

        .boxgrey {
            height: 150px;
            margin: auto;
        }

        .greybgrs {
            background-color: #043B72;
            text-align: center;
            font-size: clamp(12px, 2vw, 16px);
            font-weight: 400;
        }
    }
    @media only screen and (max-width: 769px) {
        .orgimg {
            margin: 15px 0px !important;
            max-width: 94px !important;
            height: 80px !important;
        }
    }
    @media (prefers-reduced-motion: reduce) {
        #contactDetails2 .modal.fade .modal-dialog {
            transition: none;
        }
    }
</style>
<div id="footer">
    <footer class="sk2footer wow fadeInUp" data-wow-delay="0.2s">

    <div class="part1">
        <div class="clearfix container">
            <ul class="ps-0">


                    <li>
                        <h3 class="counter">29</h3>
                        <h5>Years&nbsp;</h5>
                    </li>
                    <li>
                        <h3 class="counter">31 Lakh+</h3>
                        <h5>Customers</h5>
                    </li>
                    <li>
                        <h3 class="counter">1100+</h3>
                        <h5>Presence across cities</h5>
                    </li>
                    <li>
                        <h3 class="counter">4599</h3>
                        <h5>Outlets&nbsp;(Own Branches + Partners)</h5>
                    </li>
                    <li>
                        <h3 class="counter">₹3 Lakh Crore+</h3>
                        <h5>Customer Assets</h5>
                    </li>
            </ul>
            <div class="fText">
                <p>The above figures are as on November 30, 2024. Such representations are not indicative of future results.</p>
            </div>
        </div>
    </div>

        <div class="part2 ">
            <div class="d-flex clearfix container-xxl p-0">
                <a href="https://www.sharekhan.com">
                    <img src="/Content/Images/home.svg" alt="">
                    <i class="fas fa-chevron-right"></i>
                    Home
                </a>

            </div>
        </div>

        <div class="part3">
            <div class="clearfix container-xxl p-0">
                <div class="container">
                    <div class="row mb-5 gap-md-0 gap-3">
                        <div class="col-lg-9 col-12 d-flex align-items-center flex-md-nowrap flex-wrap justify-content-xl-start justify-content-center wow fadeInLeft"
                             data-wow-delay="0.5s">
                            <h4 class="mb-0 border-0 p-0">Stocks&nbsp;:</h4>
                            <div class="d-flex flex-wrap justify-content-center AtoZ">
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-a">A</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-b">B</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-c">C</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-d">D</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-e">E</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-f">F</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-g">G</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-h">H</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-i">I</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-j">J</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-k">K</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-l">L</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-m">M</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-n">N</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-o">O</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-p">P</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-q">Q</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-r">R</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-s">S</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-t">T</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-u">U</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-v">V</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-w">W</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-x">X</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-y">Y</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-z">Z</a>|</p>
                                <p><a class="mx-2" href="https://www.sharekhan.com/stock-price/company-starting-with-1-9">1-9</a></p>
                            </div>
                        </div>
                        <div class="col-lg-3 col-12 d-flex align-items-center flex-wrap justify-content-xl-start justify-content-center gap-2 ps-xl-4 wow fadeInRight"
                             data-wow-delay="0.5s">
                            <h4 class="mb-0 border-0 p-0 ps-xl-1">Follow&nbsp;Us&nbsp;:</h4>
                            <div class="d-flex flex-wrap gap-14px socialIcon">
                                <!--<a class="notA" href="https://www.facebook.com/Sharekhan"><i class="fab fa-facebook-f fa-20x"></i></a>
                                <a class="notA" href="https://in.linkedin.com/company/sharekhan"><i class="fab fa-linkedin-in fa-20x"></i></a>
                                <a class="notA" href="https://twitter.com/Sharekhan">
                                    <i class="fab fa-twitter fa-20x">
                                        <img src="https://uxwing.com/wp-content/themes/uxwing/download/brands-and-social-media/x-social-media-white-icon.png" alt="X">
                                    </i>
                                </a>-->
                                
                                
                                <!--<a class="notA" href="https://www.youtube.com/channel/UC40nk9kM2Ue8XQ9LsHQlKPA"><i class="fab fa-youtube fa-20x"></i></a>-->

                                <a class="notA" href="https://www.facebook.com/MiraeAssetSharekhan/"><i class="fab fa-facebook-f fa-20x"></i></a>
                                <a class="notA" href="https://www.linkedin.com/company/miraeassetsharekhan"><i class="fab fa-linkedin-in fa-20x"></i></a>
                                <a class="notA" href="https://x.com/Sharekhan">
                                    <i class="fab fa-twitter fa-20x">
                                        <img src="https://uxwing.com/wp-content/themes/uxwing/download/brands-and-social-media/x-social-media-white-icon.png" alt="X">
                                    </i>
                                </a>
                                <a class="notA" href="https://www.youtube.com/@MiraeAssetSharekhan" target="_blank"><i class="fab fa-youtube fa-20x"></i></a>
                            </div>
                        </div>
                    </div>
                    <div class="row">
                        <div class="col-lg-3 col-md-12 wow fadeInLeft" data-wow-delay="0.9s">

    <div class="footer-logo clearfix">
        <a class="logo" href="https://www.sharekhan.com">
            <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/footer-logo-202505231516071228257-202510301122026686917.jpg" />
        </a>
    </div>
    <div class="address">

        <p class="fs-14 font-medium">Mirae Asset Sharekhan &ndash; Founded in 2000, we were one of the first brokers to offer online trading in India.</p>
<p class="fs-14 font-medium">Registered Office Address: Sharekhan Limited, 1st Floor, Tower No. 3, Equinox Business Park, LBS Marg, Off BKC, Kurla (West), Mumbai 400 070, Maharashtra, India. Tel: 022 6750 2000.</p>
<p class="fs-14 font-medium">Correspondence Address: 10th Floor, Gigaplex Bldg. No. 9, Raheja Mindspace, Airoli Knowledge Park Rd, MSEB Staff Colony, TTC Industrial Area, Airoli, Navi Mumbai, Maharashtra 400708, India. Tel: 022 - 6116 9000/ 6115 0000; Fax no. 022 6116 9699.</p>

    </div>

    <ul class="contact ps-0 pt-4">



<li>
                <span class="me-2">
                    <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/footer-phone-202207111419196177395.svg" />
                </span>

                    <a href="tel:02241523200">02241523200</a>

/                    <a href="tel:02241683500">02241683500</a>

            </li>
<li>
                <span class="me-2">
                    <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/email-202207111428099019427.svg" />
                </span>

                    <a href="mailto:myaccount@sharekhan.com">myaccount@sharekhan.com</a>


            </li>
<li>
                <span class="me-2">
                    <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/comment-202207111427313374944.svg" />
                </span>

                    <a href="https://chat.sharekhan.com/PreChatPage/Chat-Equity.asp">Chat</a>


            </li>

    </ul>

                        </div>
                        <div class="col-lg-8 offset-lg-1 col-md-12">
                                <div class="row g-lg-0">
                                        <div class="col-md-12 col-lg-4 col-sm-12 category-tabs">



                                                        <div id="smc">
                                                            <h4 class="collapsible d-flex justify-content-between footer-tab rhd_m">
                                                                <a>
                                                                    Stock Market Calculators
                                                                </a>
                                                                <a>
                                                                    <i class="fa fa-plus d-lg-none"></i>
                                                                </a>
                                                            </h4>

                                                            <ul class="content collapse-content ps-0">
                                                                        <li>

                <a href="/goal-calculator">
                    Financial Goal Calculator
                </a>

        </li>
        <li>

                <a href="/elss-calculator">
                    ELSS Calculator
                </a>

        </li>
        <li>

                <a href="https://www.sharekhan.com/sip-calculator">
                    SIP Investment Calculator
                </a>

        </li>
        <li>

                <a href="/compare-mutual-funds">
                    Compare Mutual Funds
                </a>

        </li>
        <li>

                <a href="/lumpsum-calculator">
                    Lumpsum Calculator
                </a>

        </li>

                                                            </ul>
                                                        </div>
                                                        <div id="tp">
                                                            <h4 class="mt-lg-5 collapsible d-flex justify-content-between footer-tab rhd_m">
                                                                <a>Trading Platforms</a>
                                                                <a><i class="fa fa-plus d-lg-none"></i></a>
                                                            </h4>

                                                            <ul class="content collapse-content ps-0">
                                                                        <li>

                <a href="/sharekhan-trade-tiger">
                    Trade Tiger
                </a>

        </li>
        <li>

                <a href="/sharekhan-mobile-app">
                    Mirae Asset Sharekhan App
                </a>

        </li>
        <li>

                <a href="/sharekhan-investiger">
                    Investiger 
                </a>

        </li>
        <li>

                <a href="">
                    MIrae Asset Sharekhan Website
                </a>

        </li>

                                                            </ul>
                                                        </div>

        <div class="downloadApp d-none d-lg-block">
            <p>Download Investiger App</p>
            <div>
                <a href="https://play.google.com/store/apps/details?id=com.sharekhan.investtiger&amp;hl=en_IN&amp;gl=US">
                    <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/playStore-202210191245016044823.svg" alt="playStore" class="img-fluid">
                </a>
                <a href="https://apps.apple.com/us/app/investiger-by-sharekhan/id1569025994">
                    <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/appStore-202210191245244429380.svg" alt="appStore" class="img-fluid d-block ms-auto">
                </a>
            </div>
        </div>
        <div class="downloadApp d-none d-lg-block">
            <p>Download Mirae Asset Sharekhan App</p>
            <div>
                <a href="https://play.google.com/store/apps/details?id=com.sharekhan.androidsharemobile">
                    <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/playStore-202210191245016044823.svg" alt="playStore" class="img-fluid">
                </a>
                <a href="https://apps.apple.com/in/app/sharemobile-pro/id1213285821">
                    <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/appStore-202210191245244429380.svg" alt="appStore" class="img-fluid d-block ms-auto">
                </a>
            </div>
        </div>
                                        </div>

                                        <div class="col-md-12 col-lg-4 col-sm-12 category-tabs wow fadeInRight" data-wow-delay="0.7s">



                                                        <div id="ops">
                                                            <h4 class="collapsible d-flex justify-content-between footer-tab rhd_m">
                                                                <a>
                                                                    Our Products And Services
                                                                </a>
                                                                <a>
                                                                    <i class="fa fa-plus d-lg-none"></i>
                                                                </a>
                                                            </h4>
                                                            <ul class="content collapse-content ps-0">
                                                                        <li>

                <a href="/portfolio-management-services">
                    Portfolio Management Services/
                </a>

        </li>
        <li>

                <a href="/nri-services">
                    NRI Services
                </a>

        </li>
        <li>

                <a href="/ipo">
                    IPO
                </a>

        </li>
        <li>

                <a href="/mutual-funds">
                     Mutual Funds
                </a>

        </li>
        <li>

                <a href="/life-insurance">
                    Life Insurance  
                </a>

        </li>
        <li>

                <a href="/futures-trading-account">
                    Future Trading  
                </a>

        </li>
        <li>

                <a href="/options-trading-account">
                    Options Trading
                </a>

        </li>
        <li>

                <a href="/commodity-trading-account">
                    Commodity Trading
                </a>

        </li>
        <li>

                <a href="/margin-funding">
                    Margin Funding
                </a>

        </li>
        <li>

                <a href="/equity-trading-account">
                    Equity Trading
                </a>

        </li>
        <li>

                <a href="/currency-trading-account">
                    Currency Trading
                </a>

        </li>

                                                            </ul>
                                                        </div>

                                        </div>


                                        <div class="col-md-12 col-lg-4 col-sm-12 category-tabs wow fadeInRight" data-wow-delay="0.9s">



                                                        <h4>
                                                            <a href="/about-mirae-asset-sharekhan">
                                                                About Mirae Asset Sharekhan
                                                            </a>
                                                        </h4>
                                                        <div id="pwu">
                                                            <h4 class="collapsible d-flex justify-content-between footer-tab rhd_m">
                                                                <a>Partner with us</a>
                                                                <a><i class="fa fa-plus d-lg-none"></i></a>
                                                            </h4>

                                                            <ul class="content collapse-content ps-0">
                                                                        <li>

                <a href="https://www.sharekhan.com/demat/franchisee/business-partner">
                    Business Partner
                </a>

        </li>

                                                            </ul>
                                                        </div>
                                                        <div id="pwu">
                                                            <h4 class="collapsible d-flex justify-content-between footer-tab rhd_m">
                                                                <a>Important Links</a>
                                                                <a><i class="fa fa-plus d-lg-none"></i></a>
                                                            </h4>

                                                            <ul class="content collapse-content ps-0">
                                                                        <li>

                <a href="https://support.sharekhan.com/faq">
                    Services/Support
                </a>

        </li>
        <li>

                <a href="https://stockbroker-branch.sharekhan.com/">
                    Locate Us
                </a>

        </li>
        <li>

                <a href="https://www.sharekhan.com/MediaGalary/Upload/SK_Escalation-Matrix-Revised.pdf">
                    Contact Us
                </a>

        </li>
        <li>

                <a href="https://www.sharekhan.com/MediaGalary/Commodity/McxSpan.xls">
                    Commodity Margin - MCX
                </a>

        </li>
        <li>

                <a href="https://diy.sharekhan.com/app/open-demat-account?sourceid=369&amp;campid=5000&amp;url=open-diy-demat-account">
                    Open a demat account
                </a>

        </li>

                                                            </ul>
                                                        </div>

                                        </div>

                                </div>
                        </div>
                    </div>
                </div>
            </div>

        <div class="downloadApp d-block d-lg-none m-auto">
            <p>Download Investiger App</p>
            <div>
                <a href="https://play.google.com/store/apps/details?id=com.sharekhan.investtiger&amp;hl=en_IN&amp;gl=US">
                    <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/playStore-202210191245016044823.svg" alt="playStore" class="img-fluid">
                </a>
                <a href="https://apps.apple.com/us/app/investiger-by-sharekhan/id1569025994">
                    <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/appStore-202210191245244429380.svg" alt="appStore" class="img-fluid d-block ms-auto">
                </a>
            </div>
        </div>
        <div class="downloadApp d-block d-lg-none m-auto">
            <p>Download Mirae Asset Sharekhan App</p>
            <div>
                <a href="https://play.google.com/store/apps/details?id=com.sharekhan.androidsharemobile">
                    <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/playStore-202210191245016044823.svg" alt="playStore" class="img-fluid">
                </a>
                <a href="https://apps.apple.com/in/app/sharemobile-pro/id1213285821">
                    <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/appStore-202210191245244429380.svg" alt="appStore" class="img-fluid d-block ms-auto">
                </a>
            </div>
        </div>

        </div>

        <div class="part4 category-tabs">
            <div class="container">
    <div class="d-lg-flex justify-content-lg-center justify-content-between">
        <h6 class="d-lg-flex justify-content-between me-2 footer-tab">
            RELATED LINKS:
        </h6>
        <div class="">



            <a title="SEBI" href="https://www.sebi.gov.in/" target="_blank">SEBI </a>| <a title="BSE India" href="https://www.bseindia.com/" target="_blank">BSE India</a> |<a title="NSE India" href="https://www.nseindia.com/" target="_blank"> NSE India </a>| <a href="https://www.msei.in/">MSEI</a> | <a href="https://www.cdslindia.com/index.html">CDSL</a> | <a title="NSDL" href="https://nsdl.co.in/" target="_blank">NSDL</a> | <a title="RBI" href="https://www.rbi.org.in/" target="_blank">RBI </a>| <a title="MCX" href="https://www.mcxindia.com/" target="_blank">MCX </a>| <a title="NCDEX" href="https://www.ncdex.com/index.aspx" target="_blank">NCDEX</a> | <a title="Scores" href="https://scores.sebi.gov.in" target="_blank">SCORES</a> |<a title="Investors Relations" href="https://www.sharekhan.com/footer/Investor-relations.html" target="_blank"> INVESTORS RELATIONS</a>
        </div>
    </div>
            </div>
        </div>
        <div class="continer">
            <div class="part5">
                <div class="container">
<p><a title="Privacy" href="https://www.sharekhan.com/MediaGalary/Common/Sharekhanwebsitprivacypolicy.pdf" target="_blank">Privacy </a>| <a title="Policies and Procedures" href="https://www.sharekhan.com/MediaGalary/Newsletter/PolicyProcedures_Sharekhan.pdf" target="_blank">Policies and Procedures</a> | <a title="Terms &amp; Conditions" href="https://www.sharekhan.com/MediaGalary/Newsletter/SK-TC-SharekhanLtd-291123.pdf" target="_blank">Terms &amp; Conditions </a>| <a title="Referral T &amp; C" href="https://www.sharekhan.com/tnc/Referrer-n-Referred.pdf" target="_blank">Referral T &amp; C</a> |<a title="Anti Money Laundering Policy" href="https://www.sharekhan.com/MediaGalary/Common/KYC-AML-and-surveillance-policy-Sharekhan-Limited.pdf" target="_blank"> Anti Money Laundering Policy</a> | <a title="RMS Policy" href="https://www.sharekhan.com/MediaGalary/Newsletter/SK-RMS-Policy-ARN-210624.pdf" target="_blank">RMS Policy</a> | <a href="/footer/security.html">Security</a> | <a title="Research Disclaimer" href="https://www.sharekhan.com/MediaGalary/Common/ResearchDisclaimer.pdf" target="_blank">Research-Disclaimer</a>&nbsp;| <a href="/footer/copyright.html">Copyright</a> | <a href="/footer/importantlinks.html">Important Links</a> | <a href="/footer/disclaimer.html">Disclaimer</a>&nbsp;|&nbsp;<a title="KYC in Vernacular Languages" href="https://www.sharekhan.com/MediaGalary/Newsletter/kyc.html" target="_blank">KYC document in vernacular languages</a>&nbsp;| <a title="Stay Secure" href="https://www.sharekhan.com/mediagalary/downloads/StaySecure_Mar2017_Password.jpg" target="_blank">Stay Secure </a>| <a title="Stay Alert" href="https://www.sharekhan.com/MediaGalary/Common/index.html" target="_blank">Stay Alert</a>&nbsp;| <a href="/footer/NDNCR-TermsConditions.html">NDNCR Terms &amp; Conditions</a> | <a title="Filing-complaints on Scores - Easy &amp; Quick" href="https://www.sharekhan.com/MediaGalary/Newsletter/Filing-complaints-on-SCORES.html" target="_blank">Filing complaints on SCORES - Easy &amp; quick</a>&nbsp;|&nbsp;<a href="https://www.sharekhan.com/footer/attention.html">ATTENTION &ndash; A note from the Regulators for Investors</a>&nbsp;| <a href="/MediaGalary/Newsletter/KYC-Trading-DP-Account.html">KYC(Trading + DP account)</a> | <a title="AMLCFT - Investor Education" href="https://www.sharekhan.com/pdfs/AMLCFT%20-Investor%20Education.pdf" target="_blank">AMLCFT -Investor Education </a>| <a title="Investor-Charters" href="https://www.sharekhan.com/MediaGalary/Newsletter/SEBI-Investor-Charters-v1-261124.html" target="_blank">SEBI Investor Charters</a> | <a title="BSE - Investor Grievances" href="https://www.bseindia.com/static/investors/cac_tm.aspx" target="_blank">BSE- Investor Grievances</a>&nbsp;|&nbsp;<a title="Contact US" href="https://www.sharekhan.com/MediaGalary/Upload/SK_Escalation-Matrix-Revised.pdf" target="_blank">Contact Us</a>&nbsp;|&nbsp;<a title="Complaints Disclosure" href="https://www.sharekhan.com/MediaGalary/Newsletter/ComplaintDisclosure-271124.html" target="_blank">Complaints Disclosure</a>&nbsp;|&nbsp;<a title="Bank A/C Disclosure" href="https://www.sharekhan.com/MediaGalary/Common/Client%20Bank%20Accounts_SK.pdf" target="_blank">Bank A/c Disclosure</a>&nbsp;|&nbsp;<a title="Risk Disclosures on Derivatives" href="https://www.sharekhan.com/MediaGalary/Derivative/Sharekhan-Risk-Disclosures-Derivatives.pdf" target="_blank">Risk Disclosures on Derivativess</a>&nbsp;|<a title="Investor Service centres" href="https://www.sharekhan.com/MediaGalary/Common/Investor-Service-centres.pdf" target="_blank">&nbsp;Investor Service Centres&nbsp;</a>|&nbsp;<a title="Online Dispute Resolution Link " href="https://smartodr.in/" target="_blank">Online Dispute Resolution Link</a>&nbsp;|&nbsp;<a title="Sharekhan Branch Details" href="https://www.sharekhan.com/MediaGalary/Common/Sharekhan-Branch-Details.pdf" target="_blank">Mirae Asset Sharekhan Branch Detai</a><a title="Sharekhan Branch Details" href="https://www.sharekhan.com/MediaGalary/Common/Sharekhan-Branch-Details.pdf" target="_blank">ls</a>&nbsp;|&nbsp;<a title="Authorised Person Details" href="https://www.sharekhan.com/MediaGalary/Common/Authorized-Persons-Details.pdf" target="_blank">Authorized Persons Details</a>&nbsp;|&nbsp;<a title="Key Managerial Personnel" href="https://www.sharekhan.com/MediaGalary/Common/Key-Managerial-Personnel.pdf" target="_blank">Key Managerial Personnel&nbsp;</a>|&nbsp;<a title="https://www.sharekhan.com/MediaGalary/Common/Filing-Complaints-at-Sharekhan.pdf" href="https://www.sharekhan.com/MediaGalary/Common/Filing-Complaints-at-Sharekhan.pdf" target="_blank">Filing Complaints at Mirae Asset Sharekhan</a>&nbsp;&nbsp;|&nbsp;<a title="Account Opening" href="https://www.sharekhan.com/MediaGalary/Newsletter/NSE-Circular-on-Opening-an-AC-at-Sharekhan-261124.html" target="_blank">Account Opening Flow at Mirae Asset Sharekhan</a>&nbsp;&nbsp;|<a title="Investor Risk Reduction Access (IRRA)" href="https://www.sharekhan.com/MediaGalary/Common/SK_InvestorRiskReductionAccess(IRRA).pdf" target="_blank">&nbsp;Investor Risk Reduction Access (IRRA)</a>&nbsp;|&nbsp;<a title="Investor Demise SOPs" href="https://www.sharekhan.com/MediaGalary/Newsletter/Common-SOP-Investor-Demise-Reportage-080124.pdf" target="_blank">Investor Demise: SOP on Reporting Norms</a>&nbsp;| <a title="SEBI Investor Website" href="https://www.sharekhan.com/MediaGalary/Upload/SEBI_Investor_Website.pdf" target="_blank">SEBI Investor Website</a>&nbsp;|&nbsp;<a href="https://www.sharekhan.com/MediaGalary/Newsletter/SK-FreezeUnfreeze-Process-note-under-Pre-login-FAQ-Section-280624.pdf">Procedure for Voluntary Freezing of Online Access to Trading A/c</a>&nbsp;|&nbsp;<a title="Client Collateral Details (NSE)" href="https://investorhelpline.nseindia.com/ClientCollateral/welcomeCLUser" target="_blank">Client Collateral Details (NSE)</a>&nbsp;|<a title="POSH Policy" href="https://www.sharekhan.com/MediaGalary/Common/POSH.pdf" target="_blank">POSH at the Workplace</a>&nbsp;|&nbsp;<a title="Client Collateral Details (MCX)" href="https://clientreports.mcxccl.com/#/" target="_blank">Client Collateral Details (MCX)</a>&nbsp;|&nbsp;<a title="Policy on Handling MYGTD Orders" href="https://www.sharekhan.com/MediaGalary/Common/Sharekhan_Policy_on_Handling_MyGTD_orders.pdf" target="_blank">Policy on Handling MYGTD Orders</a>&nbsp;|&nbsp;<a title="Most Important Terms and Conditions" href="https://www.sharekhan.com/MediaGalary/Common/MITC_Sharekhan.pdf" target="_blank">MITC</a>&nbsp;|&nbsp;<a title="Insurance Disclaimer" href="https://www.sharekhan.com/MediaGalary/Newsletter/Insurance_Disclaimer.pdf" target="_blank">Insurance Disclaimer</a>&nbsp;|&nbsp;<a title="Mirae Asset Sharekhan Education Brokerage Refund T&amp;C" href="https://www.sharekhan.com/MediaGalary/Upload/MASK_Education_Brokerage_Refund_TnC.pdf" target="_blank">Mirae Asset Sharekhan Education Brokerage Refund Terms and Conditions </a>&nbsp;|&nbsp;<a title="Mirae Asset Sharekhan Education Brokerage Refund T&amp;C" href="https://www.sharekhan.com/MediaGalary/Common/MASK_Internal%20Shortage%20Policy.pdf" target="_blank">MASK Internal Shortage Policy </a></p>
<p>**This is applicable during the office hours to Sole holder Resident Indian accounts which are KRA verified, also account would be open after all procedures relating to IPV and client due diligence is completed.</p>
<p>Registered Office Address: Sharekhan Limited, 1st Floor, Tower No. 3, Equinox Business Park, LBS Marg, Off BKC, Kurla (West), Mumbai 400 070, Maharashtra, India. Tel: 022 6750 2000.<br />Correspondence Address: 10th Floor, Gigaplex Bldg. No. 9, Raheja Mindspace, Airoli Knowledge Park Rd, MSEB Staff Colony, TTC Industrial Area, Airoli, Navi Mumbai, Maharashtra 400708, India. Tel: 022 - 6116 9000/ 6115 0000; Fax no. 022 6116 9699</p>
<p><span>Sharekhan Ltd - SEBI Regn. No.: BSE / NSE / MCX: INZ000171337 |&nbsp;</span>BSE 748 &ndash; CASH/FAO/CD |&nbsp;<span class="p-3">NSE 10733 &ndash; CASH/FAO/CD&nbsp;</span>|&nbsp;<span class="ps-3">MCX 56125 &ndash; Commodities |&nbsp;</span>Depository services through: NSDL / CDSL - IN-DP-365-2018</p>
<p><span>PMS: INP000005786; Sharekhan Ltd. (AMFI-registered Mutual Fund Distributor) Mutual Fund/SIF: ARN 20669 (<span class="ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak" dir="ltr">date of initial registration: 03/07/2004, and&nbsp;</span>v</span>alid till 02/07/2026); Research Analyst: INH000006183; IRDAI Registered Corporate Agent (Composite) License No. CA0950, valid till June 13, 2027.</p>
<p>Compliance Officer:&nbsp;Mr. Joby John Meledan; Email ID: complianceofficer@sharekhan.com; Tel: 022 4657 3809. For any complaints email at&nbsp;<a href="mailto:igc@sharekhan.com">igc@sharekhan.com</a>.</p>
<p><span>Mirae Asset Sharekhan Financial Services Limited (formerly Sharekhan BNP Paribas Financial Services Limited) &ndash; NBFC - N-13.01810 (RBI)</span></p>
<p>Message From Regulator: No need to issue cheques by investors while subscribing to IPO. Just write the bank account number and sign in the application form to authorise your bank to make payment in case of allotment. No worries for refund as the money remains in investor's account. 1) Message from Exchange(s): Prevent Unauthorised transactions in your account --&gt; Update your mobile numbers/email IDs with your stock brokers. Receive information of your transactions directly from Exchange on your mobile/email at the end of the day. Issued in the interest of investors. 2) Message from Depositories: a) Prevent Unauthorized Transactions in your demat account --&gt; Update your mobile number with your Depository Participant. Receive alerts on your registered mobile for all debit and other important transactions in your demat account directly from NSDL on the same day issued in the interest of investors. b) KYC is one time exercise while dealing in securities markets - once KYC is done through a SEBI registered intermediary (broker, DP, Mutual Fund etc.), you need not undergo the same process again when you approach another intermediary.</p>
<p><span>Company Identification Number (CIN): Sharekhan Ltd: U99999MH1995PLC087498; Sharekhan Commodities Pvt Ltd: U67120MH2000PTC127261; Mirae Asset Sharekhan Financial Services Limited (formerly Sharekhan BNP Paribas Financial Services Limited): U65920MH2004PLC149518; Sharekhan.com India Pvt Ltd: U80904MH2000PTC126954; Sharekhan Consultants Pvt. Ltd: U67190MH2000PTC127257</span></p>
<p><span class="highlight-txt">Disclaimer:</span>&nbsp;Investment in securities market are subject to market risks, read all the related documents carefully before investing.Brokerage will not exceed SEBI prescribed limit.Please refer the Risk Disclosure Document issued by SEBI and go through the Rights and Obligations and Do's and Dont's issued by Stock Exchanges and Depositories before trading on the Stock Exchanges. For commodities derivatives please note that Commodities Derivatives are highly leveraged instruments. PMS is not offered in Commodity Derivative Segment by Sharekhan Limited. Before investing in the asset class consider your investment objectives, level of experience and risk appetite carefully.&nbsp;<span class="ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak" dir="ltr">The securities are quoted as an example and not as a recommendation.</span></p>
<p><span class="ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak" dir="ltr">Opening of account will not guarantee allotment of shares in IPO. (Source &ndash; DRHP) Investors are requested to do their own due diligence before investing in any IPO</span></p>
<p>Mutual funds disclaimer: Mutual Fund investment are subject to market risk. Read all the scheme related documents carefully before investing. For more details,&nbsp;<a title="MF Disclaimer" href="https://www.sharekhan.com/MediaGalary/MutualFund/MF-Disclaimer-Mirae-sharekhan.pdf" target="_blank">click here</a>. Quantities, amounts, figures, graphs and rates shown / displayed are exemplary and not recommendatory or actual. For scheme-related information, please refer to the Scheme Information Document available on the relevant AMC's website for detailed Risk Factors, assets allocation, investment strategy, etc.</p>
<p>Business Partner Terms &amp; Conditions: Minimum security deposit shall be applicable to all prospects availing this offer. Benefits of the offer; that is, waiver of Registration Fee is valid for up to 1 (One) segment only. Benefits under this offer can be availed only once. This offer cannot be clubbed with any other scheme or offer prevailing at the same time. Offer valid up to August 31, 2025. Any kind of malpractice within 1 month from Registration would lead to forfeiture of benefits granted under this offer. Sharekhan Ltd. reserves the right to reject any claims/benefits under the offer if any lapse in the process/intent/functioning or anything whatsoever is found on part of prospects/Claimant or if any act of prospect/Claimant is not in line with the policies or practise of the Sharekhan Ltd. management. Sharekhan Ltd. reserves the right to carry out audit and inspection before release of any payout under this policy. Management of Sharekhan Ltd. reserves the final right to change the Terms &amp; Conditions at any point of time without any prior notice.</p>
<p>MTF Offer Disclaimer: MTF (Margin Trading Facility) are subject to the provisions of SEBI Circular CIR/MRD/DP/54/2017 dated June 13, 2017, and the Terms and Conditions mentioned in the Rights and Obligations statement issued by Sharekhan Ltd. Investment in securities market are subject to market risks, read all the related documents carefully before investing. For detailed Disclaimer and SEBI Registration Details, visit www.sharekhan.com.</p>
<p>#Sharekhan App Rating mentioned is as of 30th June 2024.</p>
<p><a title="ShareShop Listing" href="https://stockbroker-branch.sharekhan.com/" target="_blank">Click here</a> to check out the Shareshop near you.</p>                </div>
            </div>
        </div>
    </footer>
</div>















<div class="demat-btn-hold">
    <a class="demat-btn" data-bs-toggle="modal" data-bs-target="#contactDetails2" id="CaptchaPopupResp">OPEN FREE* DEMAT ACCOUNT</a>
</div>

    <div class="modal fade homepg3" id="contactDetails2" aria-hidden="true" tabindex="-1" role="dialog">
        <div class="modal-dialog modal-dialog-bottom">
            <div class="modal-content">
                <div class="modal-header px-4 border-0 pb-0">
                    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
                </div>
                <div class="modal-body homesection1 pt-1 pb-2">
                    <div class="mtb-logo">
                        <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/Asiamoney_Website_lead_form_img-202506241527594840203.webp"
                             alt="Mirae-Asset-Sharekhan-AsiaMoney-Poll-2023">
                    </div>
                    <div class="greybg">
                        <h6 class="mb-0">OPEN FREE* DEMAT AND TRADING ACCOUNT IN 15 MIN** </h6>
                        <span>Limited Period Offer</span>
                    </div>

                    <div class="form-group text-start mb-3">
                        <input type="text" class="form-control rounded-pill text_dark_gray diyMobile" id="txtLoginMobPopup" name="mobileNo" placeholder="Enter Mobile Number" data-ProductId="87" data-SourceId="369" data-CampId="1192">
                    </div>

                    <div class="form-group">
                        <div class="">
                            <div class="captchafet">
                                <div class="captchainwrap">
                                    <input type="text" class="form-control capinput" placeholder="Enter CAPTCHA" id="txtCaptcha1" name="Captcha" maxlength="6" autocomplete="off" />
                                </div>
                                <div class="wavywrap">
                                    <div class="captchaimage">
                                        <img src="" id="imgCaptcharesp" />
                                    </div>
                                    <div class="refreshwrap">
                                        <button type="button" id="btnRefresh1" onclick="getCaptcharesp('imgCaptcharesp');">
                                            <img src="/Content/images/reload.png" />
                                        </button>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="col-md-8 col-12 mx-auto">
                        <button id="diyStartPopup" class="btn btn-orange-solid w-100 btnStartResume btnstartload1">START / RESUME APPLICATION</button>
                        <input type="hidden" id="ProductId" name="ProductId" value="87" />
                        <input type="hidden" id="SourceId" name="SourceId" value="369" />
                        <input type="hidden" id="CampId" name="CampId" value="1192" />
                        <input type="hidden" id="diyResponse1" />
                            <div class="mt-1">
                                <label>
                                    I agree to all <a href="https://www.sharekhan.com/MediaGalary/Newsletter/SK-Brokerage-Charges-TnCs-171023.pdf">Terms and Conditions</a>
                                    <input type="checkbox" checked="checked" class="toggleTermsCondition">
                                    <span class="checkmark"></span>
                                </label>
                            </div>
                    </div>

                </div>
                    <div class="resorg">
                        <div class="">
                            <div class="greybgrs mb-3 boxgrey" style="">
                                <div class="d-flex">
                                    <div>
                                        <img src="https://www.sharekhan.com/CmsApp/MediaGalary/images/orange-club-202506241416105236423.webp" class="orgimg" />
                                    </div>
                                    <div style="padding-left:10px;">
                                        <p class="ortxt">Want to invest 5 lakhs+ </p>
                                        <p class="ortxt">with Mirae Asset Sharekhan?</p>
                                        <p class="ivtxt">Click on KNOW MORE to learn about our Orange Club A/C Opening Package</p>
                                        <p class="ivtxt"></p>
                                        <a href="https://www.sharekhan.com/demat/OCO_DIY/orangeClub?sourceid=369&amp;campid=4083" class="btn btn-orange-solid w-100 btnexp">
                                            KNOW MORE
                                        </a>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>

            </div>
        </div>
    </div>



<script>
    $(document).ready(function () {
        $("#ops").click(function () {
            $("#ops .collapse-content").toggleClass("d-block");
            $("#ops .fa").toggleClass("fa-minus");
            $("#ops .fa").toggleClass("fa-plus");
        });
        $("#wts").click(function () {
            $("#wts .collapse-content").toggleClass("d-block");
            $("#wts .fa").toggleClass("fa-minus");
            $("#wts .fa").toggleClass("fa-plus");
        });
        $("#il").click(function () {
            $("#il .collapse-content").toggleClass("d-block");
            $("#il .fa").toggleClass("fa-minus");
            $("#il .fa").toggleClass("fa-plus");
        });
        $("#pwu").click(function () {
            $("#pwu .collapse-content").toggleClass("d-block");
            $("#pwu .fa").toggleClass("fa-minus");
            $("#pwu .fa").toggleClass("fa-plus");
        });
        $("#smc").click(function () {
            $("#smc .collapse-content").toggleClass("d-block");
            $("#smc .fa").toggleClass("fa-minus");
            $("#smc .fa").toggleClass("fa-plus");
        });
        $("#tp").click(function () {
            $("#tp .collapse-content").toggleClass("d-block");
            $("#tp .fa").toggleClass("fa-minus");
            $("#tp .fa").toggleClass("fa-plus");
        });

    });
</script>
<script type="text/javascript">
    $("#CaptchaPopupResp").click(function () {
        getCaptcharesp('imgCaptcharesp');
    });
    function getCaptcharesp(imgId) {
            var d=Math.floor(Math.random()*100000)+1;
            $('#' + imgId).attr("src","https://www.sharekhan.com/Captcha/Index?d=" + d);
        }
</script>

    <div class="loading-dialog d-none" id="loader">
        <div class="loading-logo card">
            <div class="md-circular"></div>
        </div>
    </div>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>

    <script src="https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js"></script>

    <script src="https://code.jquery.com/ui/1.13.2/jquery-ui.min.js"></script>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.20.0/jquery.validate.min.js"></script>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validation-unobtrusive/3.2.12/jquery.validate.unobtrusive.min.js"></script>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-ajax-unobtrusive/3.2.6/jquery.unobtrusive-ajax.min.js"></script>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js"></script>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js"></script>

    <script src="https://rawgit.com/Olical/EventEmitter/master/EventEmitter.min.js"></script>


<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.min.css" rel="stylesheet"/>
    	<script src="/bundles/Comman-footer-js?v=qPQARlD0sA7R9kp5fk9_TAYZX7DvwDz5lq5L_6udnLw1"></script>

    <script>
        new WOW().init();
        $(".slider-3sec1").slick({
            infinite: true,
            arrows: true,
            dots: true,
            slidesToShow: 3,
            slidesToScroll: 1,
            responsive: [
                {
                    breakpoint: 1200,
                    settings: {
                        slidesToShow: 3,
                        slidesToScroll: 1
                    }
                },
                {
                    breakpoint: 768,
                    settings: {
                        slidesToShow: 2,
                        slidesToScroll: 1
                    }
                },
                {
                    breakpoint: 576,
                    settings: {
                        slidesToShow: 1,
                        slidesToScroll: 1,
                        arrows: false,
                        dots: true
                    }
                }
            ]

        });
    </script>

    <script type="application/ld+json">
[
  {
    "@context": "https://schema.org",
    "@type": "Organization",
    "name": "Mirae Asset Sharekhan",
    "description": "Invest confidently with Mirae Asset Sharekhan. Explore trading, mutual funds, portfolio management & research insights tailored for Indian investors",
    "url": "https://www.sharekhan.com/",
    "logo": "https://www.sharekhan.com/images/logo.png",
    "sameAs": [
      "https://www.facebook.com/Sharekhan",
      "https://twitter.com/Sharekhan",
      "https://www.instagram.com/sharekhan/",
      "https://www.youtube.com/@SHAREKHAN",
      "https://www.linkedin.com/company/sharekhan/"
    ]
  },
  {
    "@context": "https://schema.org",
    "@type": "VideoObject",
    "name": "Introduction to Mirae Asset Sharekhan",
    "description": "Learn about Mirae Asset Sharekhan’s services and offerings in this introductory video.",
    "thumbnailUrl": "https://www.sharekhan.com/path-to-thumbnail.jpg",
    "uploadDate": "2025-05-08T10:00:00+05:30",
    "duration": "PT2M30S",
    "contentUrl": "https://www.youtube.com/embed/bj8wQZy__2c",
    "embedUrl": "https://www.youtube.com/embed/bj8wQZy__2c",
    "publisher": {
      "@type": "Organization",
      "name": "Mirae Asset Sharekhan",
      "logo": {
        "@type": "ImageObject",
        "url": "https://www.sharekhan.com/path-to-logo.jpg"
      }
    }
  }
]
</script>


</body>
</html>



<script type="text/javascript">

    function parseAmount(input) {
        // Remove non-digit characters except commas
        if (typeof (input) == "number") {
            input = input.toString();
        }
        var unformattedValue = input.replace(/[^\d,.]/g, '');

        // Format the value with commas
        var formattedValue = parseFloat(unformattedValue).toLocaleString('en-IN');

        // Update the input field with the formatted value
        return formattedValue;
    }

    function onSearchBegin() {
        $("#loader").removeClass("d-none");
    }

    function onSearchSuccess() {
        dataTableFilter();
        $("#loader").addClass("d-none");
    }

    $('.moreless-button').click(function () {
        $('.moretext').slideToggle();
        if ($('.moreless-button').text().toLowerCase() == "read more") {
            $(this).text("Read Less")
        } else {
            $(this).text("Read More")
        }
    });

    $(document).ready(function () {
        dataTableFilter();
    });

    $('.toggleTermsCondition').click(function () {
        if ($(this).is(':checked')) {

            $('.btnStartResume').removeAttr('disabled'); //enable input

        } else {
            $('.btnStartResume').attr('disabled', true); //disable input
        }
    });

    var popoverTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]'))
    var popoverList = popoverTriggerList.map(function (popoverTriggerEl) {
        return new bootstrap.Popover(popoverTriggerEl, {
            container: 'body',
            customClass: 'custom-popover',
            placement: 'top'
        })
    })

</script>






