.screen .logo,
.screen .text,
.screen .title {
    max-width: 100%;
    height: auto;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.setUp .logo,
.setUp .text,
.setUp .title {
    max-width: 100%;
    height: auto;
    transform: translateY(0);
    opacity: 1;
    transition: transform 1s ease, opacity 1s ease;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: none;
    /* 默认隐藏 */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

/* 或者使用更平滑的过渡效果 */
.modal-overlay.fade-in {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

.modal-overlay.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.95);
        display: none;
    }
}

.form-group {
    margin-bottom: 1.5vw;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 1.3021vw;
    border: 0.0521vw solid #ddd;
    font-size: 1.3021vw;
    box-sizing: border-box;
    transition: all 0.3s;
    background-color: #fff;
    font-family: Poppins, sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #0264FA;
    box-shadow: 0 0 0 0.1042vw rgba(2, 100, 250, 0.2);
    background-color: #fff;
}

.form-group input::placeholder {
    color: #999999;
    font-size: 1.3021vw;
}


.form-group .error-message.show {
    display: block;
}

/* 输入框错误状态样式 */
.form-group.input-error input {
    border-color: #ff4d4d;
    box-shadow: 0 0 0 0.1042vw rgba(255, 77, 77, 0.2);
}

.form-group.input-error input::placeholder {
    color: #ff9999;
}

/* 提交按钮样式 */
.submit-btn {
    padding: 1.3021vw 3.125vw;
    border: none;
    border-radius: 0.5208vw;
    font-size: 1.3021vw;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 12.5vw;
    background-color: #0264FA;
    color: white;
    font-family: Poppins, sans-serif;
    font-weight: 500;
}

.submit-btn:hover:not(:disabled) {
    background-color: #0256d9;
    transform: translateY(-0.1042vw);
}

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
}



.form-group input::placeholder {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: .8333vw;
    leading-trim: NONE;
    line-height: 160%;
    letter-spacing: .026vw;
    vertical-align: middle;
    color: #000;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    border-radius: 1.0417vw;
    width: 31.25vw;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0.5208vw 1.5625vw rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-2.0833vw);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5625vw;
}

.modal-header h3 {
    margin: 0;
    padding-left: 2vw;
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 1.6917vw;
    leading-trim: NONE;
    line-height: 135%;
    letter-spacing: .0104vw;
    color: #333;
}

.close-btn {
    font-size: 4.875vw;
    margin-top: -8vw;
    margin-right: 1vw;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #333;
}

.modal-body {
    padding: 1.5625vw;
}

.form-group label {
    display: block;
    margin-bottom: 0.5208vw;
    font-weight: 500;
    color: #555;
    font-size: 1.0417vw;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7813vw;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: .1498vw solid #737B7D;
    font-size: 1.0417vw;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0264FA;
    box-shadow: 0 0 0 0.1042vw rgba(2, 100, 250, 0.2);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.7813vw;
    margin-top: 1.5625vw;
}

.cancel-btn,
.submit-btn {
    padding: 0.7813vw 1.5625vw;
    border: none;
    border-radius: 0.3125vw;
    font-size: 1.0417vw;
    cursor: pointer;
    transition: all 0.3s;
}

.cancel-btn {
    background-color: #f5f5f5;
    color: #666;
}

.cancel-btn:hover {
    background-color: #e0e0e0;
}

.submit-btn {
    background-color: #0264FA;
    color: white;
    width: 100%;
}

.submit-btn:hover {
    background-color: #0256d9;
    transform: translateY(-0.1042vw);
}

@media screen and (min-width: 1081px) {
    .screenadd {
        padding: 5.8333vw 6.4063vw 7.8125vw 6.3542vw;
    }

    .screenadd .content {
        display: flex;
        flex-direction: row;
        margin-top: 1vw;
    }

    .screenadd .titles {
        font-family: Poppins;
        font-weight: 500;
        font-style: Medium;
        font-size: 2.2917vw;
        leading-trim: NONE;
        line-height: 135%;
        letter-spacing: .0104vw;
        position: super;
        margin-bottom: 3.4896vw;
    }

    .screenadd .number,
    .screenadd .tips {
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 1.6667vw;
        leading-trim: NONE;
        letter-spacing: .0104vw;

    }

    /* 错误提示样式 */
    .form-group .error-message {
        color: #ff4d4d;
        font-size: 1.0417vw;
        display: none;
        font-family: Poppins, sans-serif;
        font-weight: 400;
    }

    .screen3 .content .answer {
        margin-top: 1.1714vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.1245vw;
        color: #000;
    }

    .screen3 .content .radio-option {
        width: 32.7914vw;
        height: 4.4503vw;
        border-radius: .4682vw;
        background-color: #FFFFFF;
        transition: all 0.3s ease;
    }


    .screen3 .content .radio-item {
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0 1.3889vw;
        cursor: pointer;
        border-radius: .4682vw;
        transition: all 0.3s ease;
        width: 100%;
        border: .1852vw solid transparent;
    }

    .screen3 .content .radio-option:hover {
        transform: scale(1.03);
        box-shadow: 0 .1852vw .3704vw rgba(0, 0, 0, 0.15);
        z-index: 2;
    }

    .screen3 .content .radio-item:hover {
        background-color: #f5f5f5;
    }

    .screen3 .content .radio-item.active {
        background-color: #e3f2fd;
        border: .1852vw solid #0264FA;
        transform: translateY(-0.0926vw);
        box-shadow: 0 .1852vw .7407vw rgba(2, 100, 250, 0.2);
    }

    .screen3 .content .radio-button {
        width: 1.6667vw;
        height: 1.6667vw;
        border: .1852vw solid #cccccc;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: .9259vw;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .screen3 .content .radio-item:hover .radio-button {
        border-color: #999999;
    }

    .screen3 .content .radio-item.active .radio-button {
        border-color: #0264FA;
        background-color: #0264FA;
    }

    .screen3 .content .radio-button-inner {
        width: .7407vw;
        height: .7407vw;
        border-radius: 50%;
        background-color: transparent;
        transition: all 0.3s ease;
    }

    .screen3 .content .radio-item.active .radio-button-inner {
        background-color: white;
    }

    .screen3 .content .radio-label {
        font-family: Poppins;
        font-weight: 500;
        font-size: 1.6396vw;
        line-height: 1.3;
        letter-spacing: 0%;
        text-align: left;
        color: #000;
        transition: all 0.3s ease;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .screen3 .content .radio-item:hover .radio-label {
        color: #333;
    }

    .screen3 .content .radio-item.active .radio-label {
        color: #0264FA;
        font-weight: 600;
    }

    .screen1 {
        padding: 0vw 5.7292vw;
        background-image: url("https://d13pvy8xd75yde.cloudfront.net/global/india/pova-slim-5g/images/bg1%20%283%29.png");
        background-size: cover;
        width: 100%;
        height: 60.9375vw;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .screen1 .logo {
        width: 17.5vw;
        height: 5.5326vw;
    }

    .screen1 .people {
        width: 44.2708vw;
        height: 59.5313vw;
        margin-top: 1.5vw;
    }

    .screen1 .people1 {
        width: 44.2708vw;
        height: 59.5313vw;
        margin-top: 1.5vw;
        margin-left: 1vw;
    }

    .screen1 .text {
        width: 22.3438vw;
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 2.6042vw;
        leading-trim: NONE;
        line-height: 2.7604vw;
        letter-spacing: 0%;
        color: #FFFFFF;
    }

    .screen1 .tips {
        position: absolute;
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: .2969vw;
        leading-trim: NONE;
        line-height: 1.9688vw;
        letter-spacing: 0%;
        color: #000;
        margin-top: 58.5609vw;
        margin-left: 86.25vw;
    }

    .screen2 {
        padding-top: 7.3438vw;
        width: 100%;
        height: 92.7083vw;
        background-image: url("https://d13pvy8xd75yde.cloudfront.net/global/india/pova-slim-5g/images/bg2.png");
        background-size: cover;
        margin-top: -7.9167vw;
        position: relative;
        z-index: -1;
        text-align: center;
    }

    .screen2 .title {
        font-family: Instrument Serif;
        font-weight: 400;
        font-style: Regular;
        font-size: 7.8125vw;
        leading-trim: NONE;
        line-height: 8.2813vw;
        letter-spacing: 0%;
        text-align: center;
        color: #FFFFFF;
        margin-top: 7.3438vw;
    }

    .screen2 .title {
        width: 57.9167vw;
        height: 16.5625vw;
    }

    .screen3 {
        padding-top: 5.4688vw;
        width: 100%;
        text-align: center;
    }

    .screen3 .title {
        font-family: Instrument Serif;
        font-weight: 400;
        font-style: Regular;
        font-size: 7.8125vw;
        leading-trim: NONE;
        line-height: 8.2813vw;
        letter-spacing: 0%;
        width: 63vw;
        margin: auto;
        text-align: center;
        color: #000;
    }

    .screen3 .title {
        width: 63.0208vw;
        height: 13.125vw;
    }

    .screen3 .text {
        font-family: Poppins;
        font-weight: 500;
        font-style: Medium;
        font-size: 3.125vw;
        leading-trim: NONE;
        line-height: 8.2813vw;
        letter-spacing: 0%;
        text-align: center;
        color: #000;
    }

    .screen3 .content {
        width: 70.6889vw;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.8109vw;
    }

    .screen3 .content .part {
        padding: 1.4063vw 1.9911vw;
        border-radius: .7813vw;
        background-color: #F0EEEF;
    }

    .screen3 .content .question {
        width: 66.7071vw;
        height: 7.4479vw;
        border-radius: .4682vw;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .screen3 .content .question .number {
        width: 6.3709vw;
        font-family: Poppins;
        font-weight: 300;
        font-style: Light;
        font-size: 4.6844vw;
        leading-trim: NONE;
        line-height: 7.4484vw;
        letter-spacing: 0%;
        text-align: center;
        border-top-left-radius: .4682vw;
        border-bottom-left-radius: .4682vw;
        background-color: #E5E5E5;
    }

    .screen3 .content .question .texts {
        width: 60.3365vw;
        height: 100%;
        padding-left: .3708vw;
        font-family: Poppins;
        font-weight: 300;
        font-style: Light;
        font-size: 1.874vw;
        leading-trim: NONE;
        line-height: 120%;
        letter-spacing: 0%;
        text-align: left;
        border-top-left-radius: .4682vw;
        border-bottom-left-radius: .4682vw;
        background-color: #FFFFFF;
        display: flex;
        align-items: center;
    }

    .screen3 .content .answer {
        margin-top: 1.1714vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.1245vw;
    }

    .screen3 .content .answer .text {
        width: 32.7914vw;
        height: 4.4503vw;
        border-radius: .4682vw;
        padding-left: 2.0448vw;
        font-family: Poppins;
        font-weight: 500;
        font-style: Medium;
        font-size: 1.6396vw;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: left;
        background-color: #FFFFFF;
        display: flex;
        align-items: center;
    }

    .screen3 button {
        width: 24.8438vw;
        height: 3.2292vw;
        margin-top: 3.9063vw;
        margin-bottom: 6.875vw;
        background-color: #0264FA;
        font-family: Inter;
        font-weight: 600;
        font-style: Semi Bold;
        font-size: 1.0417vw;
        leading-trim: NONE;
        line-height: 160%;
        letter-spacing: .026vw;
        text-align: center;
        vertical-align: middle;
        text-transform: uppercase;
        color: #FFFFFF;
        border: 0 solid #000;
        border-radius: .3906vw;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .screen3 button:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(2, 100, 250, 0.3);
        background-color: #0256d9;
    }

    .screen3 button:active {
        transform: scale(0.98);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    }

    .screen4 {
        padding: 5.5208vw 12.1875vw 0vw 12.1875vw;
        background-image: url("https://d13pvy8xd75yde.cloudfront.net/global/india/pova-slim-5g/images/bg4.png");
        background-size: cover;
        text-align: center;
        position: relative;
    }

    .screen4 .title0 {
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 4.6875vw;
        leading-trim: NONE;
        line-height: 8.2813vw;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
        color: #FFFFFF;
    }

    .screen4 .icon {
        width: 60vw;
        height: 11.0417vw;
        margin-top: 5.5208vw;
    }

    .screen4 .titles {
        margin-top: 15.0521vw;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 9.2708vw;
    }

    .screen4 .titles .title2,
    .screen4 .titles .title1 {
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 5.4688vw;
        leading-trim: NONE;
        line-height: 5.7292vw;
        letter-spacing: 0%;
        text-transform: uppercase;
        color: #FFFFFF;
    }

    .screen4 .titles .title1 {
        text-align: right;
        margin-left: 4.5vw;
        width: 19.9479vw;
        height: 12.4479vw;
    }

    .screen4 .titles .title2 {
        text-align: left;
        width: 28.4375vw;
        height: 12.1667vw;
    }

    .screen4 .titles span {
        font-size: 8.2813vw;
        line-height: 7.5521vw;
    }

    .screen4 .content {
        position: relative;
        padding: 5.0419vw 5.1755vw;
        margin-top: 23.5938vw;
        width: 75.625vw;
        height: 80.625vw;
        border-radius: 2.0313vw;
        background-color: #E8F3F9;
    }

    .screen4 .content .title3 {
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 3.2984vw;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
    }

    .screen4 .content .pictures {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5625vw;
        margin-top: 4.4573vw;
    }

    .screen4 .content .pictures> :nth-child(1),
    .screen4 .content .pictures> :nth-child(2),
    .screen4 .content .pictures> :nth-child(3) {
        flex: 1 1 calc(33.333% - 1.5625vw);
    }

    .screen4 .content .pictures> :nth-child(1) img,
    .screen4 .content .pictures> :nth-child(2) img,
    .screen4 .content .pictures> :nth-child(3) img {
        width: 16.976vw;
        height: 4.4271vw;
    }

    .screen4 .content .pictures> :nth-child(4),
    .screen4 .content .pictures> :nth-child(5) {
        flex: 1 1 calc(50% - 1.5625vw);
    }

    .screen4 .content .pictures> :nth-child(4) img {
        width: 22.4541vw;
        height: 3.4735vw;
    }

    .screen4 .content .pictures> :nth-child(5) img {
        width: 22.9366vw;
        height: 4.4271vw;
    }

    .screen4 .content .objects {
        margin-top: 5.4714vw;
        display: flex;
        flex-wrap: row;
        justify-content: space-between;
        align-items: center;
    }

    .screen4 .content .object0 img {
        width: 5.5729vw;
        height: 6.7708vw;
    }

    .screen4 .content .object1 img {
        width: 5.625vw;
        height: 6.0417vw;
    }

    .screen4 .content .object2 img {
        width: 6.6667vw;
        height: 6.0938vw;
    }

    .screen4 .content .object .text {
        margin-top: 1.5625vw;
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 1.249vw;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
    }

    .screen4 .content .object .number {
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 1.9396vw;
        leading-trim: NONE;
        line-height: 150%;
        letter-spacing: 0%;
        text-align: center;
    }

    .screen4 .content .title4 {
        margin-top: 5.925vw;
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 3.2969vw;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
    }

    .screen4 .content .trophys {
        margin-top: 4.7635vw;
        width: 100%;
        height: 15.3492vw;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 5.2083vw;
    }

    .screen4 .content .trophys .trophy {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 16.3492vw;
    }

    .screen4 .content .trophys .trophy .bg {
        width: 7.0182vw;
        height: 7.0182vw;
        background-image: url("https://d13pvy8xd75yde.cloudfront.net/global/india/pova-slim-5g/images/backgroud.png");
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .screen4 .content .trophys .trophy0 .bg img {
        width: 3.5417vw;
        height: 4.375vw;
    }

    .screen4 .content .trophys .trophy1 .bg img {
        width: 4.0104vw;
        height: 4.4271vw;
    }

    .screen4 .content .trophys .trophy2 .bg img {
        width: 3.125vw;
        height: 4.9479vw;
    }

    .screen4 .content .trophys .trophy3 .bg img {
        width: 2.5521vw;
        height: 4.7396vw;
    }

    .screen4 .content .trophys .trophy .text {
        margin-top: 1.3604vw;
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 1.2161vw;
        leading-trim: NONE;
        line-height: 120%;
        letter-spacing: 0%;
        text-align: center;
    }

    .screen4 .content .trophys .trophy .logo {
        margin-top: 1.4026vw;
        width: 9.6134vw;
        height: 2.288vw;
        border-width: .0521vw;
        border-radius: 3vw;
        background-color: #FFF;
        display: flex;
        align-items: center;
        justify-content: center;
        border: .0521vw solid;
    }

    .screen4 .content .trophys .trophy0 .logo img {
        width: 5.3646vw;
        height: 1.4583vw;
    }

    .screen4 .content .trophys .trophy1 .logo img {
        width: 8.3854vw;
        height: .9375vw;
    }

    .screen4 .content .trophys .trophy2 .logo img {
        width: 4.0104vw;
        height: 1.7188vw;
    }

    .screen4 .content .trophys .trophy3 .logo img {
        width: 5.625vw;
        height: 1.25vw;
    }

    .screen4 .hand {
        position: absolute;
        width: 17.1875vw;
        height: 50.5208vw;
        margin-top: -20.0521vw;
        left: 38.125vw;
    }
}

@media screen and (max-width: 1080px) {
    .screenadd {
        padding: 4.9074vw 8.1481vw 5.0926vw 8.1481vw;
    }

    .screenadd .content {
        display: flex;
        flex-direction: row;
        margin-top: 2vw;
    }

    .screenadd .titles {
        font-family: Poppins;
        font-weight: 500;
        font-style: Medium;
        font-size: 4.0741vw;
        leading-trim: NONE;
        line-height: 135%;
        letter-spacing: .0185vw;
        position: super;
        margin-bottom: 6.2037vw;
    }

    .screenadd .number,
    .screenadd .tips {
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 2.963vw;
        leading-trim: NONE;
        line-height: 130%;
        letter-spacing: .0185vw;
    }

    /* 错误提示样式 */
    .form-group .error-message {
        color: #ff4d4d;
        font-size: 2.0417vw;
        margin-top: 0.5208vw;
        display: none;
        font-family: Poppins, sans-serif;
        font-weight: 400;
    }

    .form-group input::placeholder {
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 2.7778vw;
        leading-trim: NONE;
        line-height: 160%;
        letter-spacing: .075vw;
        vertical-align: middle;
        color: #000;
    }

    .modal-content .modal-header {
        margin: auto;
        max-width: 900px;
        padding-left: 3.5vw;
        width: 100%;
    }

    .modal-content {
        width: 90vw;
        border-radius: 2.0833vw;
    }

    .modal-header {
        padding: 3.125vw;
    }

    .modal-header h3 {
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 4.6296vw;
        leading-trim: NONE;
        line-height: 142%;
        letter-spacing: 0.24px;
    }

    .close-btn {
        font-size: 13vw;
        margin-top: -20vw;
        margin-right: 3vw;
    }

    .modal-body {
        padding: 3.125vw;
    }

    .form-group {
        margin-bottom: 6.6435vw;
    }

    .form-group label {
        font-size: 3.125vw;
        margin-bottom: 1.0417vw;
    }

    .form-group input,
    .form-group textarea {
        padding: 1.5625vw;
        font-size: 3.125vw;
    }

    .form-actions {
        margin-top: 3.125vw;
        gap: 1.5625vw;
    }

    .cancel-btn,
    .submit-btn {
        padding: 1.5625vw 3.125vw;
        font-size: 3.125vw;
        border-radius: 1.0417vw;
        width: 86vw;
    }

    .screen3 .content .answer {
        margin-top: 2.1528vw;
        height: 20vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4787vw;
    }

    .screen3 .content .radio-option {
        width: 32.7914vw;
        height: 4.4503vw;
        border-radius: .4682vw;
        background-color: #FFFFFF;
    }

    .screen3 .content .radio-item {
        display: flex;
        align-items: center;
        height: 8.33vw;
        padding: 0 1.3889vw;
        cursor: pointer;
        border-radius: .4682vw;
        transition: all 0.3s ease;
        width: 43.124vw;
        background-color: #FFF;
        border: .1852vw solid transparent;
    }

    .screen3 .content .radio-item:hover {
        background-color: #f5f5f5;
        transform: translateY(-0.0926vw);
        box-shadow: 0 .1852vw .3704vw rgba(0, 0, 0, 0.1);
    }

    .screen3 .content .radio-item.active {
        background-color: #e3f2fd;
        border: .1852vw solid #0264FA;
        transform: translateY(-0.0926vw);
        box-shadow: 0 .1852vw .7407vw rgba(2, 100, 250, 0.2);
    }

    .screen3 .content .radio-button {
        width: 1.6667vw;
        height: 1.6667vw;
        border: .1852vw solid #cccccc;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: .9259vw;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .screen3 .content .radio-item:hover .radio-button {
        border-color: #999999;
    }

    .screen3 .content .radio-item.active .radio-button {
        border-color: #0264FA;
        background-color: #0264FA;
    }

    .screen3 .content .radio-button-inner {
        width: .7407vw;
        height: .7407vw;
        border-radius: 50%;
        background-color: transparent;
        transition: all 0.3s ease;
    }

    .screen3 .content .radio-item.active .radio-button-inner {
        background-color: white;
    }

    .screen3 .content .radio-label {
        font-family: Poppins;
        font-weight: 500;
        font-size: 1.6396vw;
        line-height: 1.3;
        letter-spacing: 0%;
        text-align: left;
        color: #666;
        transition: all 0.3s ease;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-family: Poppins;
        font-weight: 500;
        font-style: Medium;
        font-size: 2.5926vw;
        leading-trim: NONE;
        line-height: 13.9417vw;
        letter-spacing: 0%;
    }

    .screen3 .content .radio-item:hover .radio-label {
        color: #333;
    }

    .screen3 .content .radio-item.active .radio-label {
        color: #0264FA;
        font-weight: 600;
    }

    .screen1 {
        background-image: url("https://d13pvy8xd75yde.cloudfront.net/global/india/pova-slim-5g/images/BG%201m.png");
        background-size: cover;
        width: 100%;
        height: 165.0926vw;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .screen1 .logo {
        width: 78.8889vw;
        height: 6.9309vw;
        margin-top: 20.1852vw;
    }

    .screen1 .people {
        width: 86.4157vw;
        height: 116.2037vw;
        margin-top: 12.787vw;
    }

    .screen1 .people1 {
        margin-top: 7.9546vw;
        width: 78.7037vw;
        margin-left: 1.5vw;
        height: 105.8333vw;
    }

    .screen1 .text {
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 4.6296vw;
        leading-trim: NONE;
        line-height: 4.9963vw;
        letter-spacing: 0%;
        text-align: center;
        position: super;
        margin-top: 5.662vw;
        color: #FFF;
    }

    .screen1 .tips {
        position: absolute;
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 1.1111vw;
        leading-trim: NONE;
        line-height: 3.5vw;
        letter-spacing: 0%;
        margin-left: 1.7593vw;
        margin-top: -6vw;
    }

    .screen2 {
        padding-top: 7.3438vw;
        width: 100%;
        height: 92.7083vw;
        background-image: url("https://d13pvy8xd75yde.cloudfront.net/global/india/pova-slim-5g/images/bg2.png");
        background-size: cover;
        margin-top: -7.9167vw;
        position: relative;
        z-index: -1;
        text-align: center;
    }

    .screen2 .title {
        font-family: Instrument Serif;
        font-weight: 400;
        font-style: Regular;
        font-size: 7.8704vw;
        leading-trim: NONE;
        line-height: 8.7037vw;
        letter-spacing: 0%;
        text-align: center;
        color: #FFFFFF;
        margin-top: 7.3438vw;
    }

    .screen2 .title {
        width: 58.4259vw;
        height: 17.4074vw;
    }

    .screen3 {
        padding-top: 5.4688vw;
        width: 100%;
        text-align: center;
    }

    .screen3 .title {
        font-family: Instrument Serif;
        font-weight: 400;
        font-style: Regular;
        font-size: 9.2593vw;
        leading-trim: NONE;
        line-height: 9.3519vw;
        letter-spacing: 0%;
        width: 63vw;
        margin: auto;
        text-align: center;
        color: #000;
    }

    .screen3 .title {
        width: 71.5741vw;
        height: 16.1111vw;
    }

    .screen3 .text {
        font-family: Poppins;
        font-weight: 500;
        font-style: Medium;
        font-size: 4.1667vw;
        leading-trim: NONE;
        line-height: 11.575vw;
        letter-spacing: 0%;
        text-align: center;
        color: #000;
    }

    .screen3 .content {
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5.2611vw;
    }

    .screen3 .content .part {
        padding: 3.05vw 2.6181vw;
        border-radius: 1.462vw;
        width: 92.963vw;
        height: 40.9483vw;
        background-color: #F0EEEF;
    }

    .screen3 .content .question {
        width: 87.7265vw;
        height: 14.0194vw;
        border-radius: .8769vw;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .screen3 .content .question .number {
        width: 8.3784vw;
        font-family: Poppins;
        font-weight: 300;
        font-style: Light;
        font-size: 8.7685vw;
        leading-trim: NONE;
        letter-spacing: 0%;
        text-align: center;
        border-top-left-radius: .8769vw;
        border-bottom-left-radius: .8769vw;
        background-color: #E5E5E5;
    }

    .screen3 .content .question .texts {
        width: 79.3365vw;
        height: 100%;
        padding-left: .8241vw;
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 2.963vw;
        line-height: 120%;
        leading-trim: NONE;
        letter-spacing: 0%;
        text-align: left;
        border-top-left-radius: .8769vw;
        border-bottom-left-radius: .8769vw;
        background-color: #FFFFFF;
        display: flex;
        align-items: center;
    }

    .screen3 .content .answer {
        margin-top: 2.1528vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4787vw;
    }

    .screen3 .content .answer .text {
        width: 43.124vw;
        height: 8.33vw;
        border-radius: .8769vw;
        padding-left: 1.7954vw;
        font-family: Poppins;
        font-weight: 500;
        font-style: Medium;
        font-size: 2.5926vw;
        leading-trim: NONE;
        line-height: 13.9417vw;
        letter-spacing: 0%;
        text-align: left;
        background-color: #FFFFFF;
        display: flex;
        align-items: center;
    }

    .screen3 button {
        width: 40.2533vw;
        height: 7.4469vw;
        margin-top: 5.5917vw;
        margin-bottom: 8.0157vw;
        background-color: #0264FA;
        font-family: Inter;
        font-weight: 600;
        font-style: Semi Bold;
        font-size: 2.4019vw;
        leading-trim: NONE;
        line-height: 160%;
        letter-spacing: .0602vw;
        text-align: center;
        vertical-align: middle;
        text-transform: uppercase;
        color: #FFFFFF;
        border: 0 solid #000;
        border-radius: .7813vw;
        cursor: pointer;
        transition: all 0.2s ease;
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .screen3 button:hover {
        transform: scale(1.03);
        box-shadow: 0 4px 10px rgba(2, 100, 250, 0.25);
        background-color: #0256d9;
    }

    .screen3 button:active {
        transform: scale(0.98);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    }

    .screen4 {
        padding: 5vw 3.5838vw 0vw 3.5838vw;
        width: 100%;
        background-image: url("https://d13pvy8xd75yde.cloudfront.net/global/india/pova-slim-5g/images/bg4m.png");
        background-size: cover;
        text-align: center;
        align-items: flex-end;
    }

    .screen4 .title0 {
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 5.7528vw;
        leading-trim: NONE;
        line-height: 10.1639vw;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
        color: #FFFFFF;
    }

    .screen4 .icon {
        width: 73.6383vw;
        height: 13.5515vw;
        margin-top: 6.7546vw;
    }

    .screen4 .titles {
        margin-top: 18.4731vw;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 11.3241vw;
    }

    .screen4 .titles .title2,
    .screen4 .titles .title1 {
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 6.712vw;
        letter-spacing: 0%;
        line-height: 7.0315vw;
        text-transform: uppercase;
        color: #FFFFFF;
    }

    .screen4 .titles .title1 {
        text-align: right;
        margin-left: 9vw;
        width: 24.537vw;
        height: 15.2778vw;
    }

    .screen4 .titles .title2 {
        text-align: left;
        width: 34.9074vw;
        height: 14.4074vw;
    }

    .screen4 .titles span {
        font-size: 10.1639vw;
        line-height: 10.0315vw;
    }

    .screen4 .titles .title1 span {
        line-height: 8.015vw;
    }

    .screen4 .content {
        position: relative;
        padding: 6.188vw 6.3639vw;
        margin-top: 28.9565vw;
        width: 92.8149vw;
        height: 98.9514vw;
        border-radius: 2.4926vw;
        border-radius: 2.0313vw;
        background-color: #E8F3F9;
    }

    .screen4 .content .title3 {
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 4.0481vw;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
    }

    .screen4 .content .pictures {
        display: flex;
        flex-wrap: wrap;
        gap: 5.2472vw;
        margin-top: 5.6231vw;
    }

    .screen4 .content .pictures> :nth-child(1),
    .screen4 .content .pictures> :nth-child(2),
    .screen4 .content .pictures> :nth-child(3) {
        flex: 1 1 calc(33.333% - 5.2472vw);
    }

    .screen4 .content .pictures> :nth-child(1) img,
    .screen4 .content .pictures> :nth-child(2) img,
    .screen4 .content .pictures> :nth-child(3) img {
        width: 22.5269vw;
        height: 5.463vw;
    }

    .screen4 .content .pictures> :nth-child(4),
    .screen4 .content .pictures> :nth-child(5) {
        flex: 1 1 calc(50% - 5.2472vw);
    }

    .screen4 .content .pictures> :nth-child(4) img {
        width: 27.558vw;
        height: 4.2631vw;
    }

    .screen4 .content .pictures> :nth-child(5) img {
        width: 28.1501vw;
        height: 5.463vw;
    }

    .screen4 .content .objects {
        margin-top: 6.7491vw;
        display: flex;
        flex-wrap: row;
        justify-content: space-between;
        align-items: center;
    }

    .screen4 .content .object0 img {
        width: 6.8397vw;
        height: 8.3099vw;
    }

    .screen4 .content .object1 img {
        width: 6.9036vw;
        height: 7.415vw;
    }

    .screen4 .content .object2 img {
        width: 8.182vw;
        height: 7.4789vw;
    }

    .screen4 .content .object .text {
        margin-top: 1.3157vw;
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 1.5324vw;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
    }

    .screen4 .content .object .number {
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 2.3806vw;
        leading-trim: NONE;
        line-height: 150%;
        letter-spacing: 0%;
        text-align: center;
    }

    .screen4 .content .title4 {
        margin-top: 7.2407vw;
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 4.0463vw;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
    }

    .screen4 .content .trophys {
        margin-top: 5.8083vw;
        width: 100%;
        height: 18.8381vw;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 6.1741vw;
    }

    .screen4 .content .trophys .trophy {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 19.8381vw;
    }

    .screen4 .content .trophys .trophy .bg {
        width: 8.6135vw;
        height: 8.6135vw;
        background-image: url("https://d13pvy8xd75yde.cloudfront.net/global/india/pova-slim-5g/images/backgroud.png");
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .screen4 .content .trophys .trophy0 .bg img {
        width: 4.3467vw;
        height: 5.3695vw;
    }

    .screen4 .content .trophys .trophy1 .bg img {
        width: 4.922vw;
        height: 5.4334vw;
    }

    .screen4 .content .trophys .trophy2 .bg img {
        width: 3.8353vw;
        height: 6.0726vw;
    }

    .screen4 .content .trophys .trophy3 .bg img {
        width: 3.1322vw;
        height: 5.8169vw;
    }

    .screen4 .content .trophys .trophy .text {
        margin-top: 1.6694vw;
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 1.4926vw;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
    }

    .screen4 .content .trophys .trophy .logo {
        margin-top: 1.787vw;
        width: 11.7985vw;
        height: 2.8081vw;
        border-width: .0639vw;
        border-radius: 3vw;
        background-color: #FFF;
        display: flex;
        align-items: center;
        justify-content: center;
        border: .0521vw solid;
    }

    .screen4 .content .trophys .trophy0 .logo img {
        width: 6.584vw;
        height: 1.7898vw;
    }

    .screen4 .content .trophys .trophy1 .logo img {
        width: 10.2915vw;
        height: 1.1506vw;
    }

    .screen4 .content .trophys .trophy2 .logo img {
        width: 4.922vw;
        height: 2.1094vw;
    }

    .screen4 .content .trophys .trophy3 .logo img {
        width: 6.9036vw;
        height: 1.5341vw;
    }

    .screen4 .hand {
        position: absolute;
        width: 21.0946vw;
        height: 62.0038vw;
        left: 38.2167vw;
        margin-top: -26.0521vw;
    }
}