 /* Particle Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            background: linear-gradient(135deg, #4c1864 0%, #2a0845 100%);
        }

        /* Enhanced Form Styles */
        .account-form {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 40px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .account-head {
            background: linear-gradient(135deg, #4c1864 0%, #2a0845 100%) !important;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .account-head:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('assets/images/pattern.png') repeat;
            opacity: 0.1;
        }

        .account-head img {
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
            transition: all 0.3s ease;
        }

        .account-head img:hover {
            transform: scale(1.05);
        }

        .registration-container {
            padding: 40px;
        }

        .form-section {
            margin-bottom: 40px;
            border-radius: 8px;
            padding: 25px;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #4c1864;
            transition: all 0.3s ease;
        }

        .form-section:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
        }

        .form-section-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .form-section-header i {
            font-size: 24px;
            color: #4c1864;
            margin-right: 15px;
        }

        .form-section-header h4 {
            margin: 0;
            color: #4c1864;
            font-weight: 600;
        }

        .form-group label {
            font-weight: 500;
            color: #555;
            margin-bottom: 8px;
            display: block;
        }

        .required-field:after {
            content: " *";
            color: #e74c3c;
        }

        .form-control {
            height: 48px;
            border-radius: 6px;
            border: 1px solid #ddd;
            padding: 10px 15px;
            font-size: 15px;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: #4c1864;
            box-shadow: 0 0 0 3px rgba(76, 24, 100, 0.2);
        }

        textarea.form-control {
            min-height: 100px;
        }

        /* Custom Select Styling */
        select.form-control {
            appearance: none;
			min-height: 50px;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 16px;
            padding-right: 30px;
        }

        /* Hide text on select hover */
        select.form-control option {
            color: #333;
        }

        select.form-control:hover option {
            color: #000;
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        }

        select.form-control option:checked {
            color: #333;
            text-shadow: none;
        }

        /* File Upload Styling */
        .file-upload-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .file-upload-box {
            border: 2px dashed #ddd;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .file-upload-box:hover {
            border-color: #4c1864;
            background: rgba(76, 24, 100, 0.03);
        }

        .file-upload-box i {
            font-size: 36px;
            color: #4c1864;
            margin-bottom: 10px;
            display: block;
        }

        .file-upload-box h5 {
            margin: 0 0 5px;
            color: #333;
            font-weight: 600;
        }

        .file-upload-box p {
            margin: 0;
            color: #777;
            font-size: 13px;
        }

        .file-upload-box input[type="file"] {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }

        .file-info {
            margin-top: 10px;
            font-size: 12px;
            color: #4c1864;
            font-weight: 500;
        }

        /* Button Styling */
        .btn-submit {
            background: linear-gradient(135deg, #4c1864 0%, #2a0845 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(76, 24, 100, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(76, 24, 100, 0.4);
            color: white;
        }

        .btn-submit:active {
            transform: translateY(1px);
        }

        .btn-submit i {
            margin-right: 8px;
        }

        .btn-secondary {
            background: #f8f9fa;
            color: #333;
            border: 1px solid #ddd;
            padding: 12px 30px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: #e9ecef;
            color: #333;
        }

        /* Progress Bar */
        .upload-progress {
            height: 4px;
            background: #eee;
            border-radius: 2px;
            margin-top: 15px;
            overflow: hidden;
            display: none;
        }

        .upload-progress-bar {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, #4c1864 0%, #8e44ad 100%);
            transition: width 0.3s;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .registration-container {
                padding: 20px;
            }

            .form-section {
                padding: 20px 15px;
            }

            .file-upload-container {
                grid-template-columns: 1fr;
            }
        }

        /* Animation Classes */
        .animate-fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Tooltip Styles */
        .tippy-box {
            background: #4c1864;
            font-size: 14px;
        }

        .tippy-arrow {
            color: #4c1864;
        }

        /* Form Validation */
        .error {
            color: #e74c3c;
            font-size: 13px;
            margin-top: 5px;
            display: block;
        }

        input.error,
        select.error,
        textarea.error {
            border-color: #e74c3c !important;
        }

        input.valid,
        select.valid,
        textarea.valid {
            border-color: #2ecc71 !important;
        }

        /* Checkbox Styling */
        .form-check-input {
            width: 18px;
            height: 18px;
            margin-top: 0.25rem;
        }

        .form-check-label {
            margin-left: 5px;
            color: #555;
        }

        /* Step Progress */
        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }

        .progress-steps:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: #eee;
            z-index: 0;
        }

        .progress-step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #eee;
            color: #999;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            position: relative;
            z-index: 1;
            transition: all 0.3s;
        }

        .progress-step.active {
            background: #4c1864;
            color: white;
            transform: scale(1.1);
        }

        .progress-step.completed {
            background: #2ecc71;
            color: white;
        }
		/* Modal Styles */
.modal-success .modal-header {
            background: linear-gradient(135deg, #4c1864 0%, #2a0845 100%);
            color: white;
            border-bottom: none;
        }
        
        .modal-error .modal-header {
            background: #e74c3c;
            color: white;
            border-bottom: none;
        }
        
        .modal-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }
        
        .modal-success .modal-icon {
            color: #4c1864;
        }
        
        .modal-error .modal-icon {
            color: #e74c3c;
        }
        
        .modal-message {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }
        
        .user-details {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-top: 1rem;
            text-align: left;
        }
        
        .user-details p {
            margin-bottom: 0.5rem;
        }
        
        .modal-footer {
            justify-content: center;
            border-top: none;
        }
        
        .modal-success .btn-primary {
            background: linear-gradient(135deg, #4c1864 0%, #2a0845 100%);
            border: none;
        }
        
        .modal-error .btn-primary {
            background: #e74c3c;
            border: none;
        }
        
        .modal-success .btn-primary:hover {
            opacity: 0.9;
        }
        
        .modal-error .btn-primary:hover {
            opacity: 0.9;
        }