*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#0b1020;
    color:white;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
    font-size:28px;
    font-weight:800;
    color:#4f8cff;
}

.nav-links{
    display:flex;
    gap:30px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#c7d0e4;
}

.nav-buttons{
    display:flex;
    gap:12px;
}

.btn-primary{
    background:#4f8cff;
    color:white;
    border:none;
    padding:12px 22px;
    border-radius:10px;
    cursor:pointer;
}

.btn-secondary{
    background:transparent;
    color:white;
    border:1px solid #4f8cff;
    padding:12px 22px;
    border-radius:10px;
    cursor:pointer;
}

.hero{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
}

.hero-content{
    max-width:900px;
}

.badge{
    display:inline-block;
    background:#162443;
    color:#8fb5ff;
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:25px;
}

.hero h1{
    font-size:4rem;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    font-size:1.2rem;
    color:#b6c1d8;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
}

.features{
    padding:100px 8%;
}

.features h2{
    text-align:center;
    margin-bottom:50px;
    font-size:2.5rem;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:#141b34;
    padding:30px;
    border-radius:18px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card h3{
    margin-bottom:15px;
}

.card p{
    color:#b6c1d8;
}

.workflow{
    padding:100px 8%;
    text-align:center;
}

.workflow h2{
    margin-bottom:50px;
    font-size:2.5rem;
}

.steps{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.step{
    background:#141b34;
    padding:25px;
    width:180px;
    border-radius:15px;
}

.step span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#4f8cff;
    font-weight:bold;
    margin-bottom:15px;
}

footer{
    padding:50px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.08);
    color:#b6c1d8;
}

footer h3{
    color:white;
    margin-bottom:10px;
}
.dashboard{
padding:50px 8%;
}

.dashboard h1{
margin-bottom:40px;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-bottom:50px;
}

.stat-card{
background:#141b34;
padding:30px;
border-radius:15px;
}

.stat-card h2{
font-size:2.5rem;
margin-bottom:10px;
}

.module-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.module-card{
background:#141b34;
padding:30px;
border-radius:15px;
cursor:pointer;
transition:0.3s;
}

.module-card:hover{
transform:translateY(-5px);
}
.page-container{
padding:50px 8%;
}

.page-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;
}

.page-header h1{
font-size:2.5rem;
margin-bottom:8px;
}

.page-header p{
color:#b6c1d8;
}

.app-form{
background:#141b34;
padding:25px;
border-radius:16px;
display:flex;
gap:15px;
flex-wrap:wrap;
margin-bottom:30px;
}

.app-form input,
.app-form select{
background:#0b1020;
border:1px solid #2a355d;
color:white;
padding:12px;
border-radius:10px;
}

.hidden{
display:none;
}

.table-wrapper{
background:#141b34;
border-radius:16px;
overflow:hidden;
}

table{
width:100%;
border-collapse:collapse;
}

th{
text-align:left;
padding:20px;
background:#1b2547;
}

td{
padding:20px;
border-top:1px solid rgba(255,255,255,0.05);
}

tr:hover{
background:#1a2240;
}
.module-card{
background:#141b34;
padding:30px;
border-radius:15px;
cursor:pointer;
transition:0.3s;
text-decoration:none;
color:white;
display:block;
}

.module-card:hover{
transform:translateY(-5px);
}
.status{
padding:6px 12px;
border-radius:999px;
font-size:0.85rem;
font-weight:600;
}

.waiting{
background:#1f3a5f;
color:#7fb5ff;
}

.positive{
background:#1f4d34;
color:#5cff96;
}

.negative{
background:#5c2222;
color:#ff8080;
}

.followup{
background:#5a4414;
color:#ffd76b;
}
.notes-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));
gap:20px;
}

.note-card{
background:#141b34;
padding:25px;
border-radius:16px;
}

.note-card h3{
margin-bottom:10px;
}

.note-card p{
margin-top:15px;
color:#c7d0e4;
line-height:1.6;
white-space:pre-wrap;
}

.note-university{
display:inline-block;
background:#22335f;
padding:6px 12px;
border-radius:999px;
font-size:0.85rem;
color:#8fb5ff;
}

textarea{
width:100%;
background:#0b1020;
border:1px solid #2a355d;
color:white;
padding:15px;
border-radius:10px;
resize:vertical;
}

.delete-btn{
margin-top:15px;
background:#c0392b;
border:none;
padding:10px 15px;
border-radius:8px;
color:white;
cursor:pointer;
}
/* ===================================
   APPLICATIONS V2
=================================== */

.applications-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(420px,1fr));
gap:25px;
margin-top:30px;
}

.application-card{
background:#141b34;
padding:25px;
border-radius:18px;
border:1px solid rgba(255,255,255,0.05);
transition:0.3s;
}

.application-card:hover{
transform:translateY(-4px);
}

.card-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:15px;
}

.card-top h3{
font-size:1.4rem;
margin-bottom:5px;
}

.card-top p{
color:#b6c1d8;
}

.status-badge{
background:#22335f;
color:#8fb5ff;
padding:8px 14px;
border-radius:999px;
font-size:0.85rem;
font-weight:600;
}

.deadline{
color:#c7d0e4;
margin-bottom:15px;
}

/* ===================================
   PROGRESS BAR
=================================== */

.progress-bar{
height:12px;
background:#0b1020;
border-radius:999px;
overflow:hidden;
margin-bottom:10px;
}

.progress-fill{
height:100%;
background:#4f8cff;
border-radius:999px;
transition:0.5s;
}

.progress-text{
font-size:0.9rem;
color:#b6c1d8;
margin-bottom:20px;
}

/* ===================================
   CARD BUTTONS
=================================== */

.card-buttons{
display:flex;
gap:10px;
margin-bottom:15px;
}

.card-buttons button{
cursor:pointer;
}

/* ===================================
   DETAILS
=================================== */

.details-section{
display:none;
margin-top:15px;
padding-top:15px;
border-top:1px solid rgba(255,255,255,0.08);
}

.detail-row{
display:flex;
justify-content:space-between;
padding:10px 0;
border-bottom:1px solid rgba(255,255,255,0.05);
}

.detail-row span:first-child{
font-weight:600;
}

.detail-row span:last-child{
color:#8fb5ff;
}

/* ===================================
   DELETE BUTTON
=================================== */

.delete-btn{
background:#c0392b;
border:none;
padding:12px 18px;
border-radius:10px;
color:white;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.delete-btn:hover{
background:#a93226;
}

/* ===================================
   FORM IMPROVEMENTS
=================================== */

.app-form label{
width:100%;
font-weight:600;
margin-top:10px;
color:#c7d0e4;
}

.app-form select{
background:#0b1020;
border:1px solid #2a355d;
color:white;
padding:12px;
border-radius:10px;
min-width:220px;
}

.app-form input{
min-width:220px;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px){

.card-top{
flex-direction:column;
align-items:flex-start;
gap:10px;
}

.card-buttons{
flex-direction:column;
}

.applications-grid{
grid-template-columns:1fr;
}

}
/* ==================================
   DEADLINES PAGE
================================== */

.deadlines-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));
gap:20px;
margin-top:30px;
}

.deadline-card{
background:#141b34;
padding:25px;
border-radius:16px;
border-left:6px solid #4f8cff;
transition:0.3s;
}

.deadline-card:hover{
transform:translateY(-4px);
}

.deadline-card h3{
margin-bottom:10px;
font-size:1.2rem;
}

.deadline-card p{
margin-bottom:8px;
color:#c7d0e4;
}

.deadline-card span{
display:inline-block;
margin-top:10px;
font-weight:600;
}

/* ==================================
   OVERDUE
================================== */

.deadline-overdue{
border-left:6px solid #e74c3c;
}

.deadline-overdue span{
color:#ff6b6b;
}

/* ==================================
   THIS WEEK
================================== */

.deadline-week{
border-left:6px solid #f39c12;
}

.deadline-week span{
color:#ffd166;
}

/* ==================================
   NORMAL
================================== */

.deadline-normal{
border-left:6px solid #2ecc71;
}

.deadline-normal span{
color:#5cff96;
}

/* ==================================
   MOBILE
================================== */

@media(max-width:768px){

.deadlines-grid{
grid-template-columns:1fr;
}

}

.finder-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));
gap:20px;
margin-top:30px;
}

.finder-card{
background:#141b34;
padding:25px;
border-radius:16px;
text-decoration:none;
color:white;
transition:0.3s;
border:1px solid rgba(255,255,255,0.05);
}

.finder-card:hover{
transform:translateY(-5px);
}

.finder-card h3{
margin-bottom:10px;
}

.finder-card p{
color:#b6c1d8;
}

/* ==================================
   LANDING PAGE STATS
================================== */

.stats-showcase{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));
gap:20px;
padding:60px 8%;
}

.stat-box{
background:#141b34;
padding:30px;
border-radius:18px;
text-align:center;
transition:0.3s;
}

.stat-box:hover{
transform:translateY(-5px);
}

.stat-box h2{
font-size:2.5rem;
margin-bottom:10px;
color:#4f8cff;
}

.stat-box p{
color:#c7d0e4;
font-size:1rem;
}

/* ==================================
   WHY GRADOS
================================== */

.why-grados{
padding:80px 10%;
text-align:center;
max-width:1000px;
margin:auto;
}

.why-grados h2{
font-size:2.5rem;
margin-bottom:25px;
}

.why-grados p{
font-size:1.15rem;
line-height:1.8;
color:#c7d0e4;
}

/* ==================================
   FEATURE CARDS IMPROVEMENT
================================== */

.card{
background:#141b34;
padding:25px;
border-radius:18px;
transition:0.3s;
border:1px solid rgba(255,255,255,0.05);
}

.card:hover{
transform:translateY(-6px);
}

.card h3{
margin-bottom:12px;
}

.card p{
color:#c7d0e4;
line-height:1.6;
}

/* ==================================
   HERO IMPROVEMENTS
================================== */

.hero{
padding:120px 8%;
text-align:center;
}

.hero-content{
max-width:850px;
margin:auto;
}

.hero h1{
font-size:4rem;
line-height:1.15;
margin-bottom:25px;
}

.hero p{
font-size:1.2rem;
color:#c7d0e4;
max-width:700px;
margin:auto;
margin-bottom:35px;
}

.badge{
display:inline-block;
padding:10px 18px;
background:#22335f;
border-radius:999px;
color:#8fb5ff;
margin-bottom:25px;
font-weight:600;
}

/* ==================================
   BUTTONS
================================== */

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
text-decoration:none;
}

/* ==================================
   WORKFLOW
================================== */

.workflow{
padding:80px 8%;
text-align:center;
}

.workflow h2{
margin-bottom:40px;
}

.steps{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

.step{
background:#141b34;
padding:25px;
border-radius:18px;
width:180px;
}

.step span{
display:flex;
align-items:center;
justify-content:center;
width:50px;
height:50px;
border-radius:50%;
background:#4f8cff;
font-weight:700;
font-size:1.2rem;
margin:auto;
margin-bottom:15px;
}

/* ==================================
   FOOTER
================================== */

footer{
margin-top:80px;
padding:50px;
text-align:center;
border-top:1px solid rgba(255,255,255,0.08);
}

footer p{
color:#c7d0e4;
margin-top:10px;
}

/* ==================================
   MOBILE
================================== */

@media(max-width:768px){

.hero h1{
font-size:2.5rem;
}

.hero p{
font-size:1rem;
}

.stats-showcase{
grid-template-columns:1fr 1fr;
}

.steps{
flex-direction:column;
align-items:center;
}

.step{
width:100%;
max-width:300px;
}

}
/* ==============================
   WELCOME PAGE
============================== */

.welcome-container{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:20px;
}

.welcome-card{
background:#141b34;
padding:40px;
border-radius:20px;
width:100%;
max-width:500px;
text-align:center;
}

.welcome-card h1{
margin-bottom:15px;
}

.welcome-card p{
margin-bottom:25px;
color:#c7d0e4;
}

.welcome-card input{
width:100%;
padding:14px;
margin-bottom:15px;
border-radius:10px;
border:1px solid #2a355d;
background:#0b1020;
color:white;
font-size:1rem;
}

.welcome-card button{
width:100%;
margin-top:10px;
}

/* ==============================
   USER EMAIL
============================== */

#userEmailDisplay{
color:#8fb5ff;
margin-top:10px;
margin-bottom:20px;
}

/* ==========================
   GLOBAL SEARCH
========================== */

.search-section{
margin-bottom:30px;
}

#globalSearch{
width:100%;
padding:15px;
border-radius:12px;
border:none;
background:#141b34;
color:white;
font-size:1rem;
}

#searchResults{
margin-top:15px;
display:flex;
flex-direction:column;
gap:10px;
}

.search-result{
background:#141b34;
padding:15px;
border-radius:12px;
border-left:4px solid #4f8cff;
}

.search-result h4{
margin-bottom:5px;
}

.search-result p{
color:#c7d0e4;
}
/* ==========================
   SEARCH SECTION
========================== */

.search-section{
display:flex;
gap:12px;
margin-bottom:25px;
align-items:center;
flex-wrap:wrap;
}

#globalSearch{
flex:1;
padding:14px 18px;
border:none;
border-radius:12px;
background:#141b34;
color:white;
font-size:1rem;
outline:none;
}

#globalSearch:focus{
box-shadow:0 0 0 2px #4f8cff;
}

#searchBtn{
padding:14px 24px;
border:none;
border-radius:12px;
background:linear-gradient(
135deg,
#4f8cff,
#6ca7ff
);
color:white;
font-weight:600;
font-size:1rem;
cursor:pointer;
transition:0.3s;
}

#searchBtn:hover{
transform:translateY(-2px);
box-shadow:
0 8px 20px rgba(79,140,255,0.35);
}

#searchBtn:active{
transform:scale(0.97);
}
/* ==========================
   SETTINGS PAGE
========================== */

.settings-card{
max-width:600px;
margin:30px auto;
background:#141b34;
padding:30px;
border-radius:16px;
}

.settings-card label{
display:block;
margin-top:15px;
margin-bottom:8px;
font-weight:600;
}

.settings-card input{
width:100%;
padding:14px;
border:none;
border-radius:10px;
background:#0d1428;
color:white;
font-size:1rem;
margin-bottom:10px;
}

.settings-card button{
margin-top:15px;
width:100%;
}
.fee-display{
margin-top:8px;
font-weight:600;
color:#4f8cff;
}

/* =====================
   QUOTE CARD
===================== */

.quote-card{

background:#141b34;

padding:20px;

border-radius:16px;

margin-bottom:25px;

}

.quote-card h3{

margin-bottom:10px;

}

.quote-card p{

font-size:1.05rem;

line-height:1.6;

color:#d5dff7;

}
.chart-card{

background:#141b34;

padding:25px;

border-radius:16px;

margin-top:25px;

margin-bottom:25px;

}

.chart-card h3{

margin-bottom:20px;

}

#applicationsChart{

max-height:350px;

}
.logo-container{
display:flex;
align-items:center;
gap:12px;
}

.dashboard-logo{
width:42px;
height:42px;
object-fit:contain;
}

.logo-text{
font-size:1.8rem;
font-weight:700;
color:#4f8cff;
}
.support-section{

display:grid;

grid-template-columns:
repeat(
auto-fit,
minmax(300px,1fr)
);

gap:20px;

margin-top:30px;

}

.support-card{

background:#141b34;

padding:25px;

border-radius:16px;

transition:0.3s;

}

.support-card:hover{

transform:translateY(-3px);

}

.support-card h3{

margin-bottom:15px;

}

.support-card p{

color:#d5dff7;

line-height:1.6;

}
