.big-title{
    font-size: 36px;
    font-weight: 600;
    color: white;
    line-height: 55px;
    margin-bottom: 35px;
}
.why-box{
    border: 1px solid #4E58FF;
    border-radius: 16px;
    padding:30px 20px;
}
.why-box-title{
    font-weight: 600;
    color: #000000;
    margin: 10px 0;
}
.why-box-description{
    color: rgba(102, 102, 102, 1);
    min-height: 80px;
}
.our-values-list-all{
    display: flex;
    align-items: center;
}
.our-values-list{
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}
.our-values-list-info{
    margin-left: 10px;
}
.our-values-list-title{
    font-weight: 600;
    margin-bottom: 3px;
    color: rgba(0, 0, 0, 1);
}
.our-values-list-desc{
    min-height: 50px;
    color: rgba(102, 102, 102, 1);
}
.our-values-title{
    font-size: 18px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
}
.our-values-info{
    color: rgba(102, 102, 102, 1);
    margin-top: 10px;
    margin-bottom: 35px;
}
.index-contact-img{
    margin-top: 30px;
}
.index-contact-title{
    color: black;
    font-weight: 600;
    margin: 8px 0;
}
.index-form-all{
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.contact-form{
    width: 100%;
}
.form-row{
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.form-group-half{
    flex: 1;
}
.form-group{
    margin-bottom: 20px;
}
.form-group label,
.form-group-half label{
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
}
.form-input{
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333333;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.form-input:focus{
    outline: none;
    border-color: #4E58FF;
    box-shadow: 0 0 0 3px rgba(78, 88, 255, 0.1);
}
.form-input::placeholder{
    color: #999999;
}
.form-textarea{
    resize: none;
    min-height: 120px;
}
.form-submit-btn{
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4E58FF 0%, #4E58FF 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.form-submit-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 88, 255, 0.3);
}
.form-submit-btn:active{
    transform: translateY(0);
}

/* Custom Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.8) translateY(20px);
    opacity: 0;
}

.modal-container.animate-in {
    animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-fill-mode: forwards;
}

.modal-container.animate-out {
    animation: modalOut 0.3s ease;
    animation-fill-mode: forwards;
}

@keyframes modalIn {
    0% {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes modalOut {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(0.8) translateY(-20px);
        opacity: 0;
    }
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    border: 3px solid;
    animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iconPop {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.modal-icon svg {
    width: 40px;
    height: 40px;
}

.check-icon {
    display: none;
}

.error-icon {
    display: none;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.modal-message {
    font-size: 15px;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-close-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.modal-close-btn:active {
    transform: translateY(0);
}

/* EMI Calculator Styles */
.emi-all{
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.emi-left{
    padding-right: 30px;
}
.emi-form-group{
    margin-bottom: 35px;
}
.emi-label-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.emi-label{
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}
.emi-value{
    font-size: 16px;
    font-weight: 600;
    color: #4E58FF;
    background: rgba(78, 88, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
}
.emi-slider{
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #4E58FF, #e0e0e0);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}
.emi-slider::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #4E58FF;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 10px rgba(78, 88, 255, 0.3);
    transition: all 0.3s ease;
}
.emi-slider::-webkit-slider-thumb:hover{
    transform: scale(1.1);
}
.emi-slider-labels{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #999999;
}
.emi-radio-group{
    display: flex;
    gap: 20px;
}
.emi-radio-label{
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333333;
}
.emi-radio-label input[type="radio"]{
    width: 18px;
    height: 18px;
    accent-color: #4E58FF;
    cursor: pointer;
}
.emi-right{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.emi-result-card{
    flex: 1;
    background: url('../img/emi-right.png') no-repeat center center;
    background-size: cover;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 310px;
}
.emi-icon{
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.emi-icon img{
    width: 40px;
    height: 40px;
}
.emi-result-label{
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
}
.emi-result-value{
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}
.emi-breakdown{
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}
.emi-breakdown-item{
    text-align: center;
    flex: 1;
}
.emi-breakdown-label{
    display: block;
    font-size: 13px;
    color: #999999;
    margin-bottom: 8px;
}
.emi-breakdown-value{
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}
.white-flex{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.white-flex-text{
    color: white !important;
    margin-left: 10px;
}