                    
                    
                    .welcome-section {
                        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
                        position: relative;
                        overflow: hidden;
                    }

                    .welcome-section::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: url(assets/images/shape/pattern.png) repeat;
                        opacity: 0.05;
                        z-index: 0;
                    }

                    .auto-container {
                        position: relative;
                        z-index: 1;
                    }


                    .text-box {
                        margin-bottom: 40px;
                    }

                    .text-box p {
                        font-size: 16px;
                        line-height: 1.8;
                        color: #555;
                        margin-bottom: 20px;
                    }

                    .read-more-link {
                        display: inline-flex;
                        align-items: center;
                        color: #16c79a;
                        font-weight: 600;
                        font-size: 16px;
                        text-decoration: none;
                        transition: all 0.3s ease;
                    }

                    .read-more-link:hover {
                        color: #0fa57d;
                    }

                    .read-more-link i {
                        margin-left: 8px;
                        transition: transform 0.3s ease;
                    }

                    .read-more-link:hover i {
                        transform: translateX(5px);
                    }

                    .features-box {
                        display: flex;
                        flex-wrap: wrap;
                        margin: 0 -15px;
                    }

                    .feature-card {
                        flex: 0 0 calc(50% - 30px);
                        margin: 0 15px 30px;
                        background: white;
                        border-radius: 15px;
                        padding: 25px;
                        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                        transition: all 0.3s ease;
                        position: relative;
                        overflow: hidden;
                    }

                    .feature-card::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 5px;
                        height: 100%;
                        background: #16c79a;
                        transform: scaleY(0);
                        transform-origin: bottom;
                        transition: transform 0.3s ease;
                    }

                    .feature-card:hover::before {
                        transform: scaleY(1);
                    }

                    .feature-card:hover {
                        transform: translateY(-5px);
                        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                    }

                    .feature-card .icon-box {
                        width: 60px;
                        height: 60px;
                        border-radius: 50%;
                        background: rgba(22, 199, 154, 0.1);
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin-bottom: 15px;
                        color: #16c79a;
                        font-size: 24px;
                        transition: all 0.3s ease;
                    }

                    .feature-card:hover .icon-box {
                        background: #16c79a;
                        color: white;
                    }

                    .feature-card h3 {
                        font-size: 20px;
                        font-weight: 600;
                        color: #1a1a2e;
                        margin-bottom: 10px;
                    }

                    .feature-card p {
                        font-size: 15px;
                        line-height: 1.6;
                        color: #666;
                        margin: 0;
                    }

                    .btn-box {
                        /* margin-top: 20px; */
                    }

                    .theme-btn {
                        display: inline-block;
                        padding: 12px 30px;
                        background: linear-gradient(135deg, #16c79a 0%, #0fa57d 100%);
                        color: white;
                        font-size: 16px;
                        font-weight: 600;
                        border-radius: 30px;
                        text-decoration: none;
                        transition: all 0.3s ease;
                        box-shadow: 0 5px 15px rgba(22, 199, 154, 0.3);
                        position: relative;
                        overflow: hidden;
                    }

                    .theme-btn::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: -100%;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
                        transition: left 0.5s ease;
                    }

                    .theme-btn:hover::before {
                        left: 100%;
                    }

                    .theme-btn:hover {
                        transform: translateY(-3px);
                        box-shadow: 0 8px 20px rgba(22, 199, 154, 0.4);
                    }

                    .image-block {
                        position: relative;
                    }

                    .main-image {
                        position: relative;
                        z-index: 2;
                        border-radius: 15px;
                        overflow: hidden;
                        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
                    }

                    .main-image img {
                        width: 100%;
                        height: auto;
                        display: block;
                        transition: transform 0.5s ease;
                    }

                    .main-image:hover img {
                        transform: scale(1.05);
                    }

                    .image-pattern {
                        position: absolute;
                        top: 20px;
                        right: 20px;
                        z-index: 1;
                    }

                    .pattern-item {
                        width: 15px;
                        height: 15px;
                        background: #16c79a;
                        border-radius: 50%;
                        margin-bottom: 15px;
                        opacity: 0.7;
                        animation: pulse 2s infinite alternate;
                    }

                    .pattern-item:nth-child(2) {
                        animation-delay: 0.5s;
                    }

                    .pattern-item:nth-child(3) {
                        animation-delay: 1s;
                    }

                    @keyframes pulse {
                        0% {
                            transform: scale(1);
                            opacity: 0.7;
                        }
                        100% {
                            transform: scale(1.2);
                            opacity: 0.3;
                        }
                    }

                    .experience-badge {
                        position: absolute;
                        bottom: -30px;
                        right: 30px;
                        width: 120px;
                        height: 120px;
                        background: white;
                        border-radius: 50%;
                        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        z-index: 3;
                        border: 4px solid #16c79a;
                    }

                    .experience-badge .inner {
                        text-align: center;
                    }

                    .experience-badge h2 {
                        font-size: 32px;
                        font-weight: 700;
                        color: #16c79a;
                        margin: 0;
                        line-height: 1;
                    }

                    .experience-badge p {
                        font-size: 12px;
                        color: #666;
                        margin: 5px 0 0;
                    }

                    /* Responsive Design */
                    @media (max-width: 991px) {
                        .image-column {
                            margin-top: 50px;
                        }
                        
                        .features-box {
                            flex-direction: column;
                        }
                        
                        .feature-card {
                            flex: 0 0 100%;
                            margin: 0 0 20px;
                        }
                    }

                    @media (max-width: 767px) {
                        .sec-title h2 {
                            font-size: 28px;
                        }
                        
                        .feature-card {
                            padding: 20px;
                        }
                        
                        .feature-card .icon-box {
                            width: 50px;
                            height: 50px;
                            font-size: 20px;
                        }
                        
                        .feature-card h3 {
                            font-size: 18px;
                        }
                        
                        .experience-badge {
                            width: 100px;
                            height: 100px;
                            bottom: -20px;
                            right: 20px;
                        }
                        
                        .experience-badge h2 {
                            font-size: 24px;
                        }
                    }


                    /* section 2 */
            /* Color Variables */
            :root {
                --primary-color: #16c79a;
                --secondary-color: #1a3a5e;
                --accent-color: #0fa57d;
                --text-color: #333;
                --light-text: #555;
                --bg-light: #f8f9fa;
                --card-bg: #ffffff;
                --section-bg: #f5f7fa;
            }

            /* Funfact Section Styles */
            .funfact-section {
                background: var(--section-bg);
                padding: 100px 0 80px;
                position: relative;
                overflow: hidden;
            }

            .funfact-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url(assets/images/shape/pattern.png) repeat;
                opacity: 0.03;
                z-index: 0;
            }

            .funfact-section .auto-container {
                position: relative;
                z-index: 1;
            }

            .funfact-block-one {
                margin-bottom: 30px;
                position: relative;
            }

            .funfact-block-one .inner-box {
                background: var(--card-bg);
                border-radius: 15px;
                padding: 40px 30px;
                text-align: center;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
                height: 100%;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                border: 1px solid rgba(22, 199, 154, 0.1);
            }

            .funfact-block-one .inner-box::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 3px;
                background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.5s ease;
            }

            .funfact-block-one .inner-box:hover::before {
                transform: scaleX(1);
            }

            .funfact-block-one .inner-box:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            }

            .funfact-block-one .icon-box {
                width: 70px;
                height: 70px;
                border-radius: 50%;
                background: rgba(22, 199, 154, 0.1);
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 20px;
                color: var(--primary-color);
                font-size: 28px;
                transition: all 0.3s ease;
            }

            .funfact-block-one .inner-box:hover .icon-box {
                background: var(--primary-color);
                color: #000;
                transform: scale(1.1);
                box-shadow: 0 5px 15px rgba(22, 199, 154, 0.3);
            }

            .funfact-block-one .count-outer {
                font-size: 48px;
                font-weight: 700;
                color: var(--secondary-color);
                margin-bottom: 10px;
                line-height: 1;
            }

            .funfact-block-one .symble {
                color: var(--primary-color);
                font-size: 36px;
                font-weight: 700;
            }

            .funfact-block-one p {
                color: var(--light-text);
                font-size: 16px;
                margin: 0;
                text-transform: uppercase;
                letter-spacing: 1px;
                font-weight: 500;
            }

           
            /* Section Title Styles */
        
            /* Responsive Design */
            @media (max-width: 991px) {
                .funfact-section  {
                    padding: 80px 0 60px;
                }
                
                .funfact-block-one .inner-box {
                    padding: 30px 20px;
                }
                
                .funfact-block-one .count-outer {
                    font-size: 42px;
                }
                
             
            }

            @media (max-width: 767px) {
                .funfact-section {
                    padding: 60px 0 40px;
                }
                
                .sec-title h2 {
                    font-size: 30px;
                }
                
                .funfact-block-one .count-outer {
                    font-size: 36px;
                }
                
                .funfact-block-one .icon-box .icon-box {
                    width: 60px;
                    height: 60px;
                    font-size: 24px;
                }
                
              
            }

                    /* section 2 */



            /* Industries Section Styles */
            .industries-style-two {
                background: #f8f9fa;
                padding: 100px 0 80px;
                position: relative;
            }

            .industries-style-two .pattern-layer {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url(assets/images/shape/pattern.png) repeat;
                opacity: 0.05;
                z-index: 0;
            }

            .industries-style-two .auto-container {
                position: relative;
                z-index: 1;
            }

            .industries-block-two {
                margin-bottom: 30px;
                height: 100%;
            }

            .industries-block-two .inner-box {
                border-radius: 15px;
                padding: 0;
                height: 100%;
                display: flex;
                flex-direction: column;
                background: #ffffff;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                overflow: hidden;
            }

            .industries-block-two .card-header {
                padding: 25px 30px 15px;
                display: flex;
                align-items: center;
                gap: 15px;
            }

            /* Colorful cards with different header backgrounds */
            .industries-block-two .inner-box.mutual-funds .card-header {
                background: linear-gradient(135deg, #16c79a, #0fa57d);
            }

            .industries-block-two .inner-box.fixed-deposits .card-header {
                background: linear-gradient(135deg, #3498db, #2980b9);
            }

            .industries-block-two .inner-box.insurance .card-header {
                background: linear-gradient(135deg, #e74c3c, #c0392b);
            }

            .industries-block-two .inner-box.mediclaim .card-header {
                background: linear-gradient(135deg, #f39c12, #e67e22);
            }


            .industries-block-two h3 {
                font-size: 20px;
                font-weight: 600;
                margin: 0;
            }

            .industries-block-two h3 a {
                color: white;
                text-decoration: none;
            }

            .industries-block-two .inner-box > p {
                padding: 20px 30px;
                color: #555;
                font-size: 15px;
                line-height: 1.6;
                margin: 0;
                flex-grow: 1;
            }

            .industries-block-two .link {
                padding: 0 30px 25px;
            }

            .industries-block-two .link a {
                display: inline-flex;
                align-items: center;
                color: #16c79a;
                font-weight: 600;
                font-size: 16px;
                text-decoration: none;
            }

            .industries-block-two .link a i {
                margin-left: 8px;
            }

            

            /* Responsive Design */
            @media (max-width: 991px) {
                .industries-style-two {
                    padding: 80px 0 60px;
                }
            }

            @media (max-width: 767px) {
                .industries-style-two {
                    padding: 60px 0 40px;
                }
                
                .sec-title h2 {
                    font-size: 30px;
                }
                
                .industries-block-two .card-header {
                    padding: 20px;
                    flex-direction: column;
                    text-align: center;
                    gap: 10px;
                }
                
                .industries-block-two .inner-box > p {
                    padding: 15px 20px;
                }
                
                .industries-block-two .link {
                    padding: 0 20px 20px;
                }
            }

                    /* industries section  */
                 /* Choose Us Section Styles */
            .chooseus-style-two {
                background: #f8f9fa;
                padding: 80px 0 60px;
                position: relative;
            }

            .chooseus-style-two::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url(assets/images/shape/pattern.png) repeat;
                opacity: 0.03;
                z-index: 0;
            }

            .chooseus-style-two .auto-container {
                position: relative;
                z-index: 1;
            }

            .chooseus-block {
                margin-bottom: 30px;
                height: 100%;
            }
            .chooseus-style-two .chooseus-block-one .inner-box{
                border:1px solid rgba(22, 199, 154, 0.6);
            }

            .chooseus-block-one .inner-box {
                background: #ffffff;
                border-radius: 15px;
                padding: 40px 30px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
                height: 100%;
                border: 1px solid rgba(22, 199, 154, 0.1);
            }

            .chooseus-block-one .inner-box::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 3px;
                background: linear-gradient(90deg, #16c79a, #0fa57d);
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.5s ease;
            }

            .chooseus-block-one .inner-box:hover::before {
                transform: scaleX(1);
            }

            .chooseus-block-one .inner-box:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            }

            .chooseus-block-one .icon-box {
                width: 70px;
                height: 70px;
                border-radius: 50%;
                background: linear-gradient(135deg, #16c79a, #0fa57d);
                margin-bottom: 20px;
                color: white;
                font-size: 28px;
                transition: all 0.3s ease;
                position: relative;
                z-index: 1;
                box-shadow: 0 5px 15px rgba(22, 199, 154, 0.2);
            }

            .chooseus-block-one .inner-box:hover .icon-box {
                transform: scale(1.1);
                box-shadow: 0 10px 20px rgba(22, 199, 154, 0.3);
            }

            .chooseus-block-one h3 {
                font-size: 20px;
                font-weight: 600;
                color: #1a3a5e;
                margin-bottom: 15px;
                position: relative;
                z-index: 1;
            }

            .chooseus-block-one h3 a {
                color: #16c79a;
                text-decoration: none;
                transition: color 0.3s ease;
            }

            .chooseus-block-one h3 a:hover {
                color: #16c79a;
            }

            .chooseus-block-one p {
                color: #555;
                font-size: 15px;
                line-height: 1.6;
                margin-bottom: 20px;
                flex-grow: 1;
                position: relative;
                z-index: 1;
            }

            .chooseus-block-one .link {
                position: relative;
                z-index: 1;
                margin-top: auto;
                color: #16c79a;
            }

            .chooseus-block-one .link a {
                display: inline-flex;
                align-items: center;
                color: #16c79a;
                font-weight: 600;
                font-size: 16px;
                text-decoration: none;
                transition: all 0.3s ease;
            }
         
            .chooseus-block-one .link a i {
                margin-left: 8px;
                transition: transform 0.3s ease;
                color: #16c79a !important;
            }

            .chooseus-block-one .link a:hover {
                color: #0fa57d;
            }

            .chooseus-block-one .link a:hover i {
                transform: translateX(5px);
            }


            /* Responsive Design */
            @media (max-width: 991px) {
                .chooseus-style-two {
                    padding: 60px 0 40px;
                }
                
                .chooseus-block-one .inner-box {
                    padding: 30px 25px;
                }
            }

            @media (max-width: 767px) {
                .chooseus-style-two {
                    padding: 50px 0 30px;
                }
                
                .sec-title h2 {
                    font-size: 30px;
                }
                
                .chooseus-block-one .icon-box {
                    width: 60px;
                    height: 60px;
                    font-size: 24px;
                }
                
                .chooseus-block-one h3 {
                    font-size: 18px;
                }
            }
                /* process section */
                .processing-block-two:before{
                    border:1px solid rgba(22, 199, 154, 0.2);
                }