body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
  }

  /* Splash Screen Styles */
  .splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #7aa2c2; /* Light blue background */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
  }

  /* Ripple Loader Styles */
  .loader {
    position: relative;
    width: 60px;
    height: 60px;
  }

  .loader span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: ripple 1.5s infinite ease-in-out;
  }

  .loader span:nth-child(2) {
    animation-delay: 0.3s;
  }

  .loader span:nth-child(3) {
    animation-delay: 0.6s;
  }

  @keyframes ripple {
    0% {
      transform: translate(-50%, -50%) scale(0.5);
      opacity: 1;
    }
    100% {
      transform: translate(-50%, -50%) scale(3);
      opacity: 0;
    }
  }

  /* Loading Text */
  .loading-text {
    font-size: 24px;
    color: white;
    margin-top: 20px;
  }

  /* Progress Percentage */
  .progress {
    font-size: 50px;
    font-weight: bold;
    color: white;
    position: fixed;
    bottom: 10%;
    right: 10%;
  }

  /* Main Content */
  .main-content {
    position: fixed;
    top: -100%; /* Start off-screen */
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* Main content background */
    display: none; /* Initially hidden */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: slideDown 1.5s forwards; /* Slide down animation */
    z-index: 1;
  }

  h1, p {
    margin: 0;
    padding: 0;
    text-align: center;
  }

  /* Keyframes for main content sliding down */
  @keyframes slideDown {
    0% {
      top: -100%;
    }
    100% {
      top: 0;
    }
  }
