
.main-content {
    padding-top: 80px !important;
}

/* GLASS NAVBAR */
.glass-navbar {
    background: #1e2a78;
    height: 80px;
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(111, 163, 255, 0.25);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.18), inset 0 0 12px rgba(255, 255, 255, 0.04);
    transition: all 0.35s ease;
    padding: 10px 0;
}

    /* SCROLL PE COLOR CHANGE */
    .glass-navbar.scrolled {
        background: #1e2a78 !important;
        border-bottom: 1px solid rgba(77, 163, 255, 0.55);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 24px rgba(0, 140, 255, 0.22);
        padding: 6px 0;
    }

/* LOGO */
.logo-img {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(77, 163, 255, 0.55));
    transition: all 0.35s ease;
}

.glass-navbar.scrolled .logo-img {
    height: 64px;
}

/* MENU */
.navbar-nav .nav-item {
    margin-left: 8px;
}

.nav-link {
    color: #ffffffff !important;
    font-size: 17px;
    font-weight: 600;
    padding: 10px 16px !important;
    border-radius: 14px;
    position: relative;
    transition: all 0.3s ease;
}

    /* hover */
    .nav-link:hover {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), 0 0 14px rgba(77, 163, 255, 0.18);
        text-shadow: 0 0 10px rgba(77, 163, 255, 0.65);
    }

    /* ACTIVE MENU HIGHLIGHT */
    .nav-link.active {
        color: #ffffff !important;
        background: linear-gradient(135deg, rgba(77, 163, 255, 0.24), rgba(0, 212, 255, 0.14));
        border: 1px solid rgba(130, 190, 255, 0.38);
        box-shadow: 0 0 16px rgba(77, 163, 255, 0.22), inset 0 0 10px rgba(255, 255, 255, 0.06);
        text-shadow: 0 0 12px rgba(120, 180, 255, 0.85);
    }

        /* active underline */
        .nav-link.active::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 4px;
            height: 2px;
            border-radius: 20px;
            background: linear-gradient(90deg, #7cc7ff, #d7f1ff);
            box-shadow: 0 0 10px rgba(124, 199, 255, 0.85);
        }

/* Login Button */
.login-btn {
    color: #fff !important;
    background: #1e2a78;
    border: 1px solid rgba(167, 219, 255, 0.4);
    border-radius: 18px;
    padding: 10px 22px;
    font-weight: 700;
    box-shadow: 0 0 18px rgba(0, 149, 255, 0.28), inset 0 0 10px rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

    .login-btn:hover {
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 24px rgba(0, 149, 255, 0.34);
    }

/* Toggler */
.custom-toggler {
    border: 1px solid rgba(167, 219, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 12px rgba(77, 163, 255, 0.18);
}

    .custom-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(77, 163, 255, 0.25);
    }

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Mobile */
@media (max-width: 991.98px) {
    .glass-navbar {
        padding: 10px 0;
        height: 70px;
    }

        .glass-navbar.scrolled {
            padding: 10px 0;
        }

            .logo-img,
            .glass-navbar.scrolled .logo-img {
                height: 50px;
            }

    .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        border-radius: 18px;
        background: rgba(6, 18, 48, 0.82);
        border: 1px solid rgba(130, 190, 255, 0.18);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    }

    .navbar-nav .nav-item {
        margin-left: 0;
        margin-bottom: 8px;
    }

    .nav-link {
        display: block;
    }

    .login-btn {
        display: inline-block;
        width: 100%;
        text-align: center;
    }
}


/* FOOTER */

.site-footer {
    background: #1e2a78 !important;
    color: #fff;
    padding: 70px 0 20px;
    font-family: Segoe UI, sans-serif;
}

    /* TITLES */

    .site-footer h3,
    .site-footer h4 {
        margin-bottom: 20px;
        font-weight: 600;
    }

        .site-footer h3 i {
            color: #fff;
            margin-right: 8px;
        }

/* ABOUT TEXT */

.footer-about p {
    color: #ffff;
    line-height: 1.7;
}

/* LINKS */

.footer-links ul {
    list-style: none;
    padding: 0;
}

    .footer-links ul li {
        margin-bottom: 10px;
    }

        .footer-links ul li a {
            color: #fff;
            text-decoration: none;
            transition: .3s;
            font-size: 15px;
        }

            .footer-links ul li a i {
                margin-right: 6px;
            }

            .footer-links ul li a:hover {
                color: #38bdf8;
                padding-left: 5px;
            }

/* CONTACT */

.footer-contact p {
    margin-bottom: 10px;
    color: #ffff;
    font-size: 15px;
}

.footer-contact i {
    margin-right: 8px;
    color: #38bdf8;
}

/* SOCIAL ICONS */

.social-icons {
    margin-top: 15px;
}

    .social-icons a {
        display: inline-block;
        width: 38px;
        height: 38px;
        line-height: 38px;
        text-align: center;
        border-radius: 50%;
        background: #1e293b;
        color: #fff;
        margin-right: 8px;
        transition: .3s;
        font-size: 15px;
    }

        .social-icons a:hover {
            background: #555;
            transform: translateY(-3px);
        }

/* FOOTER BOTTOM */

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: #fff;
    font-size: 14px;
}

.site-footer hr {
    border-color: #fbe409;
    margin: 30px 0;
    height:2px;
}


/* ========================= */
/* TABLET RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {

    .site-footer {
        padding: 50px 20px;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        margin-bottom: 30px;
    }

    .site-footer h3,
    .site-footer h4 {
        font-size: 20px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}


/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

    .site-footer {
        text-align: center;
        padding: 40px 15px;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        margin-bottom: 25px;
    }

        .footer-links ul {
            padding-left: 0;
        }

            .footer-links ul li {
                margin-bottom: 8px;
            }

                .footer-links ul li a {
                    font-size: 14px;
                }

        .footer-contact p {
            font-size: 14px;
        }

    .social-icons {
        margin-top: 20px;
    }

        .social-icons a {
            margin: 5px;
        }

    .site-footer h3 {
        font-size: 22px;
    }

    .site-footer h4 {
        font-size: 18px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}


/* ========================= */
/* SMALL MOBILE */
/* ========================= */

@media (max-width: 480px) {

    .site-footer {
        padding: 35px 10px;
    }

        .site-footer h3 {
            font-size: 20px;
        }

        .site-footer h4 {
            font-size: 16px;
        }

    .footer-links ul li a {
        font-size: 13px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 11px;
    }
}





