.new-pricing-tab-container {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center; 
    background-color: #E8F2F9;
    height: 250px; 
    margin-top: 10em !important; 
    padding: 0; 
}
.pricing-container {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 450px;
    padding: 20px;
    margin-top: -10em;
    margin-bottom: 10px; 
}
.image-logo {
    display: flex;
    justify-content: center; 
}
.pricing-header {
    padding: 2.5em 2.5em 0.15em;
    text-align: center;
    color: #053763;
}
.pricing-subheader {
    text-align: center;
    color: #2f2f2f;
}
.title {
    font-size: 1.5rem;
    color: #2a3d66;
    margin-bottom: 5px;
}
.subtitle {
    font-size: 0.9rem;
    color: #6c7a93;
    margin-bottom: 20px;
}
.progress-tab {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    border-radius: .25rem;
    max-width: 450px; 
    margin: 0 auto;   
    padding: 35px 20px;  
}
.progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.progress-bar {
    flex-grow: 1;
    height: 5px;
    background: #dcdcdc !important;
    border-radius: 3px;
    margin: 0 10px;
    position: relative;
}
.back-button {
    display: flex;
    width: 4.5rem;
    height: 1.75rem;
    border: none;
    border-radius: 100px;
    background: #E8F2F9;
    align-items: center;
    justify-content: center;
    color: #053763;
    font-weight: 600;
}
.progress-bar span {
    display: block;
    height: 100%;
    width: 25%; 
    background: #053763;
    border-radius: 3px;
}
.question {
    font-size: 18px;
    font-weight: 500;
    color: #053763;
    margin-bottom: 15px;
}
.options {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    margin: 5px;
}
.radio-option {
    display: flex;
    align-items: center;
    padding: 0.5rem;
}
.radio-option input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #C4D6E8;
    border-radius: 50%; 
    outline: none;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    background-color: white; 
    display: inline-block;
    vertical-align: middle;
}
.radio-option input[type="checkbox"]:checked {
    background-color: #0A386C;
    border-color: #0A386C;
}
.radio-option input[type="checkbox"]::before {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    display: none; 
    position: absolute;
    top: 1px;
    left: 4px;
    transform: rotate(45deg);
}
.radio-option input[type="checkbox"]:checked::before {
    display: block; 
}
.radio-option label {
    margin: 0 !important;
    font-size: 16px; 
    font-weight: 400;
    color: #053763;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle; 
}
.button {
    text-align: center;
}
.button button {
    width: 100%;
    background: #053763;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}
.button button:hover {
    background: #05376375;
}
.submit-button {
    width: 97%;
    background: #053763;
    color: #fff;
    border: none;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}
.submit-button:hover {
    background: #05376375;
}
.price-display {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #053763;
    font-weight: 600;
}
.loader-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 120px; 
    text-align: center;
    font-family: Arial, sans-serif;
}
#loader-percentage {
    position: absolute;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.loader-container p {
    margin-top: 2rem;
    font-size: 14px;
    color: #555;
}
.loading {
    margin: 0;
    padding: 0;
    margin-top: 1rem;
    font-size: 12px;
    font-weight: 500;
}
.form-fields > input {
    width: 13.8em;
    padding: 0.5rem;
    margin: 0.5rem 0.25em 0.5em;
    border-radius: 5px;
    border: 1px solid lightgrey;
    color: #4d4a4a;
    font-size: 14px;
}
.circular-progress {
    --size: 250px;
    --half-size: calc(var(--size) / 2);
    --stroke-width: 20px;
    --radius: calc((var(--size) - var(--stroke-width)) / 2);
    --circumference: calc(var(--radius) * pi * 2);
    --dash: calc((var(--progress) * var(--circumference)) / 100);
    animation: progress-animation 2s linear 0s 1 forwards;
    position: relative;
}
.circular-progress circle {
    cx: var(--half-size);
    cy: var(--half-size);
    r: var(--radius);
    stroke-width: var(--stroke-width);
    fill: none;
    stroke-linecap: round;
}
.circular-progress circle.bg {
    stroke: #ddd;
}
.circular-progress circle.fg {
    transform: rotate(-90deg);
    transform-origin: var(--half-size) var(--half-size);
    stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
    transition: stroke-dasharray 0.1s linear;
    stroke: #053763;
}
.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    height: 0em;
    position: relative;
}
.circle-1 {
    gap: 1em;
    width: 35em;
    height: 9em;
    border-radius: 8px;
    background-color: white;
    border: 1px solid #e8e8e8;
    color: #053763;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
    position: relative;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.estimation-button {
    text-decoration: none;
    color: #fff;
    background-color: #053763;
    width: 12em;
    height: 3em;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.estimation-button:hover {
    color: #fff;
    text-decoration: none;
    background-color: #053763b0;
}
.suggestions-box {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-height: 10rem;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    width: 28.5em;
    text-align: start;
    color: #343434;
    font-weight: 400;
    margin-left: 5px;
    font-family: 'Inter';
    font-size: 14px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s;
}
.suggestion-item {
    padding: 8px;
    cursor: pointer;
}
.suggestion-item:hover {
    background-color: #f1f1f1;
}
.pricing-container {
    animation-duration: 1.5s;
}
.country-code {
    width: 70px !important;
    text-align: center;
    background-color: #fff !important;
}
@keyframes popin {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes popout {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0.7);
        opacity: 0;
    }
}
.pricing-container.animate {
    animation-name: popin;
    animation-duration: 0.4s; 
    animation-timing-function: ease-out;
}
.pricing-container.reverse-animate {
    animation-name: popout;
    animation-duration: 0.4s;
    animation-timing-function: ease-in;
}
@property --progress {
    syntax: "<number>";
    inherits: false;
    initial-value: 0;
}
@keyframes progress-animation {
    from {
        --progress: 0;
    }
    to {
        --progress: 100;
    }
}
@media (max-width: 768px) {
    .radio-option input[type="checkbox"] {
        border-radius: 50% !important;
        margin: 0 !important;
    } 
    .radio-option input[type="checkbox"]:checked {
        background-color: #0A386C;
        border-color: #0A386C;
        border-radius: 50% !important;
        margin: 0 !important;
    }
    .new-pricing-tab-container {
        height: auto !important;
        margin-top: 3em !important;
        padding: 2em 1em;
    }
    .pricing-container {
        width: 95%;
        padding: 15px;
        margin-top: 1em;
        margin-bottom: 10px;
    }
    .pricing-header {
        font-size: 1.2rem;
        padding: 2em 1em 0.5em;
    }
    .pricing-subheader {
        font-size: 0.9rem;
    }
    .progress-tab {
        max-width: 100%;
        padding: 20px;
        font-size: 0.8rem;
    }
    .steps {
        margin-top: 1em;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .circle-1 {
        width: 24em;
        height: 9em;
        padding: 1em;
        gap: 0.5em;
        margin-bottom: 1rem;
    }
    .estimation-button {
        width: 100%;
        height: 2.5em;
        font-size: 12px;
    }
    .submit-button {
        width: 100%;
        font-size: 0.9rem;
    }
    .form-fields > input {
        width: 100%;
        margin: 0.5rem 0.1em 0.5em;
    }
    #contactNumber {
       width: 61.5vw !important
    }
    #countryCode {
        width: 15vw !important;
    }
    .suggestions-box {
        width: 24.5em;
    }
    .title {
        font-size: 1.2rem;
    }
    .subtitle {
        font-size: 0.8rem;
    }
    .options label {
        font-size: 14px;
        text-align: left;
        padding: 10px;
    }
    .question {
        font-size: 16px;
    }
    .price-display {
        font-size: 1.2rem;
    }
    .country {
        width: 100% !important; 
    }
    .price-estimation {
        padding: 1.5rem !important;
        height: 50em !important;
    }
    .stamp-container {
        width: 130px !important;
        height: 130px !important;
    }
    .navy-blue-bg {
        padding: 1em;
        height: 24em !important;
    }
    .trusted_customers p {
        font-size: 16px;
        text-align: center;
    }
    .api-white-container {
        opacity:1; 
        padding: 0.5rem !important;
        margin: 1rem !important;
    }
    .img-logo img {
        max-width: 29vw; 
        max-height: 3.2rem; 
    }
    .trusted_customers .img-logo {
        padding: 0.5rem !important;
    }
    .trusted_customers .img-logo img {
        object-fit: contain !important;
        margin: 1rem 0.5rem !important;
    }
}