
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#f2f2f2;
}

/* HERO SECTION */

.hero{

    width:100%;
    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?q=80&w=1974&auto=format&fit=crop');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    color:white;
    padding:20px;
}

.hero-content{
    max-width:1000px;
}

.hero-content h1{

    font-size:90px;
    margin-bottom:20px;
}

.hero-content p{

    font-size:28px;
    line-height:1.6;
    margin-bottom:50px;
}

.hero-boxes{

    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.hero-box{

    background:white;
    color:black;

    width:350px;

    padding:35px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.hero-box h3{

    font-size:30px;
    margin-bottom:10px;
}

.hero-box p{

    font-size:18px;
    margin:0;
}

/* FORM SECTION */

.container{

    width:100%;
    max-width:1100px;
    margin:40px auto;
    background:#fff;
    padding:30px;
    border:1px solid #ccc;
}

.top{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:20px;
}

.logo{

    width:120px;
    height:120px;
    border-radius:50%;
    border:2px solid #999;
    overflow:hidden;
}

.logo img{

    width:100%;
    height:100%;
    object-fit:cover;
}

.title{

    text-align:center;
    flex:1;
    padding:0 20px;
}

.title h1{

    font-size:32px;
    margin-bottom:10px;
}

.title h3{

    font-size:22px;
    font-weight:normal;
    margin-bottom:10px;
}

.title p{

    font-size:18px;
    line-height:1.5;
}

.photo-box{

    width:150px;
    text-align:center;
}

.photo-box img{

    width:120px;
    height:140px;
    border:2px solid #666;
    object-fit:cover;
}

.photo-box p{

    font-size:14px;
    margin-bottom:5px;
}

.app-no{

    font-size:24px;
    font-weight:bold;
    margin:20px 0;
}

.section{

    border:2px solid #444;
    margin-bottom:15px;
}

.row{

    display:flex;
    border-bottom:1px solid #444;
}

.row:last-child{
    border-bottom:none;
}

.label{

    width:35%;
    padding:12px;
    border-right:1px solid #444;
    background:#fafafa;
    font-weight:bold;
}

.value{

    width:65%;
    padding:12px;
}

.two-col{

    display:flex;
    gap:15px;
    margin-bottom:15px;
}

.box{

    flex:1;
    border:2px solid #444;
    padding:15px;
}

.box h4{

    margin-bottom:10px;
    font-size:18px;
}

.footer{

    margin-top:30px;
    line-height:1.8;
    font-size:15px;
}

.signature{

    margin-top:50px;
    text-align:right;
    font-weight:bold;
}

.print-btn{

    margin-top:25px;
    text-align:center;
}

button{

    padding:12px 25px;
    font-size:18px;
    border:none;
    background:green;
    color:#fff;
    cursor:pointer;
    border-radius:5px;
}

button:hover{
    background:#0b5d0b;
}

@media(max-width:768px){

    .hero-content h1{
        font-size:50px;
    }

    .hero-content p{
        font-size:20px;
    }

    .hero-box{
        width:100%;
    }

    .top{
        flex-direction:column;
        align-items:center;
    }

    .title{
        margin:20px 0;
    }

    .row{
        flex-direction:column;
    }

    .label,.value{
        width:100%;
    }

    .label{
        border-right:none;
        border-bottom:1px solid #444;
    }

    .two-col{
        flex-direction:column;
    }
}


.profile-form{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #e9eef5;
}

.form-row{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:18px;
}

.form-row label{
    width:240px;
    font-size:15px;
    font-weight:600;
    color:#1e293b;
}

.form-row input {
    flex: 1;
    height: 50px;
    border: 1px solid #d9e3ef;
    background: #f8fbff;
    border-radius: 12px;
    padding: 11px 18px;
    font-size: 15px;
    color: #334155;
    transition: .3s;
}

.form-row input:hover{
    background:#fff;
    border-color:#2563eb;
}

.form-row input:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.15);
}

.form-row input[readonly]{
    cursor:default;
}

@media(max-width:768px){

.form-row{
    flex-direction:column;
    align-items:flex-start;
}

.form-row label{
    width:100%;
    margin-bottom:8px;
}

.form-row input{
    width:100%;
}

}

/* Two Column Layout */

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin:25px 0;
}

/* Card */

.form-box{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:22px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

/* Label */

.form-box label{
    display:block;
    font-size:17px;
    font-weight:700;
    color:#111827;
    margin-bottom:12px;
}

/* Select */

.form-box select{
    width:100%;
    height:55px;
    padding:0 18px;
    font-size:15px;
    color:#374151;
    border:1px solid #d1d5db;
    border-radius:10px;
    background:#f9fafb;
    cursor:pointer;
    appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 18px center;
    background-size:15px;
    transition:.3s;
}

.form-box select:hover{
    border-color:#2563eb;
    background:#fff;
}

.form-box select:focus{
    outline:none;
    border-color:#2563eb;
    background:#fff;
    box-shadow:0 0 0 4px rgba(37,99,235,.15);
}

/* Mobile */

@media(max-width:768px){

.form-grid{
    grid-template-columns:1fr;
}

}