        /* HERO SECTION */
        .demat-hero-wrap {
            background: radial-gradient(circle at 10% 20%, rgba(240, 247, 255, 1) 0%, rgba(255, 255, 255, 1) 90%);
            overflow: hidden;
            position: relative;
            padding: 120px 0;
        }

        /* HERO TEXT */


        .hero-subtext {
            font-size: 18px;
            margin-bottom: 30px;
        }

        /* INPUT CONTAINER */
        .hero-input-glass {
            /* max-width: 520px; */
            background: #fff;
            padding: 8px;
            border-radius: 100px;
            box-shadow: 0 20px 40px rgba(0, 97, 255, .08);
            border: 1px solid rgba(0, 97, 255, .1);
            margin-bottom: 40px;
        }

        /* INPUT ROW */
        .input-inner {
            display: flex;
            align-items: center;
            padding-left: 15px;
            gap: 10px;
        }

        /* COUNTRY CODE */
        .country-code {
            font-weight: 600;
            border-right: 1px solid #ddd;
            padding-right: 10px;
        }

        /* MOBILE INPUT */
        .hero-phone-input {
            border: none !important;
            outline: none !important;
            flex: 1;
            font-size: 16px;
            background: transparent;
        }

        /* PINCODE INPUT */
        .hero-pincode-input {
            border: none;
            outline: none;
            width: 162px;
            font-size: 16px;
            background: transparent;
            border-left: 1px solid #ddd;
            padding-left: 10px;
        }

        /* BUTTON */
        .hero-primary-btn {
            background: #005CB9;
            color: #fff;
            border: none;
            padding: 10px 22px;
            border-radius: 100px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: .3s;
            box-shadow: 0 10px 20px rgba(0, 97, 255, .25);
        }

        .hero-primary-btn:hover {
            transform: translateY(-3px);
            background: #005CB9;
        }

        /* HERO IMAGE */
        .hero-graphic-box {
            position: relative;
        }

        .hero-graphic-box img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }

        /* GLOW EFFECT */
        .graphic-glow-circle {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 97, 255, .12) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        /* HIGHLIGHTS ROW */
        .hero-stats {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-top: 40px;
            padding: 20px 25px;
            background: #fff;
            border-radius: 10px;
            width: fit-content;
        }

        /* STAT ITEM */

        .hero-stat {
            text-align: center;
        }

        .hero-stat h3 {
            font-size: 28px;
            font-weight: 700;
            color: #16a34a;
            margin-bottom: 3px;
        }



        /* DIVIDER */

        .hero-divider {
            width: 1px;
            height: 40px;
            background: #e5e7eb;
        }

        /* special investors highlight */
        .highlight-investor {
            background: #f0fdf4;
        }

        /* MOBILE */
        @media (max-width:576px) {

            .hero-stats {
                justify-content: center;
                gap: 20px;
                padding: 15px;
            }

            .hero-stat h3 {
                font-size: 22px;
            }

            .hero-divider {
                height: 30px;
            }

            .highlight-pill {
                width: 100%;
                justify-content: center;
            }

            .highlight-price {
                font-size: 20px;
            }

        }

        /* BENEFITS SECTION */
        .benefits-container {
            margin: auto;
            text-align: center;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .benefit-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 24px;
            text-align: left;
            transition: .3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
            border-color: #3182ce;
        }

        /* TABLET RESPONSIVE */
        @media (max-width:991px) {



            .hero-subtext {
                text-align: center;
            }

            .hero-input-glass {
                margin: 0 auto 30px;
            }

            .hero-highlights-row {
                justify-content: center;
            }

            .input-inner {
                flex-wrap: wrap;
            }

            .hero-primary-btn {
                width: 100%;
                justify-content: center;
            }

            .hero-phone-input,
            .hero-pincode-input {
                width: 100%;
                border: none;
                border-top: 1px solid #eee;
                padding-top: 10px;
            }

            .country-code {
                border: none;
            }

        }

        /* MOBILE RESPONSIVE */
        /* MOBILE HERO FIX */

        @media (max-width:576px) {

            .demat-hero-wrap {
                padding-top: 70px;
                padding-bottom: 60px;
            }

            /* center hero content */
            .demat-hero-content {
                text-align: center;
                padding: 0 10px;
            }

            /* subtitle */
            .hero-subtext {
                font-size: 15px;
                margin-bottom: 25px;
            }

            /* form container */
            .hero-input-glass {
                width: 100%;
                max-width: 100%;
                border-radius: 20px;
                padding: 18px;
            }

            /* stack inputs */
            .input-inner {
                /* flex-direction:column; */
                align-items: stretch;
                gap: 12px;
                padding-left: 0;
            }

            /* country code */
            .country-code {
                border: none;
                font-size: 16px;
                text-align: left;
            }

            /* mobile input */
            .hero-phone-input {
                width: 100%;
                border-bottom: 1px solid #eee !important;
                padding-bottom: 10px;
            }

            /* pincode input */
            .hero-pincode-input {
                width: 100%;
                border: none;
                border-bottom: 1px solid #eee;
                padding-bottom: 10px;
            }

            /* button */
            .hero-primary-btn {
                width: 100%;
                justify-content: center;
                padding: 14px;
                font-size: 16px;
                border-radius: 30px;
            }

            /* highlight row */
            .hero-highlights-row {
                justify-content: center;
                gap: 8px;
                font-size: 14px;
                margin-top: 20px;
            }

            /* remove separators */
            .hero-highlights-row .separator {
                display: none;
            }

            /* hero image */
            .hero-graphic-box img {
                margin-top: 30px;
            }

        }

        /* EXTRA SMALL DEVICES */
        @media (max-width:380px) {

            .hero-subtext {
                font-size: 14px;
            }

            .hero-primary-btn {
                font-size: 14px;
                padding: 12px;
            }

        }

        /* Investment Options Section */

        .investment-options {
            padding: 90px 0;
            text-align: center;
        }



        /* GRID */

        .investment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 800px;
            margin: auto;
        }

        /* BOX */

        .investment-box {
            transition: 0.3s;
        }

        .investment-box:hover {
            transform: translateY(-5px);
        }

        /* ICON */

        .icon-d {
            width: 62px;
            height: 62px;
            margin: auto;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 10px;
        }

        /* COLORS */

        .equity {
            background: #e8f7ee;
            color: #16a34a;
        }

        .derivative {
            background: #e8f0fe;
            color: #2563eb;
        }

        .ipo {
            background: #fff3e8;
            color: #f97316;
        }

        .mutual {
            background: #fff0f0;
            color: #ef4444;
        }

        .etf {
            background: #eef2ff;
            color: #6366f1;
        }

        .commodity {
            background: #fff7ed;
            color: #f59e0b;
        }

        .investment-box p {
            font-weight: 600;
        }

        /* TABLET */

        @media(max-width:992px) {
            .investment-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* MOBILE */

        @media(max-width:576px) {



            .investment-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

        }

        /* Difference Section */
        .difference-section {
            padding: 100px 0;
            background: #f8fafc;
        }

        .difference-header {
            text-align: center;
            max-width: 750px;
            margin: auto;
            margin-bottom: 60px;
        }

        .difference-header h2 {
            font-size: 34px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .difference-header p {
            color: #6b7280;
            font-size: 16px;
        }

        /* LIST LAYOUT */

        .difference-list {
            max-width: 900px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        /* ITEM */

        .difference-item {
            display: flex;
            gap: 18px;
            align-items: flex-start;
        }

        /* ICON */

        .diff-icon {
            min-width: 38px;
            height: 38px;
            background: #005CB9;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 600;
            margin-top: 3px;
        }

        /* TEXT */


.investment-ready-text{
display:flex;
align-items:flex-start;
gap:10px;
}

.investment-ready-text i{
color:#16a34a;
font-size:18px;
margin-top:3px;
}

.investment-ready-text p{
margin:0;
}


        /* MOBILE */

        @media(max-width:768px) {

            .difference-list {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .difference-header h2 {
                font-size: 26px;
            }

        }

        /* SECTION */

        .investment-cta-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(135deg, #005CB9, #005CB9);
            overflow: hidden;
            color: #fff;
        }

        /* BACKGROUND SHAPES */

        .cta-bg-shape {
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            top: -150px;
            left: -150px;
        }

        .cta-bg-shape2 {
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            bottom: -120px;
            right: -120px;
        }

        /* GRID */

        .cta-wrapper {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* LEFT CONTENT */





        /* FORM CARD */

        .cta-form-box {
            background: #fff;
            padding: 35px;
            border-radius: 16px;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
        }

        .cta-form-box h4 {
            text-align: center;
            margin-bottom: 20px;
            font-size: 20px;
        }

        /* FORM */

        .cta-form-box form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cta-form-box input {
            height: 48px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 0 12px;
            font-size: 14px;
            outline: none;
        }

        .cta-form-box input:focus {
            border-color: #005CB9;
        }

        /* PHONE */

        .phone-field {
            display: flex;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
        }

        .phone-field span {
            background: #f3f4f6;
            padding: 0 12px;
            display: flex;
            align-items: center;
            font-weight: 600;
        }

        .phone-field input {
            border: none;
            flex: 1;
        }

        /* BUTTON */

        .cta-form-box button {
            height: 48px;
            background: #005CB9;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: .3s;
        }

        .cta-form-box button:hover {
            background: #005CB9;
        }

        /* TABLET */

        @media(max-width:992px) {

            .cta-wrapper {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .cta-left p {
                margin: auto;
            }

            .cta-right {
                display: flex;
                justify-content: center;
            }

        }

        /* MOBILE */

        @media(max-width:576px) {

            .investment-cta-section {
                padding: 80px 0;
            }



            .cta-form-box {
                padding: 25px;
            }

        }

        .investment-cta-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #005CB9, #005cb9c5);
            color: #fff;
        }

        /* TEXT */

        .cta-left h2 {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
        }

        .cta-left p {
            font-size: 17px;
            line-height: 1.7;
            color: #fff;
            opacity: .9;
            margin-bottom: 30px;
            max-width: 520px;
        }

        /* APP BUTTONS */

        .services-bottom-content {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .store-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            padding: 10px 18px;
            border-radius: 10px;
            text-decoration: none;
            transition: .3s;
        }

        .store-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .store-btn .icon {
            font-size: 22px;
        }

        .store-btn .small-text {
            font-size: 11px;
            display: block;
        }

        .store-btn .big-text {
            font-size: 15px;
            font-weight: 600;
        }

        .app-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        /* BUTTON */

        .cta-store-wrapper{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-top:30px;
}

/* BUTTON */

.cta-store-btn{
display:flex;
align-items:center;
gap:12px;
background:#fff;
padding:12px 28px;
border-radius:50px;
text-decoration:none;
transition:0.3s;
min-width:210px;
}

.cta-store-btn:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* ICON */

.cta-store-btn i{
font-size:24px;
}

/* TEXT */

.cta-store-text{
display:flex;
flex-direction:column;
line-height:1.1;
}

.cta-store-text span{
font-size:11px;
opacity:.9;
}

.cta-store-text strong{
font-size:17px;
font-weight:600;
}

/* MOBILE */

@media(max-width:576px){

.cta-store-wrapper{
justify-content:center;
}

.cta-store-btn{
width:100%;
justify-content:center;
}

}