* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0b0f19;
    color: #fff;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #111827;
    border-bottom: 1px solid #1f2937;
}

.logo {
    height: 55px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

nav a:hover {
    color: #38bdf8;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(to bottom, #111827, #0b0f19);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #38bdf8;
}

.hero p {
    font-size: 18px;
    color: #ccc;
}

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background: #38bdf8;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #0ea5e9;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #38bdf8;
}

.stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.stat-box {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.stat-box h2 {
    font-size: 40px;
    color: #38bdf8;
}

.dashboard-card {
    background: #111827;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

footer {
    background: #111827;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

.footer-logo {
    width: 60px;
    margin-bottom: 10px;
}

footer h4 {
    margin-bottom: 10px;
    color: #38bdf8;
}

footer a {
    display: block;
    margin-bottom: 6px;
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: #38bdf8;
}

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    color: #555;
    font-size: 14px;
}

@media(max-width:768px){
    header {
        flex-direction: column;
    }

    nav {
        margin-top: 15px;
    }

    .stats {
        flex-direction: column;
    }
}