
.card{
  border:none;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.form-control{
  border-radius:14px;
  padding:14px 16px;
  border:1px solid #ddd;
}
.form-control, textarea{
  border-radius:14px;
  padding:14px 16px;
  border:1px solid #ddd;
}
.form-control:focus{
  border-color:#007aff;
  box-shadow:0 0 0 4px rgba(0,122,255,.15);
}
 .form-control:focus, textarea:focus{
  border-color:#007aff;
  box-shadow:0 0 0 4px rgba(0,122,255,.15);
}
.step-title{
 font-weight:700;
 margin-bottom:15px;
}
.file-preview{
  background:#fff;
  border:1px solid #ddd;
  border-radius:12px;
  padding:10px 15px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:10px;
}

 
 
.file-card{
  border:1px solid #ddd;
  border-radius:14px;
  padding:10px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#fff;
}
.file-card img{
  max-height:80px;
  border-radius:8px;
}
 
 
 
.fixed-progress{
  backdrop-filter: blur(10px);
}

.water-progress{
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 12px;
  background: #e5e5ea;
  border-radius: 12px;
  overflow: hidden;
}

.water-fill{
  width: 0%;
  height: 100%;
  background: linear-gradient(
    120deg,
    #4d332d,
    #f4ca4e,
    #2f4823
  );
  background-size: 200% 100%;
  animation: waterFlow 2s linear infinite;
  transition: width 0.6s ease;
  position: relative;
}

/* subtle bubbles */
.water-fill::after{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.4) 2px, transparent 3px),
    radial-gradient(circle at 60% 40%, rgba(255,255,255,.35) 2px, transparent 3px),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,.3) 2px, transparent 3px);
  animation:bubbles 3s infinite linear;
}

@keyframes waterFlow{
  0%{ background-position: 0% }
  100%{ background-position: 200% }
}

@keyframes bubbles{
  0%{transform:translateX(0)}
  100%{transform:translateX(-20px)}
}

.section-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  margin-bottom:16px;
}

.section-title i{
  font-size:1.25rem;
  color:#007aff; /* iOS blue */
}

.section-title i{
  background:#95a717;
  color:#ffda72;
  padding:6px 8px;
  border-radius:10px;
}




/* ================= HEADER ================= */
.top-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

/* layout */
.header-inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 5px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* LEFT */
.logo{
  height: 70px;
}

/* CENTER */
.header-center{
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.header-title{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

/* PROGRESS BAR */
.fixed-progress{
  width: 100%;
}

.water-progress{
  width: 100%;
  max-width: 600px;
  height: 10px;
  background: #e5e5ea;
  border-radius: 12px;
  overflow: hidden;
}

 
/* RIGHT */
.header-right{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* animated text */
.submit-note{
  font-size: 14px;
  font-weight: 600;
  color: #407638;
  white-space: nowrap;
  animation: slideLR 1.8s ease-in-out infinite;
}

/* animation */
@keyframes slideLR{
  0%   { transform: translateX(0); opacity: .6; }
  50%  { transform: translateX(10px); opacity: 1; }
  100% { transform: translateX(0); opacity: .6; }
}

/* MOBILE */
@media (max-width: 768px){
  .header-title{
    font-size: 15px;
  }
  .submit-note{
    display: none;
  }
}










/* ================= STEP 2 ================= */


