@font-face {
  font-family: 'IRANSans';
  src : url("fonts/IRANSansFaNum/eot/IRANSansWeb(FaNum).eot"), url('fonts/IRANSansFaNum/woff/IRANSansWeb(FaNum).woff') format('woff'), url('fonts/IRANSansFaNum/ttf/IRANSansWeb(FaNum).ttf') format('truetype'), url("fonts/IRANSansFaNum/woff2/IRANSansWeb(FaNum).woff2") format('woff2');
}

body{
    direction: rtl;
    font-family: 'IRANSans';
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b5fb3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loading-logo {
  width: 120px;
  animation: fadeIn 2s ease-in-out infinite;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.5);
  border-top: 5px solid white;
  border-radius: 50%;
  margin-top: 20px;
  animation: spin 1s linear infinite;
}

.loading-text {
  color: white;
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
