:root {
    --brand: #0097b0;
    --brand-light: #e8f5ee;
    --brand-pale: #f3faf6;
    --brand-dark: #03697a;
    --brand-mid: #1a6b47;
    --green-ok: #16a34a;
    --green-light: #dcfce7;
    --red-err: #dc2626;
    --red-light: #fef2f2;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-sm: 10px;
    --radius-lg: 16px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    background: #fff;
    color: var(--gray-900);
    min-height: 100vh;
    -webkit-tap-highlight-color: transparent;
}

/* ======= LAYOUT ======= */
html,
body {
    height: 100%;
    overflow: hidden;
}

.web-wrapper {
    height: 100vh;
    overflow: hidden;
}

@media(max-width:767px) {

    html,
    body {
        overflow: auto;
    }

    .web-wrapper {
        background: #fff;
        height: auto;
        overflow: auto;
    }

    .web-hero {
        display: none;
    }

    .app-shell {
        max-width: 100%;
        min-height: 100vh;
        box-shadow: none;
        border-radius: 0;
    }
}

@media(min-width:768px) {
    .web-wrapper {
        display: flex;
        height: 100vh;
        overflow: hidden;
    }

   .web-hero {
    width: 30%;
    min-width: 30%;
    max-width: 30%;
    background: linear-gradient(160deg, #062a1a 0%, var(--brand) 50%, var(--brand-mid) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

    .web-hero::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -120px;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 50%;
    }

    .web-hero::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 350px;
        height: 350px;
        background: rgba(22, 163, 74, 0.1);
        border-radius: 50%;
    }

    .web-hero-content {
        position: relative;
        z-index: 1;
        max-width: 480px;
    }

    .web-hero h1 {
        font-size: 44px;
        font-weight: 500;
        line-height: 1.15;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    .web-hero h1 span {
        color: #6ee7b7;
    }

    .web-hero .hero-features {
        margin-top: 40px;
    }

    .web-hero .hero-feature {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
        font-size: 15px;
        font-weight: 500;
        opacity: 0.9;
    }

    .web-hero .hero-feature .hf-icon {
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

  .web-hero .hero-powered {
    margin-top: 52px;
    font-size: 12px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}
    .app-shell-wrapper {
        width: 60%;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        background: #fff;
        height: 100vh;
        overflow-y: auto;
    }

    .app-shell-wrapper>.app-header {
        flex-shrink: 0;
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 100;
        background: #fff;
    }

    .app-shell {
        width: 80%;
        max-width: 540px;
        background: #fff;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
    }
}

@media(min-width:1200px) {
    .web-hero {
        padding: 20px 40px;
    }

    .web-hero h1 {
        font-size: 50px;
    }
}

/* Header */
.app-header {
    background: #fff;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-200);
    z-index: 100;
    flex-shrink: 0;
}

.app-header .back-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-700);
}

.app-header .back-btn:hover {
    background: var(--gray-200);
}

.app-header .back-btn.hidden {
    visibility: hidden;
    display: none;
}

.app-header .title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    flex: 1;
}

.brand-badge {
    font-size: 10px;
    color: var(--brand);
    background: var(--brand-light);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* Step Content */
.step-content {
    flex: 1;
    padding: 28px 24px 36px;
}

.step {
    display: none;
    animation: fadeSlide 0.3s ease forwards;
}

.step.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

/* Typography */
.step-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.step-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.5;
}

/* ======= FORM ELEMENTS (Modern Minimal) ======= */
.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.form-group label .required {
    color: var(--red-err);
    margin-left: 2px;
}

.form-control, .form-select {
	width: 100%;
	padding: 12px 18px;
	border: 1.5px solid var(--gray-200);
	border-radius: 12px;
	font-size: 15px;
	font-family: inherit;
	color: var(--gray-900);
	background: var(--gray-50);
	transition: var(--transition);
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.form-control::placeholder {
	color: #787f97;
	font-weight: 400;
}

.form-control:hover,
.form-select:hover {
    border-color: var(--gray-300);
    background: var(--gray-100);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(12, 64, 41, 0.06);
}

.form-control.is-invalid {
    border-color: var(--red-err);
    background: var(--red-light);
}

.form-control.is-valid {
    border-color: var(--green-ok);
}

.invalid-feedback {
    font-size: 12px;
    color: var(--red-err);
    margin-top: 6px;
    display: none;
    font-weight: 500;
}

.is-invalid~.invalid-feedback,
.form-group.has-error .invalid-feedback {
    display: block;
}

textarea.form-control {
    resize: none;
    min-height: 80px;
    border-radius: 14px;
}

/* Custom Select */
.custom-select-wrap {
    position: relative;
}

.custom-select-wrap .form-control {
    cursor: pointer;
    padding-right: 44px;
    user-select: none;
}

.custom-select-wrap .select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray-400);
    transition: var(--transition);
}

.custom-select-wrap.open .select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--brand);
}

.custom-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    z-index: 200;
    max-height: 260px;
    overflow-y: auto;
    display: none;
    animation: dropdownIn 0.2s ease;
    padding: 6px;
}

@keyframes dropdownIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }

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

.custom-select-wrap.open .custom-dropdown {
    display: block;
}

.custom-dropdown-item {
    padding: 13px 14px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    margin-bottom: 2px;
}

.custom-dropdown-item:last-child {
    margin-bottom: 0;
}

.custom-dropdown-item:hover {
    background: var(--gray-100);
}

.custom-dropdown-item.selected {
    background: var(--brand-light);
    color: var(--brand);
    font-weight: 600;
}

/* Checkbox */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.form-check input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--brand);
    margin-top: 1px;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 6px;
}

.form-check label {
    font-size: 13px;
    color: var(--gray-600);
    cursor: pointer;
    line-height: 1.6;
}

/* Buttons */
.btn-primary-custom {
	width: 100%;
	padding: 16px;
	background: var(--brand);
	color: #fff;
	border: none;
	border-radius: var(--radius);
	font-size: 15px;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(12, 64, 41, 0.25);
}

.btn-primary-custom:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-outline-custom {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--brand);
    border: 1.5px solid var(--brand);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--brand-light);
}

/* OTP */
.otp-container {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin: 70px 0;
}

.otp-box {
    width: 50px;
    height: 58px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
    color: var(--gray-900);
    background: var(--gray-50);
}

.otp-box:focus {
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(12, 64, 41, 0.06);
}

/* ======= RADIO SELECTION CARDS ======= */
.radio-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.radio-card {
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--gray-50);
}

.radio-card:hover {
    border-color: var(--gray-300);
    background: var(--gray-100);
}

.radio-card.selected {
    border-color: var(--brand);
    background: var(--brand-light);
}

.radio-card .rc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--gray-500);
    flex-shrink: 0;
    transition: var(--transition);
}

.radio-card.selected .rc-icon {
    background: var(--brand);
    color: #fff;
}

.radio-card .rc-text {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}

.radio-card .rc-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.radio-card.selected .rc-radio {
    border-color: var(--brand);
    background: var(--brand);
}

.radio-card.selected .rc-radio::after {
    content: '';
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
}

/* Selection Cards */
.selection-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sel-card {
    padding: 16px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--gray-50);
}

.sel-card:hover {
    border-color: var(--gray-300);
    background: var(--gray-100);
}

.sel-card.selected {
	border-color: #c9c8e7;
	background: #fafafe;
}
.sel-card .icon-wrap {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    flex-shrink: 0;
}

.sel-card.selected .icon-wrap {
    background: var(--brand);
    color: #fff;
}

.sel-card .card-text h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.sel-card .card-text p {
    font-size: 12px;
    color: var(--gray-500);
    margin: 0;
}

.sel-card .sel-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    transition: var(--transition);
}

.sel-card.selected .sel-radio {
    border-color: var(--brand);
    background: var(--brand);
}

.sel-card.selected .sel-radio::after {
    content: '';
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
}

/* Vehicle chips */
.vehicle-sub {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.vehicle-chip {
    padding: 10px 22px;
    border: 1.5px solid var(--gray-200);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-50);
    color: var(--gray-600);
}

.vehicle-chip:hover {
    border-color: var(--gray-300);
    background: var(--gray-100);
}

.vehicle-chip.selected {
	border-color: #699280;
	background: #f7fffc;
	color: #0c4029;
}

/* ======= KYC CARD (like reference) ======= */
.kyc-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
}

.kyc-card:hover {
    border-color: var(--brand-mid);
    background: var(--brand-pale);
    box-shadow: var(--shadow-sm);
}

.kyc-card .kyc-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--brand);
}

.kyc-card .kyc-text {
    flex: 1;
}

.kyc-card .kyc-text h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 2px;
}

.kyc-card .kyc-text p {
    font-size: 12px;
    color: var(--gray-500);
    margin: 0;
}

.kyc-card .kyc-arrow {
    color: var(--gray-400);
    flex-shrink: 0;
    transition: var(--transition);
}

.kyc-card:hover .kyc-arrow {
    color: var(--brand);
    transform: translateX(3px);
}

/* File Upload */
.file-upload-area {
    border: 1.5px dashed var(--gray-300);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background: var(--gray-50);
    margin-bottom: 16px;
}

.file-upload-area:hover {
    border-color: var(--brand-mid);
    background: var(--brand-pale);
}

.file-upload-area input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-area .upload-icon {
    color: var(--brand-mid);
    margin-bottom: 8px;
}

.file-upload-area .upload-text {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 600;
}

.file-upload-area .upload-hint {
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 4px;
}

.file-upload-area.uploaded {
	border-color: #d8e0db;
	background: #fbfbfe;
	border-style: solid;
}

.file-upload-area.uploaded .upload-icon {
    color: var(--green-ok);
}

/* Loader */
.loader-screen {
    text-align: center;
    padding: 60px 20px;
}

.eligibility-icon {
    width: 80px;
    height: 80px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto 24px;
    position: relative;
    box-shadow: 0 8px 32px rgba(12, 64, 41, 0.25);
}

.eligibility-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--brand);
    animation: spin 1.2s linear infinite;
}

.eligibility-icon::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: rgba(12, 64, 41, 0.3);
    animation: spin 2s linear infinite reverse;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.eligibility-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.eligibility-sub {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 36px;
}

.eligibility-steps {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.eligibility-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-400);
    transition: all 0.4s ease;
    border-radius: 12px;
    background: transparent;
}

.eligibility-step.done {
    color: var(--green-ok);
    background: rgba(34, 197, 94, 0.06);
}

.eligibility-step.active {
    color: var(--gray-700);
    background: var(--gray-50);
}

.eligibility-step .step-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.eligibility-step.done .step-icon {
    background: var(--green-light);
    color: var(--green-ok);
    border-color: rgba(34, 197, 94, 0.2);
}

.eligibility-step.active .step-icon {
    background: var(--gray-100);
    color: var(--brand);
    border-color: var(--brand);
    animation: spin 1s linear infinite;
}

.eligibility-step.pending .step-icon {
    background: var(--gray-100);
    color: var(--gray-300);
    border-color: var(--gray-200);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Penny Drop */
.penny-drop-container {
    text-align: center;
    padding: 30px 0;
}

.penny-drop-bank-img {
	width: 120px;
	height: auto;
	margin: 0 auto 28px;
	display: block;
}

.penny-drop-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.penny-drop-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 32px;
}

.penny-drop-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.penny-drop-spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid #e5e7eb;
    border-top-color: #22c55e;
    animation: spin 1s linear infinite;
}

.penny-drop-status {
    font-size: 14px;
    color: #555;
}

/* DigiLocker Loader */
.digilocker-loader {
    text-align: center;
    padding: 40px 0;
}

.digilocker-spinner {
    width: 56px;
    height: 56px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--brand);
    border-right-color: var(--brand);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto 24px;
}

.digilocker-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.digilocker-sub {
    font-size: 13px;
    color: var(--gray-500);
}

/* Selfie */
.selfie-verified-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--brand-light), var(--brand-pale));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: var(--brand);
    position: relative;
}

.selfie-verified-avatar .check-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 28px;
    height: 28px;
    background: var(--green-ok);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    border: 3px solid #fff;
}

/* Offer Card */
.offer-card {
    background: linear-gradient(135deg, var(--brand), var(--brand-mid));
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    color: #fff;
    margin-bottom: 24px;
}

.offer-card .offer-label {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-card .offer-amount {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
}

.offer-details-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
}

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

.offer-details-row .label {
    opacity: 0.8;
}

.offer-details-row .value {
    font-weight: 600;
}

/* Info Table */
.info-table {
    background: var(--gray-50);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
}

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

.info-row .label {
    color: var(--gray-500);
}

.info-row .value {
    font-weight: 600;
    color: var(--gray-900);
    text-align: right;
    max-width: 60%;
}

/* Success */
.success-icon {
    width: 80px;
    height: 80px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--green-ok);
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.15);
    }

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

/* Range Slider */
.range-slider-wrap {
    margin: 24px 0;
}

.range-slider-wrap input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--gray-200);
    border-radius: 3px;
    outline: none;
}

.range-slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    background: var(--brand);
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 2px 10px rgba(12, 64, 41, 0.3);
}

.range-slider-wrap input[type="range"]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: var(--brand);
    border-radius: 50%;
    cursor: grab;
    border: none;
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 6px;
}

.range-display {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: var(--brand);
    margin-bottom: 4px;
}

/* EMI Grid */
.emi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.emi-option {
	padding: 16px 8px;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-sm);
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
}

.emi-option:hover {
    border-color: var(--brand-mid);
}

.emi-option.selected {
	border-color: #0b3c27;
	background: #fcfbff;
}

.emi-option .tenure {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
}

.emi-option .emi-amt {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand);
    margin-top: 4px;
}

/* Badge */
.verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.verify-badge.success {
    background: var(--green-light);
    color: var(--green-ok);
}

/* Homepage */
.homepage {
    text-align: center;
    padding: 10px 20px 40px 20px;
}

.logo-text {
    font-size: 28px;
    font-weight: 500;
    color: var(--brand);
    margin-bottom: 4px;
}

.logo-sub {
    font-size: 11px;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.hero-illust {
    width: 200px;
    margin: 0 auto 32px;
    margin-bottom: 0px;
}

.hero-illust svg {
    width: 100%;
    height: auto;
}

.hero-title {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.hero-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 36px;
    line-height: 1.6;
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    text-align: center;
}

.feature-item .fi-icon {
    width: 52px;
    height: 52px;
    background: #f4f4f4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: var(--brand);
}

.feature-item .fi-text {
    font-size: 11px;
    color: var(--gray-600);
    font-weight: 600;
}

/* Agreement */
.agreement-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* PAN Toggle */
.pan-toggle {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    border-radius: 14px;
    padding: 4px;
    margin-bottom: 20px;
}

.pan-toggle button {
    flex: 1;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    border-radius: 11px;
}

.pan-toggle button.active {
	background: #fff;
	color: #2a2a2a;
	/* box-shadow: 0 2px 8px rgba(12, 64, 41, 0.2); */
}

/* Utility */
.text-center {
    text-align: center;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.d-none {
    display: none !important;
}

.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.step-content::-webkit-scrollbar {
    width: 0;
}

/* Salary Date Picker */
.salary-date-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.salary-date-modal {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px 20px;
    width: 90%;
    max-width: 380px;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

.salary-date-modal h5 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.salary-date-modal p {
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 20px;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}

.date-cell {
    width: 100%;
    aspect-ratio: 1;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    color: var(--gray-800);
}

.date-cell:hover {
    border-color: var(--brand-mid);
    background: var(--brand-pale);
}

.date-cell.selected {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.date-modal-actions {
    display: flex;
    gap: 12px;
}

.date-modal-actions button {
    flex: 1;
    padding: 14px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.date-modal-actions .btn-cancel {
    border: 1.5px solid var(--gray-300);
    background: #fff;
    color: var(--gray-700);
}

.date-modal-actions .btn-confirm {
    border: none;
    background: var(--brand);
    color: #fff;
}

.date-modal-actions .btn-confirm:hover {
    background: var(--brand-dark);
}

/* Info text */
.info-text {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.brand-logo img {
    width: 20%;
}

.agrement_check {
    padding-left: 0px;
    margin-top: 40px;
}

/* Calendar Container */
.flatpickr-calendar {
    border-radius: 14px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
    border: none !important;
    font-family: 'Inter', sans-serif;
}

/* Month Header */
.flatpickr-months {
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0;
}

.flatpickr-current-month {
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
}

/* Weekday Names */
.flatpickr-weekdays {
    background: #ffffff;
}

.flatpickr-weekday {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

/* Default Days */
.flatpickr-day {
    border-radius: 8px !important;
    transition: 0.2s ease;
    font-weight: 500;
}

/* Hover Effect */
.flatpickr-day:hover {
    background: rgba(11, 61, 39, 0.08);
    color: #0b3d27;
}

/* SELECTED DATE */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #0b3d27 !important;
    border-color: #0b3d27 !important;
    color: #ffffff !important;
}

/* Today Highlight */
.flatpickr-day.today {
    border: 1px solid #0b3d27 !important;
    color: #0b3d27;
}

/* Disabled Dates */
.flatpickr-day.disabled {
    color: #d1d5db !important;
}

/* Arrow Navigation */
.flatpickr-prev-month,
.flatpickr-next-month {
    fill: #0b3d27 !important;
}



.inputwithIcon{
    position: relative;
}

.inputicon {
	position: absolute;
	right: 16px;
	top: 48%;
	color: #6b7280;
}
.inputwithIcon svg {
	width: 18px !important;
	height: 18px !important;
	color: #989cb6;
}

.idenVerified {
	font-size: 18px;
	font-weight: 500;
	margin: 15px 0px 10px 0px;
}

.brandlogo img {
	width: 160px;
}

.logomobile {
	margin-left: 20px;
    display: none;
}
.logomobile img {
	width: 130px;
}

@media (max-width: 480px) {
    .logomobile {
        display: block;
    }
    .brandlogo {
        display: none;
    }
}

.file-upload-area label{
    display: none;
}

.file-upload-area.uploaded label {
    display: block;
    text-align: left;
    font-weight: 500;
}

.kyc-icon img {
	width: 80px;
}

@media (max-width: 767px) {
       .logomobile {
        display: block;
        padding-top: 24px;
    } 
}

