/* =========================================
   LOCAL FONT: VAZIRMATN
   ========================================= */

@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* =========================================
   ROOT COLORS
   ========================================= */
:root{
  --brand:#0b5ed7;
  --brand2:#0a58ca;
  --soft:#eaf2ff;
}

/* =========================================
   GLOBAL
   ========================================= */
body{
  font-family: "Vazirmatn", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.bg-soft{ 
  background: radial-gradient(1200px 600px at 10% 0%, var(--soft), #f7f9ff) fixed; 
}

/* =========================================
   NAVBAR / LOGO
   ========================================= */
.nav-glow{
  background: linear-gradient(90deg, var(--brand2), var(--brand));
  box-shadow: 0 10px 30px rgba(11,94,215,.25);
}

.nav-logo{
  height:28px;
  width:auto;
  max-width:120px;
  object-fit:contain;
  border-radius:10px;
  background:#fff;
  padding:4px;
}

/* =========================================
   CARDS / GLASS EFFECT
   ========================================= */
.card{
  border:0;
  border-radius: 20px;
}

.glass{
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-soft{ 
  border-radius: 14px; 
}

/* =========================================
   BRAND LOGO BIG
   ========================================= */
.brand-logo{
  height:52px;
  width:auto;
  max-width:160px;
  object-fit:contain;
  background:#fff;
  border-radius: 16px;
  padding:6px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

/* =========================================
   ANIMATIONS / TRANSITIONS
   ========================================= */
.brand-fade{
  opacity: 0;
  transform: translateY(8px);
  transition: all .6s ease;
}
.brand-visible{
  opacity: 1;
  transform: translateY(0);
}

.form-fade{
  opacity: 0;
  transform: translateY(10px);
  transition: all .45s ease;
  pointer-events:none;
}
.form-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events:auto;
}

/* =========================================
   BG / TABLE / FOOTER
   ========================================= */
.bg-soft-primary{
  background: rgba(11,94,215,.10);
  border: 1px solid rgba(11,94,215,.15);
}

.table{ margin-bottom:0; }

.rounded-4{ 
  border-radius: 18px !important; 
}

footer{ 
  opacity:.95; 
}
