body{
    background:linear-gradient(135deg,#f5f7fa,#e4ecf7);
    min-height:100vh;
    font-family:Arial, sans-serif;
}

/* Navbar */
.glass-nav{
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);
}

/* Footer */
.footer-glass{
    background:rgba(255,255,255,.5);
    backdrop-filter:blur(10px);
}

/* Cards */
.card-pro{
    background:white;
    border:none;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.25s;
}

.card-pro:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

/* Buttons */
.btn-pro{
    border-radius:12px;
    padding:10px 18px;
    font-weight:600;
}

/* Stats cards */
.stat-box{
    padding:25px;
    border-radius:18px;
    color:white;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

/* Timeline */
.timeline{
    border-left:4px solid #0d6efd;
    padding-left:18px;
}

.timeline-step{
    margin-bottom:20px;
    position:relative;
}

.timeline-step::before{
    content:'';
    width:14px;
    height:14px;
    border-radius:50%;
    background:#0d6efd;
    position:absolute;
    left:-26px;
    top:4px;
}

/* Dark Mode */
.dark-mode{
    background:#111 !important;
    color:#eee !important;
}

.dark-mode .card-pro{
    background:#1d1d1d;
    color:#eee;
}

.dark-mode .footer-glass{
    background:#1d1d1d;
}