/* =========================
   BASE
========================= */

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    padding-top: 80px;
}

/* =========================
   NAVBAR
========================= */

.navbar-custom {
    background: #1e3a5f;
    min-height: 72px;
}

/* TEXT */
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: rgba(255,255,255,0.9) !important;
}

.navbar-custom .nav-link:hover {
    color: #ffffff !important;
}


/* BRAND */
.navbar-brand {
    margin-right: auto;
    white-space: nowrap;
}

/* NAV TEXT SIZE */
.navbar-custom .nav-link {
    font-size: 15px;
    font-weight: 500;
}

.navbar-custom .btn {
    font-size: 15px;
    font-weight: 500;
}


.navbar-brand strong {
    font-size: 28px;
}

/* TOGGLER */
.navbar-toggler {
    border: none;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ICON */
.navbar-toggler-icon {
    width: 26px;
    height: 26px;
    filter: invert(1);
}


/* =========================
   FOOTER
========================= */

.footer-custom {
    background: #1e3a5f;
    padding: 24px 20px 20px;
    margin-top: 30px;
}

.footer-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.footer-main {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}

.footer-legal {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    margin: 4px 0;
    line-height: 1.4;
}

/* =========================
   CONTAINER
========================= */

main .container {
    max-width: 1100px;
}


/* =========================
   HERO (CLEAN GRADIENT)
========================= */

.gradient-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;

    background: linear-gradient(
        110deg,
        #1e3a5f 0%,
        #2f4f75 40%,
        #3f6aa1 65%,
        rgba(255,255,255,0.15) 100%
    );
}

.gradient-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: radial-gradient(
        circle at 20% 30%,
        rgba(255,255,255,0.08),
        transparent 40%
    ),
    radial-gradient(
        circle at 80% 70%,
        rgba(255,255,255,0.05),
        transparent 50%
    );

    pointer-events: none;
}

/* REMOVE IMAGE + OVERLAYS */
.gradient-hero::before,
.gradient-hero::after {
    display: none;
}

/* TEXT */
.gradient-hero h1,
.gradient-hero p {
    color: #ffffff;
}

/* OPTIONAL: softer look */
.gradient-hero {
    background: linear-gradient(
        to right,
        #1e3a5f 0%,
        #2f4f75 60%,
        #3f6aa1 100%
    );
}

/* =========================
   NAVBAR RESPONSIVE FIXES
========================= */

/* Desktop */
@media (min-width: 992px) {

    .navbar-nav {
        margin-left: auto;
    }

}

/* Mobile */
@media (max-width: 991px) {

    .navbar-collapse {
        width: 100%;
        background: #1e3a5f;
        padding: 15px 20px;
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar .nav-link {
        padding: 10px 0;
    }

    .navbar .btn {
        width: 100%;
        margin-top: 10px;
    }

    .navbar {
        overflow: visible;
    }

}


