/* Preloader container */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
  }
  
  /* Logo */
  .logo {
    width: 150px; /* Adjust size */
    height: auto;
    margin-bottom: 20px; /* Space between logo and dots */
  }
  
  /* Dots container */
  .dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Dots */
  .dot {
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    margin: 0 5px; /* Space between dots */
    animation: bounce-custom 0.8s infinite ease-in-out;
  }
  
  /* Animate each dot with a delay */
  .dot:nth-child(1) {
    animation-delay: 0s;
  }
  .dot:nth-child(2) {
    animation-delay: 0.2s;
  }
  .dot:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  /* Bouncing animation */
  @keyframes bounce-custom {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px); 
    }
  }
  