/* Login */
/* OTP Login Form Styles */
.otp-contact-form {
    position: relative;
}

.contact-method-selector {
    margin-bottom: 30px;
}

.contact-method-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-method-options {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.contact-method-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.contact-method-option input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.contact-method-option label {
    cursor: pointer;
    margin: 0;
    font-weight: 500;
    color: #666;
}

.contact-method-hint {
    font-size: 12px;
    color: #999;
    font-style: italic;
    margin-top: 5px;
}

.toggle-link {
    font-size: 12px;
    color: #007bff;
    text-decoration: none;
    margin-top: 8px;
    display: block;
}

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

.form-control-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.form-one__control {
    position: relative;
}

.form-one__control input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-one__control input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-one__control input.is-invalid {
    border-color: #dc3545;
}

.form-one__control input.is-valid {
    border-color: #28a745;
}

.input-feedback {
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.input-feedback.error {
    color: #dc3545;
    display: block;
}

.input-feedback.success {
    color: #28a745;
    display: block;
}

.validation-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.validation-icon.error {
    color: #dc3545;
}

.validation-icon.success {
    color: #28a745;
}

.hidden {
    display: none !important;
}

.otp-section {
    margin-top: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #007bff;
}

.otp-section .form-one__control input {
    background-color: #fff;
}

.otp-timer {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timer-badge {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    min-width: 30px;
    text-align: center;
}

.resend-otp-link {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font-size: 13px;
}

.resend-otp-link:hover:not(:disabled) {
    text-decoration: underline;
}

.resend-otp-link:disabled {
    color: #ccc;
    cursor: not-allowed;
}

.form-messages {
    margin-top: 15px;
}

.alert {
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 15px;
    display: none;
}

.alert.show {
    display: block;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
}

.findox-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.otp-input-group {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.otp-input {
    width: 45px !important;
    height: 45px !important;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #e0e0e0 !important;
    border-radius: 6px !important;
    padding: 0 !important;
}

.chat-send-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* FAQ Section Styles */
.faq-one .sec-title__title {
    margin-bottom: 18px;
}

.faq-one .sec-title__text {
    margin-bottom: 28px;
    color: #6b7280;
}

.faq-one #faq-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 10px 30px rgba(15, 34, 94, 0.06);
}

.faq-one .accordion-button {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    color: #0f1724;
    padding: 18px 20px;
    font-weight: 600;
    border-radius: 12px;
}

.faq-one .accordion-button:not(.collapsed) {
    color: #265df5;
    box-shadow: none;
}

.faq-one .accordion-body {
    background: #ffffff;
    color: #475569;
    padding: 18px 20px;
    font-size: 15px;
    line-height: 1.7;
}

.faq-one #faq-loader .spinner-grow {
    width: 2rem;
    height: 2rem;
}

.faq-one .text-muted {
    color: #6b7280 !important;
}

@media (max-width: 767px) {
    .faq-one .accordion-button {
        font-size: 15px;
        padding: 14px 16px;
    }
}

.otp-input:focus {
    border-color: #007bff !important;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.findox-btn {
    flex: 1;
}

.btn-secondary {
    background-color: #6c757d !important;
    color: white !important;
}

.btn-secondary:hover:not(:disabled) {
    background-color: #5a6268 !important;
}

/* Register */
/* OTP Login Form Styles */
.otp-contact-form {
    position: relative;
}

.contact-method-selector {
    margin-bottom: 30px;
}

.contact-method-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-method-options {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.contact-method-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.contact-method-option input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.contact-method-option label {
    cursor: pointer;
    margin: 0;
    font-weight: 500;
    color: #666;
}

.contact-method-hint {
    font-size: 12px;
    color: #999;
    font-style: italic;
    margin-top: 5px;
}

.toggle-link {
    font-size: 12px;
    color: #007bff;
    text-decoration: none;
    margin-top: 8px;
    display: block;
}

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

.form-control-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.form-one__control {
    position: relative;
}

.form-one__control input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-one__control input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-one__control input.is-invalid {
    border-color: #dc3545;
}

.form-one__control input.is-valid {
    border-color: #28a745;
}

.input-feedback {
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.input-feedback.error {
    color: #dc3545;
    display: block;
}

.input-feedback.success {
    color: #28a745;
    display: block;
}

.validation-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.validation-icon.error {
    color: #dc3545;
}

.validation-icon.success {
    color: #28a745;
}

.hidden {
    display: none !important;
}

.otp-section {
    margin-top: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #007bff;
}

.otp-section .form-one__control input {
    background-color: #fff;
}

.otp-timer {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timer-badge {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    min-width: 30px;
    text-align: center;
}

.resend-otp-link {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font-size: 13px;
}

.resend-otp-link:hover:not(:disabled) {
    text-decoration: underline;
}

.resend-otp-link:disabled {
    color: #ccc;
    cursor: not-allowed;
}

.form-messages {
    margin-top: 15px;
}

.alert {
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 15px;
    display: none;
}

.alert.show {
    display: block;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
}

.findox-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.otp-input-group {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.otp-input {
    width: 45px !important;
    height: 45px !important;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #e0e0e0 !important;
    border-radius: 6px !important;
    padding: 0 !important;
}

.otp-input:focus {
    border-color: #007bff !important;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.findox-btn {
    flex: 1;
}

.btn-secondary {
    background-color: #6c757d !important;
    color: white !important;
}

.btn-secondary:hover:not(:disabled) {
    background-color: #5a6268 !important;
}

.completion-screen {
    display: none;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 30px 24px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(37, 105, 247, 0.12);
}

.completion-screen.show {
    display: block;
}

.completion-card__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.completion-card__shield {
    width: 100px;
    height: 100px;
    border-radius: 30px;
    background: linear-gradient(180deg, #e9f2ff 0%, #d7e8ff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(34, 115, 255, 0.12);
}

.completion-card__shield-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #1f64ff;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
}

.completion-card__header {
    text-align: center;
    margin-bottom: 24px;
}

.completion-card__title {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 14px;
    color: #151515;
}

.completion-card__description {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    max-width: 420px;
    margin: 0 auto;
}

.completion-card__features {
    margin: 32px 0 24px;
    display: grid;
    gap: 18px;
}

.completion-card__feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.completion-card__feature-icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    background-color: #eef4ff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #1f64ff;
    font-size: 18px;
    font-weight: 700;
}

.completion-card__feature-text {
    display: grid;
    gap: 6px;
}

.completion-card__feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.completion-card__feature-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.completion-card__button {
    width: 100%;
    padding: 16px 22px;
    border-radius: 14px;
    border: none;
    background-color: #1f64ff;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.completion-card__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(31, 100, 255, 0.18);
}

.completion-card__skip {
    text-align: center;
    margin-top: 10px;
}

.completion-card__skip-btn {
    background: none;
    border: none;
    color: #888;
    /* low emphasis */
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    transition: 0.2s ease;
}

.completion-card__skip-btn:hover {
    color: #555;
    /* slight hover visibility */
}

@media (max-width: 768px) {
    .completion-screen {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .completion-card__title {
        font-size: 24px;
    }

    .completion-card__description {
        font-size: 14px;
    }

    .completion-card__feature {
        gap: 12px;
    }

    .completion-card__button {
        padding: 14px 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .contact-one__content,
    .contact-one__form {
        padding: 0 12px;
    }

    .completion-card__title {
        font-size: 22px;
    }
}

/* Profile Screen Styles */
.profile-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 30px;
}

.profile-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.profile-image-container {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    background-color: #f8f9fa;
}

.profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #eef4ff;
    color: #1f64ff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-upload-label:hover {
    background: #1f64ff;
    color: #fff;
}

.image-upload-label i {
    font-size: 18px;
}

#profileImageInput {
    display: none;
}

.profile-form .form-group {
    margin-bottom: 25px;
}

.profile-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 8px;
}

.profile-form input[readonly] {
    background-color: #f3f4f6;
    cursor: not-allowed;
    border-color: #e5e7eb;
}

.save-profile-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 20px;
}

.profile-header-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.profile-header-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* Email Verification Styles */
.email-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.email-verify-btn {
    position: absolute;
    right: 10px;
    padding: 6px 12px;
    background: #1f64ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.email-verify-btn:hover:not(:disabled) {
    background: #004dff;
}

.email-verify-btn:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.verified-badge {
    position: absolute;
    right: 15px;
    color: #10b981;
    font-size: 18px;
    display: none;
}

.verified-badge.show {
    display: block;
}

.email-otp-section {
    margin-top: 15px;
    padding: 15px;
    background: #f8faff;
    border: 1px solid #eef2ff;
    border-radius: 12px;
    display: none;
}

.email-otp-section.show {
    display: block;
}

.otp-timer-text {
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
}

.resend-link {
    color: #1f64ff;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.resend-link.disabled {
    color: #9ca3af;
    cursor: not-allowed;
    text-decoration: none;
}

:root {
    --dashboard-bg: #f5f6f8;
    --active-pill-bg: #fef4e2;
    --active-text: #1c325d;
    --text-muted: #888;
}

.dashboard-section {
    background-color: var(--dashboard-bg);
    padding: 100px 0 80px;
    /* Increased top padding to clear header */
}

/* Sidebar Card Styles */
.dashboard-sidebar-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    overflow: hidden;
    height: 100%;
}

.sidebar-profile {
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #f8f9fa;
}

.sidebar-profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #eee;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 4px solid #f8f9fa;
}

.sidebar-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-profile-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.sidebar-profile-email {
    font-size: 0.85rem;
    color: var(--text-muted);
    word-break: break-all;
}

.sidebar-menu-wrapper {
    padding: 20px 15px 40px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    margin-bottom: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.sidebar-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.sidebar-link:hover {
    background-color: #f9f9f9;
}

.sidebar-item.active .sidebar-link {
    background-color: var(--active-pill-bg);
    color: var(--active-text);
}

/* Content Area Styles */
.dashboard-content-area {
    min-height: 500px;
}

@media (max-width: 991px) {
    .dashboard-sidebar-card {
        margin-bottom: 30px;
        height: auto;
    }
}

.plan-card {
    border: none;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.plan-header {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--findox-base, #1c325d);
}

.plan-actual-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.plan-body {
    padding: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.feature-item i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.feature-available {
    color: #28a745;
}

.feature-unavailable {
    color: #dc3545;
    opacity: 0.5;
}

/* Hero Banner Custom UI */
#hero-banner-loader {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-one__tagline-custom {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 35px;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.hero-one__tagline-logo {
    height: 35px;
    width: auto;
}

.hero-one__tagline-text-wrap {
    display: flex;
    flex-direction: column;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.1;
    color: #444;
}

.hero-one__tagline-label.highlight {
    color: #265df5;
}

.hero-one__tagline-arrow {
    background: #265df5;
    color: #fff;
    width: 35px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%);
    margin-left: 10px;
    margin-right: -15px;
}

.hero-one__title-custom {
    font-size: 68px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-one__text-custom {
    font-size: 19px;
    color: #777;
    margin-bottom: 45px;
    max-width: 550px;
}

.btn-custom-primary {
    display: inline-flex;
    align-items: center;
    background: #265df5;
    color: #fff;
    padding: 12px 12px 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    gap: 15px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-custom-primary:hover {
    background: #1a4bd3;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(38, 93, 245, 0.2);
}

.btn-custom-icon {
    background: #fff;
    color: #265df5;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.hero-one .owl-dots {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.hero-one .owl-dot span {
    width: 10px;
    height: 10px;
    background: #d1d1d1;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-one .owl-dot.active span {
    background: #8fa69c;
    width: 28px;
    border-radius: 10px;
}

@media (max-width: 1399px) {
    .hero-one__title-custom {
        font-size: 56px;
    }
}

@media (max-width: 767px) {
    .hero-one__title-custom {
        font-size: 42px;
    }

    .hero-one__text-custom {
        font-size: 16px;
    }

    .hero-one__tagline-custom {
        transform: scale(0.9);
        transform-origin: left;
    }
}

/* Check Eligibility */
.eligibility-page {
    --eligibility-blue: #2f5ff5;
    --eligibility-blue-dark: #174be6;
    --eligibility-blue-soft: #dbe4ff;
    --eligibility-text: #090909;
    --eligibility-muted: #5f6368;
    --eligibility-border: #e8e8ee;
    --eligibility-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    background: #ffffff;
    min-height: 100vh;
    padding: 40px 16px;
    font-family: "DM Sans", sans-serif;
}

.eligibility-shell {
    width: min(100%, 420px);
    margin: 0 auto;
}

.eligibility-title {
    color: var(--eligibility-text);
    font-family: "Sora", sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 12px;
}

.eligibility-subtitle {
    color: #4f4f55;
    font-size: 14px;
    line-height: 1.35;
    max-width: 330px;
    margin: 0 0 28px;
}

.eligibility-card {
    background: #f9f8fc;
    border: 1px solid var(--eligibility-border);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    padding: 18px 16px 16px;
    margin-bottom: 16px;
}

.eligibility-label {
    display: block;
    color: #111;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 10px;
}

.eligibility-field {
    margin-bottom: 22px;
}

.eligibility-field:last-child {
    margin-bottom: 0;
}

.eligibility-page .form-one__control {
    margin: 0;
}

.eligibility-page .form-one__control .bootstrap-select {
    width: 100% !important;
}

.eligibility-page .bootstrap-select>.dropdown-toggle,
.eligibility-input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--eligibility-border);
    border-radius: 10px;
    background: #fff;
    color: #555;
    box-shadow: none;
    padding: 12px 38px 12px 12px;
    font-size: 13px;
    font-weight: 600;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.eligibility-page .bootstrap-select>.dropdown-toggle:focus,
.eligibility-page .bootstrap-select>.dropdown-toggle:hover,
.eligibility-input:focus {
    border-color: var(--eligibility-blue);
    box-shadow: 0 0 0 1px var(--eligibility-blue);
}

.eligibility-page .bootstrap-select .dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

.eligibility-page .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    color: #161616;
    font-weight: 700;
}

.eligibility-page .bootstrap-select .dropdown-toggle::after {
    border: 0;
    width: 9px;
    height: 9px;
    border-right: 1.8px solid #3e3e44;
    border-bottom: 1.8px solid #3e3e44;
    transform: rotate(45deg);
    margin-top: -5px;
}

.eligibility-input {
    padding-right: 12px;
}

.eligibility-input::placeholder {
    color: #6f7178;
    opacity: 1;
}

.eligibility-money-input {
    color: #555;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0;
}

.loan-range__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.loan-range__amount {
    color: var(--eligibility-blue);
    font-size: 19px;
    font-weight: 900;
    white-space: nowrap;
}

.eligibility-range {
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--eligibility-blue) 0%, var(--eligibility-blue) 32%, #d8def8 32%, #d8def8 100%);
    outline: none;
}

.eligibility-range::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--eligibility-blue);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(47, 95, 245, 0.24);
}

.eligibility-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--eligibility-blue);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(47, 95, 245, 0.24);
}

.loan-range__limits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #4d4d54;
    font-size: 12px;
    margin-top: 7px;
}

.eligibility-note {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 41px;
    border-radius: 9px;
    background: #cfdaff;
    color: #075cf2;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
    padding: 9px 14px;
    margin: 4px 0 20px;
}

.eligibility-note i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
    flex: 0 0 auto;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.eligibility-actions {
    position: sticky;
    bottom: 0;
    z-index: 5;
    background: #ffffff;
    padding: 14px 0 0;
}

.eligibility-btn {
    width: 100%;
    min-height: 49px;
    border: 0;
    border-radius: 8px;
    background: var(--eligibility-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.eligibility-btn:hover {
    background: var(--eligibility-blue-dark);
    transform: translateY(-1px);
}

.eligibility-result {
    display: none;
    text-align: center;
    padding-top: 120px;
}

.eligibility-badge {
    width: 120px;
    height: 136px;
    margin: 0 auto 18px;
    position: relative;
}

.eligibility-badge__seal {
    position: absolute;
    inset: 0 0 18px;
    background: var(--eligibility-blue);
    clip-path: polygon(50% 0%, 58% 7%, 69% 4%, 75% 14%, 86% 14%, 89% 26%, 98% 32%, 94% 43%, 100% 52%, 93% 61%, 95% 73%, 84% 78%, 80% 89%, 68% 89%, 59% 98%, 49% 93%, 39% 100%, 30% 92%, 18% 93%, 13% 82%, 2% 76%, 6% 64%, 0% 54%, 7% 46%, 4% 34%, 14% 28%, 17% 17%, 29% 15%, 36% 5%);
}

.eligibility-badge__seal::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 45px;
    width: 54px;
    height: 28px;
    border-left: 10px solid #fff;
    border-bottom: 10px solid #fff;
    transform: rotate(-45deg);
}

.eligibility-badge__shadow {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 4px;
    height: 5px;
    border-radius: 50%;
    background: rgba(47, 95, 245, 0.18);
    filter: blur(3px);
}

.eligibility-result__title {
    color: var(--eligibility-text);
    font-family: "Sora", sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.25;
    margin: 0 0 12px;
}

.eligibility-result__copy {
    color: #5e6068;
    font-size: 13px;
    line-height: 1.35;
    margin: 0 auto 16px;
    max-width: 300px;
}

.eligibility-approved-amount {
    color: var(--eligibility-blue);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 22px;
}

.eligibility-result .eligibility-note {
    width: min(100%, 242px);
    margin: 0 auto 20px;
    justify-content: center;
}

.lender-heading {
    color: var(--eligibility-text);
    text-align: left;
    font-size: 15px;
    font-weight: 900;
    margin: 0 0 12px;
}

.lender-list {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}

.lender-card {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 66px;
    background: #f9f8fc;
    border: 1px solid #ececf1;
    border-radius: 14px;
    box-shadow: var(--eligibility-shadow);
    padding: 10px 14px;
    text-align: left;
}

.lender-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #d6e0ff;
    border-radius: 50%;
    background: #fff;
    flex: 0 0 auto;
    overflow: hidden;
}

.lender-logo--hdfc {
    position: relative;
}

.lender-logo--hdfc::before {
    content: "";
    width: 26px;
    height: 26px;
    background:
        linear-gradient(#fff 0 0) center / 10px 10px no-repeat,
        linear-gradient(#d9272e 0 0) center / 22px 22px no-repeat;
    border: 4px solid #1d75bd;
}

.lender-logo--icici {
    color: #ba2b2f;
    font-family: Georgia, serif;
    font-size: 29px;
    font-weight: 900;
    font-style: italic;
}

.lender-info {
    min-width: 0;
    flex: 1;
}

.lender-name {
    color: #1b1b1f;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 4px;
}

.lender-meta {
    color: #5e6068;
    font-size: 11px;
    line-height: 1.3;
}

.lender-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 51px;
    min-height: 18px;
    border-radius: 999px;
    background: #d8e2ff;
    color: #075cf2;
    font-size: 8px;
    font-weight: 800;
    flex: 0 0 auto;
}

@media (min-width: 768px) {
    .eligibility-page {
        padding: 60px 20px;
    }

    .eligibility-shell {
        width: min(100%, 520px);
    }

    .eligibility-title,
    .eligibility-result__title {
        font-size: 26px;
    }

    .eligibility-card {
        padding: 22px;
    }
}

@media (max-width: 380px) {
    .eligibility-page {
        padding-left: 14px;
        padding-right: 14px;
    }

    .eligibility-approved-amount {
        font-size: 32px;
    }

    .loan-range__amount {
        font-size: 17px;
    }
}

/* Loan Applivation */
.kyc-page {
    --kyc-blue: #2f5ff5;
    --kyc-blue-dark: #1d4ce8;
    --kyc-blue-soft: #dbe5ff;
    --kyc-bg: #ffffff;
    --kyc-text: #080808;
    --kyc-muted: #5f636d;
    --kyc-border: #e7eaf1;
    --kyc-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    background: var(--kyc-bg);
    min-height: 100vh;
    padding: 0 0 24px;
    font-family: "DM Sans", sans-serif;
}

.kyc-shell {
    width: min(100%, 430px);
    min-height: 100vh;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.kyc-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #f7f8fb;
    border-bottom: 1px solid #eef0f5;
    backdrop-filter: blur(10px);
    padding: 10px 14px 8px;
}

.kyc-header__bar {
    display: flow;
    align-items: center;
    gap: 8px;
}

.kyc-back,
.kyc-skip,
.kyc-tab {
    border: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.kyc-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #dbe6ff;
    color: var(--kyc-blue);
    font-size: 16px;
}

.kyc-back:hover,
.kyc-skip:hover,
.kyc-tab:hover {
    transform: translateY(-1px);
}

.kyc-title {
    color: var(--kyc-text);
    font-family: "Sora", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

.kyc-skip {
    min-width: 48px;
    min-height: 26px;
    border-radius: 999px;
    background: #dfe8ff;
    color: var(--kyc-blue);
    font-size: 11px;
    font-weight: 800;
}

.kyc-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #111;
    font-size: 10px;
    font-weight: 700;
    margin: 9px 0 5px;
}

.kyc-step__count {
    color: #4b5565;
    white-space: nowrap;
}

.kyc-progress {
    height: 5px;
    border-radius: 999px;
    background: #dbe3f5;
    overflow: hidden;
}

.kyc-progress__bar {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: var(--kyc-blue);
    transition: width 0.25s ease;
}

.kyc-tabs {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-top: 8px;
}

.kyc-tab {
    height: 6px;
    border-radius: 999px;
    background: #dbe3f5;
    padding: 0;
    font-size: 0;
}

.kyc-tab.is-active,
.kyc-tab.is-complete {
    background: var(--kyc-blue);
}

.kyc-content {
    padding: 22px 14px 0;
}

.kyc-panel {
    display: none;
}

.kyc-panel.is-active {
    display: block;
    animation: kycFade 0.24s ease;
}

@keyframes kycFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.kyc-heading {
    color: var(--kyc-text);
    font-family: "Sora", sans-serif;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.2;
    margin: 0 0 9px;
}

.kyc-copy {
    color: var(--kyc-muted);
    font-size: 12px;
    line-height: 1.35;
    margin: 0 0 18px;
}

.kyc-section-title {
    color: var(--kyc-text);
    font-family: "Sora", sans-serif;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.2;
    margin: 0 0 12px;
}

.kyc-card {
    background: #fff;
    border: 1px solid var(--kyc-border);
    border-radius: 10px;
    box-shadow: var(--kyc-shadow);
    padding: 14px;
    margin-bottom: 18px;
}

.kyc-card--flat {
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

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

.kyc-grid--two {
    grid-template-columns: 1fr 0.78fr;
}

.kyc-label {
    display: block;
    color: #111;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.25;
    margin: 0 0 7px;
}

.kyc-input,
.kyc-page .bootstrap-select>.dropdown-toggle {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--kyc-border);
    border-radius: 8px;
    background: #fff;
    color: #101010;
    box-shadow: none;
    padding: 11px 12px;
    font-size: 12px;
    font-weight: 700;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kyc-input::placeholder {
    color: #8a8f99;
    opacity: 1;
    font-weight: 600;
}

.kyc-input:focus,
.kyc-page .bootstrap-select>.dropdown-toggle:focus,
.kyc-page .bootstrap-select>.dropdown-toggle:hover {
    border-color: var(--kyc-blue);
    box-shadow: 0 0 0 1px var(--kyc-blue);
}

.kyc-page .form-one__control {
    margin: 0;
}

.kyc-page .form-one__control .bootstrap-select {
    width: 100% !important;
}

.kyc-page .bootstrap-select .dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

.kyc-page .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    color: #5f636d;
    font-size: 12px;
    font-weight: 700;
}

.kyc-page .bootstrap-select .dropdown-toggle::after {
    border: 0;
    width: 8px;
    height: 8px;
    border-right: 1.6px solid #3f4652;
    border-bottom: 1.6px solid #3f4652;
    transform: rotate(45deg);
    margin-top: -5px;
}

.kyc-verified {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #05a34a;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 8px;
}

.kyc-verified i {
    font-size: 11px;
}

.kyc-blue-value {
    border-color: var(--kyc-blue);
    color: var(--kyc-blue);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 5px;
}

.kyc-nid-card {
    margin-top: 20px;
}

.kyc-choice-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.kyc-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.kyc-choice span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    border: 1px solid var(--kyc-border);
    border-radius: 7px;
    color: #111;
    font-size: 11px;
    font-weight: 750;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.kyc-choice input:checked+span {
    border-color: var(--kyc-blue);
    background: #edf3ff;
    color: var(--kyc-blue);
}

.kyc-inline-action {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px;
    align-items: end;
}

.kyc-otp-btn {
    min-width: 86px;
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    background: var(--kyc-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
}

.kyc-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 22px;
    border-radius: 999px;
    background: #dff5e8;
    color: #0f9a4a;
    font-size: 10px;
    font-weight: 850;
    white-space: nowrap;
}

.kyc-input-with-pill {
    position: relative;
}

.kyc-input-with-pill .kyc-input {
    padding-right: 88px;
}

.kyc-input-with-pill .kyc-pill {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}

.kyc-toggle-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    background: #f7f8fc;
    border-radius: 8px;
    padding: 9px 12px;
    color: #333944;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.25;
}

.kyc-switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 19px;
}

.kyc-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.kyc-slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #c8ceda;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.kyc-slider::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s ease;
}

.kyc-switch input:checked+.kyc-slider {
    background: var(--kyc-blue);
}

.kyc-switch input:checked+.kyc-slider::before {
    transform: translateX(15px);
}

.kyc-alert {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #d9e5ff;
    color: #1260f5;
    border-radius: 9px;
    padding: 11px 12px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 18px;
}

.kyc-alert i {
    margin-top: 1px;
    font-size: 14px;
}

.kyc-doc-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 4px 0 12px;
}

.kyc-doc-heading .kyc-section-title {
    margin: 0;
}

.kyc-optional {
    color: #151515;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.kyc-doc-list {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.kyc-doc-item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    border: 1px solid var(--kyc-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--kyc-shadow);
    padding: 9px 11px;
}

.kyc-doc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: #dfe8ff;
    color: var(--kyc-blue);
    font-size: 15px;
}

.kyc-doc-icon--danger {
    background: #ffe4e5;
    color: #e13b48;
}

.kyc-doc-title {
    color: #151515;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 3px;
}

.kyc-doc-meta {
    color: #777d87;
    font-size: 10px;
    line-height: 1.25;
    font-weight: 650;
}

.kyc-doc-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #dbe6ff;
    color: var(--kyc-blue);
    cursor: pointer;
}

.kyc-doc-action.is-danger {
    background: #ffe2e4;
    color: #df3644;
}

.kyc-actions {
    position: sticky;
    bottom: 0;
    z-index: 10;
    background: linear-gradient(to top, #fff 76%, rgba(255, 255, 255, 0));
    padding: 18px 0 9px;
    margin-top: 4px;
}

.kyc-primary-btn {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 8px;
    background: var(--kyc-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.kyc-primary-btn:hover {
    background: var(--kyc-blue-dark);
    transform: translateY(-1px);
}

.company-autocomplete-results {
    position: absolute;
    z-index: 1000;
    background: #fff;
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.company-autocomplete-results .autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f1f3f5;
    font-size: 14px;
    color: #495057;
    transition: background 0.2s;
}

.company-autocomplete-results .autocomplete-item:last-child {
    border-bottom: none;
}

.company-autocomplete-results .autocomplete-item:hover {
    background: #f8f9fa;
    color: #212529;
}

@media (min-width: 768px) {
    .kyc-page {
        padding: 190px 30px 20px;
    }

    .kyc-shell {
        width: min(100%, 760px);
        min-height: auto;
        border-radius: 18px;
        overflow: hidden;
    }

    .kyc-content {
        padding: 26px 22px 4px;
    }

    .kyc-form-grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 18px;
        align-items: start;
    }

    .kyc-card {
        margin-bottom: 0;
    }

    .kyc-wide {
        grid-column: 1 / -1;
    }
}

@media (min-width: 584px) {
    .kyc-page {
        padding: 190px 30px 20px;
    }
}

@media (max-width: 583px) {
    .kyc-page {
        padding: 190px 30px 20px;
    }
}

@media (max-width: 374px) {
    .kyc-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .kyc-choice-group {
        gap: 6px;
    }

    .kyc-choice span {
        font-size: 10px;
    }

    .kyc-blue-value {
        font-size: 16px;
        letter-spacing: 4px;
    }
}

/* Cibil Check */
.cibil-page {
    --cibil-blue: #2f5ff5;
    --cibil-blue-dark: #1d4ce8;
    --cibil-blue-soft: #dbe5ff;
    --cibil-bg: #f8fafe;
    --cibil-text: #080808;
    --cibil-muted: #5f636d;
    --cibil-border: #e7eaf1;
    --cibil-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
    background: var(--cibil-bg);
    min-height: 100vh;
    padding: 130px 15px 50px;
    font-family: "DM Sans", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cibil-shell {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--cibil-shadow);
    border: 1px solid rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.cibil-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    border-bottom: 1px solid #f0f2f6;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cibil-back-btn {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f4fc;
    color: var(--cibil-blue);
    font-size: 14px;
    transition: all 0.2s ease;
}

.cibil-back-btn:hover {
    background: var(--cibil-blue-soft);
    transform: scale(1.05);
}

.cibil-title {
    color: var(--cibil-text);
    font-family: "Sora", sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    flex-grow: 1;
    text-align: center;
}

.cibil-skip-btn {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    background: #f1f4fc;
    color: var(--cibil-blue);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    transition: all 0.2s ease;
}

.cibil-skip-btn:hover {
    background: var(--cibil-blue-soft);
}

.cibil-content {
    padding: 24px 20px;
}

.cibil-panel {
    display: none;
}

.cibil-panel.is-active {
    display: block;
    animation: cibilFadeIn 0.3s ease;
}

@keyframes cibilFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.cibil-card {
    background: #fff;
    border: 1px solid var(--cibil-border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.cibil-card-title {
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--cibil-text);
    margin-bottom: 15px;
    border-bottom: 1px dashed var(--cibil-border);
    padding-bottom: 8px;
}

.cibil-label {
    display: block;
    color: #1a1c23;
    font-size: 12px;
    font-weight: 750;
    margin-bottom: 6px;
}

.cibil-input,
.cibil-page .bootstrap-select>.dropdown-toggle {
    width: 100%;
    height: 48px;
    border: 1.5px solid var(--cibil-border);
    border-radius: 10px;
    background: #fff;
    color: #101010;
    box-shadow: none;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 700;
    outline: 0;
    transition: all 0.2s ease;
}

.cibil-input:focus,
.cibil-page .bootstrap-select>.dropdown-toggle:focus {
    border-color: var(--cibil-blue);
    box-shadow: 0 0 0 1px var(--cibil-blue);
    background-color: #fff;
}

.cibil-input::placeholder {
    color: #b0b4bd;
    font-weight: 600;
}

.cibil-input:disabled {
    background-color: #f5f7fa;
    color: #6c757d;
    border-color: #e2e5ec;
    cursor: not-allowed;
}

.cibil-page .bootstrap-select .dropdown-toggle::after {
    border: 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid #5f636d;
    border-bottom: 2px solid #5f636d;
    transform: rotate(45deg);
    margin-top: -6px;
}

.cibil-page .bootstrap-select .filter-option-inner-inner {
    font-weight: 700;
    font-size: 13px;
    color: #2b2f38;
}

.cibil-btn {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 10px;
    background: var(--cibil-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.cibil-btn:hover {
    background: var(--cibil-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(47, 95, 245, 0.25);
}

.cibil-btn--secondary {
    background: #f1f4fc;
    color: var(--cibil-blue);
}

.cibil-btn--secondary:hover {
    background: #e2e8f7;
    color: var(--cibil-blue-dark);
    box-shadow: none;
    transform: translateY(-1px);
}

.cibil-btn:disabled {
    background: #ccd4e0;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* PAN card styling spacing and uppercase */
.cibil-input--pan {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-family: monospace;
    font-size: 16px;
    text-align: center;
}

/* Loading radar scanning state */
.cibil-loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.radar-spinner {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(47, 95, 245, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.radar-spinner::before,
.radar-spinner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--cibil-blue);
    animation: radarPulse 2s infinite ease-out;
    opacity: 0;
}

.radar-spinner::after {
    animation-delay: 1s;
}

.radar-icon {
    font-size: 32px;
    color: var(--cibil-blue);
    animation: radarPulseCenter 2s infinite ease-in-out;
}

@keyframes radarPulse {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes radarPulseCenter {

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

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

.cibil-loader-title {
    font-family: "Sora", sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--cibil-text);
    margin: 0 0 10px;
}

.cibil-loader-desc {
    font-size: 12px;
    color: var(--cibil-muted);
    margin: 0;
}

/* Gauge styles */
.gauge-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0 25px;
}

.cibil-gauge {
    width: 100%;
    max-width: 250px;
    height: auto;
}

.score-display {
    position: absolute;
    bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-number {
    font-family: "Sora", sans-serif;
    font-size: 42px;
    font-weight: 850;
    line-height: 1;
    color: #10121d;
    margin-bottom: 2px;
}

.score-desc {
    font-size: 12px;
    font-weight: 700;
    color: var(--cibil-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.score-date-info {
    text-align: center;
    font-size: 14px;
    font-weight: 750;
    color: #4b5262;
    margin-bottom: 20px;
}

.score-status-highlight {
    font-weight: 800;
    transition: color 0.3s;
}

.chances-card {
    background: #f7f9fc;
    border-radius: 12px;
    padding: 15px 18px;
    margin-bottom: 25px;
    border: 1px solid #edf1f7;
    text-align: center;
}

.chances-title {
    font-family: "Sora", sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin-bottom: 6px;
}

.chances-percent {
    color: var(--cibil-blue);
    font-weight: 850;
}

.chances-desc {
    font-size: 11px;
    color: var(--cibil-muted);
    line-height: 1.4;
    margin: 0;
}

/* Lenders layout */
.lender-section-title {
    font-family: "Sora", sans-serif;
    font-size: 15px;
    font-weight: 850;
    color: #10121d;
    margin-bottom: 15px;
    text-align: left;
}

.lender-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lender-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--cibil-border);
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.lender-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    border-color: var(--cibil-blue-soft);
}

/* .lender-logo-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f5f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #edf1f9;
} */

.lender-logo-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lender-info {
    flex-grow: 1;
    text-align: left;
}

.lender-name {
    font-family: "Sora", sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: #1a1c23;
    margin: 0 0 2px;
}

.lender-meta {
    font-size: 11px;
    font-weight: 700;
    color: var(--cibil-muted);
    margin: 0;
}

.lender-action {
    align-self: center;
}

.eligible-badge {
    background: #e6fcf0;
    color: #0f9a4a;
    font-size: 10.5px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.cibil-alert-error {
    background: #fff5f5;
    border: 1.5px solid #ffd8d8;
    color: #e53e3e;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    display: none;
    align-items: flex-start;
    gap: 10px;
}

.cibil-alert-error i {
    margin-top: 2px;
    font-size: 14px;
}

/* Step Indicator Dot */
.step-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dfe3f0;
    transition: all 0.25s ease;
}

.step-dot.is-active {
    background: var(--cibil-blue);
    width: 20px;
    border-radius: 999px;
}

/* Auto layout tweaks */
.input-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.input-row-grid--age {
    grid-template-columns: 1.8fr 1fr;
}

@media(min-width: 768px) {
    .cibil-page {
        padding-top: 170px;
    }
}

/* Modern Loan Card Styles */
.loan-card-modern {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf1f9;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.loan-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(38, 93, 245, 0.12);
    border-color: #dbe4ff;
}

.loan-card-modern__image-wrapper {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    background: #f4f7fe;
}

.loan-card-modern__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.loan-card-modern:hover .loan-card-modern__image {
    transform: scale(1.05);
}

.loan-card-modern__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #265df5;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(38, 93, 245, 0.3);
}

.loan-card-modern__content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.loan-card-modern__title {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #1c325d;
    margin-bottom: 18px;
    line-height: 1.3;
}

.loan-card-modern__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.loan-card-modern__stat-item {
    display: flex;
    flex-direction: column;
}

.loan-card-modern__stat-label {
    font-size: 12px;
    color: #8894ad;
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loan-card-modern__stat-value {
    font-size: 16px;
    font-weight: 800;
    color: #1c325d;
}

.loan-card-modern__stat-value.highlight {
    color: #265df5;
    font-size: 17px;
}

.loan-card-modern__stat-value small {
    font-size: 11px;
    font-weight: 600;
    color: #8894ad;
}

.loan-card-modern__divider {
    height: 1px;
    background: #edf1f9;
    margin: 15px 0;
}

.loan-card-modern__amounts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.loan-card-modern__amount-item {
    display: flex;
    flex-direction: column;
}

.loan-card-modern__amount-label {
    font-size: 11px;
    color: #8894ad;
    margin-bottom: 2px;
    font-weight: 600;
}

.loan-card-modern__amount-value {
    font-size: 15px;
    font-weight: 800;
    color: #1c325d;
}

.loan-card-modern__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.loan-card-modern__more-info {
    font-size: 14px;
    font-weight: 700;
    color: #265df5;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.loan-card-modern:hover .loan-card-modern__more-info {
    color: #1a4bd3;
    gap: 4px;
}

/* Loan Details Screen Styles */
.loan-hero {
    background: #ffffff;
    padding: 180px 0 50px;
    color: #0f172a;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.loan-hero::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 320px;
    height: 320px;
    background-image: radial-gradient(circle at center, rgba(38, 93, 245, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.loan-hero__tag {
    background: rgba(38, 93, 245, 0.08);
    border: 1px solid rgba(38, 93, 245, 0.2);
    color: #265df5;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
}

.loan-hero__title {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #0f172a;
}

.loan-hero__subtitle {
    font-size: 18px;
    color: #475569;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 540px;
}

.btn-hero-primary {
    background: #265df5;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: #1a4bd3;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: #eff6ff;
    color: #265df5;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid #bfdbfe;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #0f172a;
}

.loan-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: #f8fbff;
    border: 1px solid #dbeafe;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 45px rgba(38, 93, 245, 0.06);
}

.loan-hero-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.loan-hero-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(38, 93, 245, 0.12);
    color: #265df5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.loan-hero-stat-info {
    display: flex;
    flex-direction: column;
}

.loan-hero-stat-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loan-hero-stat-value {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.loan-hero-stat-value small {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.loan-details-body {
    padding: 40px 0;
    background-color: #ffffff;
}

.loan-timeline {
    position: relative;
    padding-left: 40px;
}

.loan-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, #265df5, #eff6ff);
    opacity: 1;
}

.loan-timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.loan-timeline-item:last-child {
    margin-bottom: 0;
}

.loan-timeline-marker {
    position: absolute;
    left: -40px;
    top: 2px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eef2ff;
    color: #265df5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border: 2px solid #265df5;
    z-index: 2;
}

.loan-timeline-content {
    padding-left: 10px;
}

.loan-timeline-title {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.loan-timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.loan-timeline-list-item {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 14px;
    line-height: 1.6;
}

.loan-timeline-list-item i {
    font-size: 10px;
    margin-top: 7px;
    color: #265df5 !important;
}

/* Calculator Panel - Card-free integration */
.loan-calculator-panel {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #dbeafe;
    box-shadow: 0 18px 40px rgba(38, 93, 245, 0.08);
}

.loan-calculator-panel__header {
    margin-bottom: 30px;
}

.loan-calculator-panel__title {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}

.loan-calculator-panel__subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 0;
}

.calculator-field {
    position: relative;
}

.loan-range__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.eligibility-label {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    margin: 0;
}

.loan-range__amount {
    font-size: 18px;
    font-weight: 800;
    color: #265df5;
}

.eligibility-range {
    width: 100%;
    height: 6px;
    border-radius: 99px;
    outline: none;
    -webkit-appearance: none;
    background: #edf1f9;
    cursor: pointer;
}

.eligibility-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #265df5;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(38, 93, 245, 0.3);
    transition: all 0.15s ease;
}

.eligibility-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.loan-range__limits {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 6px;
}

/* EMI Results Box */
.emi-results-box {
    background: #f8fbff;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.emi-results-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.emi-results-row.highlight {
    padding-bottom: 12px;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 5px;
}

.emi-results-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.emi-results-value {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
}

.emi-results-row.highlight .emi-results-value {
    font-size: 24px;
    font-weight: 900;
    color: #265df5;
}

.btn-apply-loan-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #265df5;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    padding: 16px 45px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(38, 93, 245, 0.25);
    transition: all 0.3s ease;
    border: none;
}

.btn-apply-loan-large:hover {
    background: #1a4bd3;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(38, 93, 245, 0.35);
}

.btn-apply-loan-large i {
    transition: transform 0.2s ease;
}

.btn-apply-loan-large:hover i {
    transform: translateX(5px);
}

/* Program Guidelines Specs */
.loan-policy-details {
    padding-top: 30px;
    border-top: 1px solid #dbeafe;
}

.loan-policy-details__title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.loan-policy-specs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.loan-policy-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px dashed #dbeafe;
}

.loan-policy-spec:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.loan-policy-spec__label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

.loan-policy-spec__value {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .loan-hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .loan-hero__title {
        font-size: 36px;
    }

    .loan-hero__subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .loan-hero-stats {
        margin-top: 40px;
    }

    .loan-calculator-panel {
        margin-top: 50px;
    }
}

@media (max-width: 576px) {
    .loan-hero-stats {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .loan-timeline {
        padding-left: 20px;
    }

    .loan-timeline::before {
        left: 5px;
    }

    .loan-timeline-marker {
        left: -30px;
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .loan-calculator-panel {
        padding: 20px;
    }
}

/* Support Tickets Styles */
.support-tabs {
    background: #f8f9fa;
    padding: 8px;
    border-radius: 50px;
    display: inline-flex;
    gap: 5px;
}

.support-tabs .nav-link {
    border-radius: 50px;
    color: #475569;
    font-weight: 600;
    padding: 8px 24px;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
}

.support-tabs .nav-link:hover {
    color: #265df5;
}

.support-tabs .nav-link.active {
    background: #265df5;
    color: #fff;
    box-shadow: 0 4px 10px rgba(38, 93, 245, 0.2);
}

.ticket-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #dbeafe;
    transform: translateY(-2px);
}

.ticket-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ticket-id {
    font-weight: 800;
    color: #1e293b;
    font-size: 15px;
}

.ticket-subject {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ticket-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 13px;
    color: #64748b;
    flex-wrap: wrap;
}

.badge-priority-low {
    background: #dcfce7;
    color: #166534;
}

.badge-priority-medium {
    background: #ffedd5;
    color: #9a3412;
}

.badge-priority-high {
    background: #fee2e2;
    color: #991b1b;
}

.badge-status-pending {
    background: #fef9c3;
    color: #854d0e;
}

.badge-status-open {
    background: #e0e7ff;
    color: #3730a3;
}

.badge-status-closed {
    background: #f1f5f9;
    color: #475569;
}

.ticket-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 5px;
}

.btn-view-chat {
    background: #eff6ff;
    color: #265df5;
    border: 1px solid #bfdbfe;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-view-chat:hover {
    background: #265df5;
    color: #fff;
}

.unread-badge {
    background: #ef4444;
    color: #fff;
    border-radius: 50px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 800;
}

/* Chat Modal Styles */
.chat-scroll-area {
    height: 450px;
    overflow-y: auto;
    background: #f8fafc;
    scroll-behavior: smooth;
}

.chat-scroll-area::-webkit-scrollbar {
    width: 6px;
}

.chat-scroll-area::-webkit-scrollbar-track {
    background: transparent;
}

.chat-scroll-area::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    position: relative;
    word-break: break-word;
}

.chat-message-admin {
    align-self: flex-start;
}

.chat-message-admin .chat-bubble {
    background: #fff;
    color: #334155;
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 4px;
}

.chat-message-user {
    align-self: flex-end;
}

.chat-message-user .chat-bubble {
    background: #265df5;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chat-time {
    font-size: 11px;
    margin-top: 4px;
    color: #94a3b8;
}

.chat-message-user .chat-time {
    text-align: right;
}

.chat-attachment {
    max-width: 200px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}



/* Premium KYC styles */
/* Segmented control for address mode */
.address-mode-selector {
    background-color: #f1f5f9;
    display: flex;
    padding: 4px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    width: 100%;
}

.address-mode-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border: none !important;
    background: transparent !important;
    color: #64748b !important;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: none !important;
}

.address-mode-btn:hover {
    color: #0f172a !important;
}

.address-mode-btn.active {
    background: #ffffff !important;
    color: #2563eb !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06) !important;
}

.kyc-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    padding: 12px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.kyc-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

.kyc-input-group {
    display: flex;
    align-items: stretch;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid #cbd5e1;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.kyc-input-group:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.kyc-input-group .form-control {
    border: none !important;
    box-shadow: none !important;
    height: 56px;
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
    padding: 0 16px;
}

.kyc-input-group .btn {
    border: none !important;
    border-radius: 0 !important;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 0 24px;
    transition: background 0.2s;
}

.kyc-input-group .btn:hover {
    background: #1d4ed8;
}

.kyc-input-group .btn:disabled {
    background: #94a3b8;
    color: #cbd5e1;
    cursor: not-allowed;
}

.otp-digit {
    width: 48px;
    height: 56px;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
    transition: all 0.2s;
}

.otp-digit:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.otp-digit:disabled {
    background: #f8fafc;
    color: #94a3b8;
    cursor: not-allowed;
}

.kyc-input {
    width: 100%;
    height: 56px;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
    padding: 0 16px;
    outline: none;
    transition: all 0.2s;
    background: #ffffff;
}

.kyc-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.kyc-input:disabled,
.kyc-input[readonly] {
    background: #f8fafc;
    color: #64748b;
    border-color: #e2e8f0;
    cursor: not-allowed;
}

.form-select.kyc-select {
    height: 56px;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
    padding: 0 16px;
    outline: none;
    transition: all 0.2s;
    background-color: #ffffff;
}

.form-select.kyc-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-select.kyc-select:disabled {
    background: #f8fafc;
    color: #94a3b8;
    border-color: #e2e8f0;
    cursor: not-allowed;
}

.autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.autocomplete-suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1050;
    margin-top: 4px;
    padding: 6px 0;
}

.autocomplete-suggestion-item {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #334155;
    font-weight: 500;
    transition: all 0.15s;
}

.autocomplete-suggestion-item:hover {
    background: #f1f5f9;
    color: #2563eb;
}

/* Toggle switch styles */
.kyc-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.kyc-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.kyc-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .3s;
    border-radius: 24px;
}

.kyc-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked+.kyc-slider {
    background-color: #2563eb;
}

input:checked+.kyc-slider:before {
    transform: translateX(20px);
}

.verification-status-msg {
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.text-verified {
    color: #16a34a;
}

/* Placeholder container */
.placeholder-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 40px;
}

/* Step 5 - Your Approval Chances styling */
.cibil-bar-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 24px auto;
    padding: 0 10px;
}

.cibil-gradient-bar {
    height: 12px;
    background: linear-gradient(to right, #ef4444 0%, #fbbf24 50%, #10b981 100%);
    border-radius: 6px;
    position: relative;
}

.cibil-dot-indicator {
    width: 20px;
    height: 20px;
    background-color: #2563eb;
    border: 3px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    transition: left 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cibil-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #64748b;
    margin-top: 8px;
    font-weight: 600;
}

.row-icon-wrapper {
    width: 36px;
    height: 36px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.kyc-note-box {
    border: 1px solid #bfdbfe;
    background-color: #eff6ff;
    border-radius: 12px;
    padding: 16px;
    color: #1e40af;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 16px;
    border-left: 4px solid #2563eb;
}

.kyc-alert-box {
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
    background-color: #fee2e2;
    border-radius: 12px;
    padding: 14px 16px;
    color: #b91c1c;
    font-size: 13.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

/* Step 6 - Lender Card styling */
.lender-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lender-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
}

.lender-card.is-selected {
    border-color: #2563eb;
    background-color: #f0f6ff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.lender-card.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #f8fafc;
    border-color: #e2e8f0;
}

.lender-logo-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lender-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lender-logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.lender-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.lender-checkbox-custom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lender-select-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2563eb;
}

/* Step 7 - Success styling */
.success-icon-wrapper {
    width: 72px;
    height: 72px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

.lead-id-bar {
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.btn-outline-primary:hover {
    background-color: #2563eb !important;
    color: #ffffff !important;
    border-color: #2563eb !important;
}

/* Custom Yes/No Checkbox Toggle Styles */
.kyc-yes-no-group {
    display: flex;
    gap: 12px;
}

.kyc-yes-no-option {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    background: #ffffff;
}

.kyc-yes-no-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    margin: 0;
    left: 0;
    top: 0;
    z-index: 1;
}

.kyc-yes-no-option .checkbox-box {
    width: 18px;
    height: 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.kyc-yes-no-option .checkbox-box::after {
    content: "";
    width: 10px;
    height: 5px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg) translate(1px, -1.5px);
    opacity: 0;
    transition: all 0.1s ease;
}

.kyc-yes-no-option input:checked~.checkbox-box {
    background-color: #2563eb;
    border-color: #2563eb;
}

.kyc-yes-no-option input:checked~.checkbox-box::after {
    opacity: 1;
}

.kyc-yes-no-option .option-label {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    position: relative;
    z-index: 2;
}

.kyc-yes-no-option.active,
.kyc-yes-no-option:has(input:checked) {
    border-color: #2563eb;
    background-color: #f8fafc;
}

/* Upload UI Custom Styles */
.upload-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.btn-upload-trigger {
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-upload-trigger:hover {
    background-color: #1d4ed8;
    color: #ffffff;
}

.btn-upload-delete {
    width: 40px;
    height: 40px;
    background-color: #fee2e2;
    color: #ef4444;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-upload-delete:hover {
    background-color: #fca5a5;
    color: #b91c1c;
}

/* Custom Testimonials Section Styles */
.testimonial-card-custom {
    background: #ffffff;
    border: 1px solid rgba(0, 102, 84, 0.08);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial-card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--findox-base, #006654) 0%, var(--findox-primary, #f5c835) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 84, 0.08);
    border-color: rgba(0, 102, 84, 0.2);
}

.testimonial-card-custom:hover::before {
    opacity: 1;
}

.testimonial-card-custom__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.testimonial-card-custom__ratings {
    display: flex;
    gap: 4px;
}

.testimonial-card-custom__ratings i {
    color: var(--findox-primary, #f5c835) !important;
    font-size: 14px;
}

.testimonial-card-custom__quote-icon {
    font-size: 28px;
    color: rgba(0, 102, 84, 0.08);
    transition: color 0.4s ease;
}

.testimonial-card-custom:hover .testimonial-card-custom__quote-icon {
    color: rgba(0, 102, 84, 0.2);
}

.testimonial-card-custom__text {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-card-custom__user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.testimonial-card-custom__avatar-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--findox-base, #006654) 0%, var(--findox-primary, #f5c835) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card-custom__avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.testimonial-card-custom__meta {
    display: flex;
    flex-direction: column;
}

.testimonial-card-custom__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--findox-black2, #222222);
    margin: 0 0 3px 0;
    font-family: var(--findox-heading-font, "Sora", sans-serif);
}

.testimonial-card-custom__designation {
    font-size: 14px;
    color: var(--findox-base, #006654);
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
   Hero Section Responsiveness & Spacing Optimization
   ========================================================================== */

/* Container for the hero banner slider */
.hero-slider-container {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Base desktop section margins and padding adjustments */
.hero-one {
    position: relative;
    margin-top: 85px !important;
    padding-top: 80px !important;
    padding-bottom: 40px !important;
    background-color: var(--findox-white, #f8f9fa);
    overflow: hidden;
}

/* Responsive adjustments for large tablets and laptops (header becomes absolute/cloned here) */
@media (max-width: 1199px) {
    .hero-one {
        margin-top: 0 !important;
        padding-top: 125px !important;
        padding-bottom: 30px !important;
    }

    .hero-slider-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Responsive adjustments for tablets */
@media (max-width: 991px) {
    .hero-one {
        margin-top: 0 !important;
        padding-top: 165px !important;
        padding-bottom: 25px !important;
    }

    .hero-slider-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Responsive adjustments for mobile devices */
@media (max-width: 767px) {
    .hero-one {
        margin-top: 0 !important;
        padding-top: 115px !important;
        padding-bottom: 15px !important;
    }

    .hero-slider-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Ensure the banners fill the width nicely and scale cleanly */
    #hero-banner-slider .item img {
        border-radius: 12px !important;
        width: 100% !important;
        height: auto !important;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .hero-one {
        padding-top: 110px !important;
        padding-bottom: 10px !important;
    }

    .hero-slider-container {
        padding-left: 8px;
        padding-right: 8px;
    }

    #hero-banner-slider .item img {
        border-radius: 8px !important;
    }
}

/* Position the hero CTA button at the bottom-left corner of the banner image */
#hero-banner-slider .item {
    position: relative;
    overflow: visible;
    /* We want the button to overlap the bottom edge slightly */
}

#hero-banner-slider .hero-one__bottom {
    position: absolute;
    bottom: 75px;
    /* Overlaps the bottom edge slightly, like in the mockup */
    left: 65px;
    /* Aligned nicely with the left edge */
    z-index: 10;
    margin: 0;
    padding: 0;
    display: block;
    /* Override flex layout if any */
}

/* Style the Hero CTA Button to be premium blue with pill shape */
#hero-banner-slider .hero-one__bottom .findox-btn {
    border-radius: 100px !important;
    /* Pill shape */
    padding: 8px 8px 8px 32px !important;
    background-color: #2563eb !important;
    /* Blue background */
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25) !important;
    transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

#hero-banner-slider .hero-one__bottom .findox-btn::before,
#hero-banner-slider .hero-one__bottom .findox-btn::after {
    border-radius: 100px !important;
    background-color: #1d4ed8 !important;
    /* Darker blue on hover */
}

#hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__text {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
}

#hero-banner-slider .hero-one__bottom .findox-btn:hover .findox-btn__text {
    color: #ffffff !important;
}

#hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__icon-box {
    background-color: #ffffff !important;
    /* White icon container */
    width: 36px !important;
    height: 36px !important;
}

#hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__icon {
    color: #2563eb !important;
    /* Blue arrow */
}

#hero-banner-slider .hero-one__bottom .findox-btn:hover .findox-btn__icon {
    color: #1d4ed8 !important;
}

/* Responsive adjustments for Large Laptops/Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
    #hero-banner-slider .hero-one__bottom {
        bottom: 55px;
        left: 50px;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn {
        padding: 6px 6px 6px 28px !important;
        gap: 18px !important;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__text {
        font-size: 14px !important;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__icon-box {
        width: 32px !important;
        height: 32px !important;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__icon {
        font-size: 11px !important;
        width: 11px !important;
        height: 11px !important;
    }
}

/* Responsive adjustments for Tablets (max-width: 991px) */
@media (max-width: 991px) {
    #hero-banner-slider .hero-one__bottom {
        bottom: 35px;
        left: 35px;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn {
        padding: 6px 6px 6px 24px !important;
        gap: 15px !important;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__text {
        font-size: 13px !important;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__icon-box {
        width: 30px !important;
        height: 30px !important;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__icon {
        font-size: 10px !important;
        width: 10px !important;
        height: 10px !important;
    }
}

/* Responsive adjustments for Mobile (max-width: 767px) */
@media (max-width: 767px) {
    #hero-banner-slider .hero-one__bottom {
        bottom: 22px;
        left: 24px;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn {
        padding: 5px 5px 5px 20px !important;
        gap: 10px !important;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__text {
        font-size: 12px !important;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__icon-box {
        width: 26px !important;
        height: 26px !important;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__icon {
        font-size: 8px !important;
        width: 8px !important;
        height: 8px !important;
    }
}

/* Responsive adjustments for Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    #hero-banner-slider .hero-one__bottom {
        bottom: 12px;
        left: 15px;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn {
        padding: 4px 4px 4px 16px !important;
        gap: 8px !important;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__text {
        font-size: 11px !important;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__icon-box {
        width: 22px !important;
        height: 22px !important;
    }

    #hero-banner-slider .hero-one__bottom .findox-btn .findox-btn__icon {
        font-size: 7px !important;
        width: 7px !important;
        height: 7px !important;
    }
}