:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-2a8844a */.emi-section{
    position:relative;
    overflow:hidden;
    padding:100px 20px;
    background:linear-gradient(
    135deg,
    #fafafa 0%,
    #f3f4f6 45%,
    #e5e7eb 100%);
}

.emi-container{
    max-width:900px;
    margin:auto;
    position:relative;
    z-index:2;
}

.emi-header{
    text-align:center;
    margin-bottom:50px;
}

.emi-badge{
    display:inline-block;
    padding:10px 18px;
    background:#eff6ff;
    color:#2563eb;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
}

.emi-header h2{
    font-size:52px;
    color:#111827;
    margin-bottom:15px;
}

.emi-header h2 span{
    color:#2563eb;
}

.emi-header p{
    color:#6b7280;
    font-size:18px;
}

.emi-card{
    background:rgba(255,255,255,.7);
    backdrop-filter:blur(20px);
    padding:40px;
    border-radius:28px;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.emi-field{
    margin-bottom:25px;
}

.emi-field label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
    color:#111827;
}

.emi-field input{
    width:100%;
    height:60px;
    border:none;
    border-radius:14px;
    background:#fff;
    padding:0 20px;
    font-size:16px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.emi-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:14px;
    background:#2563eb;
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.emi-btn:hover{
    transform:translateY(-3px);
}

.emi-result{
    margin-top:35px;
    text-align:center;
}

.emi-result h3{
    color:#6b7280;
    margin-bottom:15px;
}

#emiOutput{
    font-size:48px;
    font-weight:800;
    color:#10b981;
}

.emi-bubble{
    position:absolute;
    border-radius:50%;
    background:rgba(37,99,235,.06);
}

.bubble1{
    width:300px;
    height:300px;
    left:-100px;
    top:-100px;
    animation:floatBubble 8s infinite ease-in-out;
}

.bubble2{
    width:200px;
    height:200px;
    right:-60px;
    top:100px;
    animation:floatBubble 10s infinite ease-in-out;
}

.bubble3{
    width:250px;
    height:250px;
    bottom:-100px;
    left:30%;
    animation:floatBubble 12s infinite ease-in-out;
}

@keyframes floatBubble{
    50%{
        transform:translateY(-20px);
    }
}

@media(max-width:768px){

    .emi-header h2{
        font-size:36px;
    }

    .emi-card{
        padding:25px;
    }

    #emiOutput{
        font-size:34px;
    }

}/* End custom CSS */