:root {
    --navy: #03244f;
    --blue: #03244f;
    --teal: #ffffff;
    --green: #03244f;
    --ink: #000000;
    --muted: #000000;
    --cream: #ffffff;
    --white: #ffffff;
    --line: #d9e4e8;
    --shadow: 0 18px 45px rgba(3, 36, 79, 0.16);
}

.section {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 90px;
    padding-bottom: 90px;
}

.section.white,
.section.blue {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.faq-question {
    text-align: center;
}

.faq-answer {
    text-align: center;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.cta-btn{
    transition:all 0.3s ease;
}

.cta-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 18px rgba(0,0,0,0.18);
}

.site-nav a {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.site-nav a:hover {
    transform: translate3d(0, -3px, 0);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Source Sans 3", Arial, sans-serif;
    line-height: 1.6;
}


a {
    color: inherit;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    max-width: 820px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.nav-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    color: var(--white);
    font-size: 1.45rem;
    font-weight: 700;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--white);
    font-size: 0.94rem;
    font-weight: 500;
}

.site-nav a {
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--white);
    text-decoration: underline;
}

.menu-toggle {
    width: 42px;
    height: 42px;
    display: none;
    place-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--navy);
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    margin: 2px 0;
    background: var(--white);
}

.hero {
    min-height: 690px;
    display: grid;
    align-items: center;
    padding: 96px 20px 120px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(3, 36, 79, 0.92), rgba(3, 36, 79, 0.68), rgba(3, 36, 79, 0.22)),
        url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-content {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero p {
    max-width: 580px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.btn,
.btn-outline,
form button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn,
form button {
    border: 0;
    color: var(--navy);
    background: var(--white);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn:hover,
.btn-outline:hover,
form button:hover {
    transform: translateY(-2px);
}

.stats {
    width: min(800px, calc(100% - 40px));
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin: -50px auto 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 8px;
    background: var(--line);
    box-shadow: var(--shadow);
}

.stat {
    padding: 36px 22px;
    text-align: center;
    background: var(--white);
}

.stat h2 {
    margin: 0;
    color: var(--blue);
    font-size: 2.4rem;
    line-height: 1;
}

.stat p {
    margin: 10px 0 0;
    color: var(--muted);
    font-weight: 600;
}

.section {
    padding: 96px 0;
}

.white {
    background: var(--white);
}

.blue {
    background: var(--navy);
    color: var(--white);
}

.blue h2,
.blue p {
    color: var(--white);
}

.section h2 {
    margin: 0 0 24px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: 0;
}

.section p {
    color: var(--muted);
    font-size: 1.05rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.card {
    min-height: 225px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(18, 48, 74, 0.08);
}

.card-icon {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 8px;
    color: var(--white);
    background: var(--blue);
    font-size: 0.76rem;
    font-weight: 700;
}

.card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.15rem;
}

.card p {
    margin: 0;
    font-size: 0.96rem;
}

.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.list li {
    padding: 17px 18px 17px 46px;
    position: relative;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font-weight: 600;
}

.list li::before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    left: 20px;
    top: 24px;
    border-radius: 50%;
    background: var(--navy);
}

.partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 34px;
}

.partner-group h3 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 1.12rem;
}

.partner-group ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    color: var(--ink);
    list-style: none;
}

.partner-group li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step {
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
}

.step span {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
}

.faq {
    display: grid;
    gap: 12px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

/* CARD */
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: all 0.2s ease;
}

section {
  scroll-margin-top: 90px; /* adjust to your navbar height */
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 18px 50px 18px 18px;
  border: none;
  background: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  position: relative;
  color: #03244f;
}

/* ICON */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 500;
  color: #03244f;
  transition: transform 0.2s ease;
}

/* OPEN STATE ICON */
.faq-item.active .faq-question::after {
  content: "−";
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 18px;
  color: #333;
  line-height: 1.7;
  font-size: 15px;
  transition: all 0.3s ease;
}

/* OPEN STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 18px 18px 18px;
}

/* HOVER POLISH */
.faq-item:hover {
  border-color: rgba(3,36,79,0.25);
}

form {
    display: grid;
    gap: 14px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(34, 166, 153, 0.18);
    border-color: var(--teal);
}

form button {
    width: fit-content;
    cursor: pointer;
    font: inherit;
}

.form-message {
    min-height: 26px;
    margin: 0;
    color: var(--white);
    font-weight: 600;
}

footer {
    padding: 28px 20px;
    color: var(--white);
    background: var(--navy);
    text-align: center;
}

footer p {
    margin: 0;
}




@media (max-width: 860px) {
     .menu-toggle {
        display: grid;
        position: fixed;
        top: 15px;
        z-index: 9999;
    }

 .site-nav {
        width: 100%;
        display: none;

        position: absolute;

        /* 🔥 THIS IS THE REAL FIX */
        top: calc(100% + 10px);

        left: 0;

        flex-direction: column;
        align-items: flex-start;

        padding: 65px 0 18px;

        z-index: 999;
    }

    .site-nav.open {
        display: flex;
    }

    .nav-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        position: relative;
    }

    .hero {
        min-height: 620px;
        padding-top: 76px;
    }

    .stats,
    .grid,
    .partners,
    .steps,
    .split {
        grid-template-columns: 1fr;
    }

    .stats {
        margin-top: 0;
        border-radius: 0;
        width: 100%;
    }

    .section {
        padding: 72px 0;
    }
}

@media (min-width: 561px) and (max-width: 1024px) {

    /* ================================
       HEADER STRUCTURE = DESKTOP STYLE
       ================================ */
    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 90px;
        position: relative;
        padding: 0 16px;
    }

    /* ================================
       LOGO CENTERED BUT SMALLER
       ================================ */
    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1001;
    }

    .logo img {
        height: 50px !important; /* smaller for tablet fit */
        width: auto;
    }

    /* ================================
       SHOW DESKTOP TABS (REPLACE HAMBURGER)
       ================================ */
    .menu-toggle {
        display: none !important;
    }

.site-nav {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 18px;
        width: 100%;
        padding: 0;
        margin-top: 35px;
    }

    .site-nav a {
        font-size: 14px;
        white-space: nowrap;
        color: #fefefe;
        text-decoration: none;
    }

    /* REMOVE DROPDOWN BEHAVIOUR COMPLETELY */
    .site-nav.open {
        display: flex !important;
    }
}

    
/* ================================
   MOBILE + TABLET HEADER FIX
   ================================ */

@media (max-width: 860px) {

    /* REMOVE INFO BOX ONLY ON MOBILE + TABLET */
    .navbar > div:first-child {
        display: none !important;
    }

    /* keep header structure unchanged */
    .nav-inner {
        position: relative;
    }

    /* DO NOT touch hamburger */

    /* center logo on tablets + mobile */
    .logo {
        position: absolute !important;
        left: 50%;
        transform: translateX(-50%);
        top: 8px;
        right: auto !important;
        margin: 0 !important;
    }

    /* scale logo nicely */
    .logo img {
        height: 55px !important;
        width: auto !important;
        display: block;
    }
}

/* SMALL PHONES */
@media (max-width: 560px) {

    .navbar > div:first-child {
        display: none !important;
    }

    .logo {
        position: absolute !important;
        left: 50%;
        transform: translateX(-50%);
        top: 2px;
        margin: 0 !important;
    }

    .logo img {
        height: 60px !important;
        width: auto !important;
    }
}
    
