.enquiryBannersec {
    padding: 50px 0 135px;
    background: linear-gradient(90deg, #FAFDFF 27.31%, #F4FFFB 100%);
}
.enquiryBannersec h1 {
    font-weight: 400;
    font-size: 35px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 15px;
    color: #1C3D5A;
}
.enquiryBannersec p {
    font-weight: 500;
    font-size: 17px;
    line-height: 180%;
    letter-spacing: 0%;
    text-align: center;
    color: #6B6E98;
    margin: 0 auto;
}
.enquiryFormSec{
    margin-top: -85px;
    padding-bottom: 140px;
}
.enquiryForm{
    padding: 30px 111px;
    max-width: 852px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 11.7px 0px #DFECEFCC;
    border-radius: 10px;
    margin: auto;
}
.doubleWrapper{
    display: flex;
    align-items: center;
    gap: 30px;
}
.singleInputWrapper{
    width: 100%;
    margin-bottom: 15px;
}
.singleInputWrapper.hide{
    display: none;
}
.singleInputWrapper input,
.singleInputWrapper textarea{
    padding: 11px 12px 9px;
    border: 1px solid #DEF1FF;
    border-radius: 5px;
    background: #F8FCFF;
    font-size: 15px;
    line-height: 150%;
    color: #1C3D5A;
    display: block;
    width: 100%;
    appearance: none;
    outline: none;
}
.singleInputWrapper input.error{
    border-color: #df4d4ded;
}
.singleInputWrapper textarea{
    height: 115px;
    resize: none;
}
.singleInputWrapper input::placeholder,
.singleInputWrapper textarea::placeholder{
    color: #9C9FBF;
}
.singleInputWrapper input:hover,
.singleInputWrapper textarea:hover{
    border-color: #C5D8D1;
}
.singleInputWrapper input:focus,
.singleInputWrapper textarea:focus{
    border-color: #8CA9B1;
}
.singleInputWrapper label{
    display: block;
    font-size: 15px;
    line-height: 150%;
    margin-bottom: 5px;
    color: #1C3D5A;
    font-weight: 400;
}
.singleInputWrapper label span{
    color: red;
}
.iti{
    display: block;
}
select{
    height: 43px;
    background: transparent;
    border-radius: 5px;
    width: 100%;
}
.select2-container{
    min-width: 260px;
}
.selection .select2-selection--single{
    min-height: 43px;
    padding: 10px;
    background: transparent;
    border: 1px solid #DEF1FF;
    background: #F8FCFF;
}
.selection .select2-selection--single:hover{
    border-color: #C5D8D1;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    font-size: 15px;
    line-height: 150%;
    color: #9C9FBF;
    display: block;
    width: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    margin-right: 15px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    height: 13px;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 13px;
    background-image: url(../../images/dropdown-icon.svg);
    border-color: unset;
    border-width: unset;
    border-style: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
    transform: rotate(180deg);
    border-color: unset;
    border-width: unset;
    border-style: none;
    

}
.select2-search--dropdown{
    display: none;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background: #F8FCFF;
}
.select2-valid .selection .select2-selection--single .select2-selection__rendered {
    color: #1C3D5A;
}
.checkBoxWrapper{
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #6B6E98;
}
.checkBoxWrapper input{
    transform: translateY(-2px);
    accent-color: #1C3D5A;
    cursor: pointer;
}
.submitBtn{
    padding: 13px 20px 11px;
    background: #8CA9B1;
    border-radius: 5px;
    font-weight: 700;
    font-size: 17px;
    line-height: 135%;
    outline: none;
    border: none;
    margin: 30px auto 35px;
    color: #FFFFFF;
    display: block;
    transition: all ease .2s;
}
.submitBtn:hover{
    transform: scale(1.04);
}
.submitBtn.disabled{
    filter: opacity(0.4);
    cursor: no-drop;
}
.submitBtn.disabled:hover{
    transform: scale(1);
}
.notSureText {
    padding: 12px 9px;
    background: #F4FFFB;
    border-radius: 5px;
    width: 100%;
    margin: auto;
    font-weight: 500;
    font-size: 13px;
    line-height: 150%;
    text-align: center;
    color: #6B6E98;
}
.aboutTaneja{
    font-weight: 500;
    font-size: 15px;
    line-height: 200%;
    text-align: center;
    color: #6B6E98;
    margin: 30px auto 0;
    max-width: 852px;
}
.successPopup{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0,0,0,.7);
    display: none;
}
.successPopup.show{
    display: block;
}
.successPopupContentWrapper{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    padding: 30px 30px 66px;
    background: #FFFFFF;
    border-radius: 20px;
    max-width: 509px;
    width: 100%;
}
.successPopupContentWrapper img{
    width: 165px;
    height: 161px;
}
.successPopupContentWrapper .successHead{
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: -25px 0 15px;
    font-family: 'DM Serif Display';
    color: #1C3D5A;
}
.successPopupContentWrapper .desc{
    font-weight: 500;
    font-size: 15px;
    line-height: 135%;
    color: #6B6E98;
}
.closePopup{
    position: absolute;
    top: 11px;
    right: 13px;
}
.closePopup:hover{
    opacity: .7;
}
.dateWrapper{
    position: relative;
}
.date-input::-webkit-calendar-picker-indicator {
  background: 0 0;
  position: absolute;
  width: 16px;
  height: 16px;
  cursor: pointer;
  right: 0;
  background-image: url(../../images/calendar-icon.svg);
  background-repeat: no-repeat;
  margin-right: 10px;
}
.date-input {
  color: #9C9FBF !important; /* Placeholder-like grey color */
}

.date-input.has-value {
  color: #1C3D5A !important; /* Dark color when user selects a date */
}
.select2-dropdown {
    z-index: 10;
}
@media (max-width: 991px) {
    .enquiryForm{
        padding: 30px;
    }
}
@media (max-width:575px) {
    .enquiryForm{
        padding: 30px 15px;
    }
    .doubleWrapper{
        flex-direction: column;
        gap: 0;
    }
    .submitBtn{
        width: 100%;
    }
    .aboutTaneja{
        font-size: 14px;
    }
    .singleInputWrapper input, .singleInputWrapper textarea{
        font-size: 14px;
    }
    .singleInputWrapper label{
        font-size: 14px;
    }
    .enquiryFormSec {
        padding-bottom: 80px;
    }
    .successPopupContentWrapper{
        max-width: calc(100% - 30px);
    }
    .successPopupContentWrapper .successHead{
        font-size: 27px;
    }
    .enquiryBannersec h1 {
        font-size: 28px;
        line-height: 150%;
    }
    .enquiryBannersec p {
        font-size: 15px;
    }
}