/* Add these styles to your CSS file */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1.5s ease-out;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in {
  animation: slideIn 1.5s ease-out;
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.scale-in {
  animation: scaleIn 1.5s ease-out;
}



/* Make sure elements are hidden by default */
.fade-in-up, .slide-in, .scale-in {
  opacity: 0;
  transform: translateY(50px); /* or translateX, depending on the animation */
}

.visible {
  opacity: 1 !important;
  transform: translateY(0) !important; /* Reset to original state */
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

#animated-text {
    display: inline-block;
    border-right: 2px solid black;
    padding-right: 5px;
    white-space: nowrap;
    animation: typing 5s steps(40) 1s 1 normal both, blink 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}





    /* Container for spinning text */
    .spinner-container {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      overflow: hidden;
      position: relative;
    }

    /* Spinning text styling */
    .spinner {
      font-size: 2rem;
      font-weight: bold;
      color: #3498db; /* You can change the color */
      animation: spinText 5s linear infinite;
      position: absolute;
      bottom: -100%;
    }

    /* Animation for spinning text */
    @keyframes spinText {
      0% {
        bottom: -100%;
      }
      50% {
        bottom: 50%;
      }
      100% {
        bottom: 100%;
      }
    }
    
    
    
    
    
    
    
    
    
    
    
    
/*dotted-line-world-map-png  */  
    
    
    
      .blurred-bg-container {
    position: relative;
    overflow: hidden;
  }

  .blurred-bg-container::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
   
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: 0;
  }

  .blurred-bg-container > * {
    position: relative;
    z-index: 1;
  }
    
    
    
    
    
    
    
    
    
    
    
    
    
    