*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background: linear-gradient(135deg,#232F3E,#1b2430);
    min-height:100vh;
    padding:40px;
    color:white;
}

.project-page{
    max-width:1400px;
    margin:auto;
}

/* TOP NAV */

.top-nav{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:40px;
}

.top-nav h2{
    font-size:2rem;
    color:#FEBD69;
}

.back-btn{
    width:50px;
    height:50px;
    border:none;
    border-radius:14px;
    background:rgba(255,255,255,0.1);
    color:white;
    cursor:pointer;
    font-size:1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:0.3s;
}

.back-btn:hover{
    background:#FEBD69;
    color: #232F3E;
}

/* HERO */

.hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.hero-text{
    padding-right:40px;
}

.tag{
    background:#FEBD69;
    color:#232F3E;
    padding:10px 18px;
    border-radius:30px;
    font-size:0.9rem;
    font-weight: bold;
    display:inline-block;
    margin-bottom:25px;
}

.hero-text h1{
    font-size:3.5rem;
    line-height:1.1;
    margin-bottom:25px;
    color: white;
}

.hero-text p{
    color:#cbd5e1;
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:40px;
}

/* STATS */

.hero-stats{
    display:flex;
    gap:20px;
}

.hero-card{
    flex:1;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    padding:25px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.08);
}

.hero-card h3{
    font-size:1.5rem;
    margin-bottom:10px;
    color: #FEBD69;
}

.hero-card p {
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* FORM */

.form-box{
    background:white;
    color:#1e293b;
    padding:40px;
    border-radius:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.2);
}

.form-box h2{
    margin-bottom:30px;
    font-size:2rem;
    color: #232F3E;
}

.input-group{
    margin-bottom:25px;
}

.input-group label{
    display:block;
    margin-bottom:10px;
    font-weight:bold;
    color: #232F3E;
}

.input-group input,
.input-group select,
.input-group textarea{
    width:100%;
    padding:16px;
    border:1px solid #cbd5e1;
    border-radius:15px;
    outline:none;
    font-size:1rem;
}

.input-group textarea{
    resize:none;
}

.double-input{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

/* UPLOAD */

.upload-box{
    border:2px dashed #94a3b8;
    padding:40px;
    border-radius:20px;
    text-align:center;
    margin-bottom:30px;
    position:relative;
}

.upload-box i{
    font-size:3rem;
    color:#FEBD69;
    margin-bottom:15px;
}

.upload-box p{
    color:#64748b;
    margin-top:10px;
}

.upload-box input {
    position:absolute;
    inset:0;
    opacity:0;
    cursor:pointer;
}

/* BUTTON */

.submit-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:16px;
    background:#232F3E;
    color:white;
    font-size:1rem;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.submit-btn:hover{
    background:#FEBD69;
    color: #232F3E;
    transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:1100px){
    .hero{
        grid-template-columns:1fr;
    }

    .hero-text{
        padding-right:0;
    }
}

@media(max-width:700px){
    body{
        padding:20px;
    }

    .hero-text h1{
        font-size:2.8rem;
    }

    .double-input{
        grid-template-columns:1fr;
    }

    .hero-stats{
        flex-direction:column;
    }

    .form-box{
        padding:25px;
    }
}
