.if-wrapper{
    max-width:900px;
    margin:50px auto;
}

.if-card{
    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.if-header{
    text-align:center;
    margin-bottom:30px;
}

.if-progress{
    height:8px;
    background:#eee;
    border-radius:50px;
    overflow:hidden;
    margin-bottom:40px;
}

.if-progress-bar{
    width:20%;
    height:100%;
    background:#22c55e;
    transition:.3s;
}

.if-step{
    display:none;
}

.if-step.active{
    display:block;
}

.if-step-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:10px;
}

.if-step-content{
    color:#666;
    margin-bottom:40px;
}

.if-navigation{
    display:flex;
    justify-content:space-between;
}

.if-navigation button{
    background-color: #092B89;
    font-family: "Inter", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.26);
    border-radius: 14px 14px 14px 14px;
    padding: 7px 15px 7px 15px;
}


.if-step-header{

    margin-bottom:30px;

}

.if-step-header h3{

    font-size:30px;

    margin:0 0 8px;

}

.if-step-header p{

    color:#666;

}

.if-row{

    display:flex;

    gap:20px;

    margin-bottom:22px;

}

.if-col{

    flex:1;

}

.if-col-100{

    flex:0 0 100%;

}

.if-field{

    display:flex;

    flex-direction:column;

}

.if-field label{

    font-size:14px;

    font-weight:600;

    margin-bottom:8px;

}

.if-field label span{

    color:#dc2626;

}

.if-field input{

    height:52px;

    border:1px solid #d9d9d9;

    border-radius:12px;

    padding:0 18px;

    font-size:15px;

    transition:.3s;

}

.if-field input:focus{

    outline:none;

    border-color:#22c55e;

    box-shadow:0 0 0 4px rgba(34,197,94,.15);

}

@media(max-width:768px){

.if-row{

    flex-direction:column;

}

}


.if-step-header{

    margin-bottom:40px;

}

.if-step-number{

    display:inline-flex;

    padding:8px 16px;

    background:#01125bd1;

    color:#fff;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.if-step-header h2{

    font-size:34px;

    margin:0 0 10px;

    color:#111827;

}

.if-step-header p{

    color:#6B7280;

    margin:0;

}

.if-card-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:40px;

}

.if-radio-card{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    border:2px solid #E5E7EB;

    border-radius:20px;

    padding:35px 25px;

    cursor:pointer;

    transition:.3s;

    background:#fff;

}

.if-radio-card:hover{

     border-color:#01125B;

    transform:translateY(-5px);

}

.if-radio-card input{

    display:none;

}

.if-radio-card input:checked + .if-card-icon{

    color:#01125B;

}

.if-radio-card:has(input:checked){

    border-color:#01125B;

    background:#01125b14;

}

.if-card-icon{

    font-size:50px;

    margin-bottom:18px;

}

.if-card-title{

    font-size:20px;

    font-weight:700;

    margin-bottom:8px;

}

.if-card-desc{

    color:#6B7280;

    font-size:14px;

}

@media(max-width:991px){

.if-card-grid{

grid-template-columns:1fr;

}

}


/*--------------------------------------------------------------
Radio Card Component
--------------------------------------------------------------*/

.if-form-group{
    margin:40px 0;
}

.if-section-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
    color:#111827;
}

.if-radio-card-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:24px;

}

.if-radio-card{

    position:relative;
    cursor:pointer;
    display:block;

}

.if-radio-card input{

    display:none;

}

.if-radio-content{

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    padding:35px 25px;

    background:#ffffff;

    border:2px solid #E5E7EB;

    border-radius:20px;

    transition:.35s;

    min-height:220px;

    box-shadow:0 10px 35px rgba(0,0,0,.04);

}

.if-radio-icon{

    width:70px;
    height:70px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;

}

.if-radio-icon img{

    max-width:64px;
    max-height:64px;
    display:block;
}

.if-radio-title{

    font-size:20px;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;

}

.if-radio-description{

    font-size:14px;
    color:#6B7280;
    line-height:1.6;

}

.if-radio-card:hover .if-radio-content{

    transform:translateY(-6px);

    border-color:#01125B;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.if-radio-card.active .if-radio-content{

    border-color:#01125B;

    background:#F0FDF4;

    box-shadow:0 25px 60px rgba(22,163,74,.15);

}

.if-radio-card.active .if-radio-title{

    color:#01125B;

}

.if-radio-card.active::after{

    content:"✓";

    position:absolute;

    top:15px;

    right:15px;

    width:32px;

    height:32px;

    border-radius:50%;

    background:#01125B;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:16px;

    font-weight:700;

}

@media(max-width:768px){

   .if-radio-content{
     width: 100%;
     min-height: 150px;
         padding: 10px;
   }

}


/*--------------------------------------------------------------
Wizard
--------------------------------------------------------------*/

.if-step{

    display:none;

    animation:ifFade .35s ease;

}

.if-step.active{

    display:block;

}

.if-navigation{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:50px;

}

.if-btn{

    border:none;

    padding:14px 28px;

    border-radius:12px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.if-prev{

    background:#092B89;

    color:#fff;

}

.if-prev:hover{

    background:#092B89;
     transform: translateY(-4px);

}

.if-next{

    background:#092B89;

    color:#fff;

}

.if-next:hover{

    background:#092B89;
    transform: translateY(-4px);

}

.if-submit{

    background:#0F766E;

    color:#fff;

}

.if-progress{

    height:10px;

    background:#ECECEC;

    border-radius:100px;

    overflow:hidden;

    margin:35px 0;

}

.if-progress-bar{

    width:20%;

    height:100%;

    background:#01125B;

    transition:.4s;

}

@keyframes ifFade{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


.if-error{

    color:#dc2626;

    font-size:14px;

    margin-top:10px;

    font-weight:500;

}


.if-upload-box{

    border:2px dashed #d9d9d9;
    border-radius:12px;
    padding:35px;
    text-align:center;
    cursor:pointer;
    transition:.3s;
    position:relative;

}

.if-upload-box.drag{

    border-color:#28c85b;
    background:#f2fff6;

}

#if-preview{

    max-width:220px;
    border-radius:10px;
    display:block;
    margin:15px auto;

}

#if-remove-image{

    margin-top:15px;
    background:#ef4444;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:8px;
    cursor:pointer;

}


.if-success-modal{

    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.55);

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:99999;

}

.if-success-modal.active{

    opacity:1;
    visibility:visible;

}

.if-success-card{

    width:430px;
    max-width:92%;

    background:#fff;

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    transform:scale(.8);

    transition:.3s;

}

.if-success-modal.active .if-success-card{

    transform:scale(1);

}

.if-checkmark{

    width:90px;
    margin:auto auto 25px;

}

.if-checkmark svg{

    width:100%;

}

.if-checkmark circle{

    fill:none;
    stroke:#22c55e;
    stroke-width:2;

    stroke-dasharray:160;
    stroke-dashoffset:160;

    animation:circle .6s forwards;

}

.if-checkmark path{

    fill:none;
    stroke:#22c55e;
    stroke-width:3;
    stroke-linecap:round;

    stroke-dasharray:40;
    stroke-dashoffset:40;

    animation:tick .35s .55s forwards;

}

@keyframes circle{

    to{

        stroke-dashoffset:0;

    }

}

@keyframes tick{

    to{

        stroke-dashoffset:0;

    }

}

.if-success-card h2{

    font-size:30px;
    margin-bottom:10px;

}

.if-success-card p{

    color:#666;
    line-height:1.8;

}