:root {
    --smpdc-ink: #172033;
    --smpdc-muted: #667085;
    --smpdc-blue: #1f4f8f;
    --smpdc-gold: #d59b2d;
    --smpdc-green: #1e7a5b;
    --smpdc-cloud: #f5f7fb;
    --smpdc-line: rgba(23, 32, 51, 0.12);
    --smpdc-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

body {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 420px);
    color: var(--smpdc-ink);
    font-family: 'Poppins', sans-serif;
}

.header {
    background: rgba(255, 255, 255, 0.94) !important;
    border-bottom: 1px solid rgba(31, 79, 143, 0.12);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
    left: 0;
    position: fixed !important;
    right: 0;
    top: 0;
    backdrop-filter: blur(16px);
    width: 100%;
    z-index: 11000;
}

body {
    padding-top: 86px;
}

.smpdc-top-strip {
    position: relative;
    z-index: 1;
}

.header .container {
    max-width: 1440px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
}

.header_logo {
    min-width: 150px;
}

.header_nav {
    min-width: 0;
    overflow: visible;
}

.header_nav-list {
    align-items: center;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    justify-content: flex-end;
    margin: 0;
}

.header_nav-list_item {
    white-space: nowrap;
}

.header_logo img {
    filter: drop-shadow(0 8px 16px rgba(31, 79, 143, 0.18));
}

.header_nav-list_item > a,
.dropdown-item {
    border-radius: 999px;
    color: var(--smpdc-ink) !important;
    font-weight: 700 !important;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header_nav-list_item > a:hover,
.dropdown-item:hover,
.header_nav-list_item.active > a {
    background: rgba(31, 79, 143, 0.1);
    color: var(--smpdc-blue) !important;
    transform: translateY(-1px);
}

.dropdown-menu {
    border: 1px solid rgba(31, 79, 143, 0.12) !important;
    border-radius: 14px !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
    padding: 10px !important;
    z-index: 12000 !important;
}

.smpdc-shell {
    overflow: hidden;
}

.smpdc-section {
    padding: 76px 15px;
}

.smpdc-section--soft {
    background: linear-gradient(135deg, #f7fbff 0%, #fffaf0 100%);
}

.smpdc-section-head {
    margin: 0 auto 34px;
    max-width: 820px;
    text-align: center;
}

.smpdc-kicker {
    color: var(--smpdc-gold);
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.smpdc-title {
    color: var(--smpdc-ink);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 12px;
}

.smpdc-lead {
    color: var(--smpdc-muted);
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

.smpdc-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--smpdc-line);
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.register-now-cta {
    animation: smpdcCtaBlink 1.35s infinite;
    background: linear-gradient(135deg, #f7b733, #fc4a1a) !important;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(252, 74, 26, 0.32);
    color: #ffffff !important;
    display: inline-flex !important;
    font-weight: 900 !important;
    padding: 8px 13px !important;
}

.register-now-floating {
    bottom: 22px;
    font-size: 17px !important;
    padding: 9px 14px !important;
    position: fixed;
    right: 22px;
    text-decoration: none !important;
    z-index: 9998;
}

@media (min-width: 992px) and (max-width: 1280px) {
    .header_nav-list_item > a,
    .dropdown-item {
        font-size: 12px !important;
        padding: 6px 6px !important;
    }

    .register-now-cta {
        font-size: 12px !important;
        padding: 7px 10px !important;
    }

    .header_logo {
        min-width: 124px;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 74px;
    }

    .header_nav {
        max-height: calc(100vh - 74px);
        overflow-y: auto;
    }

    .header_nav-list {
        align-items: stretch;
        flex-direction: column;
        gap: 8px !important;
        justify-content: flex-start;
        width: 100%;
    }

    .register-now-floating {
        bottom: 16px;
        font-size: 12px !important;
        padding: 8px 12px !important;
        right: 14px;
    }
}

@keyframes smpdcCtaBlink {
    0%, 100% {
        filter: brightness(1);
        transform: translateY(0) scale(1);
    }

    50% {
        filter: brightness(1.18);
        transform: translateY(-1px) scale(1.05);
    }
}

.landing-popup-overlay {
    align-items: center;
    background: rgba(9, 17, 32, 0.68);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 18px;
    position: fixed;
    z-index: 10000;
}

.landing-popup-overlay.is-open {
    display: flex;
}

.landing-popup-card {
    animation: smpdcPopupEntrance 0.55s ease;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    max-width: 820px;
    overflow: hidden;
    position: relative;
    width: min(100%, 820px);
}

.landing-popup-close {
    align-items: center;
    background: rgba(255,255,255,0.92);
    border: 0;
    border-radius: 50%;
    color: var(--smpdc-ink);
    display: flex;
    font-size: 24px;
    font-weight: 800;
    height: 38px;
    justify-content: center;
    position: absolute;
    right: 14px;
    top: 14px;
    width: 38px;
    z-index: 2;
}

.landing-popup-media {
    align-items: center;
    background: linear-gradient(135deg, #f8fbff, #fff7e6);
    display: flex;
    justify-content: center;
    padding: 34px 30px 12px;
}

.landing-popup-media img {
    border: 6px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
    display: block;
    height: 160px;
    object-fit: cover;
    width: 160px;
}

.landing-popup-content {
    padding: 30px;
    text-align: center;
}

.landing-popup-title {
    animation: smpdcMessageBlink 1.4s infinite;
    color: #1f4f8f;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 12px;
}

.landing-popup-message {
    animation: smpdcMessageBlink 1.8s infinite;
    color: #344054;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 auto 18px;
    max-width: 680px;
}

.landing-popup-btn {
    background: linear-gradient(135deg, #1e7a5b, #1f4f8f);
    border-radius: 999px;
    color: #ffffff !important;
    display: inline-flex;
    font-weight: 900;
    padding: 12px 22px;
    text-decoration: none;
}

@keyframes smpdcPopupEntrance {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes smpdcMessageBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.62;
    }
}

.smpdc-quote {
    border-left: 4px solid var(--smpdc-gold);
    color: #344054;
    font-size: 18px;
    font-style: italic;
    line-height: 1.65;
    margin: 24px 0 0;
    padding: 8px 0 8px 18px;
}

.footer {
    background: linear-gradient(135deg, #10213d 0%, #1f4f8f 60%, #1e7a5b 100%) !important;
    color: #ffffff !important;
    margin-top: 0;
    padding-top: 48px;
}

.footer p,
.footer a,
.footer li,
.footer span,
.footer h5,
.footer i {
    color: rgba(255, 255, 255, 0.92) !important;
}

.footer-title {
    color: #ffffff !important;
    font-size: 17px;
    letter-spacing: 0.02em;
}

.footer-link:hover,
.footer-nav a:hover,
.admin-link:hover {
    color: #ffd88a !important;
}

.footer-logo {
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    padding: 6px;
}

.footer_secondary {
    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.smpdc-admin-body {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 32%),
        linear-gradient(180deg, #f4f7fb 0%, #eef3f8 100%);
}

.smpdc-admin-sidebar {
    background: linear-gradient(180deg, #10213d 0%, #183b68 100%) !important;
    border-right: 0 !important;
    box-shadow: 18px 0 45px rgba(16, 33, 61, 0.22);
}

.smpdc-admin-sidebar a,
.smpdc-admin-sidebar span,
.smpdc-admin-sidebar i {
    color: rgba(255, 255, 255, 0.88) !important;
}

.smpdc-admin-sidebar a:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

.smpdc-admin-brand {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 10px;
}

.smpdc-admin-topbar {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(16, 33, 61, 0.08) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08) !important;
    backdrop-filter: blur(14px);
}

@media (max-width: 768px) {
    .smpdc-section {
        padding: 52px 14px;
    }
}
