
        * {
            box-sizing: border-box;
        }

        /* ========== MOBILE VERIFICATION SCREEN ========== */
        .mobile-verification-screen {
            background: linear-gradient(135deg, #d7ffb9 0%, #c0ff95 100%);
            /* min-height: 100vh; */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .verification-card {
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            border: none;
            border-radius: 15px;
            overflow: hidden;
            background: #ffffff;
        }

        .verification-card .card-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 25px;
            border: none;
        }

        .verification-card .card-body {
            padding: 40px;
        }

        .verification-card .form-control {
            text-align: center;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }
        
        .form-body{
            background: linear-gradient(135deg, #d7ffb9 0%, #c0ff95 100%);
            min-height: 100vh;
            padding: 30px 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .form-card {
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            margin-bottom: 30px;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            background: #ffffff;
        }
        
        .card-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 25px;
            border: none;
        }
        
        .card-header h3 {
            font-weight: 700;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .card-body {
            padding: 40px;
        }
        
        .section-title {
            color: #1e3c72;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 10px;
            margin-bottom: 20px;
            padding: 12px 15px;
            background: linear-gradient(to right, #f0f4ff, #ffffff);
            border-left: 4px solid #2a5298;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .section-title .icon {
            font-size: 1.3rem;
        }
        
        .form-control, .custom-file-label {
            border: 2px solid #e1e8ed;
            border-radius: 8px;
            /* padding: 12px 15px; */
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        /* Specific text input styling */
        input.form-control,
        textarea.form-control {
            color: #2d3748 !important;
            background-color: #ffffff;
        }
        
        .form-control option {
            padding: 10px;
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        select.form-control {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d3748' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 12px;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
            padding-right: 40px;
            color: #1a202c !important;
            background-color: #ffffff !important;
        }
        
        select.form-control:focus {
            color: #1a202c !important;
        }
        
        select.form-control:valid:not([value=""]) {
            color: #1a202c !important;
            font-weight: 600;
        }
        
        /* Force option colors */
        select.form-control option {
            color: #1a202c !important;
            background-color: #ffffff !important;
        }
        
        .form-control:focus {
            border-color: #2a5298;
            box-shadow: 0 0 0 0.2rem rgba(42, 82, 152, 0.15);
            transform: translateY(-1px);
        }
        
        .form-control:hover {
            border-color: #4a7bc8;
        }
        
        label {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 8px;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
        }
        
        .required:after {
            content: " *";
            color: #e53e3e;
            font-weight: bold;
        }
        
        .form-check-input {
            margin-top: 0.4rem;
            cursor: pointer;
        }
        
        .form-check-label {
            cursor: pointer;
            margin-left: 5px;
        }
        
        .custom-file-label {
            cursor: pointer;
            height: calc(2.75rem + 2px);
            line-height: 1.5;
            display: flex;
            align-items: center;
        }
        
        .custom-file-label::after {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            border-radius: 0 6px 6px 0;
            padding: 12px 20px;
            border: none;
            height: calc(2.75rem + 2px);
            display: flex;
            align-items: center;
        }
        
        .custom-file-input:focus ~ .custom-file-label {
            border-color: #2a5298;
            box-shadow: 0 0 0 0.2rem rgba(42, 82, 152, 0.15);
        }
        
        hr {
            border-top: 2px solid #e1e8ed;
            margin: 30px 0;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            border: none;
            border-radius: 8px;
            padding: 14px 40px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, #218838 0%, #1ea87a 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
        }
        
        .btn-primary:active {
            transform: translateY(0);
        }
        
        .btn-secondary {
            background: #6c757d;
            border: none;
            border-radius: 8px;
            padding: 14px 40px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: #5a6268;
            transform: translateY(-2px);
        }
        
        .form-text {
            font-size: 0.85rem;
            color: #718096;
            margin-top: 5px;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }
        
        /* Progress indicator */
        .progress-bar-container {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: white;
            padding: 10px 0;
            margin-bottom: 20px;
            border-radius: 10px;
        }
        
        /* Input group styling */
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        /* Readonly input styling */
        .form-control[readonly] {
            background-color: #f7fafc;
            cursor: not-allowed;
            border-style: dashed;
        }
        
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .card-body {
                padding: 25px 20px;
            }
            
            .btn-lg {
                width: 100%;
                margin-bottom: 10px;
            }
            
            .section-title {
                font-size: 1rem;
            }
        }
        
        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Focus visible for accessibility */
        *:focus-visible {
            outline: 2px solid #2a5298;
            outline-offset: 2px;
        }
        
        /* Custom file upload improvements */
        .custom-file {
            height: calc(2.75rem + 2px);
        }
        
        .custom-file-input {
            height: calc(2.75rem + 2px);
        }
        
        /* Image preview styles */
        .image-preview-container {
            margin-top: 10px;
            display: none;
            border: 2px dashed #e1e8ed;
            border-radius: 8px;
            padding: 10px;
            background: #f7fafc;
            text-align: center;
        }
        
        .image-preview-container.show {
            display: block;
        }
        
        .image-preview-container img {
            max-width: 100%;
            max-height: 150px;
            border-radius: 5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .image-preview-container .remove-image {
            margin-top: 8px;
            font-size: 0.85rem;
            color: #e53e3e;
            cursor: pointer;
            text-decoration: underline;
        }
        
        .image-preview-container .remove-image:hover {
            color: #c53030;
        }
        
        .error-message {
            color: #e53e3e;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }
        
        .error-message.show {
            display: block;
        }
        
        /* Validation states */
        .form-control.is-invalid {
            border-color: #e53e3e !important;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e53e3e' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 16px;
            padding-right: 40px;
        }
        
        .form-control.is-valid {
            border-color: #28a745 !important;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2328a745' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 16px;
            padding-right: 40px;
        }
        
        select.form-control.is-invalid,
        select.form-control.is-valid {
            background-position: right 35px center, right 12px center;
            padding-right: 60px;
        }
        
        .invalid-feedback {
            color: #e53e3e;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }
        
        .invalid-feedback.show {
            display: block;
        }
        
        .valid-feedback {
            color: #28a745;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }
        
        .valid-feedback.show {
            display: block;
        }
        
        .document-group {
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .document-group-title {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 15px;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
