.elementor-kit-8{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Inter";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:#FFFFFF;color:#333333;font-family:"Inter", Sans-serif;font-size:17px;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-kit-8 h1{font-family:"Inter", Sans-serif;font-size:42px;}.elementor-kit-8 h2{font-family:"Inter", Sans-serif;font-size:32px;}.elementor-kit-8 h3{font-family:"Inter", Sans-serif;font-size:24px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* -----------------------------------------------------------
   GLOBAL VARIABLES — BRAND PALETTE
----------------------------------------------------------- */
:root {
    --primary: #740707;          /* Maroon */
    --primary-dark: #172A54;     /* Deep Navy */
    --accent: #f0b429;           /* Gold */
    --bg: #f5f7fb;               /* Light Grey */
    --text: #222;
    --muted: #666;
    --border: #dde3f0;
    --max-width: 1100px;
    --radius: 6px;
}

/* -----------------------------------------------------------
   GLOBAL RESET + TYPOGRAPHY
----------------------------------------------------------- */
* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 1.08rem;
    line-height: 1.75;
}

/* -------------------------------------- */
/* GLOBAL DEFAULT LINK STYLE              */
/* -------------------------------------- */

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: var(--primary) !important;
}

/* -------------------------------------- */
/* .a1 — WHITE CTA LINKS                  */
/* -------------------------------------- */

a.a1 { color: #fff !important; }
a.a1:hover { color: #fff !important; text-decoration: underline; }

/* -------------------------------------- */
/* .a2 — PRIMARY LINKS                    */
/* -------------------------------------- */

a.a2 { color: var(--primary) !important; }
a.a2:hover { color: var(--primary) !important; text-decoration: underline; }

/* -------------------------------------- */
/* .a3 — DARK TEXT LINKS                  */
/* -------------------------------------- */

a.a3 { color: #333 !important; }
a.a3:hover { color: #333 !important; text-decoration: underline; }

/* -----------------------------------------------------------
   MAIN LAYOUT
----------------------------------------------------------- */
main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
}

/* -----------------------------------------------------------
   HERO SECTION
----------------------------------------------------------- */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.75rem;
    color: var(--primary-dark);
}

.hero p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--muted);
}

.hero-cta {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-meta {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: var(--muted);
}

/* -----------------------------------------------------------
   FEATURE IMAGE
----------------------------------------------------------- */
.feature-image { text-align: center; margin: 2rem 0; }

.feature-img {
    width: 50%;
    max-width: 480px;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: inline-block;
}

/* -----------------------------------------------------------
   SECTIONS
----------------------------------------------------------- */
.section { margin-bottom: 3rem; }

.section h2 {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

/* -----------------------------------------------------------
   CARDS
----------------------------------------------------------- */
.card {
    background: #ffffff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.25rem;
    font-size: 1.08rem;
    line-height: 1.75;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* -----------------------------------------------------------
   GRIDS
----------------------------------------------------------- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------
   CTA BAND
----------------------------------------------------------- */
.cta-band {
    background: var(--primary-dark);
    color: #fff;
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cta-band p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 500;
}

.cta-band a.btn-primary {
    background: var(--primary);
}
.cta-band a.btn-primary:hover {
    background: var(--primary-dark);
}

/* -----------------------------------------------------------
   BUTTONS
----------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff !important; }

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff !important;
}

/* -----------------------------------------------------------
   GLOBAL FOOTER
----------------------------------------------------------- */
.global-footer {
    background: #ffffff;
    border-top: 1px solid var(--border);
    padding: 2rem 1rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 1rem;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: var(--primary);
    font-weight: 600;
}
.footer-links a:hover { color: var(--accent); }

.footer-copy {
    font-size: 0.95rem;
    color: var(--muted);
}

@media (max-width: 900px) {
    .footer-container { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

/* -----------------------------------------------------------
   GLOBAL HEADER — FULL WIDTH + CENTERED BLOCK
----------------------------------------------------------- */

.global-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 60px rgba(0,0,0,0.05);
}

/* TOP BAR */
.header-topbar {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 0.4rem 0;
}

.topbar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;

    display: flex;
    justify-content: center; /* centered top bar text */
    align-items: center;
}

/* MAIN HEADER */
.header-container {
    width: 100%;
    background: var(--primary-dark);
    color: #fff;
    padding: 0.75rem 0;

    display: flex;
    justify-content: center; /* center the entire block */
    align-items: center;
}

/* CENTER BLOCK: LOGO + MENU */
.header-center-block {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* LOGO */
.header-logo img {
    height: 48px;
    width: auto;
    display: block;
}

/* -----------------------------------------------------------
   DESKTOP NAVIGATION
----------------------------------------------------------- */

.mega-nav {
    display: flex;
    align-items: center;
}

.mega-nav .menu-root {
    list-style: none;
    display: flex;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
}

/* Equal width for all 5 items */
.mega-nav .menu-item {
    width: 170px;
    text-align: center;
}

.mega-nav .menu-item > a {
    display: block;
    padding: 0.75rem 0;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    transition: color .25s ease;
}

.mega-nav .menu-item > a:hover {
    color: var(--accent);
}

/* -----------------------------------------------------------
   MEGA PANEL (Dropdown)
----------------------------------------------------------- */

.mega-nav .menu-item.has-mega {
    position: relative;
}

.mega-nav .menu-item.has-mega .mega-panel {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 700px;
    background: #fff;
    padding: 2rem 2rem;
    display: flex;
    gap: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    z-index: 9999;
}

.mega-nav .menu-item.has-mega:hover .mega-panel {
    opacity: 1;
    visibility: visible;
}

/* Column width control */
.mega-panel .mega-col {
    max-width: 220px;
    flex: 1;
}

.mega-panel h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.mega-panel a {
    display: block;
    padding: 0.35rem 0;
    font-size: 0.95rem;
    color: var(--text);
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.mega-panel a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

/* -----------------------------------------------------------
   MOBILE NAVIGATION
----------------------------------------------------------- */

.mobile-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 900px) {

    .header-center-block {
        justify-content: space-between;
        width: 100%;
        padding: 0 1rem;
    }

    .mobile-toggle {
        display: block;
    }

    .mega-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--primary-dark);
        padding: 1rem 0;
    }

    .mega-nav.open {
        display: flex;
    }

    .mega-nav .menu-root {
        flex-direction: column;
        gap: 0;
    }

    .mega-nav .menu-item {
        width: 100%;
        text-align: left;
        padding: 1rem 1.5rem;
    }

    .mega-nav .menu-item.has-mega .mega-panel {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 1rem 1.5rem;
        display: none;
    }

    .mega-nav .menu-item.has-mega.open .mega-panel {
        display: block;
    }
}

/* -----------------------------------------------------------
   GLOBAL FOOTER — MODERN SAAS STYLE
----------------------------------------------------------- */

.global-footer {
    background: #f8f9fb;
    border-top: 1px solid var(--border);
    padding: 3rem 1rem;
    margin-top: 0 !important;
    padding-top: 0 !important;
    font-size: 0.95rem;
    color: var(--text);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    padding: 0.35rem 0;
    color: var(--text);
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-brand {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: #777;
}

/* MOBILE */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 2.5rem;
    }
}/* End custom CSS */