
        :root{
            --navy-950:#031528;
            --navy-900:#062443;
            --navy-800:#0b335c;
            --navy-700:#124a7b;
            --gold:#f2bd00;
            --gold-dark:#d9a800;
            --gold-soft:#fff5cf;
            --white:#ffffff;
            --paper:#f7f9fc;
            --line:#d7e0ea;
            --text:#0a2342;
            --muted:#6d7c91;
            --success:#1f8a5b;
            --danger:#c53c3c;
            --shadow:0 22px 60px rgba(3, 21, 40, .18);
        }

        *{box-sizing:border-box}

        .error-feedback {
          color: #c53c3c;
        }

        body{
            margin:0;
            min-height:100vh;
            font-family:Arial, Helvetica, sans-serif;
            color:var(--text);
            background:
                radial-gradient(circle at top left, rgba(242,189,0,.12), transparent 28%),
                linear-gradient(135deg, var(--navy-950), var(--navy-900) 55%, #0b2f53);
            padding:28px;
        }

        .page-shell{
            width:min(1220px, 100%);
            margin:0 auto;
            background:var(--white);
            border-radius:28px;
            overflow:hidden;
            box-shadow:var(--shadow);
            border:1px solid rgba(255,255,255,.2);
        }

        .hero{
            position:relative;
            display:block;
            background:linear-gradient(135deg, var(--navy-950), var(--navy-800));
            color:#fff;
        }

        .hero-right{
            display:flex;
            align-items:center;
            justify-content:center;
            background:linear-gradient(135deg, var(--navy-950), var(--navy-800));
            color:#fff;
            padding:34px 28px;
            border-bottom:4px solid var(--gold);
        }

.steps-box {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

        .steps-box h2{
            margin:0 0 8px;
            font-size:28px;
            color:#fff;
        }

        .steps-box > p {
    margin: 0 0 0px;
    color: #d7e3ef;
    font-weight: 700;
}

        .stepper{
            display:flex;
            gap:14px;
            max-width:760px;
            margin:0 auto;
        }

        .step{
            flex:1;
            border:1px solid rgba(255,255,255,.18);
            border-radius:16px;
            padding:12px;
            background:rgba(255,255,255,.08);
            display:flex;
            align-items:center;
            justify-content:center;
            gap:9px;
            transition:.25s ease;
        }

        .step-number{
            width:30px;
            height:30px;
            border-radius:50%;
            display:grid;
            place-items:center;
            font-weight:800;
            background:rgba(255,255,255,.18);
            color:#fff;
            flex:none;
        }

        .step span:last-child{
            font-size:12px;
            font-weight:700;
            color:#e6eef7;
            line-height:1.25;
        }

        .step.active{
            border-color:var(--gold);
            background:rgba(242,189,0,.12);
            box-shadow:0 8px 24px rgba(242,189,0,.12);
        }

        .step.active .step-number{
            background:var(--gold);
            color:var(--navy-950);
        }

        .step.active span:last-child{
            color:#fff;
        }

        .step.complete .step-number{
            background:var(--success);
            color:#fff;
        }

        .form-wrap{
            background:var(--paper);
            padding:34px;
        }

        .form-card{
            width:min(1050px,100%);
            margin:0 auto;
            background:#fff;
            border:1px solid #e5ebf2;
            border-radius:24px;
            box-shadow:0 12px 35px rgba(6,36,67,.08);
            overflow:hidden;
        }

        .section{
            display:none;
            animation:fadeUp .35s ease;
        }

        .section.active{display:block}

        @keyframes fadeUp{
            from{opacity:0;transform:translateY(8px)}
            to{opacity:1;transform:translateY(0)}
        }

        .section-head{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:20px;
            padding:28px 30px;
            border-bottom:1px solid #e8edf3;
            background:linear-gradient(90deg, #fff, #fbfcfe);
        }

        .section-title-wrap{
            display:flex;
            align-items:center;
            gap:14px;
        }

        .section-icon{
            width:48px;
            height:48px;
            border-radius:15px;
            display:grid;
            place-items:center;
            background:var(--navy-900);
            color:var(--gold);
            font-size:22px;
            box-shadow:0 8px 20px rgba(6,36,67,.18);
        }

        .section-head h3{
            margin:0 0 5px;
            font-size:22px;
        }

        .section-head p{
            margin:0;
            color:var(--muted);
            font-size:13px;
        }

        .section-badge{
            font-size:12px;
            font-weight:800;
            color:var(--navy-900);
            background:var(--gold-soft);
            border:1px solid #f5dc7f;
            padding:8px 12px;
            border-radius:999px;
            white-space:nowrap;
        }

        .section-body{
            padding:30px;
        }

        .grid{
            display:grid;
            grid-template-columns:repeat(2,minmax(0,1fr));
            gap:22px;
        }

        .field.full{grid-column:1/-1}

        label{
            display:block;
            margin-bottom:8px;
            font-size:13px;
            font-weight:800;
            color:#18314f;
        }

        .required{color:var(--danger)}

        input, select, textarea{
            width:100%;
            border:1.5px solid #ced8e4;
            border-radius:13px;
            background:#fff;
            padding:14px 15px;
            color:var(--text);
            font-size:14px;
            outline:none;
            transition:.2s ease;
        }

        textarea{
            min-height:110px;
            resize:vertical;
        }

        input:focus, select:focus, textarea:focus{
            border-color:var(--gold-dark);
            box-shadow:0 0 0 4px rgba(242,189,0,.13);
        }

        input.invalid, select.invalid, textarea.invalid{
            border-color:var(--danger);
            box-shadow:0 0 0 4px rgba(197,60,60,.08);
        }

        .hint{
            margin-top:7px;
            color:var(--muted);
            font-size:11px;
        }

        .actions{
            display:flex;
            justify-content:space-between;
            gap:12px;
            margin-top:28px;
            padding-top:22px;
            border-top:1px solid #edf1f5;
        }

        .actions.right{justify-content:flex-end}

        button{
            border:0;
            border-radius:13px;
            padding:14px 23px;
            font-size:14px;
            font-weight:800;
            cursor:pointer;
            transition:.2s ease;
        }

        .btn-primary{
            background:linear-gradient(135deg, var(--gold), #e4ae00);
            color:#fff;
            box-shadow:0 10px 24px rgba(242,189,0,.26);
        }

        .btn-primary:hover{transform:translateY(-1px)}

        .btn-secondary{
            background:var(--navy-900);
            color:#fff;
        }

        .upload-box{
            border:2px dashed #cbd7e4;
            border-radius:20px;
            padding:32px;
            text-align:center;
            background:linear-gradient(180deg, #fbfcfe, #f5f8fb);
            transition:.2s ease;
        }

        .upload-box.dragover{
            border-color:var(--gold-dark);
            background:var(--gold-soft);
        }

        .upload-icon{
            width:74px;
            height:74px;
            margin:0 auto 15px;
            border-radius:20px;
            display:grid;
            place-items:center;
            background:var(--navy-900);
            color:var(--gold);
            font-size:34px;
        }

        .upload-box h4{
            margin:0 0 7px;
            font-size:18px;
        }

        .upload-box p{
            margin:0;
            color:var(--muted);
            font-size:13px;
        }

        .file-input{
            margin-top:18px;
            padding:10px;
            background:#fff;
        }

        .preview-wrap{
            display:none;
            margin-top:22px;
            align-items:center;
            gap:18px;
            padding:16px;
            border:1px solid #e0e7ef;
            border-radius:16px;
            background:#fff;
        }

        .preview-wrap.show{display:flex}

        .preview-wrap img{
            width:110px;
            height:110px;
            object-fit:cover;
            border-radius:18px;
            border:4px solid #fff;
            box-shadow:0 8px 22px rgba(6,36,67,.18);
        }

        .preview-meta{
            text-align:left;
            flex:1;
        }

        .preview-meta strong{
            display:block;
            margin-bottom:6px;
        }

        .preview-meta span{
            color:var(--muted);
            font-size:12px;
        }

        .success-box{
            display:none;
            margin-top:22px;
            padding:15px 17px;
            border-radius:13px;
            background:#e9f7f0;
            color:#176742;
            font-weight:700;
            font-size:13px;
        }

        .success-box.show{display:block}

        .footer-note{
            text-align:center;
            color:#8a97a8;
            font-size:12px;
            margin-top:18px;
        }

        @media (max-width:900px){
            body{padding:14px}
            .page-shell{border-radius:20px}
            .hero-right{padding:28px 20px}
            .form-wrap{padding:20px 14px}
        }

        @media (max-width:650px){
            .grid{grid-template-columns:1fr}
            .field.full{grid-column:auto}
            .section-head{padding:22px 18px;align-items:flex-start}
            .section-body{padding:20px 18px}
            .stepper{flex-direction:column}
            .actions{flex-direction:column-reverse}
            .actions button{width:100%}
            .preview-wrap{align-items:flex-start}
            .steps-box {display: block;}
            .steps-box h2 { margin: 15px 0 10px;font-size: 24px;}




        }
        
        @media (max-width:667px) {
            .steps-box h2 {margin: 0 0 8px;font-size: 20px; color: #fff;}
        }
        
        @media (max-width:567px) {
            .steps-box h2 {margin: 10px 0 10px;font-size: 20px;color: #fff;}
        }
