body {
    font-family: 'Inter', sans-serif;
    background: #f4f7fb;
    color: #172033;
}

/* NAVBAR */

.custom-navbar {
    background: linear-gradient(135deg, #0a3040, #0d8b55);
    padding-top: 14px;
    padding-bottom: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.logo-image-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6px;
}

.navbar-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-title {
    color: white;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.brand-subtitle {
    color: rgba(255,255,255,0.78);
    font-size: 12px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.82);
    font-weight: 500;
    transition: 0.2s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: white;
}

/* FOOTER */

.footer-modern {
    background: #081c24;
    color: white;
    padding: 60px 0 25px;
    margin-top: 80px;
}

.footer-modern h5,
.footer-modern h6 {
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-modern p {
    color: #b7c6cf;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b7c6cf;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 35px 0 20px;
}

.footer-copy {
    color: #9bb0bc;
    font-size: 14px;
}
.dashboard-wrapper {
    background: #f4f7fb;
    min-height: 100vh;
}

.dashboard-header-modern {
    background: white;
    border-radius: 22px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(16,24,40,0.05);
}

.hero-modern {
    background: linear-gradient(135deg, #0c7a43, #0a3040);
    border-radius: 28px;
    padding: 50px;
    color: white;
    overflow: hidden;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.14);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    max-width: 760px;
}

.hero-text {
    max-width: 720px;
    color: #dcefe6;
    font-size: 17px;
    line-height: 1.7;
}

.status-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 28px;
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #20c76a;
    margin-bottom: 14px;
    box-shadow: 0 0 18px #20c76a;
}

.dashboard-module {
    display: block;
    background: white;
    border-radius: 22px;
    padding: 28px;
    height: 100%;
    text-decoration: none;
    color: #172033;
    border: 1px solid #edf1f6;
    transition: 0.28s ease;
    box-shadow: 0 10px 30px rgba(16,24,40,0.05);
}

.dashboard-module:hover {
    transform: translateY(-6px);
    color: #172033;
    box-shadow: 0 20px 42px rgba(16,24,40,0.10);
}

.module-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    margin-bottom: 22px;
}

.module-icon.green {
    background: linear-gradient(135deg, #1dbf73, #0d8b55);
}

.module-icon.blue {
    background: linear-gradient(135deg, #2677ff, #0052d9);
}

.module-icon.orange {
    background: linear-gradient(135deg, #ffb020, #ff7b00);
}

.module-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #5b21b6);
}

.module-icon.cyan {
    background: linear-gradient(135deg, #06b6d4, #0284c7);
}

.module-icon.dark {
    background: linear-gradient(135deg, #334155, #0f172a);
}

.module-icon.red {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.dashboard-module h5 {
    font-weight: 800;
    margin-bottom: 12px;
}

.dashboard-module p {
    color: #667085;
    line-height: 1.6;
    min-height: 72px;
}

.dashboard-module span {
    color: #0d8b55;
    font-weight: 700;
}

@media (max-width: 768px) {

    .dashboard-header-modern {
        display: block;
    }

    .dashboard-header-modern .btn {
        margin-top: 15px;
    }

    .hero-modern {
        padding: 35px;
    }

    .hero-title {
        font-size: 34px;
    }
}
.hero-home {
    min-height: 88vh;

    background-image:
        linear-gradient(
            rgba(5, 18, 26, 0.72),
            rgba(5, 18, 26, 0.72)
        ),
        url('/static/images/cure.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.hero-overlay {
    width: 100%;
    padding: 80px 0;
}

.hero-content {
    max-width: 760px;
    color: white;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.14);
    padding: 10px 18px;
    border-radius: 999px;
    margin-bottom: 24px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #d8e7ee;
    margin-bottom: 36px;
    max-width: 680px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
.service-card-modern {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(16,24,40,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(16,24,40,0.14);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 24px;
}

.service-content h5 {
    font-weight: 800;
    margin-bottom: 14px;
}

.service-content p {
    color: #667085;
    line-height: 1.7;
    margin-bottom: 0;
}