.emi-calculator-holder {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }
		.emi-calculator {
            width: 40%;
            background-color: #ADD8E6;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .header {
            background-color: #4682B4;
            color: #ffffff;
            padding: 10px;
            text-align: center;
            border-radius: 10px 10px 0 0;
        }
        .content {
            padding: 20px;
        }
        label {
            display: block;
            margin-bottom: 10px;
        }
        input[type="number"] {
            width: 100%;
            height: 40px;
            margin-bottom: 20px;
            padding: 10px;
            border: 1px solid #cccccc;
        }
        button {
            width: 100%;
            height: 40px;
            background-color: #4682B4;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        button:hover {
            background-color: #6495ED;
        }
        .circle-container {
            width: 40%;
            height: 80vh;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .circle {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: conic-gradient(red 0 50%, blue 50% 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            border: 10px solid #ffffff;
        }
        .white-center {
            width: 85%;
            height: 85%;
            border-radius: 50%;
            background-color: #ffffff;
            position: absolute;
        }
        .emi-amount {
            font-size: 24px;
            font-weight: bold;
            margin-top: 20px;
        }
        .color-circle {
            width: 2px;
            height: 2px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 10px;
        }
        .tooltip {
            position: absolute;
            visibility: hidden;
            background-color: #333;
            color: #fff;
            padding: 5px;
            border-radius: 5px;
        }
        .interest-info {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .interest-info span {
            font-size: 18px;
            margin-bottom: 10px;
        }
		.emi-calculator-holder .header h2 {
			color: #FFF;
		}
		.emi-calculator-holder input, select, textarea {
			background: #FFF;
		}
		@media only screen and (max-width: 767.98px) {
			.emi-calculator-holder {
				display: block;
			}
			.emi-calculator {
				width: 100%;
			}
			.circle-container {
				width: 100%;
				height: auto;
				margin-top: 20px;
			}
		}