body{
	margin:0;
	padding:0;
	display:flex;
	flex-direction:column;
	align-items:center;
	font-family: sans-serif; /* Makes it look modern */
    	background-image: linear-gradient(135deg, #ffffff, #e7f4ff); /* Light background color from image */
    	min-height: 100vh;

}
.main{

	max-width:600px;
	width: 90%;
	margin: 30px auto;	
	align-items:center;
}
.heading h1{
	text-align: center;
	justify-content:center;	
}
.highlight{
	color:blue;
}
.heading h3{
	font-weight:200;	
}
.uploadBox{
	border: 2px dashed #cbd5e1;
	border-radius:10px;
	padding:20px;
	align-items:center;
	text-align: center;
	display:flex;
	flex-direction:column;
	background:white;
	transition: all 0.3s ease;
        cursor: pointer;
        margin-bottom: 30px;
}
.uploadBox:hover {
            border-color: #2563eb;
            background-color: #f0f7ff;
}
.uploadIcon{
	display:inline-block;
	margin-bottom: 15px;
	font-size:1.5rem;
}
.browseLink {
            
        font-weight: 600;
        text-decoration: none;
        }
.fileTypes {
        margin: 10px;
        font-size: rem;
            
        }

.formRow{
	display:flex;
	gap:20px;
	margin-bottom: 25px;
}
.formColumn{
	display:flex;
	flex-direction:column;
	flex:1;
}
label{
	font-size:1rem;
	font-weight:600;
	margin-bottom:10px;
	text-align:left;
}
select{
	border: 1px solid #e5e7eb;
	padding:10px;
	border-radius:10px;
	background:white;
	font-size:1rem;
	cursor:pointer;
	
}

select:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.tipsBox{
	display:flex;
	flex-direction:column;
	background-color: #eff6ff; /* Light blue bg */
        border: 1px solid #dbeafe;
        border-radius: 8px;
	padding:20px;
	margin-bottom:10px;
}
.tipsTitle{
	font-weight:600;
	font-size:1.1rem;
	gap: 8px;
}
.tipsList{
	color: #4b5563;
            font-size: 0.9rem;
            line-height: 1.6;
}
.continueBtn{
	width:100%;
	margin:10px;
	padding:15px;
	cursor:pointer;
	align-items:center;
	border-radius:10px;
	border:none;
	font-weight:600;
	color:white;
	background:blue;
	transition:all 0.2s ease;
	
}
.continueBtn:hover{
	background:#1d4ed8
	
}


/* Container centered and widened */
.progress-container {
    width: 250px; 
    height: 250px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Remove any background or border that creates a square look */
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

.circular-progress {
    position: relative;
    width: 40%;
    height: 40%;
    background: transparent;
}

.circular-progress svg {
    transform: rotate(-90deg); /* Starts the fill at the top */
    width: 100%;
    height: 100%;
    display: block; /* Prevents tiny alignment gaps */
    overflow: visible; /* Allows the glow to expand outside the SVG box */
}

/* The background track */
.progress-track {
    fill: none;
    stroke: rgba(0, 0, 0, 0.05); /* Very light gray for visibility on white background */
    stroke-width: 5; 
}

/* The filling bar with a glowing head */
.progress-fill {
    fill: none;
    stroke: blue; /*This is handled in HTML for SVG but I hard coded to blue commented in html SVG linear Gradient */
    stroke-width: 7; /* Slightly thicker than the track for a premium feel */
    stroke-linecap: round;
    stroke-dasharray: 283; 
    stroke-dashoffset: 283; 
    transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    /* Filter creates the glow that makes it look organic */
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.5)); 
}

/* Percentage text styling */
.progress-status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Inter', sans-serif;
    color: #3b82f6;
    font-size: 1.2rem; /* Adjusted for impact */
    font-weight: 800;
    letter-spacing: -1px; /* Modern tight spacing */
}

/* Ensure the overlay is a perfect center */
.loader-overlay {
    display: none; 
    position: fixed;
    inset: 0;
    background: white; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}



/* --- TEXT STYLING --- */
.loader-content {
    text-align: center;
	margin-top: -70px;
}

#loader-text {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
    /* Shimmer effect on text */
    background:black; /*linear-gradient(90deg, #fff, #3b82f6, #fff);*/
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* animation: text-shine 3s linear infinite; */
}

#loader-subtext {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 5px;
    opacity: 0.6;
}

/* linear-gradient(90deg, #8b5cf6, #3b82f6, #06b6d4);*/

/* --- ANIMATIONS --- */

/* This creates the "shifting liquid" look by rotating an irregular blob */
@keyframes liquid-rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes core-breath {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes text-shine {
    to { background-position: 200% center; }
}
