/* ======================
TOOL PAGE
====================== */

.tool-page{
padding:80px 20px;
text-align:center;
}

.tool-page h1{
font-size:34px;
margin-bottom:10px;
}

.tool-page p{
color:#666;
margin-bottom:30px;
}


/* ======================
UPLOAD BOX ADVANCED
====================== */

.upload-box{
border:2px dashed #ddd;
background:#fff;
padding:50px;
border-radius:14px;
max-width:550px;
margin:auto;
cursor:pointer;
transition:0.3s;
}

.upload-box:hover{
border-color:#e53935;
background:#fff5f5;
}

.upload-icon{
font-size:40px;
margin-bottom:10px;
}


/* ======================
FILE LIST
====================== */

.file-list{
margin-top:25px;
max-width:600px;
margin-left:auto;
margin-right:auto;
}

.file-item{
background:#fff;
padding:12px 18px;
border-radius:8px;
margin-bottom:10px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.file-name{
font-size:14px;
color:#444;
}

.remove-file{
color:#e53935;
cursor:pointer;
font-size:14px;
}


/* ======================
ACTION BUTTON
====================== */

.action-btn{
margin-top:25px;
padding:12px 28px;
background:#111;
color:#fff;
border:none;
border-radius:8px;
font-size:15px;
cursor:pointer;
transition:0.25s;
}

.action-btn:hover{
background:#333;
}


/* ======================
CONVERT TOOLS GRID
====================== */

.convert-section{
padding:70px 0;
text-align:center;
}

.convert-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

.convert-card{
background:#fff;
padding:30px;
border-radius:14px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
transition:0.25s;
}

.convert-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.convert-card a{
text-decoration:none;
color:#333;
display:block;
}

.convert-card h3{
margin-top:10px;
font-size:18px;
}


/* ======================
PROGRESS BAR
====================== */

.progress-bar{
width:100%;
height:8px;
background:#eee;
border-radius:10px;
margin-top:10px;
overflow:hidden;
}

.progress{
height:100%;
width:0;
background:#e53935;
}


/* ======================
ALL TOOLS PAGE
====================== */

.all-tools{
padding:70px 0;
}

.all-tools h1{
text-align:center;
margin-bottom:40px;
}

.tools-grid-large{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.tool-big{
background:#fff;
padding:35px;
border-radius:14px;
box-shadow:0 5px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.tool-big:hover{
transform:translateY(-6px);
}


/* ======================
SMOOTH ANIMATIONS
====================== */

.tool-card,
.convert-card,
.tool-big{
transition:all 0.25s ease;
}


/* ======================
MOBILE IMPROVEMENTS
====================== */

@media (max-width:768px){

.convert-grid{
grid-template-columns:1fr;
}

.tools-grid{
grid-template-columns:1fr;
}

.upload-box{
padding:35px;
}

}