        :root {
        --primary-color: #2c3e50;
        --secondary-color: #3498db;
        --accent-color: #e74c3c;
        --light-bg: #f8f9fa;
        --dark-text: #2c3e50;
        --light-text: #7f8c8d;
        }
        body {
        font-family: "Inter", sans-serif;
        scroll-behavior: smooth;
        background: #fff;
        }
        .page-title {
        text-align: center;
        color: #1a1a1a;
        font-weight: 700;
        margin-bottom: 60px;
        font-size: 2rem;
        line-height: 1.3;
        padding: 0 20px;
        animation: fadeInDown 0.8s ease;
        }
        @keyframes fadeInDown {
        from {
        opacity: 0;
        transform: translateY(-30px);
        }
        to {
        opacity: 1;
        transform: translateY(0);
        }
        }
        .card-wrapper {
        animation: fadeInUp 0.8s ease backwards;
        }
        .card-wrapper:nth-child(1) { animation-delay: 0.1s; }
        .card-wrapper:nth-child(2) { animation-delay: 0.2s; }
        .card-wrapper:nth-child(3) { animation-delay: 0.3s; }
        .card-wrapper:nth-child(4) { animation-delay: 0.4s; }
        .card-wrapper:nth-child(5) { animation-delay: 0.5s; }
        .card-wrapper:nth-child(6) { animation-delay: 0.6s; }
        @keyframes fadeInUp {
        from {
        opacity: 0;
        transform: translateY(40px);
        }
        to {
        opacity: 1;
        transform: translateY(0);
        }
        }
        .finance-card {
        background: white;
        border-radius: 16px;
        padding: 1px 16px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        border: 1px solid #e8e8e8;
        position: relative;
        overflow: hidden;
        padding-bottom: 6px;
        }
        .finance-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.6s ease;
        }
        .finance-card:hover::after {
        left: 100%;
        }
        .finance-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 12px 32px rgba(0,0,0,0.12);
        border-color: #d0d0d0;
        }
        .company-logo {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0px;
        transition: all 0.4s ease;
        }
        .finance-card:hover .company-logo {
        transform: scale(1.08) rotate(2deg);
        }
        .logo-placeholder {
        width: 160px;
        height: 50px;
        /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 15px;
        }
        .company-title {
        font-size: 20px;
        font-weight: 500;
        color: #484d4e;
        text-align: center;
        margin-bottom: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
        }
        .finance-card:hover .company-title {
        color: #667eea;
        }
        .detail-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
        padding: 0px 0;
        }
        .detail-label {
        color: #636e72;
        font-size: 0.95rem;
        font-weight: 500;
        }
        .detail-value {
        color: #2d3436;
        font-weight: 600;
        font-size: 0.95rem;
        }
        .rating-pill {
        display: inline-block;
        padding: 6px 16px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.88rem;
        letter-spacing: 0.5px;
        transition: transform 0.3s ease;
        }
        .finance-card:hover .rating-pill {
        transform: scale(1.1);
        }
        .rating1
        {
        }
        .logo-placeholder .img-fluid
        {
        height:65px !important;
        }
        .interest-box {
        text-align: center;
        margin: 0px 0;
        padding: 4px 15px;
        /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
        border-radius: 12px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        }
        =
        =
        @keyframes rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
        }
        .interest-label {
        color: #6e6e6e;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        font-weight: 600;
        font-size: 10px;
        }
        .interest-rate {
        color: #4b4b8c;
        font-size: 20px;
        font-weight: 800;
        position: relative;
        z-index: 1;
        }
        .action-buttons {
        display: flex;
        gap: 12px;
        margin-top: 24px;
        }
        .btn-action {
        flex: 1;
        padding: 6px 1px;
        border-radius: 8px;
        font-weight: 700;
        border: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-transform: uppercase;
        font-size: 0.82rem;
        letter-spacing: 0.8px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        }
        .btn-outline {
        background: white;
        color: #9b9045;
        border: 2px solid #9b9045;
        position: relative;
        }
        .btn-outline:hover {
        color: white;
        transform: translateY(-3px);
        }
        .btn-solid {
        background: #9b9045;
        color: white;
        border: 2px solid #9b9045;
        }
        .btn-solid:hover {
        transform: translateY(-3px);
        }
        .btn-action span {
        position: relative;
        z-index: 1;
        }
        /*athorised section css start */
        .container_authorised .card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 13px;
        padding: 0px 21px;
        box-shadow: none;
        animation: fadeIn 0.6s ease-out;
        padding-bottom: 37px;
        }
        @keyframes fadeIn {
        from {
        opacity: 0;
        transform: translateY(30px);
        }
        to {
        opacity: 1;
        transform: translateY(0);
        }
        }
        .container_authorised .header {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 23px;
        padding-bottom: 20px;
        border-bottom: 3px solid #667eea;
        background: none;
        padding: 15px 2px;
        }
        .container_authorised .badge {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
        animation: pulse 2s infinite;
        }
        @keyframes pulse {
        0%,
        100% {
        transform: scale(1);
        }
        50% {
        transform: scale(1.05);
        }
        }
        .container_authorised .badge svg {
        width: 40px;
        height: 40px;
        fill: white;
        }
        .container_authorised h1 {
        font-size: 34px;
        color: #2d3748;
        font-weight: 700;
        letter-spacing: -0.5px;
        }
        .container_authorised .content {
        line-height: 1.8;
        font-size: 1.1rem;
        color: #4a5568;
        }
        .container_authorised .highlight {
        color: #667eea;
        font-weight: 600;
        position: relative;
        display: inline-block;
        }
        .container_authorised .highlight::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #667eea, #764ba2);
        opacity: 0.3;
        }
        .container_authorised .stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 30px;
        }
        .container_authorised .stat-card {
        background: linear-gradient(135deg, #667eea 0%, #1a3a8f 100%);
        padding: 9px 5px;
        border-radius: 17px;
        color: white;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .container_authorised .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
        }
        .container_authorised .stat-label {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
        }
        .container_authorised .stat-value {
        font-size: 1.5rem;
        font-weight: 700;
        }
        /*block section*/
        .blog-card {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all .3s ease;
        }
        .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        .blog-img img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: .4s ease;
        }
        .blog-card:hover .blog-img img {
        transform: scale(1.08);
        }
        .blog-content {
        padding: 20px;
        }
        .blog-title {
        font-size: 18px;
        font-weight: 700;
        }
        .blog-desc {
        font-size: 14px;
        color: #555;
        margin-top: 8px;
        }
        .read-more {
        margin-top: 12px;
        display: inline-block;
        font-weight: 600;
        color: #0d6efd;
        text-decoration: none;
        }
        .read-more:hover {
        text-decoration: underline;
        }
        /* Slick adjustments */
        .slick-slide {
        margin: 15px;
        }
        .slick-prev:before,
        .slick-next:before {
        color: #000;
        font-size: 30px;
        }
        /**/
        /**/
        .section-title {
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 50px;
        color: #2c3e50;
        position: relative;
        display: inline-block;
        width: 100%;
        }
        .sectiontitlep {
        font-size: 15px;
        text-align: center;
        padding-bottom: 0px;
        margin-bottom: 4px;
        font-weight: normal;
        padding-top: 3px;
        }
        .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: none;
        border-radius: 2px;
        text-align: left;
        }
        /**/
        /**/
        .accordion-button {
        background: white;
        color: #333;
        font-weight: 600;
        border-radius: 15px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        background: #f3f1f1;
        border-radius: 0px !important;
        }
        .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white !important;
        }
        .document .accordion-button:not(.collapsed) {
        background: White !important;
        color: #000000 !important;
        background-color: #ffffff !important;
        box-shadow: none !important;
        }
        .slick-prev:before, .slick-next:before {
        color: #451fb3;
        }
        .document accordion-button:not(.collapsed)::after {
        filter: none !important;
        }
        .taxbenifit .accordion-button:not(.collapsed) {
        background: White !important;
        /* color: #000000 !important; */
        background-color: #52529f !important;
        box-shadow: none !important;
        }
        .taxbenifit .accordion-button {
        background: #f8f8f8 !important;
        }
        .accordion-button:not(.collapsed):focus {
        border: 0px solid #cccccc !important;
        }
        .accordion-item {
        border: none;
        margin-bottom: 1rem;
        border-radius: 0px;
        overflow: hidden;
        }
        /**/
        /*rr container css*/
        .rrcontainer .section-title {
        font-weight: 800;
        color: #626262;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
        }
        .rrcontainer .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: #3178a9;
        border-radius: 2px;
        }
        .rrcontainer .section-text {
        font-size: 1.1rem;
        line-height: 1.7;
        color:  #666;
        /* max-width: 900px; */
        margin-left: auto;
        margin-right: auto;
        }
        /* Feature Card Styling */
        .rrcontainer .feature-card {
        border: none;
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease-in-out;
        height: 100%;
        position: relative;
        overflow: hidden;
        z-index: 1;
        }
        .rrcontainer .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: #9b9045;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
        }
        .rrcontainer .feature-icon-wrapper {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #4b4b8c;
        color: white;
        font-size: 2.5rem;
        margin-bottom: 14px;
        transition: all 0.4s ease;
        box-shadow: 0 8px 20px rgba(217, 83, 79, 0.3);
        }
        .rrcontainer .feature-title {
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        color:#2c3e50;
        }
        .rrcontainer .feature-desc {
        color: #666;
        font-size: 1rem;
        line-height: 1.6;
        }
        /* Hover Animations */
        .rrcontainer .feature-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .rrcontainer .feature-card:hover::before {
        transform: scaleX(1);
        }
        .rrcontainer  .feature-card:hover .feature-icon-wrapper {
        transform: rotateY(180deg) scale(1.1);
        background: #9b9045;
        }
        /* Stats Section */
        .stats-section {
        background: linear-gradient(135deg, #2c3e50; 0%, #1a2530 100%);
        color: white;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        background: #4b4b8c;
        }
        .rrcontainer .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
        opacity: 0.5;
        }
        .rrcontainer.stat-item {
        text-align: center;
        padding: 20px;
        position: relative;
        z-index: 1;
        }
        .rrcontainer .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        background: #fffefe;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        }
        .rrcontainer.stat-label {
        font-size: 1rem;
        opacity: 0.9;
        }
        /* CTA Section */
        .cta-section {
        background: #4b4b8c;
        color: white;
        border-radius: 20px;
        padding: 40px;
        position: relative;
        overflow: hidden;
        }
        .rrcontainer .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: rgba(255, 255, 255, 0.1);
        transform: rotate(30deg);
        }
        .rrcontainer .cta-title {
        font-weight: 700;
        margin-bottom: 1rem;
        color: #fff;
        }
        .rrcontainer .btn-light-custom {
        background: #9b9045;
        color: #ffffff;
        border: none;
        padding: 12px 30px;
        border-radius: 17px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .rrcontainer .btn-light-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        /* Animation Delays for staggered effect */
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }
        /* Floating animation */
        @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
        }
        .rrcontainer  .floating {
        animation: float 5s ease-in-out infinite;
        }
        /*modal css start here*/
        .modaldiv .modal-content {
        border: none;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        background: #ffffff;
        }
        .fdtxt
        {    color: #626262;
        /* font-size: 25px; */
        padding-top: 9px;
        }
        .modaldiv .modal-header {
        border: none;
        padding: 11px 15px;
        background: linear-gradient(135deg, #7676db 0%, #252546 100%);
        position: relative;
        overflow: hidden;
        }
        .modaldiv .modal-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
        }
        @keyframes rotate {
        from {
        transform: rotate(0deg);
        }
        to {
        transform: rotate(360deg);
        }
        }
        .modaldiv .modal-header .btn-close {
        filter: brightness(0) invert(1);
        opacity: 0.8;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
        }
        .modaldiv .modal-header .btn-close:hover {
        opacity: 1;
        transform: rotate(90deg);
        }
        .modaldiv .modal-title {
        color: #ffffff;
        font-weight: 600;
        font-size: 19px;
        text-align: center;
        width: 100%;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1;
        }
        .modaldiv .modal-body {
        padding: 2rem;
        }
        .modaldiv .subtitle {
        color: #6c757d;
        font-size: 1.05rem;
        margin-bottom: 5px;
        text-align: center;
        font-weight: 400;
        }
        .modaldiv .investment-badge {
        display: inline-block;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 500;
        margin-bottom: 2rem;
        }
        .modaldiv .form-control {
        border: 2px solid #e9ecef;
        border-radius: 16px !important;
        padding: 8px 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #ffffff;
        border-radius: 10px !important;
        }
        .modaldiv .form-select {
        border: 2px solid #e9ecef;
        border-radius: 16px !important;
        padding: 8px 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
        border-radius: 10px !important;
        }
        .modaldiv .form-control:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
        background: #ffffff;
        transform: translateY(-2px);
        }
        .modaldiv .input-wrapper {
        position: relative;
        margin-bottom: 2rem;
        }
        .modaldiv .input-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #667eea;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        }
        .modaldiv .form-control:focus~.input-icon {
        transform: translateY(-50%) scale(1.2);
        }
        .modaldiv .btn-invest {
        background: bb9654;
        border: none;
        border-radius: 9px;
        padding: 10px 3px;
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
        width: 51%;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        position: relative;
        overflow: hidden;
        background-color: #9b9045;
        }
        .modaldiv .btn-invest::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
        }
        .modaldiv .btn-invest:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
        }
        .modaldiv .btn-invest:hover::before {
        left: 100%;
        }
        .modaldiv .btn-invest:active {
        transform: translateY(-1px);
        }
        .modaldiv .info-text {
        text-align: center;
        color: #9ca3af;
        font-size: 0.875rem;
        margin-top: 1.5rem;
        }
        .modaldiv .info-text i {
        color: #667eea;
        margin-right: 5px;
        }
        /* Floating animation for decorative elements */
        .modaldiv .floating {
        animation: floating 3s ease-in-out infinite;
        }
        @keyframes floating {
        0%,
        100% {
        transform: translateY(0px);
        }
        50% {
        transform: translateY(-10px);
        }
        }
        /* Modal entrance animation */
        .modaldiv .modal.show .modal-dialog {
        animation: slideUp 0.4s ease-out;
        }
        @keyframes slideUp {
        from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
        }
        to {
        opacity: 1;
        transform: translateY(0) scale(1);
        }
        }
        /* Success animation */
        @keyframes successPulse {
        0%,
        100% {
        transform: scale(1);
        }
        50% {
        transform: scale(1.05);
        }
        }
        .modaldiv .success-feedback {
        animation: successPulse 0.5s ease;
        }
        /* Loading animation */
        .modaldiv .btn-invest.loading {
        pointer-events: none;
        }
        .modaldiv .btn-invest.loading::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        top: 50%;
        left: 50%;
        margin-left: -10px;
        margin-top: -10px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-top-color: white;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        }
        @keyframes spin {
        to {
        transform: rotate(360deg);
        }
        }
        /*modal css end  here*/
        /* Responsive adjustments */
        @media (max-width: 768px) {
        .rrcontainer .section-title::after {
        left: 50%;
        transform: translateX(-50%);
        }
        .rrcontainer  .feature-card {
        margin-bottom: 20px;
        }
        .rrcontainer  .stat-item {
        margin-bottom: 20px;
        }
        }
        /**/
        /*********************************/
        .card-container1 {
        max-width: 700px;
        width: 100%;
        animation: fadeInUp 0.8s ease-out;
        }
        @keyframes fadeInUp {
        from {
        opacity: 0;
        transform: translateY(30px);
        }
        to {
        opacity: 1;
        transform: translateY(0);
        }
        }
        .card-container1 .info-card {
        background: white;
        border-radius: 20px;
        /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
        overflow: hidden;
        border: none;
        border: 1px solid #e8e8e8;
        margin-bottom: 0px;
        }
        .card-container1 .icon-container {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
        }
        .card-container1  .icon-container::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: -100px;
        right: -100px;
        animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
        0%, 100% {
        transform: translate(0, 0) scale(1);
        }
        50% {
        transform: translate(-20px, 20px) scale(1.1);
        }
        }
        .card-container1 .fd-icon {
        font-size: 80px;
        color: white;
        animation: bounce 2s ease-in-out infinite;
        position: relative;
        z-index: 1;
        }
        @keyframes bounce {
        0%, 100% {
        transform: translateY(0);
        }
        50% {
        transform: translateY(-15px);
        }
        }
        .card-container1 .content-area {
        padding: 13px;
        padding-bottom: 3px;
        }
        .card-container1 .main-title {
        color: #546075;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 0px;
        position: relative;
        padding-bottom: 10px;
        padding-top: 0px;
        display: inline-block;
        }
        .card-container1 .main-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: none;
        border-radius: 2px;
        }
        .card-container1  .term-badge {
        display: inline-block;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-left: 10px;
        animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
        0%, 100% {
        transform: scale(1);
        }
        50% {
        transform: scale(1.05);
        }
        }
        .card-container1 .description {
        color: #4a5568;
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 2px;
        }
        .card-container1 .highlight {
        color: #764ba2;
        font-weight: 600;
        }
        .card-container1  .features-section {
        background: #f7fafc;
        border-radius: 15px;
        padding: 6px 9px;
        margin-top: 10px;
        padding-bottom: 0px;
        }
        .card-container1 .feature-item {
        display: flex;
        align-items: start;
        margin-bottom: 8px;
        animation: slideIn 0.6s ease-out;
        animation-fill-mode: both;
        }
        .card-container1 .feature-item:nth-child(1) { animation-delay: 0.2s; }
        .card-container1 .feature-item:nth-child(2) { animation-delay: 0.4s; }
        @keyframes slideIn {
        from {
        opacity: 0;
        transform: translateX(-20px);
        }
        to {
        opacity: 1;
        transform: translateX(0);
        }
        }
        .card-container1 .feature-icon {
        color: #667eea;
        font-size: 1.3rem;
        margin-right: 15px;
        margin-top: 3px;
        }
        .card-container1 .feature-text {
        color: #2d3748;
        font-size: 1rem;
        }
        /************************/
        @media (max-width: 768px) {
        .page-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
        }
        .finance-card {
        margin-bottom: 24px;
        }
        .company-title {
        font-size: 1.2rem;
        min-height: auto;
        }
        .interest-rate {
        font-size: 1.5rem;
        }
        }
        /* Pulse animation for highest rate */
        .highlight-card {
        animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
        0%, 100% {
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        50% {
        box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
        }
        }
        /****************************/
        .page-title {
        text-align: left;
        color: #626262;
        font-weight: 500;
        margin-bottom: 14px;
        font-size: 26px;
        line-height: 1.3;
        padding: 0 1px;
        animation: fadeInDown 0.8s ease;
        }
        .section-title
        {
        text-align: center;
        color: #626262;
        font-weight: 500;
        margin-bottom: 14px;
        font-size: 26px;
        line-height: 1.3;
        padding: 0 1px;
        animation: fadeInDown 0.8s ease;
        margin-bottom: 25px;
        }
        /*
        .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: red;
        }
        */
        .card {
        border: none;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 20px;
        overflow: hidden;
        }
        .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .card-header {
        background-color: var(--primary-color);
        color: white;
        font-weight: 600;
        border: none;
        padding: 15px 20px;
        }
        @keyframes fadeInDown {
        from {
        opacity: 0;
        transform: translateY(-30px);
        }
        to {
        opacity: 1;
        transform: translateY(0);
        }
        }
        .card-wrapper {
        animation: fadeInUp 0.8s ease backwards;
        }
        .card-wrapper:nth-child(1) { animation-delay: 0.1s; }
        .card-wrapper:nth-child(2) { animation-delay: 0.2s; }
        .card-wrapper:nth-child(3) { animation-delay: 0.3s; }
        .card-wrapper:nth-child(4) { animation-delay: 0.4s; }
        .card-wrapper:nth-child(5) { animation-delay: 0.5s; }
        .card-wrapper:nth-child(6) { animation-delay: 0.6s; }
        @keyframes fadeInUp {
        from {
        opacity: 0;
        transform: translateY(40px);
        }
        to {
        opacity: 1;
        transform: translateY(0);
        }
        }
        .finance-card {
        background: white;
        border-radius: 16px;
        padding: 1px 16px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        border: 1px solid #e8e8e8;
        position: relative;
        overflow: hidden;
        padding-bottom: 6px;
        }
        .finance-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.6s ease;
        }
        .finance-card:hover::after {
        left: 100%;
        }
        .finance-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 12px 32px rgba(0,0,0,0.12);
        border-color: #d0d0d0;
        }
        .company-logo {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0px;
        transition: all 0.4s ease;
        }
        .finance-card:hover .company-logo {
        transform: scale(1.08) rotate(2deg);
        }
        .logo-placeholder {
        width: 160px;
        height: 50px;
        /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 15px;
        }
        .company-title {
        font-size: 20px;
        font-weight: 500;
        color: #484d4e;
        text-align: center;
        margin-bottom: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
        }
        .finance-card:hover .company-title {
        color: #667eea;
        }
        .detail-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4px;
        padding: 0px 0;
        }
        .detail-label {
        color: #636e72;
        font-size: 0.95rem;
        font-weight: 500;
        }
        .detail-value {
        color: #2d3436;
        font-weight: 600;
        font-size: 0.95rem;
        }
        .rating-pill {
        display: inline-block;
        padding: 6px 16px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.88rem;
        letter-spacing: 0.5px;
        transition: transform 0.3s ease;
        }
        .finance-card:hover .rating-pill {
        transform: scale(1.1);
        }
        .rating-faaa {
        background: linear-gradient(135deg, #d4edda, #c3e6cb);
        color: #155724;
        }
        .rating-aa {
        background: linear-gradient(135deg, #fff3cd, #ffeaa7);
        color: #856404;
        }
        .rating-aaa {
        background: linear-gradient(135deg, #d1ecf1, #bee5eb);
        color: #0c5460;
        }
        .rating-faa {
        background: linear-gradient(135deg, #f8d7da, #f5c6cb);
        color: #721c24;
        }
        .separator {
        height: 1px;
        background: linear-gradient(to right, transparent, #e0e0e0, transparent);
        margin: 24px 0;
        }
        .interest-box {
        text-align: center;
        margin: 0px 0;
        padding: 0px 7px;
        /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
        border-radius: 12px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        }
        @keyframes rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
        }
        .interest-label {
        color: #6e6e6e;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        font-weight: 600;
        font-size: 10px;
        margin-bottom: 0px;
        }
        .interest-rate {
        color: #4b4b8c;
        font-size: 18px;
        font-weight: 800;
        position: relative;
        z-index: 1;
        margin-bottom: 15px;
        }
        .action-buttons {
        display: flex;
        gap: 13px;
        margin-top: 1px;
        }
        .btn-action {
        flex: 1;
        padding: 6px 1px;
        border-radius: 8px;
        font-weight: 700;
        border: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-transform: uppercase;
        font-size: 0.82rem;
        letter-spacing: 0.8px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        text-align:center;
        }
        .btn-action:hover
        {
        color:inherit;
        }
        .btn-action::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
        transform: translate(-50%, -50%);
        transition: width 0.5s, height 0.5s;
        }
        .btn-action:hover::before {
        width: 300px;
        height: 300px;
        }
        .btn-outline {
        background: white;
        color: #9b9045;
        border: 2px solid #9b9045;
        position: relative;
        }
        .btn-outline:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 16px rgba(231, 76, 60, 0.3);
        }
        .btn-solid {
        background: #9b9045;
        color: white;
        border: 2px solid #9b9045;
        }
        .btn-solid:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 16px rgba(192, 57, 43, 0.4);
        }
        .btn-action span {
        position: relative;
        z-index: 1;
        }
        .fdimg
        {
        height:23px;
        }
        @media (max-width: 768px) {
        .page-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
        }
        .finance-card {
        margin-bottom: 24px;
        }
        .company-title {
        font-size: 1.2rem;
        min-height: auto;
        }
        .interest-rate {
        font-size: 1.5rem;
        }
        }
        /* Pulse animation for highest rate */
        .highlight-card {
        animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
        0%, 100% {
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        50% {
        box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
        }
        }
        .feature-icon
        {
        font-size: 50px;
        color: #c1b774;
        margin-bottom: 15px;
        }
        /****************************/
        .result-box {
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        margin-top: 20px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        border-left: 4px solid #3498db;
        }
        .text-primary {
        color: #4b4b8c!important;
        }
        .btn-primary {
        background-color: #3498db;
        border: none;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
        }
        .benefit-item {
        padding: 15px;
        border-left: 3px solid #6564d1;
        background-color: #f8f9fa;
        margin-bottom: 15px;
        border-radius: 0 5px 5px 0;
        }
        .content-container {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        /* padding: 15px 31px; */
        /* margin-bottom: 20px; */
        /* padding-top: 22px; */
        \: 26px;
        }
        .content-container h1 {
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 17px;
        padding-top: 24px;
        font-size: 28px;
        }
        .highlight-term {
        font-weight: 700;
        color: #2c3e50;
        }
        .content-container .content-text {
        font-size: 16px;
        margin-bottom: 15px;
        }
        .content-container .note-box {
        background-color: #e8f4fd;
        border-left: 4px solid #3498db;
        padding: 15px;
        margin-top: 20px;
        border-radius: 0 4px 4px 0;
        }
        .content-container  .note-box p {
        margin-bottom: 0;
        font-size: 15px;
        }
        .topplans
        {
        margin-top: 82px !important;
        margin-bottom: 8px;
        }
        /**/
        .fdratescontainer .newaccordian .accordion-button {
        color: var(--dark_color);
        padding: 14px 10px;
        background-color: #f9f7f7;
        box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
        /* border: 1px solid #ccc; */
        }
        .fdratescontainer
        {
        }
        /*Calculator css start*/
        .calculator-card {
        border: none;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        background: #ffffff;
        overflow: hidden;
        padding: 9px 32px;
        }
        .card-header {
        background: #0d6efd;
        color: white;
        padding: 1.5rem;
        text-align: center;
        border: none;
        }
        .form-label {
        /* font-weight: 400; */
        color: #555;
        font-size: 0.9rem;
        margin-bottom: 5px;
        }
        /* Custom Input Styling */
        .input-group-text {
        background-color: #f8f9fa;
        border-color: #dee2e6;
        font-weight: 400 !important;
        color: #495057;
        }
        .form-control {
        font-weight: 600;
        color: #212529;
        border-color: #dee2e6;
        }
        .form-control:focus {
        box-shadow: none;
        border-color: #0d6efd;
        }
        /* Range Slider */
        input[type=range] {
        height: 5px;
        margin-top: 8px;
        width: 100%;
        color: red;
        }
        /* Tab-like Radio Buttons */
        .btn-check:checked + .btn-outline-primary {
        background-color: #4b4b8c;
        color: white;
        box-shadow: 0 4px 6px rgba(13, 110, 253, 0.3);
        border-color: #4b4b8c;
        }
        .btn-outline-primary {
        color: #4b4b8c;
        border-color: #4b4b8c;
        font-weight: 500;
        margin: 2px; /* Spacing between tabs */
        border-radius: 50px !important; /* Pill shape */
        font-size: 0.85rem;
        }
        .btn-outline-primary:hover {
        background-color: #f1f7ff;
        color: #0d6efd;
        }
        /* Results Section */
        .result-container {
        background-color: #f8f9fa;
        border-radius: 10px;
        padding: 20px;
        border: 1px solid #e9ecef;
        }
        .result-title {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #494a4a;
        font-weight: 700;
        }
        .result-value {
        font-size: 23px;
        font-weight: 800;
        color: #9b9045; /* Green */
        }
        /* Tenure selector styling */
        .tenure-selector {
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
        }
        .tenure-option {
        flex: 1;
        text-align: center;
        padding: 8px;
        border: 1px solid #dee2e6;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.2s;
        }
        .tenure-option.active {
        background-color: #9b9045;
        color: white;
        border-color: #9b9045;
        }
        .tenure-slider-container {
        display: none;
        }
        .tenure-slider-container.active {
        display: block;
        }
        .info-card1{
        background: white;
        border-radius: 12px;
        padding: 2px 13px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        height: 100%;
        }
        .section-title1 {
        color: #484646;
        font-weight: 700;
        margin-bottom: 3px;
        position: relative;
        padding-bottom: 0px;
        }
        .highlight-box1{
        background: rgba(13, 110, 253, 0.05);
        border-left: 4px solid #9b9045;
        padding: 5px 12px;
        border-radius: 0 8px 8px 0;
        margin: 1.5rem 0;
        }
        .benefit-icon1{
        background: rgba(13, 110, 253, 0.1);
        color: #786e28;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
        }
        .benefit-item1{
        display: flex;
        align-items: flex-start;
        margin-bottom: 0px;
        }
        .benefit-content h5 {
        color: #484646;
        margin-bottom: 0px;
        }
        .card1
        {
        margin-bottom:0px;
        }
        .card-body {
        padding: 5px 0px !important;
        }
        /**/
        /* Chrome, Safari, Edge */
        .custom-thumb::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        background: #4b4b8c;  /* default color */
        border-radius: 50%;
        cursor: pointer;
        border: none;
        }
        /* Hover */
        .custom-thumb::-webkit-slider-thumb:hover {
        background: #4b4b8c;
        }
        /* Active (while dragging) */
        .custom-thumb::-webkit-slider-thumb:active {
        background: #4b4b8c;
        }
        /* Focused */
        .custom-thumb:focus::-webkit-slider-thumb {
        background: #4b4b8c;
        }
        /************/
        /**************************************************/
        .containeripo .ipo-section {
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 6px;
        }
        .containeripo .ipo-text h5 {
        color: #4a4949;
        font-size: 44px;
        font-weight: bold;
        }
        .containeripo .ipo-text p {
        color: #4b4b8c;
        margin-bottom: 0;
        font-size: 20px;
        }
        .containeripo .btn-custom {
        border: none;
        font-weight: normal;
        padding: 8px 18px;
        border-radius: 8px;
        color: #fff;
        transition: all 0.3s ease;
        }
        .containeripo .btn-download {
        background-color: #a58e43;
        }
        .containeripo .btn-download:hover {
        background-color: #917c3a;
        }
        .containeripo .btn-help {
        background-color: #218c60;
        position: relative;
        }
        .containeripo .btn-help:hover {
        background-color: #1b744f;
        }
        .containeripo .btn-callback {
        background-color: #4b4b8c;
        }
        .containeripo .btn-callback:hover {
        background-color: #0f0e96;
        }
        .containeripo .call-text {
        font-size: 0.9rem;
        color: #333;
        font-weight: 500;
        margin-bottom: 4px;
        text-align: center;
        }
        .containeripo {
        /* box-shadow: 4px 4px 24px 0 rgba(31, 72, 114, .048); */
        margin-top: -20px;
        }
        .ipo-page-container {
        box-shadow: 4px 4px 24px 0 rgba(31, 72, 114, .048);
        }
        /* Contact info popup */
        .contact-info-detail {
        position: absolute;
        top: 110%;
        left: 50%;
        transform: translateX(-50%) scale(0.9);
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        padding: 12px 18px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        z-index: 100;
        width: 250px;
        text-align: left;
        }
        .btn-help:hover .contact-info-detail {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) scale(1);
        }
        .contact-info-detail p {
        margin: 6px 0;
        font-size: 15px;
        padding: 11px 0px;
        }
        .contact-info-detail a {
        text-decoration: none;
        color: #333;
        }
        .contact-info-detail i {
        color: #c79c3c;
        margin-right: 8px;
        font-size: 20px;
        }
        .contact-info-detail a:hover {
        color: #5c63d8;
        }
        .process-section {
        padding: 4px 10px;
        background: white;
        }
        .process-container {
        position: relative;
        margin: 2rem auto;
        max-width: 1200px;
        }
        .process-step {
        position: relative;
        text-align: center;
        margin-bottom: 2rem;
        }
        .step-circle {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #1a3a8f;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 1.8rem;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 2;
        position: relative;
        transition: all 0.3s ease;
        }
        .step-circle:hover {
        transform: scale(1.1);
        background: #2c5aa0;
        }
        .step-content {
        background: white;
        padding: 7px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        height: 273px;
        transition: all 0.3s ease;
        }
        .step-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        .step-content h5 {
        color: #5e5e5e;
        margin-bottom: 1rem;
        font-weight: 600;
        margin-top: 10px;
        }
        .step-content p {
        color: #555;
        font-size: 0.9rem;
        line-height: 1.5;
        padding-top: 0px;
        }
        /* Connection lines */
        .process-connector {
        position: absolute;
        top: 50px;
        height: 4px;
        background: #1a3a8f;
        z-index: 1;
        }
        .process-connector.dashed {
        background: repeating-linear-gradient(to right,
        #1a3a8f,
        #1a3a8f 10px,
        transparent 10px,
        transparent 20px);
        }
        /* Animation */
        @keyframes fadeIn {
        from {
        opacity: 0;
        transform: translateY(20px);
        }
        to {
        opacity: 1;
        transform: translateY(0);
        }
        }
        .fade-in {
        animation: fadeIn 0.8s ease forwards;
        }
        /* Responsive adjustments */
        @media (max-width: 992px) {
        .process-connector {
        display: none;
        }
        .step-circle {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
        }
        }
        /*modalstepdiv how its works*/
        .modalstepdiv  .how-it-works-section {
        background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
        padding: 5px;
        border-radius: 20px;
        margin: 4px;
        }
        .modalstepdiv .step-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        }
        .modalstepdiv .step-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        flex: 1;
        margin: 0 10px;
        border: 1px solid #eaeaea;
        position: static;
        }
        .modalstepdiv.step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        .modalstepdiv .step-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
        }
        .modalstepdiv  .step-1 .step-icon {
        background: linear-gradient(135deg, #c9bd6c, #a49744);
        }
        .modalstepdiv .step-2 .step-icon {
        background: linear-gradient(135deg, #0097d5, #007cb0);
        }
        .modalstepdiv .step-3 .step-icon {
        background: linear-gradient(135deg, #c9bd6c, #a49744);
        }
        .modalstepdiv  .step-4 .step-icon {
        background: linear-gradient(135deg, #009fe1, #0077a8);
        }
        .modalstepdiv  .step-number {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: #333;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border: 3px solid #f0f4ff;
        display: none;
        }
        .modalstepdiv .step-arrow {
        font-size: 2.5rem;
        color: #007eb2;
        z-index: 1;
        flex-shrink: 0;
        margin: 0 5px;
        }
        .modalstepdiv.step-content h5 {
        font-weight: 700;
        margin-bottom: 1rem;
        color: #333;
        }
        .step-content p {
        color: #666;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        }
        .modalstepdiv.btn-download {
        background: linear-gradient(135deg, #2dcb70, #1e9c52);
        border: none;
        border-radius: 50px;
        padding: 0.6rem 1.5rem;
        font-weight: 600;
        color: white;
        transition: all 0.3s ease;
        }
        .modalstepdiv .btn-download:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 15px rgba(45, 203, 112, 0.3);
        }
        .modalstepdiv .btn-bank-details {
        background: linear-gradient(135deg, #009fe1, #0077a8);
        border: none;
        border-radius: 50px;
        padding: 0.6rem 1.5rem;
        font-weight: 600;
        color: white;
        transition: all 0.3s ease;
        }
        .modalstepdiv .btn-bank-details:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 15px rgba(255, 168, 138, 0.3);
        }
        .modalstepdiv  .btn-submit {
        background: linear-gradient(135deg, #d3c777, #91842f);
        border: none;
        border-radius: 25px;
        padding: 9px 11px;
        font-weight: 600;
        color: white;
        transition: all 0.3s ease;
        }
        .modalstepdiv .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 15px rgba(43, 149, 59, 0.3);
        }
        .modalstepdiv .btn-help {
        background: linear-gradient(135deg, #009fe1, #0077a8);
        border: none;
        border-radius: 25px;
        padding: 0.6rem 1.5rem;
        font-weight: 600;
        color: white;
        transition: all 0.3s ease;
        }
        .modalstepdiv .btn-help:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 15px rgba(0, 159, 225, 0.3);
        }
        .bank-details-dropdown {
        border-radius: 15px;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        min-width: 500px;
        }
        .modalstepdiv  .section-title {
        color: #2c3e50;
        font-weight: 800;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
        }
        .modalstepdiv .btn-download {
        background: linear-gradient(135deg, #d3c777, #91842f);
        border: none;
        border-radius: 25px;
        padding: 9px 11px;
        font-weight: 600;
        color: white;
        }
        .modalstepdiv .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(135deg, #2dcb70, #009fe1);
        border-radius: 2px;
        }
        .modalstepdiv .section-subtitle {
        color: #7f8c8d;
        margin-bottom: 3rem;
        }
        .table-bordered>:not(caption)>*>* {
        border-width: 0 1px;
        font-weight: normal;
        color: #2a2828;
        font-weight: 400;
        }
        .card-body2
        {
        padding:5px 52px !important;
        }
        .accordion-collapse {
        transition: height 0.35s ease;
        }
        .accordion-button {
        transition: background-color 0.3s ease, color 0.3s ease;
        }
        .accordion-button:not(.collapsed) {
        background-color: #f8f9fa;
        }
        /***************/
        .date-icon{
        font-size: 1.1rem;
        color:#4b4b8c;  /* change color */
        }
        .date-text{
        font-size: .95rem;
        color:#111;
        font-weight: 500;
        }
        .highlight {
        font-weight: bold;
        }
        /**********/
        /*know more data of varius fd plan linke lic pnb shreeram etc*/
        .maincontainerdiv {
        max-width: 1200px;
        margin: 0 auto;
        background: white;
        border-radius: 25px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        }
        .maincontainerdiv .header-section {
        background: linear-gradient(135deg, #9b9045 0%, #9b9045 100%);
        color: white;
        padding: 4px 0px;
        position: relative;
        overflow: hidden;
        text-align: center;
        }
        .maincontainerdiv .header-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        }
        .maincontainerdiv  .header-section::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        }
        .maincontainerdiv .logo-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        position: relative;
        z-index: 1;
        }
        .maincontainerdiv .logo-box {
        background: none;
        padding: 0px 0px;
        border-radius: 20px;
        /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
        margin-bottom: 8px;
        margin: 5px;
        margin-left: 15px;
        background: #ffffff;
        padding: 2px;
        }
        .maincontainerdiv .company-name {
        font-size: 28px;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        margin-bottom: 0px;
        }
        .maincontainerdiv .tagline {
        font-size: 14px;
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto 9px;
        opacity: 1;
        }
        .maincontainerdiv .invest-btn {
        background: var(--secondary-color);
        color: white;
        border: none;
        padding: 6px 8px !important;
        border-radius: 8px !important;
        font-weight: 600;
        font-size: 14px;
        box-shadow: 0 8px 20px rgba(0, 74, 173, 0.3);
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
        margin-top: 35px;
        }
        .maincontainerdiv .invest-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(0, 74, 173, 0.4);
        background: #0056cc;
        }
        .maincontainerdiv .content-section {
        padding: 0px 26px;
        }
        .maincontainerdiv .section-title {
        color: var(--primary-color);
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 1px;
        position: relative;
        padding-top: 4px;
        text-align: center;
        }
        .maincontainerdiv  .fd-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        /* border-top: 5px solid var(--primary-color); */
        margin-bottom: 5px;
        margin-top: 8px;
        }
        .maincontainerdiv .fd-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        .maincontainerdiv .fd-header {
        background: linear-gradient(135deg, #29296f 0%, #7272b3 100%);
        color: white;
        padding: 5px 11px;
        text-align: center;
        }
        .maincontainerdiv .fd-name {
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 0px;
        padding: -5px;
        }
        .maincontainerdiv .fd-subtitle {
        font-size: 13px;
        opacity: 1;
        }
        .maincontainerdiv .fd-content {
        padding: 13px;
        }
        .maincontainerdiv .rate-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
        }
        .maincontainerdiv .rate-table th {
        background: var(--light-bg);
        padding: 12px 10px;
        text-align: center;
        font-weight: 600;
        color: var(--primary-color);
        border: 1px solid #e0e0e0;
        }
        .maincontainerdiv .rate-table td {
        padding: 6px 10px;
        text-align: center;
        border: 1px solid #e0e0e0;
        font-weight: 500;
        }
        .maincontainerdiv .rate-table tr:nth-child(even) {
        background: #f9f9f9;
        }
        .maincontainerdiv .highlight-rate {
        color: var(--secondary-color);
        font-weight: 700;
        }
        .maincontainerdiv .info-box {
        /* background: #fff3e0; */
        /* border-left: 4px solid var(--primary-color); */
        padding: 0px;
        border-radius: 0 8px 8px 0;
        margin-top: -5px;
        }
        .maincontainerdiv .benefits-section {
        background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
        padding: 0px 42px;
        border-radius: 25px;
        margin-top: 0px;
        }
        .maincontainerdiv  .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 12px;
        margin-top: 11px;
        }
        .maincontainerdiv .benefit-item {
        background: white;
        padding: 15px 6px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: transform 0.3s ease;
        border-top: 4px solid var(--accent-color);
        }
        .maincontainerdiv .benefit-item:hover {
        transform: translateY(-5px);
        }
        .maincontainerdiv .benefit-icon {
        color: var(--accent-color);
        font-size: 2.5rem;
        margin-bottom: 15px;
        }
        .maincontainerdiv .benefit-title {
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
        }
        .maincontainerdiv .cta-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, #cc5500 100%);
        color: white;
        padding: 50px 30px;
        text-align: center;
        border-radius: 20px;
        margin-top: 50px;
        }
        .maincontainerdiv .cta-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
        }
        .maincontainerdiv .cta-text {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 30px;
        opacity: 0.9;
        }
        .maincontainerdiv .cta-btn {
        background: var(--secondary-color);
        color: white;
        border: none;
        padding: 15px 50px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.2rem;
        box-shadow: 0 8px 20px rgba(0, 74, 173, 0.3);
        transition: all 0.3s ease;
        }
        .maincontainerdiv .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(0, 74, 173, 0.4);
        background: #0056cc;
        }
        .maincontainerdiv .btn-close {
        box-sizing: content-box;
        width: 35px;
        height: 1em;
        padding: 4px 0px;
        color: #000;
        border: 0;
        border-radius: 10px;
        opacity: 1;
        margin-top: 10px;
        top: -2px;
        right: 20px;
        position: absolute;
        }
        @media (max-width: 768px) {
        .maincontainerdiv .company-name {
        font-size: 1.8rem;
        }
        .maincontainerdiv .header-section {
        padding: 40px 20px;
        }
        .maincontainerdiv .content-section {
        padding: 40px 20px;
        }
        .maincontainerdiv .section-title {
        font-size: 1.6rem;
        }
        .maincontainerdiv  .benefits-grid {
        grid-template-columns: 1fr;
        }
        }
        /**********************************************************************/
        /* Mobile Responsive */
        @media (max-width: 992px) {
        .modalstepdiv    .step-container {
        flex-direction: column;
        }
        .modalstepdiv .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
        }
        .modalstepdiv .step-card {
        margin: 10px 0;
        width: 100%;
        }
        .bank-details-dropdown {
        min-width: 300px;
        }
        }
         @media (max-width:600px) {
        body {
        padding: 30px 0;
        }
        .finance-card {
        padding: 24px 20px;
        }
        .action-buttons {
        flex-direction: column;
        }
        .btn-action {
        width: 100%;
        padding: 12px 5px;
        }
        .containeripo .btn-custom {
        padding: 9px 9px;
        font-size: 13px;
        }
        .finance-card {
        padding: 24px 20px;
        }
        .action-buttons {
        flex-direction: row;
        }
        .btn-action {
        width: 100%;
        }
        .slick-prev:before, .slick-next:before {
        color: #451fb3;
        font-size: 40px;
        font-weight: normal;
        }
        .section-title {
        text-align: center;
        color: #423d3d;
        font-weight: 500;
        margin-bottom: 14px;
        font-size: 24px;
        line-height: 1.3;
        padding: 0 1px;
        animation: fadeInDown 0.8s 
        ease;
        margin-bottom: 8px;
        margin-top: 14px;
        text-align: center;
        padding-left: 10px;
        }
        .maincontainerdiv .invest-btn
        {
        margin-top:-23px !important;
        }
        .maincontainerdiv .header-section {
        padding: 32px 10px;
        padding-bottom: 7px;
        }
        .topplans
        {
        margin-top: 42px !important;
        margin-bottom: 4px;
        }
        .title-section h1
        {
        margin-top:17px;
        }
        .step-content
        {
        height:180px;
        }
        .modalstepdiv .step-card
        {
        padding:7px;
        }
        .widthmobile100 {
        width: 100% !important;
        margin-top: -23px !important;
        }
        }
        @media (max-width: 576px) {
        body {
        padding: 30px 0;
        }
        .finance-card {
        padding: 24px 20px;
        }
        .action-buttons {
        flex-direction: column;
        }
        .btn-action {
        width: 100%;
        padding: 12px 5px;
        }
        .containeripo .btn-custom {
        padding: 9px 9px;
        font-size: 13px;
        }
        .finance-card {
        padding: 24px 20px;
        }
        .action-buttons {
        flex-direction: row;
        }
        .btn-action {
        width: 100%;
        }
        .slick-prev:before, .slick-next:before {
        color: #451fb3;
        font-size: 40px;
        font-weight: normal;
        }
        .section-title {
        text-align: center;
        color: #423d3d;
        font-weight: 500;
        margin-bottom: 14px;
        font-size: 24px;
        line-height: 1.3;
        padding: 0 1px;
        animation: fadeInDown 0.8s 
        ease;
        margin-bottom: 8px;
        margin-top: 14px;
        text-align: center;
        padding-left: 10px;
        }
        .maincontainerdiv .invest-btn
        {
        margin-top:-23px !important;
        }
        .maincontainerdiv .header-section {
        padding: 32px 10px;
        padding-bottom: 7px;
        }
        .topplans
        {
        margin-top: 42px !important;
        margin-bottom: 4px;
        }
        .title-section h1
        {
        margin-top:17px;
        }
        .step-content
        {
        height:180px;
        }
        .modalstepdiv .step-card
        {
        padding:7px;
        }
        .widthmobile100 {
        width: 100% !important;
        margin-top: -23px !important;
        }
        }
        .feature-item:hover
        {
        border:0px solid #ccc !important;
        }
         .title-section h1 {
    font-size: 25px;
    font-weight: 700;
    background: #626262;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
        
        .title-section h1::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b68e43, #4b4b8c);
    border-radius: 2px;
    animation: expandWidth 1s 
ease-out 0.5s forwards;
}
        
        @keyframes expandWidth {
            to {
                width: 100%;
            }
        }
        
        /* Fix z-index for bank details dropdown */
.step-card .dropdown-menu.bank-details-dropdown {
    z-index: 1050;
}

/* Hide arrows when dropdown is open */
.step-card:has(.dropdown-menu.show) + .step-arrow {
    visibility: hidden;
}

/* Ensure step cards stay below dropdown */
.step-card {
    position: relative;
    z-index: 1;
}

/* Increase z-index for step card with open dropdown */
.step-card:has(.dropdown-menu.show) {
    z-index: 1051;
}

/* Ensure arrows stay behind dropdown */
.step-arrow {
    position: relative;
    z-index: 1;
}
.textvalidation {
    color: #e36c6c !important;
    font-size: 14px;
}
.location
{
    display:none;
}
.disclaimer-section {
    padding:0px 30px;
   
}

.disclaimer-container {
    max-width: 100%;
    margin: 0 auto;
    background: white;
    border-left: 4px solid #f59794;
    border-radius: 8px;
    
    overflow: hidden;
}

.disclaimer-header {
    background:none;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.disclaimer-header i {
    font-size: 24px;
    animation: pulse 2s infinite;
    color:#fb9da6;
}

.disclaimer-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color:#4b4b8c;
}

.disclaimer-content {
    padding: 5px 25px
}

.disclaimer-content p {
    margin-bottom: 12px;
    color: #333;
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .disclaimer-section {
        padding: 20px 10px;
    }
    
    .disclaimer-header h5 {
        font-size: 16px;
    }
    
    .disclaimer-content {
        padding: 15px 20px;
    }
    
    .disclaimer-content p {
        font-size: 13px;
    }
}
