@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap");

@font-face {
  font-family: Doran NoEn;
  font-style: normal;
  font-weight: 800;
  src: url('fonts/woff/DoranNoEn-ExtraBold.woff') format('woff'),
    url('fonts/woff2/DoranNoEn-ExtraBold.woff2') format('woff2');
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input,
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

/* Basic */
@-ms-viewport {
  width: device-width;
}

body {
  -ms-overflow-style: scrollbar;
}

@media screen and (max-width: 480px) {

  html,
  body {
    min-width: 320px;
  }
}

html {
  box-sizing: border-box;
}

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

html,
body {
  height: 100%;
  overflow-x: hidden;
  width: 100%;
}

@media screen and (max-height: 640px) {

  html,
  body {
    height: auto;
    min-height: 100%;
  }
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #0a0a0a;
  background-image: linear-gradient(45deg, #0a0a0a, #1a1a1a);
  padding: 0;
  min-height: 100vh;
  animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body.is-preload *,
body.is-preload *:before,
body.is-preload *:after {
  animation: none !important;
  transition: none !important;
}

body>* {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 736px) {
  body {
    padding: 0;
  }
}

/* BG */
#bg {
  transition: opacity 2s ease-in-out;
  height: 100%;
  left: 0;
  opacity: 0.2;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

#bg div {
  transition: opacity 3s ease-in-out;
  background-size: cover;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 150%;
}

#bg div.visible {
  animation: bg 45s linear infinite;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

#bg div.visible.top {
  z-index: 2;
}

@media screen and (max-width: 736px) {
  #bg div.visible {
    animation: bg 18s linear infinite;
  }
}

#bg div:only-child {
  animation-direction: alternate !important;
}

body.is-preload #bg {
  opacity: 0;
}

@keyframes bg {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

/* Type */
body,
input,
select,
textarea {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: 14pt;
  font-weight: 400;
  line-height: 1.7em;
}

@media screen and (max-width: 736px) {

  body,
  input,
  select,
  textarea {
    font-size: 12pt;
  }
}

@media screen and (max-width: 480px) {

  body,
  input,
  select,
  textarea {
    font-size: 11pt;
  }
}

a {
  transition: color 0.4s ease-in-out, border-bottom-color 0.4s ease-in-out;
  border-bottom: dotted 1px rgba(255, 255, 255, 0.3);
  color: #00D4B6;
  text-decoration: none;
}

a:hover {
  border-bottom-color: transparent;
  color: #26E6C8 !important;
}

strong,
b {
  color: #fff;
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

p {
  margin: 0 0 1.2em 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.3em;
  margin: 0 0 0.6em 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: 3.5em;
  line-height: 1.2em;
}

h2 {
  font-size: 1.6em;
  line-height: 1.4em;
}

h3 {
  font-size: 1.3em;
  line-height: 1.4em;
}

h4 {
  font-size: 1em;
  line-height: 1.4em;
}

h5 {
  font-size: 0.9em;
  line-height: 1.4em;
}

h6 {
  font-size: 0.7em;
  line-height: 1.4em;
}

sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em;
}

sup {
  font-size: 0.8em;
  position: relative;
  top: -0.5em;
}

blockquote {
  border-left: solid 4px rgba(255, 255, 255, 0.3);
  font-style: italic;
  margin: 0 0 1.2em 0;
  padding: 0.5em 0 0.5em 1.2em;
}

code {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  border: solid 1px rgba(255, 255, 255, 0.3);
  font-family: "Courier New", monospace;
  font-size: 0.85em;
  margin: 0 0.25em;
  padding: 0.25em 0.6em;
}

pre {
  -webkit-overflow-scrolling: touch;
  font-family: "Courier New", monospace;
  font-size: 0.85em;
  margin: 0 0 1.2em 0;
}

pre code {
  display: block;
  line-height: 1.7em;
  padding: 1em 1.2em;
  overflow-x: auto;
}

hr {
  border: 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  margin: 1.5em 0;
}

hr.major {
  margin: 2em 0;
}

/* Section/Article */
section.special,
article.special {
  text-align: center;
}

header p {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  margin: 0 0 0.8em 0;
}

header h2+p {
  font-size: 1em;
  margin-top: -0.7em;
  line-height: 1.5em;
}

header h3+p {
  font-size: 0.9em;
  margin-top: -0.6em;
  line-height: 1.5em;
}

header h4+p,
header h5+p,
header h6+p {
  font-size: 0.8em;
  margin-top: -0.5em;
  line-height: 1.5em;
}

@media screen and (max-width: 736px) {
  header br {
    display: inline;
  }
}

@media screen and (max-width: 480px) {
  header br {
    display: none;
  }
}

/* Icon */
.icon {
  text-decoration: none;
  border-bottom: none;
  position: relative;
  transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
}

.icon:hover {
  transform: scale(1.15);
  color: #00D4B6;
}

.icon:before {
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
}



.icon>.label {
  display: none;
}

.icon:before {
  line-height: inherit;
}

.icon.solid:before {
  font-weight: 900;
}

.icon.brands:before {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
  /* This line makes Telegram, WhatsApp, and Instagram appear */
}


/* Social Icons */
ul.icons {
  font-size: 2em;
  cursor: default;
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2em;
  margin-top: 0.5em;
}

ul.icons li {
  display: inline-block;
}

ul.icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  /* background: rgba(255, 255, 255, 0.1); */
  /* border-radius: 50%; */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease-in-out, background 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

ul.icons li a:hover {
  transform: scale(1.4);
  /* background: linear-gradient(45deg, #00D4B6, #26E6C8); */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

ul.icons li .icon:before {
  font-size: 1.5em;
  color: #ffffff;
  transition: color 0.4s ease-in-out;
}

ul.icons li a:hover .icon:before {
  color: #ffffff;
}

@media screen and (max-width: 480px) {
  ul.icons {
    gap: 0.8em;
  }

  ul.icons li a {
    width: 40px;
    height: 40px;
  }

  ul.icons li .icon:before {
    font-size: 1.2em;
  }
}

/* Animations */
.animate-slide-in {
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 0.8s ease-in-out forwards;
}

.animate-slide-in:nth-child(1) {
  animation-delay: 0.1s;
}

.animate-slide-in:nth-child(2) {
  animation-delay: 0.2s;
}

.animate-slide-in:nth-child(3) {
  animation-delay: 0.3s;
}

.animate-slide-in:nth-child(4) {
  animation-delay: 0.4s;
}

.animate-slide-in:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Profile Photo */
.profile-photo {
  display: block;
  margin: 0 auto 2em;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px solid #1d4231;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, border-color 0.4s ease-in-out;
  background: linear-gradient(135deg, #38624e, #1d4231);
  padding: 3px;
  position: relative;
}

.profile-photo:hover {
  transform: scale(1.12);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: #1d4231;
}

@media screen and (max-width: 480px) {
  .profile-photo {
    width: 150px;
    height: 150px;
  }
}

/* Info Container */
.info-container {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
  margin: 1em 0;
  width: 100%;
  padding: 0 1em;
  box-sizing: border-box;
}

.info-item {
  display: flex;
  font-family: "Doran NoEn", sans-serif;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5em 1em;
  border-radius: 20px;
  font-size: 1em;
  font-weight: 500;
  transition: background 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.info-item .icon {
  font-size: 1.2em;
  color: white;
  margin-right: 0.5em;
}

@media screen and (max-width: 480px) {
  .info-container {
    gap: 0.8em;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0 0.5em;
  }

  .info-item {
    font-size: 0.85em;
    padding: 0.4em 0.8em;
    justify-content: center;
    flex: 1;
    min-width: 0;
  }
}

/* Maintenance Notice */
.maintenance-notice {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 8px;
  text-align: center;
  font-family: "Doran NoEn", sans-serif;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  display: inline-block;
  width: auto;
  max-width: 100%;
  animation: pulseButton 2s ease-in-out infinite;
}

.maintenance-notice:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
  animation: none;
}

@keyframes pulseButton {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  }

  50% {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
  }
}

.maintenance-notice .icon {
  margin-right: 8px;
  color: white;
}

@media screen and (max-width: 480px) {
  .maintenance-notice {
    padding: 12px 16px;
    font-size: 0.9em;
    margin: 15px 0;
    width: 90%;
  }
}

.companyLogosOr {
  display: inline;
}

.companiesLogos {
  display: inline-block;
  margin: 0 0.5em;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.companiesLogos:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 480px) {
  .companiesLogos {
    width: 40px;
    height: 40px;
  }
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Header */
#header {
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2em;
  width: 100%;
  overflow-x: hidden;
}

#header h1 {
  text-transform: uppercase;
  font-size: 3.5em;
  margin: 0 0 0.5em 0;
  background: white;
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 5s ease-in-out infinite alternate;
}

#header h1 .persian-title {
  display: block;
  font-family: "Doran NoEn", sans-serif;
  font-size: 1em;
  text-transform: none;
  margin-top: 0.3em;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  font-weight: 800;
}

#header p {
  font-size: 1.4em;
  line-height: 1.5em;
}

#header a {
  color: inherit;
}

@media screen and (max-width: 736px) {
  #header h1 {
    font-size: 2.5em;
  }

  #header p {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 480px) {
  #header {
    padding: 1em;
    min-height: auto;
    padding-top: 2em;
    padding-bottom: 3em;
  }

  #header h1 {
    font-size: 2em;
    max-width: 100%;
    word-wrap: break-word;
  }

  #header p {
    font-size: 1em;
    max-width: 100%;
  }
}

@keyframes gradientText {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 2em;
  font-size: 1.8em;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s ease-in-out infinite;
  transition: color 0.4s ease-in-out;
}

.scroll-down:hover {
  color: #00D4B6;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

/* Footer */
#footer {
  transition: opacity 0.5s ease-in-out;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  position: absolute;
  bottom: 4em;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: fadeInUp 1s ease-in-out 1s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }

  to {
    opacity: 0.5;
    transform: translate(-50%, 0);
  }
}

#footer .icons {
  margin: 0 0 0.5em 0;
}

#footer .copyright {
  font-size: 0.8em;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 0.75em;
  flex-wrap: nowrap;
  /* ADD THIS LINE TO PREVENT WRAPPING */
}

#footer .copyright li {
  /* NEW LINES TO ADD: */
  display: inline-block;
  white-space: nowrap;
  /* ------------------- */

  border-left: solid 1px rgba(255, 255, 255, 0.25);
  line-height: 1em;
  padding-left: 0.7em;
  /* Completing the line from the snippet */
  /* ...other styles... */
}

#footer .copyright li:first-child {
  border-left: 0;
  padding-left: 0;
}

#footer .copyright a {
  color: inherit;
}

#footer:hover {
  opacity: 1;
}

#footer> :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1680px) {
  #footer {
    bottom: 3.5em;
  }
}

@media screen and (max-width: 736px) {
  #footer {
    bottom: 2em;
  }
}

@media screen and (max-width: 360px) {
  #footer {
    bottom: 1.25em;
  }
}

@media screen and (max-height: 640px) {
  #footer {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 2em 0 0 0;
    animation: none;
    opacity: 0.5;
  }
}