/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f1f1f1;
    font-family: 'Arial', sans-serif;
}

.preloader {
    position: relative;
}

/* Circular Loader */
.loader {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(#f07e6e, #84cdfa, #5ad1cd);
    position: relative;
    animation: animate 1.5s linear infinite;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(#f07e6e, #84cdfa, #5ad1cd);
}

.loader span:nth-child(1) {
    filter: blur(5px);
}

.loader span:nth-child(2) {
    filter: blur(10px);
}

.loader span:nth-child(3) {
    filter: blur(25px);
}

.loader span:nth-child(4) {
    filter: blur(50px);
}

.loader:after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #f1f1f1;
    border-radius: 50%;
}

/* Centered Image Styling */
.center-image {
    position: absolute;
    top: 49%;
    left: 49%;
    transform: translate(-50%, -50%);
    width: 254px; /* Adjust this size based on your image */
    height: 254px;
    border-radius: 50%;
    object-fit: cover;
     z-index:-1;
}
.flex-div
{
    display: flex;
    flex-direction: column;
}
/**********************************css for the text"loading", percentage etc*/
/* Loading content */
.loading-content {
    text-align: center;
    width: 90%;
    max-width: 500px;
    position: relative;
    left:20px;
    top: 35px;
}

.preloader-1 {
    text-align: center;
}

.progress-container {
    width: 100%;
    margin-top: 2rem;
}

.progress-bar {
    width: 0%;
    height: 8px;
    background-color: #ff0000;
    transition: width 0.1s ease, background-color 0.5s ease;
    border-radius: 5px;
}

.progress-percentage {
    position: relative;
    top:10px;
    margin-top: 0.5rem;
    font-size: 1.2rem;
    color: #0077b5;
}

.loading-text {
    font-size: 23px;
    margin-top: 1rem;
    color: #0077b5;
}