.login-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(6px);
    padding: 20px;
}

    .login-modal-overlay.show {
        display: flex;
    }

/* MAIN CARD */
.login-modal {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    animation: modalPop 0.25s ease;
}

/* ANIMATION */
@keyframes modalPop {
    from {
        transform: scale(0.92);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* HEADER SECTION */
.login-header {
    background: linear-gradient(135deg, #0d6efd, #1e3a8a);
    color: white;
    text-align: center;
    padding: 25px 20px;
}

    .login-header img {
        width: 70px;
        margin-bottom: 10px;
    }

    .login-header h3 {
        font-size: 18px;
        margin: 0;
        font-weight: 700;
    }

    .login-header p {
        font-size: 13px;
        margin: 5px 0 0;
        opacity: 0.85;
    }

/* BODY FORM AREA */
.login-body {
    padding: 25px;
}

    /* INPUTS */
    .login-body .form-control {
        height: 45px;
        border-radius: 10px;
        font-size: 14px;
    }

/* PASSWORD FIELD ICON */
.toggle-pass {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    color: #6b7280;
    user-select: none;
}

/* CLOSE BUTTON */
.login-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

    .login-close:hover {
        background: rgba(255,255,255,0.35);
    }

/* LOGIN BUTTON */
#loginBtn {
    height: 45px;
    border-radius: 10px;
    font-weight: 600;
    background: #0d6efd;
    border: none;
    transition: 0.2s;
}

    #loginBtn:hover {
        background: #0b5ed7;
        transform: translateY(-1px);
    }

/* FOOT NOTE */
.login-footer {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    margin-top: 15px;
}

.nav-link {
    font-weight: 500;
    font-size: 14px;
    color: #1f2937 !important;
    position: relative;
    transition: 0.2s;
}

    .nav-link:hover {
        color: #0d6efd !important;
    }

/* underline animation */
.nav-anim::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #0d6efd;
    transition: 0.3s;
}

.nav-anim:hover::after {
    width: 100%;
}

/* SIGN IN BUTTON */
.nav-btn {
    border-radius: 10px;
    font-weight: 600;
    transition: 0.2s;
}

    .nav-btn:hover {
        transform: translateY(-1px);
    }

/* APPLY NOW CTA */
.nav-cta {
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(255,193,7,0.25);
    transition: 0.2s;
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(255,193,7,0.35);
    }

.navbar-brand {
    gap: 10px;
    transition: 0.2s ease;
}

/* LOGO */
.brand-logo img {
    height: 55px;
    width: auto;
    transition: 0.3s ease;
}

/* TEXT */
.brand-title {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #0f172a;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 12px;
    color: #6b7280;
    letter-spacing: 0.3px;
}

/* HOVER EFFECT */
.brand-hover:hover {
    transform: translateY(-1px);
}

    .brand-hover:hover .brand-logo img {
        transform: scale(1.05);
    }

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    .brand-title {
        font-size: 13px;
    }

    .brand-subtitle {
        font-size: 11px;
    }

    .brand-logo img {
        height: 45px;
    }
}
/* SECTION BACKGROUND */
.about-section {
    background: #f8fafc;
}

/* SECTION TITLE */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
}

/* FEATURE CARD */
.feature-card-modern {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    height: 100%;
    border: 1px solid #eef2f7;
}

    .feature-card-modern:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

/* ICON */
.icon-box {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    border-radius: 14px;
    background: #eaf2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* TEXT */
.feature-card-modern h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.feature-card-modern p {
    font-size: 14px;
    color: #6b7280;
}

/* STATS SECTION */
.stats-modern {
    background: linear-gradient(135deg, #0d6efd, #1e3a8a);
    color: white;
}

/* STAT BOX */
.stat-box {
    padding: 20px;
    border-radius: 14px;
    transition: 0.2s;
}

    .stat-box h2 {
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .stat-box p {
        margin: 0;
        opacity: 0.85;
        font-size: 14px;
    }

    .stat-box:hover {
        transform: translateY(-5px);
    }

.faq-accordion .accordion-button {
    font-weight: 600;
    background: #fff;
}

    .faq-accordion .accordion-button:not(.collapsed) {
        background: #0d6efd;
        color: #fff;
        box-shadow: none;
    }

.faq-accordion .accordion-item {
    border-radius: 12px;
}

.footer-main {
    background: #0b1220;
    color: #cbd5e1;
    padding: 80px 0 30px;
}

.footer-logo {
    height: 65px;
}

.footer-title {
    color: #ffc107;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #cbd5e1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        transition: 0.25s ease;
        font-size: 14px;
    }

        .footer-links a:hover {
            color: #ffc107;
            padding-left: 6px;
        }

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

    .contact-item i {
        color: #ffc107;
        width: 18px;
    }

.footer-divider {
    border-color: rgba(255,255,255,0.12);
}

.footer-bottom {
    font-size: 13px;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .footer-main {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }
}

.swal2-container {
    z-index: 20000 !important;
}

.login-modal-overlay {
    z-index: 10000;
}

.login-modal {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.2s ease;
}

.login-modal-overlay.show .login-modal {
    transform: scale(1);
    opacity: 1;
}