/* Roc Grotesk Font Family */
@font-face {
    font-family: 'Roc Grotesk';
    src: url('../fonts/roc-grotesk/Fontspring-DEMO-rocgrotesk-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('../fonts/roc-grotesk/Fontspring-DEMO-rocgrotesk-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('../fonts/roc-grotesk/Fontspring-DEMO-rocgrotesk-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('../fonts/roc-grotesk/Fontspring-DEMO-rocgrotesk-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('../fonts/roc-grotesk/Fontspring-DEMO-rocgrotesk-extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container-welcome {
    width: 100%;
    text-align: center;

}

body {
    font-family: "Rethink Sans", sans-serif;
    background-color: #ffffff;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    min-height: 100vh;
    font-weight: 400;
}

.section {
    padding: 70px 0;
}

.container {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background-color: #8963A9;
    ;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle svg {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
}

h1,
h2 {
    font-family: 'Roc Grotesk', sans-serif;
}

h1 {
    font-size: 2.5rem;
    font-weight: 450 !important;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.description {
    font-family: "Rethink Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #a2a2a2;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.progress-container {
    width: 100%;
    overflow: hidden;
    /* avoid gaps */
    /* margin-bottom: 70px; */

}

.progress-container img {
    width: 100%;
    height: auto;
    display: block;
}


.progress-bar {
    height: 40px;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #119ECF 0%, #5BCAED 100%),
        linear-gradient(90deg, #119ECF 0%, #55C9EF 100%);

    width: 60%;
    position: relative;
    transition: width 0.3s ease;
}

.progress-corner {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
}

.progress-corner-inner {
    width: 100%;
    height: 100%;
    background-color: #8b73b8;
    position: relative;
}

.progress-corner-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(90deg, #119ECF 0%, #5BCAED 100%),
        linear-gradient(90deg, #119ECF 0%, #55C9EF 100%);

}

.progress-corner-inner::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #119ECF 0%, #5BCAED 100%),
        linear-gradient(90deg, #119ECF 0%, #55C9EF 100%);

}

.start-button {
    font-family: "Rethink Sans", sans-serif;
    color: white;
    background: linear-gradient(90deg, #119ECF 0%, #5BCAED 100%), linear-gradient(90deg, #119ECF 0%, #55C9EF 100%);
    font-size: 1.1rem;
    font-weight: 400;
    padding: 1.2rem 10rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(80, 181, 217, 0.3);
}

.start-button:hover {
    background-color: #3da3c5;
}

.start-button:active {
    transform: translateY(1px);
}
.bottom-part{
    display: flex;
    justify-content: center;
    align-items: center;
   
}

@media (max-width: 768px) {
    h1 {
        font-size: 28px !important;
    }

    /* .main-btn {
        width: 100%
    } */

    .description {
        font-size: 16px;
        margin-bottom: 0;
    }
}

.welcome-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.welcome-content {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Icon Container */
.icon-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clipboard-icon {
    width: 80px;
    height: 80px;
}

/* Main Title */
.main-title {
    font-family: 'Roc Grotesk', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #333333;
    margin-bottom: 24px;
    max-width: 700px;
}

/* Description Text */
.description-text {
    font-family: "Rethink Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 60px;
    max-width: 650px;
}

/* Progress Pattern (Zigzag) - Full Width */
.progress-pattern {
    width: 100vw;
    margin: 60px 0 80px 0;
    display: block;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.shape-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: fill;
}


.start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 204, 255, 0.4);
}

.start-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(102, 204, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .description-text {
        font-size: 18px;
        margin-bottom: 50px;
    }

    .icon-container {
        margin-bottom: 30px;
    }

    .clipboard-icon {
        width: 70px;
        height: 70px;
    }

    .progress-pattern {
        margin-bottom: 60px;
    }

    .start-button {
        font-size: 16px;
        padding: 14px 48px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {

    .form-control,
    .form-select {
        height: 60px !important;
    }

    .main-title {
        font-size: 28px;
    }

    .slider-labels {
        gap: 30px !important;
    }

    /* .responsive-content {
        padding: 30px;
    } */

    .form-grid {
        display: grid;
        grid-template-columns: 1fr !important;
    }

    .otp-inputs {
        display: flex;
        justify-content: space-between !important;
    }

    .description-text {
        font-size: 16px;
    }

    .welcome-container {
        padding: 30px 0;
    }

    .welcome-content {
        padding: 0 20px;
    }
}

/* ============================================
   FORM PAGE STYLES
   ============================================ */

.form-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
}

/* Progress Indicator */
.progress-indicator {
    width: 100%;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.step-counter {
    font-family: "Rethink Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333333;
    text-align: center;
}

.progress-bars {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.step-bar {
    width: 40px;
    height: 8px;
    background-color: #e5e5e5;
    border-radius: 4px;
    flex-shrink: 0;
}

.step-bar.filled {
    background-color: #7B42F6;
}

/* Main Content */
.main-content {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.form-title {
    font-family: 'Roc Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.form-description {
    font-family: "Rethink Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #555555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 550px;
}

/* Input Group */
.input-group {
    width: 100%;
    max-width: 500px;
    text-align: left;
}

.input-label {
    font-family: "Rethink Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333333;
    display: block;
    margin-bottom: 0.75rem;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #f3e8ff;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    font-family: "Rethink Sans", sans-serif;
    width: 100%;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.flag-icon {
    width: 24px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 2px;
}

.country-code-text {
    font-family: "Rethink Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333333;
}

.phone-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: "Rethink Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333333;
    outline: none;
    padding: 0;
}

.phone-input::placeholder {
    color: #9ca3af;
}

.shape-container {
    width: 100vw;
    margin: 3rem 0;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.shape-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: fill;
}

.bottom-section {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.privacy-notice {
    font-family: "Rethink Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #9ca3af;
    text-align: center;
    line-height: 1.5;
}

.privacy-link {
    font-weight: 700;
    color: #333333;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Next Button */
.next-button {
    font-family: "Rethink Sans", sans-serif;
    font-size: 18px;
    font-weight: 400 !important;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(to right, #66CCFF 0%, #4682B4 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 10rem !important;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    /* min-width: 200px; */
    box-shadow: 0 4px 12px rgba(102, 204, 255, 0.3);
}

.next-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 204, 255, 0.4);
}

.next-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(102, 204, 255, 0.3);
}


/* Form Page Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem 1rem;
    }

    .progress-indicator {

        margin-bottom: 2rem;
    }

    .form-title {
        font-size: 32px;
        margin-bottom: 0.75rem;
    }

    .form-description {
        font-size: 18px;
        margin-bottom: 2rem;
    }

    .step-bar {
        width: 30px;
        height: 6px;
    }

    .phone-input-wrapper {
        padding: 0.625rem 0.875rem;
    }

    .next-button {
        padding: 1rem 9.5rem !important;
        font-size: 14px;
        border-radius: 12px;
        /* min-width: 180px; */
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 28px;
    }

    .form-description {
        font-size: 16px;
    }

    .step-bar {
        width: 25px;
    }

    .main-content {
        margin-bottom: 2rem;
    }

    .shape-container {
        margin: 2rem 0;
    }

    .bottom-section {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
}


/* --- TABLET & SMALL LAPTOPS (Max Width: 768px) --- */
@media (max-width: 768px) {
    /* Allow the top section to grow if text is too long, preventing overlap */
    .vh-60 {
        height: auto !important;
        min-height: 55vh;
        padding-bottom: 20px;
    }

    /* Reduce the large top margin from 'mt-5' */
    .responsive-content.mt-5 {
        margin-top: 2rem !important; 
    }

    /* Adjust Font Sizes */
    h1 {
        font-size: 1.5rem; /* ~24px */
        margin-bottom: 1rem;
    }
    
    .description {
        font-size: 0.9rem;
        padding: 0 15px; /* Add side padding so text doesn't touch edges */
    }

    /* Pull the button up slightly */
    .main-btn.mt-5 {
        margin-top: 1.5rem !important;
    }
}

/* --- MOBILE DEVICES (Max Width: 480px) --- */
@media (max-width: 480px) {
    /* Shrink the Icon Circle */
    .icon-circle {
        width: 70px;
        height: 70px;
        line-height: 70px; /* Center image vertically */
    }
    
    .icon-circle img {
        width: 30px; /* Smaller icon image */
    }

    /* Further reduce margins to save vertical space */
    .responsive-content.mt-5 {
        margin-top: 1rem !important;
    }

    /* Make the middle graphic area flexible */
    .vh-20 {
        height: auto !important;
        min-height: 15vh;
    }

    /* Fix Bottom Button Area */
    .bottom-part {
        height: auto !important; /* Stop fixed height cutting off button */
        padding-bottom: 30px;
    }

    .main-btn.mt-5 {
        margin-top: 1rem !important;
    }
    
    .next-button {
        width: 100%; /* Full width button on mobile looks better */
        display: block;
        text-align: center;
    }
}

/* Form Styles */
.form-group {
    margin: 3rem 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-label {
    font-family: "Rethink Sans", sans-serif;
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.phone-input-wrapper {

    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #FAF4FF 0%, #F3F2FF 100%);

    border: 1px solid #531984;
    border-image-source: linear-gradient(90deg, #8963A9 0%, #531984 50%, #271241 100%), linear-gradient(0deg, #8061A7, #8061A7);
    /* border: 1px solid #e5e7eb; */
    border-radius: 10px;
    padding: 1.5rem 1rem;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 0.75rem;
    border-right: 1px solid #d1d5db;
    margin-right: 0.75rem;
}

.flag {
    width: 24px;
    height: 16px;
}

.phone-input {
    font-family: "Rethink Sans", sans-serif;
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 400;
    outline: none;
    color: #1a1a1a;
}


.otp-inputs {
    display: flex;
    justify-content: start;
    gap: 1rem;
    margin: 1rem 0;
}

.otp-input {
    font-family: "Rethink Sans", sans-serif;
    width: 100%;
    height: 70px;
    background: linear-gradient(90deg, #FAF4FF 0%, #F3F2FF 100%);

    border: 1px solid #8b73b8;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    outline: none;
    color: #1a1a1a;
}

.otp-input:focus {
    border-color: #6b5b95;
    background-color: #ffffff;
}

.form-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
    text-align: center;
}

.form-section h2 {
    font-family: 'Roc Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 450;
    margin-bottom: 30px;
    color: #000;
}

.date-selectors {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.date-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
    cursor: pointer;
}

.date-row:last-child {
    border-bottom: none;
}

.date-row:hover {
    background: #fafafa;
}

.date-row.selected {
    background: #F5E9FF;
    border-radius: 5px;
}

.date-row.faded {
    color: #ccc;
}

.date-cell {
    font-family: "Rethink Sans", sans-serif;
    padding: 5px;
    text-align: left;
    font-size: 16px;
}

.date-cell:first-child {
    padding-left: 20px;
}

.date-cell:last-child {
    padding-right: 20px;
}

.gender-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gender-option {
    display: flex;
    background: #EEEEEE;
    align-items: center;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.gender-option:hover {
    border-color: #8963A9;
}

.gender-option.selected {
    background: #f0ebf7;
    border-color: #8963A9;
}

.gender-option input[type="radio"] {
    display: none;
}

.gender-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    opacity: 0.6;
}

.gender-option.selected .gender-icon {
    opacity: 1;
}

.gender-label {
    flex: 1;
    font-size: 16px;
    color: #333;
}

.radio-dot {
    width: 20px;
    height: 20px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s;
}

.gender-option.selected .radio-dot {
    border-color: #8963A9;
}

.radio-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #8963A9;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.gender-option.selected .radio-dot::after {
    opacity: 1;
}


@media (max-width: 768px) {

    .form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-section h2 {
        font-size: 24px;
    }

    .date-selectors {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .form-section h2 {
        font-size: 20px;
    }

    .next-button {
        padding: 1rem 9.5rem !important;
        font-size: 14px;
        border-radius: 12px;
    }
}

/* Personal Info Screen */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 3rem auto;
    text-align: left;
}

.column h2 {
    font-family: 'Roc Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

/* Date Picker Styles */
.date-picker {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.date-select {
    font-family: "Rethink Sans", sans-serif;
    flex: 1;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    color: #6b7280;
    max-height: 150px;
    overflow-y: auto;
}

.date-option {
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
}

.date-option:hover {
    background-color: #e5e7eb;
}

.date-option.selected {
    background-color: #e9d5ff;
    color: #1a1a1a;
}

.progress-bar {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
}

.progress-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    text-align: center;
}

.dob-screen {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.progress-dots {
    display: flex;
    gap: 8px;
}

.progress-dot {
    width: 60px;
    height: 6.5px;
    background: #d0d0d0;
    border-radius: 25px;
    transition: background 0.3s;
}

.progress-dot.active {
    background: #8963A9;
}

.date-scroll {
    max-height: 180px;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.date-scroll::-webkit-scrollbar {
    display: none;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #7b5fb8 0%, #9b7ec8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;

    
    box-shadow: 0 4px 20px rgba(123, 95, 184, 0.3);
}

.icon-circle svg {
    width: 50px;
    height: 50px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

h1 {
    font-size: 32px;
    font-weight: 450;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: center;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    max-width: 500px;
}

.language-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 800px;
    margin-bottom: 60px;
}

.language-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    position: relative;
}

.language-card:hover {
    border-color: #7b5fb8;
    box-shadow: 0 4px 12px rgba(123, 95, 184, 0.15);
}

.language-card.selected {
    border-color: #7b5fb8;
    background: #f8f6fc;
}

.language-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-code {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    min-width: 30px;
}

.language-name {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
}

.checkmark {
    width: 24px;
    height: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.language-card.selected .checkmark {
    opacity: 1;
}

.decorative-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: #50b5e0;
}

.shape1 {
    width: 40%;
    height: 60px;
    bottom: 30%;
    left: -10%;
    transform: skewY(-2deg);
}

.shape2 {
    width: 70%;
    height: 40px;
    top: 40%;
    right: -15%;
    transform: skewY(2deg);
    opacity: 0.9;
}

.shape3 {
    width: 50px;
    height: 200px;
    top: 35%;
    left: 35%;
    background: linear-gradient(180deg, #6b4fa8 0%, #7b5fb8 50%, #9b7ec8 100%);
    opacity: 0.8;
}

.footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
}

.footer a {
    color: #7b5fb8;
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

.continue-btn {
    background: linear-gradient(90deg, #50b5e0 0%, #5bc4ea 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(80, 181, 224, 0.3);
    margin-top: auto;
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(80, 181, 224, 0.4);
}

.continue-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    h1 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 14px;
    }

    .language-options {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 30px;
    }

    .icon-circle svg {
        width: 40px;
        height: 40px;
    }

    .shape1,
    .shape2 {
        height: 40px;
    }

    .shape3 {
        width: 40px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .gender-options {
        flex-direction: row !important;
    }

    .dob-screen .form-section {
        padding: 30px !important;
    }

    .gender-option {
        padding: 16px 16px;
        gap: 10px;
    }

    .progress-container img {
        width: 100%;
        height: 150px;
        display: block;
        object-fit: cover;
    }

    .otp-screen .progress-container img {
        height: 100px;


    }

    .language-screen .progress-container img {
        height: 100px;

    }

    .progress-container {
        margin-bottom: 30px;
    }

    .progress-dot {
        width: 40px;
        height: 5px;
    }

    .privacy-notice {
        margin-bottom: 40px !important;
    }

    h1 {
        font-size: 24px;
    }

    .language-card {
        padding: 20px;
    }

    .continue-btn {
        width: 100%;
        max-width: 400px;
    }
}

.md-mobile-picker-header {
    font-size: 14px;
}

input.md-mobile-picker-input {
    color: initial;
    width: 100%;
    padding: 10px;
    margin: 6px 0 12px 0;
    border: 1px solid #ccc;
    border-radius: 0;
    font-family: arial, verdana, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.md-mobile-picker-button.mbsc-button {
    font-size: 13px;
    padding: 0 15px;
    line-height: 36px;
    float: right;
    margin: 6px 0;
    width: 100%;
}

.mbsc-col-no-padding {
    padding-left: 0;
}

.md-mobile-picker-box-label.mbsc-textfield-wrapper-box,
.md-mobile-picker-box-label .mbsc-textfield-wrapper-box,
.md-mobile-picker-inline {
    margin: 6px 0 12px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

.date-picker-container {
    display: flex;
    gap: 0px;
    height: 200px;
    position: relative;
}

.picker-wrapper {
    flex: 1;
    position: relative;
}

.picker-scroll {
    height: 200px;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.picker-scroll::-webkit-scrollbar {
    display: none;
}

.picker-item {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    scroll-snap-align: center;
    transition: all 0.2s;
    color: #ccc;
    font-size: 18px;
}

.picker-item.selected {
    color: #1a1a1a;
    background: #f0ebf8;
    font-weight: 500;
}

.picker-highlight {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    height: 48px;
    background: #f0ebf8;
    border-radius: 8px;
    pointer-events: none;
    z-index: 0;
}

.picker-scroll {
    position: relative;
    z-index: 1;
}

.gender-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gender-option {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.gender-option:hover {
    border-color: #7c5fb8;
}

.gender-option.selected {
    border-color: #7c5fb8;
    background: #f8f6fb;
}

.gender-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.gender-icon {
    width: 32px;
    height: 32px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gender-icon svg {
    width: 24px;
    height: 24px;
    fill: #666;
}

.gender-option.selected .gender-icon svg {
    fill: #7c5fb8;
}

.gender-label {
    flex: 1;
    font-size: 16px;
    color: #333;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
}

.gender-option.selected .radio-circle {
    border-color: #7c5fb8;
}

.gender-option.selected .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #7c5fb8;
    border-radius: 50%;
}

.footer {
    text-align: center;
}


.privacy-notice {
    font-size: 13px;
    color: #666;

}

.privacy-notice a {
    color: #1a1a1a !important;
    font-weight: bolder;
    text-decoration: underline;
}

/* .next-button {
    background: linear-gradient(90deg, #119ECF 0%, #5BCAED 100%),
        linear-gradient(90deg, #119ECF 0%, #55C9EF 100%);

    color: white;
    border: none;
    padding: 16px 80px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
} */

.next-button:hover {
    background: #3a9fc5;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #7b5fb8 0%, #9b7ec8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 20px rgba(123, 95, 184, 0.3);
}

.icon-circle svg {
    width: 50px;
    height: 50px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

h1 {
    font-size: 32px;
    font-weight: 450;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: center;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    max-width: 500px;
}

.language-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 800px;
    margin-bottom: 60px;
}

.language-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    position: relative;
}

.language-card:hover {
    border-color: #7b5fb8;
    box-shadow: 0 4px 12px rgba(123, 95, 184, 0.15);
}

.language-card.selected {
    border-color: #7b5fb8;
    background: #f8f6fc;
}

.language-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-code {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    min-width: 30px;
}

.language-name {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1ac7;
}

.checkmark {
    width: 24px;
    height: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.language-card.selected .checkmark {
    opacity: 1;
}

.decorative-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: #50b5e0;
}

.shape1 {
    width: 40%;
    height: 60px;
    bottom: 30%;
    left: -10%;
    transform: skewY(-2deg);
}

.shape2 {
    width: 70%;
    height: 40px;
    top: 40%;
    right: -15%;
    transform: skewY(2deg);
    opacity: 0.9;
}

.shape3 {
    width: 50px;
    height: 200px;
    top: 35%;
    left: 35%;
    background: linear-gradient(180deg, #6b4fa8 0%, #7b5fb8 50%, #9b7ec8 100%);
    opacity: 0.8;
}

.footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}


.continue-btn {
    background: linear-gradient(90deg, #50b5e0 0%, #5bc4ea 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(80, 181, 224, 0.3);
    margin-top: auto;
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(80, 181, 224, 0.4);
}

.continue-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    h1 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 14px;
    }

    .language-options {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 0px;
    }

    .icon-circle svg {
        width: 40px;
        height: 40px;
    }

    .shape1,
    .shape2 {
        height: 40px;
    }

    .shape3 {
        width: 40px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-weight: 500 !important;
    }

    .language-options {
        margin-bottom: 0;
    }

    h1 {
        font-size: 24px;
    }

    .language-card {
        padding: 20px;
    }

    .continue-btn {
        width: 100%;
        max-width: 400px;
    }
}


.report-page .progress-bars {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.report-page .progress-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.report-page .progress-label {
    display: flex !important;
    justify-content: space-between !important;
    font-size: 14px !important;
}

.report-page .progress-bar {
    height: 8px !important;
    background: #e0e0e0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

.report-page .progress-fill {
    height: 100% !important;
    border-radius: 10px !important;
    transition: width 0.3s !important;
}

.report-page .cyan {
    background: #06B6D4 !important;
}

.report-page .purple {
    background: #7b5fb6 !important;
}

.report-page .teal {
    background: #14b8a6 !important;
}

.report-page .insight-text {
    text-align: center !important;
    color: #666 !important;
    font-size: 15px !important;
    margin-bottom: 40px !important;
}

/*****************************************
 INFO BOX
*****************************************/
.report-page .info-box {
    background: #f9f9f9 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 15px !important;
    padding: 30px !important;
    margin-bottom: 40px !important;
}

.report-page .info-box h3 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
}

.report-page .info-box p {
    color: #666 !important;
    line-height: 1.7 !important;
    font-size: 15px !important;
}

/*****************************************
 TABS
*****************************************/
.report-page .tabs {
    display: flex !important;
    background: linear-gradient(90deg, #7b5fb6 0%, #8b6fb8 50%, #14b8a6 100%) !important;
    border-radius: 10px 10px 0 0 !important;
    overflow: hidden !important;
}

.report-page .tab {
    flex: 1 !important;
    padding: 18px !important;
    text-align: center !important;
    color: white !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
}

.report-page .tab:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.report-page .tab.active {
    background: rgba(255, 255, 255, 0.2) !important;
}

/*****************************************
 VIDEO SECTION
*****************************************/
.report-page .video-section {
    background: #f0f0f0 !important;
    padding: 60px 40px !important;
    text-align: center !important;
}

.report-page .video-placeholder {
    max-width: 600px !important;
    margin: 0 auto !important;
    background: #000 !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    position: relative !important;
    padding-bottom: 56.25% !important;
}

.report-page .play-btn {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 80px !important;
    height: 80px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 30px !important;
}

.assesment-page {

    min-height: 100vh;
}

.video-section {
    position: relative;
    background: #8b7bb8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/*.video-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(139, 123, 184, 0.7);*/
/*    z-index: 2;*/
/*}*/

.steps-content {
    position: relative;
    z-index: 3;
    padding: 60px 40px;
    width: 100%;
}

.steps-title {
    color: white;
    font-size: 42px;
    font-weight: 600;
    text-align: left;
}

/* Right Section - Content */
.content-section {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.content-box {
    text-align: center;
    max-width: 450px;
}

.question-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.question-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.content-title {
    font-size: 36px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.content-description {
    color: #999;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.start-button {
    background: linear-gradient(90deg, #119ECF 0%, #5BCAED 100%),
        linear-gradient(90deg, #119ECF 0%, #55C9EF 100%);

    color: white;
    border: none;
    padding: 18px 80px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    max-width: 400px;
}

.start-button:hover {
    background: #3a9fc5;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
    }

    .video-section {
        min-height: 60vh;
    }

    .steps-content {
        padding: 40px 20px;
    }

    .steps-title {
        font-size: 32px;
    }

    .content-section {
        padding: 60px 30px;
    }

    .question-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 30px;
    }

    .question-icon svg {
        width: 40px;
        height: 40px;
    }

    .content-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .content-description {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .start-button {
        padding: 16px 60px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .steps-title {
        font-size: 26px;
    }

    .step-arrow {
        min-width: 150px;
        font-size: 14px;
        padding: 12px 20px;
    }

    .content-title {
        font-size: 24px;
    }

    .content-description {
        font-size: 14px;
    }
}

/* Left Section - Video Background */
.video-section {
    position: relative;
    background: #8b7bb8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/*.video-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(139, 123, 184, 0.7);*/
/*    z-index: 2;*/
/*}*/

.steps-content {
    position: relative;
    z-index: 3;
    bottom: 35%;
    padding: 60px 40px;
    width: 100%;
}

.steps-title {
    color: white;
    font-size: 42px;
    font-weight: 400 !important;

}

/* Right Section - Content */
.content-section {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.content-box {
    text-align: center;
    max-width: 450px;
}

.question-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.question-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.content-title {
    font-size: 36px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.content-description {
    color: #999;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.start-button {
    background: linear-gradient(90deg, #119ECF 0%, #5BCAED 100%),
        linear-gradient(90deg, #119ECF 0%, #55C9EF 100%);

    color: white;
    border: none;
    padding: 18px 80px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    max-width: 400px;
}

xg .start-button:hover {

    /* Common */
    .intro-animate {
        opacity: 0;
        will-change: transform, opacity;
    }

    /* ICON: fast zoom-out */
    .icon-zoom-out {
        animation: iconZoomOut 0.45s ease-out forwards;
    }

    @keyframes iconZoomOut {
        0% {
            opacity: 0;
            transform: scale(0.3);
        }

        60% {
            opacity: 1;
            transform: scale(1.1);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }


    .heading-from-left {
        animation: headingLeft 0.55s ease-out 0.1s forwards;
    }

    @keyframes headingLeft {
        0% {
            opacity: 0;
            transform: translateX(-40px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }


    .text-from-right {
        animation: paraRight 0.55s ease-out 0.25s forwards;
    }

    @keyframes paraRight {
        0% {
            opacity: 0;
            transform: translateX(40px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    background: #3a9fc5;
}


@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
    }

    .video-section {
        min-height: 60vh;
    }

    .steps-content {
        padding: 40px 20px;
    }

    .steps-title {
        font-size: 32px;
    }

    .content-section {
        padding: 60px 30px;
    }

    .question-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 30px;
    }

    .question-icon svg {
        width: 40px;
        height: 40px;
    }

    .content-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .content-description {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .start-button {
        padding: 16px 60px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .steps-title {
        font-size: 26px;
    }

    .step-arrow {
        min-width: 150px;
        font-size: 14px;
        padding: 12px 20px;
    }

    .content-title {
        font-size: 24px;
    }

    .content-description {
        font-size: 14px;
    }
}

.assesment-page {

    min-height: 100vh;
}

.video-section {
    position: relative;
    background: #8b7bb8;
    display: flex;
    align-items: center;

    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/*.video-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(139, 123, 184, 0.7);*/
/*    z-index: 2;*/
/*}*/

.steps-content {
    position: relative;
    z-index: 3;
    padding: 60px 40px;
    width: 100%;
}

.steps-title {
    color: white;
    font-size: 42px;
    font-weight: 600;
    text-align: left;
}

/* Right Section - Content */
.content-section {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.content-box {
    text-align: center;
    max-width: 450px;
}

.question-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.question-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.content-title {
    font-size: 36px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.content-description {
    color: #999;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.start-button {
    background: linear-gradient(90deg, #119ECF 0%, #5BCAED 100%),
        linear-gradient(90deg, #119ECF 0%, #55C9EF 100%);

    color: white;
    border: none;
    padding: 18px 80px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    max-width: 400px;
}

.start-button:hover {
    background: #3a9fc5;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
    }

    .video-section {
        min-height: 60vh;
    }

    .steps-content {
        padding: 40px 20px;
    }

    .steps-title {
        font-size: 32px;
    }

    .content-section {
        padding: 60px 30px;
    }

    .question-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 30px;
    }

    .question-icon svg {
        width: 40px;
        height: 40px;
    }

    .content-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .content-description {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .start-button {
        padding: 16px 60px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .steps-title {
        font-size: 26px;
    }

    .step-arrow {
        min-width: 150px;
        font-size: 14px;
        padding: 12px 20px;
    }

    .content-title {
        font-size: 24px;
    }

    .content-description {
        font-size: 14px;
    }
}

.select {
    max-width: 650px;
    margin: 0 auto;
}

.header-badge {
    width: 250px;
    height: 120px;
    margin: 0 auto 30px;
    background-image: url('../img/shape.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}



.header-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 10px;
    letter-spacing: 10px;
    text-align: center;
    margin-top: 80px;
    margin-left: 30px;
}

.question-card {
    background: white;
    border-radius: 16px;
    padding: 30px 90px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 25%);
    position: relative;
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.question-text {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: start;
    line-height: 1.4;
    flex: 1;
    padding-right: 15px;
}

.info-icon {

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.info-icon img {
    width: 30px;
}

.slider-container {
    margin-bottom: 15px;
    margin-top: 30px;
    position: relative;
}

.slider-labels {
    display: flex;
    align-items: start;
    gap: 50px;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.slider-label {
    font-size: 16px;
    color: #999;
    font-weight: 500;
    position: relative;
    flex: 1;
    text-align: center;
}

.slider-label.active {
    color: #9D68C9;
    font-weight: 500;
}

.slider-wrapper {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background: #d8d8d8;
    border-radius: 10px;
}

.slider-track {
    position: absolute;
    height: 100%;
    background: transparent;
    border-radius: 10px;
    transition: width 0.3s ease;
    pointer-events: none;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;

    background: transparent;
    outline: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    margin: 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: white;
    border: 5px solid #9D68C9;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    margin-top: -10.5px;
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: white;
    border: 5px solid #9D68C9;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}


.video-container {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/video-cover-imagee.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 250px;
    overflow: hidden;
}

.illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    z-index: 10;
}

.play-button:hover {
    transform: scale(1.05);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 16px solid #6b5b95;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}

.coin {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #f4d03f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.coin-1 {
    top: 20%;
    left: 10%;
}

.coin-2 {
    top: 10%;
    right: 15%;
}

.coin-3 {
    bottom: 25%;
    left: 15%;
}

.coin-4 {
    bottom: 20%;
    right: 10%;
}

.chart-icon {
    position: absolute;
    left: 25%;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 60px;
    opacity: 0.3;
}

.rupee-icon {
    position: absolute;
    right: 25%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    opacity: 0.3;
    color: white;
}

.footer {
    text-align: center;
    margin-top: 40px;
}

.privacy-notice {
    font-size: 13px;
    color: #666;

    line-height: 1.5;
}

.privacy-notice a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
}


@media (max-width: 768px) {
    .header-badge {
        width: 180px;
        height: 100px;
        margin-bottom: 20px;
    }

    .header-text {
        font-size: 12px;
        margin-top: 65px;
        margin-left: 35px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .question-card {
        padding: 20px;
        margin-bottom: 15px;
    }

    .question-text {
        font-size: 16px;
    }

    .info-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .slider-label {
        font-size: 11px;
    }

    .video-container {
        padding: 30px 20px;
        min-height: 160px;
    }

    .coin {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .next-button {
        /* padding: 1rem 4rem !important; */
        font-size: 14px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 20px;
    }

    .question-card {
        padding: 18px;
    }

    .question-text {
        font-size: 15px;
    }

    .slider-labels {
        margin-bottom: 20px;
    }

    .video-container {
        padding: 25px 15px;
        min-height: 140px;
    }

    .coin {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .chart-icon {
        width: 60px;
        height: 45px;
    }

    .rupee-icon {
        font-size: 45px;
    }
}


/* Roc Grotesk Font Family */
@font-face {
    font-family: 'Roc Grotesk';
    src: url('fonts/roc-grotesk/Fontspring-DEMO-rocgrotesk-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('fonts/roc-grotesk/Fontspring-DEMO-rocgrotesk-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('fonts/roc-grotesk/Fontspring-DEMO-rocgrotesk-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('fonts/roc-grotesk/Fontspring-DEMO-rocgrotesk-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('fonts/roc-grotesk/Fontspring-DEMO-rocgrotesk-extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container-welcome {
    width: 100%;
    text-align: center;

}



.section {
    padding: 70px 0;
}

.container {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.top-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}

.page-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    text-align: start;
    margin-bottom: 50px;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='%239D68C9' height='26' width='26' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><path d='M5.516 7.548a.625.625 0 0 1 .884 0L10 11.148l3.6-3.6a.625.625 0 1 1 .884.884l-4.042 4.042a.625.625 0 0 1-.884 0L5.516 8.432a.625.625 0 0 1 0-.884z'/></svg>");

    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 26px 26px;
    padding-right: 50px;
    /* ensures arrow doesn’t overlap text */
}



label {
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
    font-size: 15px;
}

.form-control,
.form-select {
    height: 80px;
    border-radius: 10px;
    border: 2px solid #c2c2c263;
    box-shadow: none;
    font-size: 15px;
    padding: 12px 15px;
}

.form-control:focus,
.form-select:focus {
    border: 1px solid #8061A7;

    background: linear-gradient(90deg, #FAF4FF 0%, #F3F2FF 100%);

    box-shadow: 0 0 0 0.2rem rgba(108, 61, 198, 0.25);
}

.update-btn {
    background: linear-gradient(90deg, #1290DA, #55D0E9);
    border-radius: 10px;
    padding: 14px 40px;
    font-size: 18px;
    border: none;
    color: #fff;
    display: block;
    width: 260px;
    margin: 40px auto 0 auto;
    font-weight: 500;
}

/* Responsive spacing */
@media(max-width: 768px) {
    .page-title {
        font-size: 32px;
        margin-top: 30px;
    }

    .update-btn {
        width: 100%;
    }

    .top-shape {
        width: 180px;
    }
}