

  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #cd9824 #ffffff;
    scroll-behavior: smooth;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #cd9824;
    border-radius: 10px;
    border: 26px solid #ffffff;
  }

html {
    overflow:hidden;
}
#loader-body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    height: 100vh;
    overflow: hidden; /* Prevent scrolling */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
    color: #fff;
    background: linear-gradient(-45deg, #0b0b0b, #2c3e50, #34495e, #2c3e50);
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
    position: absolute; /* To overlap content */
    top: 0; left: 0; right: 0; bottom: 0; /* Fill viewport */
    opacity: 1; /* Set initial opacity */
    transition: opacity 0.5s ease; /* Fade transition */
    z-index: 1; /* Loader on top */
}

#contents {
    opacity: 0; /* Initially hidden */
    position: absolute; /* Overlap loader */
    top: 0; left: 0; right: 0; bottom: 0; /* Fill viewport */
    justify-content: center; /* Center content */
    align-items: center; /* Center content */
    z-index: 0; /* Below loader */
    transition: opacity 0.5s ease; /* Fade transition */
}

.loader-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.loader {
    margin: 20px;
    position: relative;
}

/* Loader 11: Loading Dots */
.loader11 {
    display: flex;
    justify-content: space-between;
    width: 80px;
}

.loader11 div {
    width: 15px;
    height: 15px;
    background-color: #3498db;
    border-radius: 50%;
    animation: dot-flashing 1.5s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.6);
}

.loader11 div:nth-child(2) {
    animation-delay: 0.3s;
}

.loader11 div:nth-child(3) {
    animation-delay: 0.6s;
}

.loader11 div:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes dot-flashing {
    0%, 20%, 80%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
