@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

:root{
  --r: 18px;
  --shadow: 0 18px 45px rgba(0,0,0,.08);
  --glass: rgba(255,255,255,.78);
}

html,body{height:100%}
body{
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(13,110,253,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(111,66,193,.18), transparent 55%),
    radial-gradient(1000px 600px at 50% 100%, rgba(25,135,84,.12), transparent 55%),
    #f6f7fb;
}

.hero{
  background: linear-gradient(135deg, #61f7a2, #024d07);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero::after{
  content:"";
  position:absolute; inset:-60px -80px auto auto;
  width:220px; height:220px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  filter: blur(1px);
}

.card{
  border:0;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  background: var(--glass);
}

.form-control, .form-select{
  border-radius: 14px;
  padding: .75rem .9rem;
  border: 1px solid rgba(0,0,0,.08);
}
.form-control:focus, .form-select:focus{
  box-shadow: 0 0 0 .2rem rgba(13,110,253,.15);
  border-color: rgba(13,110,253,.35);
}

.section-title{
  display:flex; align-items:center; justify-content:space-between;
  gap:.75rem;
}
.section-title .title{
  font-weight:700; font-size:1.05rem;
}
.small-hint{ color:#6c757d; font-size:.92rem; }

.badge-pill{
  border-radius:999px;
  padding:.45rem .7rem;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.35);
}

.btn{
  border-radius: 14px;
  padding:.72rem 1rem;
}
.btn-primary{
  box-shadow: 0 12px 25px rgba(13,110,253,.22);
}

.file-card{
  border:1px dashed rgba(0,0,0,.12);
  border-radius: 14px;
  padding: .85rem;
  background: rgba(255,255,255,.55);
}

.footer-note{
  color:#6c757d;
  font-size:.92rem;
}
