#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Glowing Ring */
.ring {
    width: 150px;
    height: 150px;
    border: 4px solid transparent;
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Logo Styling */
.loader-logo {
    width: 80px;
    height: auto;
    animation: pulse 1.5s infinite;
}

html {
    scroll-behavior: smooth;
}
  

/* Spinning Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Pulsing Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Hide Content Until Loader is Removed */
#content {
    display: none;
}