@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&display=swap');

*{box-sizing:border-box}
body{
    margin:0;
    font-family:'Cairo',Tahoma,sans-serif;
    direction:rtl;
    background:linear-gradient(135deg,#eef4fb,#ffffff);
    color:#0b2347;
}

.header{
    background:linear-gradient(135deg,#062b5f,#0b4f9c);
    color:white;
    padding:25px 40px;
    border-bottom:6px solid #c99a2e;
    box-shadow:0 8px 25px #0002;
}

.header h1{
    margin:0;
    font-size:34px;
    font-weight:900;
}

.header p{
    margin:8px 0 0;
    color:#f5d47b;
    font-size:18px;
}

.container{
    width:92%;
    max-width:1200px;
    margin:35px auto;
}

.card{
    background:white;
    border-radius:22px;
    padding:30px;
    box-shadow:0 10px 30px #0b234720;
    border:1px solid #e5edf7;
    margin-bottom:25px;
}

.hero{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:25px;
    align-items:center;
}

.hero-title{
    font-size:42px;
    font-weight:900;
    color:#062b5f;
    margin-bottom:10px;
}

.gold{
    color:#c99a2e;
}

.btn{
    display:inline-block;
    background:linear-gradient(135deg,#0b4f9c,#062b5f);
    color:white;
    padding:13px 28px;
    border-radius:14px;
    text-decoration:none;
    border:none;
    cursor:pointer;
    font-weight:700;
    box-shadow:0 8px 18px #062b5f35;
}

.btn.gold-btn{
    background:linear-gradient(135deg,#d6a842,#b98219);
}

input,select,textarea{
    width:100%;
    padding:13px;
    margin:8px 0 16px;
    border:1px solid #d7e1ef;
    border-radius:12px;
    font-family:'Cairo';
    font-size:15px;
}

label{
    font-weight:700;
    color:#062b5f;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
}

.stat{
    background:linear-gradient(135deg,#062b5f,#0b4f9c);
    color:white;
    border-radius:20px;
    padding:24px;
    text-align:center;
    border-bottom:5px solid #c99a2e;
}

.stat h2{
    margin:0;
    font-size:36px;
    color:#f5d47b;
}

.table{
    width:100%;
    border-collapse:collapse;
    background:white;
    border-radius:18px;
    overflow:hidden;
}

.table th{
    background:#062b5f;
    color:white;
    padding:14px;
}

.table td{
    padding:13px;
    border-bottom:1px solid #edf2f7;
}

.badge{
    padding:6px 14px;
    border-radius:20px;
    background:#f4d47d;
    color:#062b5f;
    font-weight:700;
}

.footer{
    text-align:center;
    padding:18px;
    color:#60708a;
}

@media(max-width:800px){
    .hero{grid-template-columns:1fr}
    .hero-title{font-size:30px}
    .header h1{font-size:24px}
}