/* multi step form css start */
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1);}
    50% { transform: translate(30px, 30px) scale(1.1);}
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.96);}
    to { opacity: 1; transform: translateY(0) scale(1);}
}
.progress-container {
    padding: 48px 48px 32px;
    position: relative;
}
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
}
.progress-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 36px;
    right: 36px;
    height: 4px;
    background: #efefef;
    z-index: 0;
}
.progress-line {
    position: absolute;
    top: 24px;
    left: 36px;
    height: 4px;
    background: linear-gradient(90deg, #e67d08 0%, #e98b23 100%);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}
.progress-step-1 { width: 0%; }
.progress-step-2 { width: 29%; }
.progress-step-3 { width: 61%; }
.progress-step-4 { width: 93%; }
@media (max-width: 425px) {
    .progress-step-3 { width: 53%; }
    .progress-step-4 { width: 80%; }
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}
.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: #bbb;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Clash Display', sans-serif;
    position: relative;
}
.step-circle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e67d08, #e98b23);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.step.active .step-circle {
    background: linear-gradient(135deg, #e67d08 0%, #e98b23 100%);
    border-color: transparent;
    color: white;
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(230, 125, 8, 0.35), 0 4px 12px rgba(230, 125, 8, 0.25);
}
.step.active .step-circle::before {
    opacity: 0.2;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2;}
    50% { transform: scale(1.3); opacity: 0;}
}
.step.completed .step-circle {
    background: linear-gradient(135deg, #138c4b 0%, #0f793f 100%);
    border-color: transparent;
    color: white;
    transform: scale(1);
}
.step-label {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #bbb;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}
.step.active .step-label { color: #138c4b; }
.step.completed .step-label { color: #666; }
.form-content {
    padding: 48px;
    min-height: 500px;
}
.form-step {
    display: none;
    animation: fadeInSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-step.active { display: block; }
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(24px);}
    to { opacity: 1; transform: translateY(0);}
}
h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.step-description {
    color: #737373;
    margin-bottom: 36px;
    font-size: 15px;
    line-height: 1.7;
}
.form-group {
    margin-bottom: 26px;
    position: relative;
}
@media (max-width: 425px) {
    .form-group {
    margin-bottom: 15px;
    position: relative;
}
}
label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    letter-spacing: 0.2px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 2px solid #efefef;
    border-radius: 14px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fafafa;
    color: #1a1a1a;
}
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #e67d08;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.08), 0 4px 12px rgba(255, 107, 107, 0.12);
    transform: translateY(-1px);
}
textarea {
    resize: vertical;
    min-height: 130px;
}
button {
    padding: 18px 28px;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}
@media (max-width: 640px) {
    .progress-container, .form-content { padding: 32px 24px; }
    h2 { font-size: 26px; }
    .step-label { font-size: 11px; }
    .step-circle { width: 42px; height: 42px; }
    button { width: 100%; }
}
ol, ul, dl {
    margin-top: 0;
    margin-bottom: 0rem;
}
/* multi step form css end */

.accordion-wrapper.accrdion-wrap .card.plain .card-header button{
    width: auto;
    float: right;
    margin-right: 20px;
}
   
.accordion-wrapper.accrdion-wrap .card.plain .card-header button:before {
    left: unset;
    margin-top: -8px;
    right: 0;
}