/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 09 2026 | 16:49:20 */
/* 
    Visa Eligibility Form CSS - Elementor Version (No Background)
    This version removes the body background so Elementor can handle styling
    Upload this file and update the HTML to use this CSS instead
*/

/* Remove body background styles - Elementor will handle this */
/* The form container itself has no background, just the white card */

.visa-form-container {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 700px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    margin: 0 auto; /* Center the form */
}

.visa-progress {
    height: 6px;
    background: #f1f1f1;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 32px;
}

.visa-progress-bar {
    height: 100%;
    width: 0%;
    background-color: rgb(230, 44, 58);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 999px;
}

.visa-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.visa-step.is-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.section-heading {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 24px;
    color: rgb(230, 44, 58);
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.visa-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #1a1a1a;
    line-height: 1.4;
}

.visa-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0 0 24px;
    line-height: 1.5;
}

.step-indicator {
    font-size: 14px;
    font-weight: 500;
    color: rgb(230, 44, 58);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visa-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.visa-label.required::after {
    content: ' *';
    color: rgb(230, 44, 58);
}

.visa-input,
.visa-select,
.visa-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}

.visa-input:focus,
.visa-select:focus,
.visa-textarea:focus {
    outline: none;
    border-color: rgb(230, 44, 58);
    box-shadow: 0 0 0 3px rgba(230, 44, 58, 0.1);
}

.visa-textarea {
    min-height: 100px;
    resize: vertical;
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.visa-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.visa-radio-row {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}

.visa-radio-row:hover {
    border-color: rgb(230, 44, 58);
    background: #fafafa;
}

.visa-radio-row input[type="radio"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: rgb(230, 44, 58);
}

.visa-radio-row input[type="radio"]:checked + span {
    font-weight: 500;
    color: rgb(230, 44, 58);
}

.visa-radio-row:has(input[type="radio"]:checked) {
    border-color: rgb(230, 44, 58);
    background: rgba(230, 44, 58, 0.05);
}

.visa-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.visa-btn[data-back] {
    order: -1; /* Always position back button on the left */
}

.visa-btn[data-back]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.visa-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    min-width: 120px;
}

.visa-btn-primary {
    background: rgb(230, 44, 58);
    color: #fff;
}

.visa-btn-primary:hover {
    background: rgb(200, 34, 48);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 44, 58, 0.3);
}

.visa-btn-primary:active {
    transform: translateY(0);
}

.visa-btn-secondary {
    background: #f5f5f5;
    color: #333;
}

.visa-btn-secondary:hover:not(:disabled) {
    background: #e8e8e8;
}

.visa-btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
}

.visa-hint {
    font-size: 13px;
    color: #999;
    margin-top: 8px;
    font-style: italic;
}

.visa-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

.visa-status.error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .visa-form-container {
        padding: 24px 20px;
        max-width: 100%;
    }

    .visa-title {
        font-size: 20px;
    }

    .visa-grid {
        grid-template-columns: 1fr;
    }

    .visa-actions {
        flex-direction: column;
    }

    .visa-btn {
        width: 100%;
    }
}

/* Thank you and ineligibility page styles */
.visa-thank-you-container {
    text-align: center;
    margin-top: 32px;
}

.visa-thank-you-button {
    max-width: 200px;
}

/* Print styles */
@media print {
    .visa-form-container {
        box-shadow: none;
        max-height: none;
    }

    .visa-progress,
    .visa-actions {
        display: none;
    }

    .visa-step {
        display: block !important;
        opacity: 1;
        transform: none;
    }
}
