:root {
  --ah-bg-dark: #05060E;
  --ah-purple: #5049DE;
  --ah-purple-dark: #322CA8;
  --ah-purple-hover-from: #4039C3;
  --ah-purple-hover-to: #2820A0;
  --ah-gold: #E8B550;
  --ah-gold-light: #FECF7C;
  --ah-gold-dark: #C18C38;
  --ah-navy: #1B1F4A;
  --ah-footer-bg: #1C1651;
}

.ah-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  padding-top: .75rem;
  direction: ltr;
}

.ah-container { max-width: 77rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 768px) { .ah-container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .ah-container { padding-left: 2.5rem; padding-right: 2.5rem; } }

.ah-bar {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(5,6,14,.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 32px -8px rgba(0,0,0,.65), inset 0 0 0 1px rgba(255,255,255,.06);
}
.ah-bar::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(80,73,222,.5), transparent);
  pointer-events: none;
}
.ah-bar::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(232,181,80,.35), transparent);
  pointer-events: none;
}

.ah-bar-inner {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 0.4rem 1rem; /*92 80*/
}
@media (min-width: 768px) { .ah-bar-inner { padding: 0.86rem 1.5rem; } } /*0.93913*/
@media (min-width: 1024px) { .ah-bar-inner { flex-direction: row; } }


.ah-toggle {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: .75rem;
  color: rgba(255,255,255,.8);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
  transition: .2s;
  cursor: pointer;
  background: transparent;
  border: none;
}
.ah-toggle:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(232,181,80,.4);
}
.ah-toggle svg { height: 1.25rem; width: 1.25rem; }
@media (min-width: 1024px) {
  .ah-toggle { display: none; }
}

.ah-auth-desktop {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: .5rem 1.25rem;
  font-size: .875rem;
  font-weight: 700;
  transition: .2s;
  background: linear-gradient(to left, var(--ah-purple), var(--ah-purple-dark));
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(80,73,222,.55);
  text-decoration: none;
}
.ah-auth-desktop:hover {
  background: linear-gradient(to left, var(--ah-purple-hover-from), var(--ah-purple-hover-to));
}
.ah-auth-desktop.is-dashboard {
  background: linear-gradient(to left, var(--ah-gold), var(--ah-gold-light), var(--ah-gold-dark));
  color: var(--ah-navy);
  box-shadow: 0 8px 24px -6px rgba(232,181,80,.5);
}
@media (min-width: 1024px) {
  .ah-auth-desktop { display: inline-flex; }
}

.ah-nav-desktop {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  align-items: center;
  gap: .25rem;
}
@media (min-width: 1024px) {
  .ah-nav-desktop { display: flex; }
}
.ah-nav-desktop a {
  position: relative;
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: .2s;
}
.ah-nav-desktop a:hover { background: rgba(255,255,255,.05); color: #fff; }
.ah-nav-desktop a.is-active { font-weight: 700; color: var(--ah-gold-light); }

.ah-nav-indicator {
  position: absolute;
  bottom: -.25rem;
  left: 50%;
  height: .125rem;
  width: 2rem;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: linear-gradient(to left, var(--ah-gold), var(--ah-gold-light), var(--ah-gold-dark));
  box-shadow: 0 0 12px 2px rgba(232,181,80,.45);
}

.ah-brand {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: .625rem;
}
.ah-brand a { border-radius: .75rem; padding: .25rem; transition: .2s; display: inline-flex; }
.ah-brand a:hover { background: rgba(255,255,255,.04); }

.ah-logo { height: 1.75rem; width: auto; display: block; }
@media (min-width: 768px) { .ah-logo { height: 2.5rem; } }
.ah-rajaei-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  background: #fff;
  padding: .25rem;
}
@media (min-width: 768px) { .ah-rajaei-badge { padding: .375rem; } }
.ah-rajaei { height:1rem; width: auto; display: block; }
@media (min-width: 768px) { .ah-rajaei { height: 2.25rem; } }

.ah-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(5,6,14,.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  cursor: pointer;
  border: none;
  padding: 0;
}
#menu-toggle:checked ~ .ah-overlay { display: block; }
@media (min-width: 1024px) {
  .ah-overlay { display: none !important; }
}

.ah-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  height: 100%;
  width: min(88vw, 360px);
  transform: translateX(100%);
  transition: transform .3s ease-out;
  pointer-events: none;
  direction: ltr;
}
#menu-toggle:checked ~ .ah-mobile-menu {
transform: translateX(0);
pointer-events: auto;
}
@media (min-width: 1024px) {
  .ah-mobile-menu { display: none; }
}

.ah-mobile-panel {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-top-left-radius: 1.75rem;
  border-bottom-left-radius: 1.75rem;
  border-left: 1px solid rgba(232,181,80,.25);
  background: rgba(5,6,14,.95);
  padding: 1.5rem;
  box-shadow: -12px 0 48px -8px rgba(0,0,0,.85);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
}
.ah-mobile-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.ah-mobile-panel::after {
  content: "";
  position: absolute;
  top: -5rem;
  left: -4rem;
  height: 12rem;
  width: 12rem;
  border-radius: 9999px;
  background: rgba(80,73,222,.25);
  filter: blur(64px);
  pointer-events: none;
}
.ah-mobile-glow2 {
  position: absolute;
  right: -2.5rem;
  bottom: 0;
  height: 10rem;
  width: 10rem;
  border-radius: 9999px;
  background: rgba(232,181,80,.12);
  filter: blur(64px);
  pointer-events: none;
}

.ah-mobile-top {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ah-mobile-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.ah-mobile-brand a {
  display: inline-flex;
  align-items: center;
}

.ah-mobile-logo {
  width: 120px;
  height: 45px;
  object-fit: contain;
  display: block;
}

.ah-mobile-rajaei-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: .6rem;
  background: #fff;
  padding: 0;
  flex-shrink: 0;
}

.ah-mobile-rajaei {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.ah-mobile-close {
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  color: rgba(255,255,255,.7);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
  transition: .2s;
  cursor: pointer;
}
.ah-mobile-close:hover { background: rgba(255,255,255,.06); color: #fff; }
.ah-mobile-close svg { height: 1.25rem; width: 1.25rem; }

.ah-mobile-auth {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: .75rem 0;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(to left, var(--ah-purple), var(--ah-purple-dark));
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(80,73,222,.55);
}
.ah-mobile-auth.is-dashboard {
  background: linear-gradient(to left, var(--ah-gold), var(--ah-gold-light), var(--ah-gold-dark));
  color: var(--ah-navy);
  box-shadow: 0 10px 28px -8px rgba(232,181,80,.5);
}

.ah-mobile-divider {
  position: relative;
  margin-bottom: 1.5rem;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(255,255,255,.15), transparent);
}

.ah-mobile-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  text-align: right;
  direction: rtl;
}
.ah-mobile-nav a {
  border-radius: .75rem;
  padding: .875rem 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: .2s;
  display: block;
}
.ah-mobile-nav a:hover { background: rgba(255,255,255,.05); color: #fff; }
.ah-mobile-nav a.is-active {
  background: rgba(232,181,80,.12);
  font-weight: 700;
  color: var(--ah-gold-light);
  box-shadow: inset 0 0 0 1px rgba(232,181,80,.35);
}

:root {
  --au-radius: 1.25rem;
  --au-radius-sm: .75rem;
  --au-border: rgba(80,73,222,.3);
  --au-border-strong: rgba(255,255,255,.16);
  --au-surface: rgba(255,255,255,.03);
  --au-surface-2: rgba(25, 10, 60, 0.65);
  --au-text-muted: rgba(255,255,255,.65);
  --au-text-dim: rgba(255,255,255,.45);
}

*, *::before, *::after { box-sizing: border-box; }

html { background: var(--ah-bg-dark); }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Meem", "Vazirmatn", Arial, Helvetica, sans-serif;
  color: rgba(255,255,255,.88);
  padding-top: 4.5rem;
  background: linear-gradient(180deg, rgba(5,6,52,1) 0%, rgba(57,6,147,1) 100%);
  background-image: url("../images/bg-rotated.jpg");
  background-repeat: repeat;
  background-size: contain;
  background-attachment: fixed;
}
@media (min-width: 768px) { body { padding-top: 7rem; } }

a { color: inherit; }
img { max-width: 100%; }

.au-container { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .au-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .au-container { padding: 0 2.5rem; } }

.au-card {
  position: relative;
  border-radius: var(--au-radius);
  border: 1px solid var(--au-border);
  background: var(--au-surface-2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px -24px rgba(0,0,0,.65);
}

.au-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 9999px;
  padding: .6rem 1.5rem;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  transition: .2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.au-btn-primary {
  background: linear-gradient(to left, var(--ah-purple), var(--ah-purple-dark));
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(80,73,222,.5);
}
.au-btn-primary:hover { background: linear-gradient(to left, var(--ah-purple-hover-from), var(--ah-purple-hover-to)); }
.au-btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.au-btn-outline:hover { border-color: var(--ah-gold); color: var(--ah-gold-light); }
.au-btn-gold {
  background: linear-gradient(to left, var(--ah-gold), var(--ah-gold-light), var(--ah-gold-dark));
  color: var(--ah-navy);
  box-shadow: 0 8px 24px -6px rgba(232,181,80,.45);
}

.au-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: .3rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  background: linear-gradient(to left, var(--ah-purple), var(--ah-purple-dark));
  color: #fff;
  white-space: nowrap;
}

.au-input-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  border-radius: 9999px;
  border: 1px solid var(--au-border-strong);
  background: rgba(255,255,255,.04);
  padding: .65rem 1.15rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.au-input-wrap input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
}
.au-input-wrap input::placeholder { color: rgba(255,255,255,.4); }
.au-input-wrap button { background: none; border: none; padding: 0; display: flex; cursor: pointer; }
.au-input-wrap img { width: 1.15rem; height: 1.15rem; opacity: .85; }

.au-heading { color: #fff; font-weight: 800; margin: 0; }
.au-muted { color: var(--au-text-muted); }

.pagination { margin: 2.5rem 0 1rem; }
.pagination .nav-links { display: flex; align-items: center; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 .75rem;
  border-radius: .75rem;
  border: 1px solid var(--au-border);
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .875rem;
  transition: .2s;
}
.pagination .page-numbers:hover { border-color: var(--ah-gold); color: #fff; }
.pagination .page-numbers.current {
  background: linear-gradient(to left, var(--ah-purple), var(--ah-purple-dark));
  border-color: transparent;
  color: #fff;
  font-weight: 700;
}
.pagination .page-numbers.dots { border: none; }

.af-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.af-rocket-wrap {
  pointer-events: none;
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.af-jet {
  pointer-events: none;
  width: 5rem;
  transform: translateY(30px);
  user-select: none;
}
@media (min-width: 640px) { .af-jet { width: 6rem; } }
@media (min-width: 768px) { .af-jet { width: 7.25rem; } }

.af-smoke {
  pointer-events: none;
  width: 1000px;
  height: 225px;
  max-width: none;
  margin-left: 6.5rem;
  transform: translateY(30px);
  user-select: none;
}
@media (min-width: 768px) { .af-smoke { margin-left: 8.75rem; } }

.af-cloud {
  pointer-events: none;
  position: absolute;
  bottom: -2.75rem;
  z-index: 10;
  width: 100%;
  user-select: none;
}
@media (min-width: 640px) { .af-cloud { bottom: -3.5rem; } }
@media (min-width: 768px) { .af-cloud { bottom: -4.5rem; } }
@media (min-width: 1024px) { .af-cloud { bottom: -7.5rem; } }
@media (min-width: 1536px) { .af-cloud { bottom: -17rem; } }

.af-main {
  position: relative;
  z-index: 10;
  width: 100%;
  background: var(--ah-footer-bg);
  padding: 3rem 2rem 0;
  direction: ltr;
}
@media (min-width: 1024px) { .af-main { padding-left: 5rem; padding-right: 5rem; } }

.af-row {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-evenly;
  gap: 7.5rem;
}
@media (min-width: 1024px) { .af-row { flex-direction: row; } }

.af-col {
  /* Note: no `direction: rtl` here — .af-main below is intentionally LTR
   *    (mirrors the main site's un-dir'd layout), so `align-items: flex-end`
   *    needs an LTR context to resolve to the right edge, matching the design. */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.af-seal-col { gap: 1rem; font-size: .875rem; line-height: 1.6; }
@media (min-width: 1024px) { .af-seal-col { min-width: 10rem; } }

.af-contact-col { width: 100%; }
@media (min-width: 1024px) { .af-contact-col { width: 40%; } }
.af-contact-col h3 { margin: 0 0 1rem; font-size: 1.125rem; font-weight: 700; color: var(--ah-purple); }
.af-contact-details { display: flex; flex-direction: column; align-items: flex-end; gap: .25rem; font-size: .875rem; }
.af-contact-details p { margin: 0; }
.af-contact-details .row { display: flex; align-items: center; gap: .25rem; }

.af-social-col { width: 100%; }
@media (min-width: 1024px) { .af-social-col { width: 40%; } }
.af-social-col h3 { margin: 0 0 1rem; font-size: 1.125rem; font-weight: 700; color: var(--ah-purple); }
.af-social-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: flex-end; gap: .75rem; font-size: .875rem; }
.af-social-list li { display: flex; align-items: center; gap: .5rem; }
.af-social-list a { color: #fff; text-decoration: none; transition: .2s; font-size: .875rem; }
.af-social-list a:hover { color: #bbbad7; }
@media (min-width: 1024px) { .af-social-list a { font-size: 1rem; } }
.af-social-list img { margin-right: .5rem; width: 1rem; height: 1rem; }

.af-about-col { width: 100%; gap: 1rem; }
@media (min-width: 1024px) { .af-about-col { max-width: 40%; } }
.af-about-col img { margin: 0 auto; display: block; }
@media (min-width: 1024px) { .af-about-col img { margin: 0; } }
.af-about-col p { margin: 0; text-align: justify; text-align-last: right; line-height: 2rem; font-size: .875rem; }
@media (min-width: 1024px) { .af-about-col p { font-size: 1rem; } }

.af-bottom {
  position: relative;
  z-index: 10;
  width: 100%;
  background: var(--ah-footer-bg);
  padding: 1.5rem 0;
  text-align: center;
  font-size: .75rem;
  color: rgba(255,255,255,.8);
}
