  /*صفحه اول index*/
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Farda', sans-serif;
  background-color: rgb(19, 171, 156);
  background-repeat: on-repeat;
  color: white;
  height: 100vh;
}

body ::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgha(0, 0, 0, 0.5);
    z-index: -1;
}

.loader-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  animation: fadeIn 1.5s ease;
}

.logo span {
  color: #00e5ff;
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 30px;
    font-weight: bold;
    margin-top:30px ;
    animation: slideUp 2s ease-out forwards;
}

.loader-bar {
  width: 260px;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  overflow: hidden;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: #ffffff;
  animation: load 4s linear forwards;
}

.loading-text {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.logo{
    font-size: 3rem;
    font-weight: bold;
    margin-top:30px ;
    animation: slideUp 2s ease-out forwards;
}

/* انیمیشن‌ها */
@keyframes load {
  to { width: 100%; }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ریسپانسیو */
@media (max-width: 600px) {
  .logo {
    font-size: 1.7rem;
  }
}

@keyframes slideUp{
    from{
        opacity: 0;
        transform: translateY(50px);

    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
/*--------------------------*/

