:root {

    --primary: #0B1F4D;

    --secondary: #8B1E3F;

    --gold: #C59D3D;

    --bg: #F8FAFC;

    --text: #1E293B;

    --text-light: #64748B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Inter', sans-serif;

    background: var(--bg);

    color: var(--text);

    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* NAVBAR */

.custom-navbar {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    padding: 12px 0;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.brand-text {
    margin-left: 12px;
}

.brand-text h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0A1A36;
}

.brand-text span {
    font-size: .78rem;
    color: #777;
}

.nav-link {
    color: #222;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link:hover {
    color: #C28A2E;
}

.apply-btn {
    background: #C28A2E;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.apply-btn:hover {
    background: #a87425;
    color: #fff;
}

/* FOOTER */

.site-footer {
    background: #0A1A36;
    color: #fff;
    padding: 40px 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 55px;
    align-items: flex-start;
}

.footer-logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
    background: #fff;
    padding: 9px;
    border-radius: 50%;
    margin-bottom: 18px;
}

.footer-col h4,
.footer-col h5 {
    margin-bottom: 14px;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
    margin-bottom: 12px;
    max-width: 420px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 9px;
}

.footer-col a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.footer-col a:hover {
    color: #C28A2E;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
}

@media(max-width:991px) {
    .site-footer {
        padding: 40px 0 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-logo {
        width: 58px;
        height: 58px;
    }
}