/* ---------------------------------------------------
   BFM SIMPLE CSS FRAMEWORK
   Light, modern, Bootstrap‑free
---------------------------------------------------*/

/* --- RESET (safe + simple) --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}

/* --- CONTAINER --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- SPACING HELPERS --- */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.p-1  { padding: 1rem; }
.p-2  { padding: 2rem; }

/* --- SIMPLE GRID SYSTEM --- */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* 2 Column layout */
.col-2 {
    flex: 1 1 calc(50% - 20px);
}

/* 3 Column layout */
.col-3 {
    flex: 1 1 calc(33.333% - 20px);
}

/* Stack columns on small screens */
@media (max-width: 768px) {
    .col-2, .col-3 {
        flex: 1 1 100%;
    }
}

/* --- HEADER + NAVBAR --- */
.navbar {
    background: #002a67;
    padding: 1rem 0;
}
.navbar a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-size: 1rem;
}
.navbar a:hover {
    text-decoration: underline;
}

/* --- HERO SECTION (like your jumbotron) --- */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: #f2f2f2;
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: 300;
}
.hero p {
    margin-top: 1rem;
}

/* Subtle spacing between hero paragraphs */
.hero p {
    margin: 0.75rem 0;   /* gentle vertical spacing */
    line-height: 1.55;   /* tidy, readable line height */
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1.15rem;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s ease;
    margin: 0.5rem;
}

/* Green */
.btn-success {
    background: #28a745;
}
.btn-success:hover {
    background: #1e7e34;
}

/* Blue */
.btn-primary {
    background: #007bff;
}
.btn-primary:hover {
    background: #0056b3;
}

/* Red (your custom button) */
.btn-primary1 {
    background: #dc3545;
}
.btn-primary1:hover {
    background: #b52d3a;
}

/* ---------------------------------------------------
   BRAND ICON STRIP – CLEAN, CENTRED, EVENLY SPACED
--------------------------------------------------- */

.brand-strip {
    display: flex;
    justify-content: center;    /* centre horizontally */
    align-items: center;
    gap: 20px;                  /* small space between images */
    flex-wrap: nowrap;          /* keep one straight line */
    padding: 30px 0;            /* adds breathing space above/below */
}

/* All logos same size */
.brand-strip img {
    width: 110px; 
    height: auto;
}

/* --- FOOTER --- */
.footer {
	margin-top: 40px;
    background: #EBEBEC;
    padding: 2rem 1rem;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    margin-top: 3rem;
}

.footer h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #002a67;
    font-size: 1.1rem;
}

.footer p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* -----------------------------------------
   TWO-COLUMN FOOTER
----------------------------------------- */

.footer {
    background: #EBEBEC;
    padding: 40px 20px;
    color: #444;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left + Right sections */
.footer-left,
.footer-right {
    flex: 1 1 300px;
}

/* Headings */
.footer h3 {
    font-size: 1rem;
    color: #002a67;
    margin-bottom: 8px;
}

/* Paragraph text */
.footer p {
    margin: 4px 0 10px 0;
    line-height: 1.4;
}

.footer-left,
.footer-right {
    text-align: left;
}

/* -----------------------------------------
   NAV BAR DROPDOWN MENUS
----------------------------------------- */

.nav-item {
    position: relative;
    display: inline-block;
}

.nav-item > a {
    cursor: pointer;
}

/* hidden until hover */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #003170;
    padding: 10px 0;
    display: none;
    min-width: 180px;
    border-radius: 4px;
    z-index: 999;
}

/* show on hover */
.nav-item:hover .submenu {
    display: block;
}

.submenu a {
    display: block;
    padding: 8px 15px;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
}

.submenu a:hover {
    background: #004a9f;
}


@charset "utf-8";
/* CSS Document */

