/* Preloader Styling */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .bar-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .bar {
    width: 10px;
    height: 50px;
    background: linear-gradient(45deg, #ec1f28, #ff8c00);
    border-radius: 5px;
    animation: bounce 1.2s infinite ease-in-out;
  }
  
  .bar:nth-child(1) {
    animation-delay: 0s;
  }
  .bar:nth-child(2) {
    animation-delay: 0.2s;
  }
  .bar:nth-child(3) {
    animation-delay: 0.4s;
  }
  .bar:nth-child(4) {
    animation-delay: 0.6s;
  }
  .bar:nth-child(5) {
    animation-delay: 0.8s;
  }
  
  h1 {
    color: #000;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-in-out infinite;
    padding-top: 10px;
  }
  
  /* Hide Content Initially */
  #content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  /* Animations */
  @keyframes bounce {
    0%, 100% {
      transform: scaleY(1);
    }
    50% {
      transform: scaleY(2);
    }
  }
  
  @keyframes fadeIn {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }