@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body {
    scrollbar-width: thin; /* Specify the width of the scrollbar */
    scrollbar-color: #111827 #f4f4f4; /* Specify the color of the scrollbar */
    overflow-y: scroll; /* Add scrollbar to the whole page */
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #111827; /* Color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background-color: #f4f4f4; /* Color of the scrollbar thumb */
}
::-webkit-scrollbar-thumb:hover {
    background-color: #c7c7c7; /* Color of the scrollbar thumb */
    cursor: grab;
}

*{
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    background-color: #111827;
    border: 1px solid white;
    color: rgb(249, 191, 0);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
}

.scroll-to-top-btn:hover {
    background-color: #463a0d;
}


.loader-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    /* background-color: rgba(255, 255, 255, 0.5); semi-transparent white background */
    z-index: 9999; /* ensures the loader appears above other content */
    backdrop-filter: blur(10px); /* Apply a blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.content {
    display: hidden; /* Initially hide content */
}


/* Define the rotation animation */
@keyframes rotateStar {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Apply the animation to the image with ID star_img */
#star_img {
    animation: rotateStar 30s linear infinite; /* Adjust duration and timing function as needed */
}