        /* EMI Calculator Isolated Styles - No conflicts with existing CSS */
        .emi-calc-wrapper {
            --emi-primary: #074C3E;
            --emi-secondary: #273C75;
            --emi-accent: #00A8CC;
            --emi-success: #27AE60;
            --emi-warning: #F39C12;
            --emi-light: #F8F9FA;
            --emi-dark: #2C3E50;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            margin: 0;
            padding: 0;
        }

        .emi-calc-wrapper * {
            box-sizing: border-box;
        }

        .emi-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .emi-row {
            display: flex;
            flex-wrap: wrap;
            margin: 36 -15px;
        }

        .emi-col-8 {
            width: 66.666%;
            padding: 0 15px;
        }

        .emi-col-10 {
            width: 83.333%;
            padding: 0 15px;
        }

        .emi-col-6 {
            width: 50%;
            padding: 0 15px;
        }

        .emi-col-4 {
            width: 33.333%;
            padding: 0 15px;
        }

        @media (max-width: 768px) {
            .emi-col-8, .emi-col-10, .emi-col-6, .emi-col-4 {
                width: 100%;
                margin-bottom: 20px;
            }
        }

        .emi-justify-center {
            justify-content: center;
        }

        .emi-text-center {
            text-align: center;
        }

        .emi-align-center {
            align-items: center;
        }

        .emi-flex {
            display: flex;
        }

        .emi-flex-wrap {
            flex-wrap: wrap;
        }

        .emi-mb-2 { margin-bottom: 2.5rem; }
        .emi-mb-3 { margin-bottom: 1rem; }
        .emi-mb-4 { margin-bottom: 1.5rem; }
        .emi-mt-3 { margin-top: 1rem; }
        .emi-mt-4 { margin-top: 1.5rem; }
        .emi-me-2 { margin-right: 0.5rem; }
        .emi-me-4 { margin-right: 1.5rem; }
        .emi-ms-1 { margin-left: 0.25rem; }

        .emi-py-5 {
            padding: 3rem 0;
        }

        .emi-w-100 {
            width: 100%;
        }

        .emi-display-4 {
            font-size: 2.5rem;
            font-weight: 500;
            line-height: 1.2;
            margin: 0;
        }

        .emi-lead {
            font-size: 1.25rem;
            font-weight: 300;
            margin: 0;
        }

        .emi-fw-bold {
            font-weight: 700;
        }

        .emi-small {
            font-size: 0.875rem;
        }

        .emi-text-muted {
            color: #6c757d;
        }

        .emi-badge {
            display: inline-block;
            padding: 0.35em 0.65em;
            font-size: 0.75em;
            font-weight: 700;
            line-height: 1;
            color: #fff;
            text-align: center;
            white-space: nowrap;
            vertical-align: baseline;
            border-radius: 0.25rem;
        }

        .emi-hero-section {
            background: linear-gradient(135deg, var(--emi-primary) 0%, var(--emi-secondary) 100%);
            color: white;
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .emi-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .emi-calculator-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            padding: 40px;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

        .emi-loan-type-tabs {
            border-bottom: 2px solid #E9ECEF;
            margin-bottom: 30px;
        }

        .emi-loan-type-tab {
            background: none;
            border: none;
            padding: 15px 25px;
            font-weight: 600;
            color: #6C757D;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .emi-loan-type-tab.active {
            color: var(--emi-primary);
            border-bottom-color: var(--emi-primary);
        }

        .emi-loan-type-tab:hover {
            color: var(--emi-primary);
            background: rgba(7, 76, 62, 0.05);
        }

        .emi-input-group-custom {
            margin-bottom: 25px;
        }

        .emi-input-label {
            font-weight: 600;
            color: var(--emi-dark);
            margin-bottom: 10px;
            display: block;
        }

        .emi-slider-container {
            position: relative;
            margin: 20px 0;
        }

        .emi-custom-range {
            width: 100%;
            height: 8px;
            border-radius: 5px;
            background: #E9ECEF;
            outline: none;
            -webkit-appearance: none;
        }

        .emi-custom-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--emi-primary);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(7, 76, 62, 0.3);
        }

        .emi-custom-range::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--emi-primary);
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 12px rgba(7, 76, 62, 0.3);
        }

        .emi-range-labels {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #6C757D;
            margin-top: 5px;
        }

        .emi-current-value {
            background: var(--emi-primary);
            color: white;
            padding: 21px 16px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-top: 10px;
        }

        .emi-results-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 30px;
            margin-top: 30px;
        }

        .emi-result-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #DEE2E6;
        }

        .emi-result-item:last-child {
            border-bottom: none;
        }

        .emi-result-label {
            font-weight: 600;
            color: var(--emi-dark);
        }

        .emi-result-value {
            font-weight: 700;
            font-size: 18px;
            color: var(--emi-primary);
        }

        .emi-highlight {
            background: var(--emi-primary);
            color: white;
            border-radius: 10px;
            padding: 37px !important;
            text-align: center;
            margin: 20px 0;
        }

        .emi-amount {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .emi-chart-container {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-top: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .emi-chart-details {
            padding-left: 20px;
        }

        .emi-chart-detail-item {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }

        .emi-chart-detail-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .emi-chart-detail-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--emi-dark);
            margin-bottom: 30px;
        }

        .emi-chart-detail-sublabel {
            font-size: 12px;
            color: #6C757D;
            margin-bottom: 21px;
        }

        .emi-chart-detail-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--emi-primary);
        }

        .emi-info-cards {
            margin-top: 50px;
        }

        .emi-info-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .emi-info-card:hover {
            transform: translateY(-5px);
        }

        .emi-info-card-icon {
            width: 60px;
            height: 60px;
            background: var(--emi-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 24px;
        }

        .emi-btn-calculate {
            background: linear-gradient(135deg, var(--emi-primary) 0%, var(--emi-secondary) 100%);
            border: none;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(7, 76, 62, 0.3);
            cursor: pointer;
        }

        .emi-btn-calculate:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(7, 76, 62, 0.4);
            color: white;
        }

        @media (max-width: 768px) {
            .emi-calculator-container {
                padding: 25px;
                margin-top: -30px;
            }
            
            .emi-loan-type-tab {
                padding: 12px 15px;
                font-size: 14px;
            }
            
            .emi-amount {
                font-size: 24px;
            }

            .emi-chart-details {
                padding-left: 0;
                margin-top: 20px;
            }

            .emi-chart-detail-item {
                margin-bottom: 15px;
                padding-bottom: 12px;
            }

            .emi-chart-detail-value {
                font-size: 16px;
            }
        }
    