html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('font/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('font/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'HelveticaNeue', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ffffff;
    color: #111111;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 64px;
    padding-right: 64px;
    background-color: #ffffff;
    width: 100%;
    
    /* THE FIX: Changed from 'sticky' to 'fixed' and added 'left: 0' */
    position: fixed; 
    top: 0;
    left: 0; 
    
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo {
    height: 93px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #737373;
    font-weight: 400;
    font-size: 17px;
    transition-property: color, font-weight;
    transition-duration: 0.3s, 0.3s;
    transition-timing-function: ease, ease;
}

.nav-links a.active {
    color: #111111;
    font-weight: 700;
}

.nav-links a:hover {
    color: #111111;
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    margin-right: 2rem;
}

.btn-nav-outline {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #184989;
    border-top-width: 1.5px;
    border-right-width: 1.5px;
    border-bottom-width: 1.5px;
    border-left-width: 1.5px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #184989;
    border-right-color: #184989;
    border-bottom-color: #184989;
    border-left-color: #184989;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.btn-nav-outline:hover {
    background-color: #184989;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(24, 73, 137, 0.2);
    transform: translateY(-2px);
}

.nav-icon {
    color: #111;
    transition: color 0.3s ease;
    transition: transform 0.3s ease;
}

.nav-icon:hover {
    color: #ef4444; /* Turns a nice red to indicate 'logout/exit' */
    transform: scale(1.1) translateX(2px); /* Slight nudge toward the exit arrow */
}

.hero-section {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 200px; 
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #ffffff;
}

.hero-container-centered {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.hero-container-centered h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #232a5e;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-container-centered p {
    font-size: 1.8rem;
    color: #232a5e;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 40px;
}

.hero-cta-centered {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 30px;
}

.btn-outline {
    text-decoration: none;
    color: #184989;
    border: 1px solid #184989;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #f8fafc;
    box-shadow: 0 4px 12px rgba(24, 73, 137, 0.1);
    transform: translateY(-2px);
}

.btn-gradient {
    text-decoration: none;
    background: linear-gradient(90deg, #184989, #28CABD);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    transition: opacity 0.3s ease;
    transition: transform 0.3s ease;
    transition: box-shadow 0.3s ease;
}

.btn-gradient:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(40, 202, 189, 0.3);
}

.hero-image-bottom {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.hero-image-bottom img {
    width: 100%;
    height: auto;
    max-width: 1100px;
}

.fleet-caption {
    font-size: 0.95rem !important;
    color: #111111 !important;
    margin-top: 20px;
    font-weight: 400 !important;
}

.solutions-section {
    padding: 0 0 120px;
    background-color: #ffffff;
}

.minimal-divider {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 80px auto 60px auto;
    padding: 0 40px;
    width: 100%;
}

.minimal-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.minimal-label svg {
    flex-shrink: 0;
}

.minimal-label span {
    font-size: 1rem;
    font-weight: 500;
    color: #111111;
}

.minimal-line {
    flex: 1;
    height: 1px;
    border-top: 1px dashed #cbd5e1;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}

.solutions-map-top {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.map-image {
    width: 60%;
    max-width: 1000px;
    height: auto;
    margin-bottom: 20px;
}

.map-caption {
    font-size: 0.9rem;
    color: #111111;
    text-align: center;
    font-weight: 400;
    line-height: 1.6;
}

.solutions-header {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.solutions-header p {
    font-size: 1.25rem;
    color: #184989;
    line-height: 1.6;
    font-weight: 300;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.sol-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.solution-card {
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 35px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.solution-card:hover {
    box-shadow: 0 10px 25px rgba(24, 73, 137, 0.08);
    transform: translateY(-5px);
}

.sol-content h3 {
    font-size: 1.35rem;
    color: #184989;
    font-weight: 400;
    margin-bottom: 8px;
}

.sol-content p {
    font-size: 1rem;
    color: #3f4770;
    line-height: 1.4;
    font-weight: 300;
}

.about-section {
    padding: 0 0 120px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-header {
    text-align: center;
}

.about-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.02em;
}

.about-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.5rem;
    color: #184989;
    font-weight: 400;
    margin-top: -20px;
}

.about-logo {
    height: 225px;
}

.about-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-content p {
    font-size: 1.15rem;
    color: #3f4770;
    line-height: 1.6;
    font-weight: 300;
}

.problem-section {
    padding: 140px 0 60px 0;
    bottom: 100px;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.problem-left {
    flex: 0 0 45%;
}

.problem-left h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.problem-left p {
    font-size: 1.25rem;
    color: #184989;
    line-height: 1.5;
    font-weight: 300;
    max-width: 450px;
}

.problem-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 100%;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.problem-icon-blue {
    width: 44px;
    height: 44px;
    min-width: 44px;
    color: #1d82a4;
    flex-shrink: 0;
}

.problem-item span {
    font-size: 1.35rem;
    color: #184989;
    font-weight: 400;
    line-height: 1.4;
}

.hiw-section {
    padding: 60px 0 100px 0;
}

.hiw-header-divider {
    max-width: 1250px;
    margin: 0 auto 50px;
    display: flex;
    align-items: center;
}

.hiw-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding-right: 20px;
    z-index: 2;
}

.hiw-badge span {
    font-size: 1rem;
    color: #111111;
    font-weight: 400;
}

.hiw-dash {
    flex: 1;
    height: 1px;
    border-top: 1px dashed #cbd5e1;
}

.hiw-main-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 70px;
    letter-spacing: -0.02em;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1250px;
    margin: 0 auto;
}

.hiw-card {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.hiw-card:nth-child(1) {
    z-index: 4;
}

.hiw-card:nth-child(2) {
    z-index: 3;
}

.hiw-card:nth-child(3) {
    z-index: 2;
}

.hiw-card:nth-child(4) {
    z-index: 1;
}

.hiw-card:hover {
    transform: translateY(-8px);
    border-color: #28CABD;
    box-shadow: 0 15px 35px rgba(24, 73, 137, 0.1);
}

.hiw-arrow {
    position: absolute;
    top: 50%;
    right: -38px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    z-index: 10;
    transition: transform 0.4s ease;
}

.hiw-card:hover .hiw-arrow {
    transform: translateY(-50%) translateX(5px);
}

.hiw-num {
    font-size: 6.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #184989 0%, #28CABD 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -2px;
    display: inline-block;
}

.hiw-title {
    font-size: 1.35rem;
    color: #184989;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 15px;
}

.hiw-desc {
    font-size: 1rem;
    color: #111111;
    line-height: 1.5;
    font-weight: 300;
}

@media (max-width: 1100px) {
    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }

    .hiw-card:nth-child(2) .hiw-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .hiw-grid {
        grid-template-columns: 1fr;
    }

    .hiw-arrow {
        display: none;
    }

    .hiw-main-title {
        font-size: 2.5rem;
    }
}

.why-choose-us-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.wcu-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.wcu-left {
    flex: 0 0 45%;
    position: relative;
    top: 270px;
    display: flex;
    flex-direction: column;
}

.wcu-left h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 3.5rem;
    font-weight: 800;
    color: #000000;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0px;
}

.inline-logo {
    height: 1.1em;
    width: auto;
    display: block;
}

.wcu-subtitle {
    font-size: 1.45rem;
    color: #184989;
    line-height: 1.5;
    font-weight: 300;
}

.wcu-right {
    flex: 1;
}

.wcu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wcu-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.wcu-icon-wrapper {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: #1d82a4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcu-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.wcu-card {
    flex: 1;
    border: 1px solid #94a3b8;
    border-radius: 12px;
    padding: 24px 30px;
    background-color: #ffffff;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.wcu-card:hover {
    transform: translateX(8px);
    border-color: #28CABD;
    box-shadow: 0 10px 25px rgba(24, 73, 137, 0.08);
}

.wcu-card h3 {
    font-size: 1.35rem;
    color: #184989;
    font-weight: 400;
    margin-bottom: 8px;
}

.wcu-card p {
    font-size: 1rem;
    color: #000000;
    font-weight: 300;
}

@media (max-width: 1100px) {
    .wcu-container {
        flex-direction: column;
        gap: 50px;
    }

    .wcu-left {
        position: static;
        flex: 1;
        text-align: center;
    }

    .wcu-left h2 {
        font-size: 3rem;
    }

    .wcu-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wcu-left h2 {
        font-size: 2.5rem;
    }

    .wcu-subtitle {
        font-size: 1.2rem;
    }

    .wcu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .wcu-icon-wrapper {
        margin-left: 10px;
    }

    .wcu-card {
        width: 100%;
    }
}

.partners-section {
    padding: 80px 0 120px;
    background-color: #ffffff;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 60px;
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.partner-item img {
    width: auto;
    height: auto;
    max-width: 375px; 
    max-height: 120px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

@media (max-width: 992px) {
    .partners-row {
        gap: 40px;
    }
    
    .partner-item img {
        max-width: 280px;
        max-height: 90px;
    }
}

@media (max-width: 768px) {
    .partners-row {
        flex-direction: column;
        gap: 30px;
    }
}

.cta-section {
    background-color: #222675;
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 40px;
    padding-right: 40px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.cta-background-n {
    position: absolute;
    top: 12%;
    right: 8%;
    height: 125%;
    z-index: 1;
    opacity: 0.85;
    pointer-events: none;
}

.cta-background-n img {
    height: 100%;
    width: auto;
}

.cta-container {
    max-width: 1200px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.cta-content {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    max-width: 650px;
}

.cta-content h2 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.btn-outline-white {
    text-decoration: none;
    color: #ffffff;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #ffffff;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
    border-left-color: #ffffff;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    transition-property: background-color, transform;
    transition-duration: 0.3s, 0.3s;
    transition-timing-function: ease, ease;
    display: inline-block;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-section {
    background: 
        radial-gradient(circle at 50% 50%, 
            transparent 20%, 
            rgba(30, 118, 147, 0.03) 22%, 
            rgba(30, 118, 147, 0.06) 26%, 
            rgba(30, 118, 147, 0.12) 30%, 
            rgba(30, 118, 147, 0.2) 40%, 
            rgba(30, 118, 147, 0.28) 50%, 
            rgba(30, 118, 147, 0.2) 60%, 
            rgba(30, 118, 147, 0.12) 70%, 
            rgba(30, 118, 147, 0.06) 74%, 
            rgba(30, 118, 147, 0.03) 78%, 
            transparent 80%),
        radial-gradient(circle at 50% 50%, #1a2540 0%, #15003F 100%);
    background-color: #15003F;
    padding: 48px 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

.footer-nav-column h3,
.footer-contact h3{
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-nav-links a:hover {
    opacity: 1;
    color: #ffffff;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-contact a:hover {
    opacity: 1;
    color: #ffffff;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 32px;
    }
}

.fade-element {
    opacity: 1 !important;
    transform: translateY(30px);
    transition: opacity 0.8s ease;
    transition: transform 0.8s ease;
}

.fade-element.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero-container-centered h1 {
        font-size: 3.5rem;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-header h2 {
        font-size: 2.2rem;
    }

    .about-header h2 {
        font-size: 2.2rem;
    }

    .problem-left h2 {
        font-size: 2.2rem;
    }

    .hiw-header h2 {
        font-size: 2.2rem;
    }

    .wcu-left h2 {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .problem-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .wcu-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about-split {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .problem-left {
        position: relative;
        top: 0;
    }

    .wcu-left {
        position: relative;
        top: 0;
    }

    .hiw-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .hiw-arrow {
        display: none;
    }

    .cta-image {
        right: -20%;
        opacity: 0.3;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero-container-centered h1 {
        font-size: 2.8rem;
    }

    .hero-container-centered p {
        font-size: 1.15rem;
    }

    .hero-cta-centered {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-bottom: 30px;
    }

    .minimal-divider {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .solutions-container {
        padding: 0 20px;
    }

    .about-container {
        padding: 0 20px;
    }

    .problem-container {
        padding: 0 20px;
    }

    .hiw-container {
        padding: 0 20px;
    }

    .wcu-container {
        padding: 0 20px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .hiw-steps {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 80px 20px;
    }

    .cta-content p {
        font-size: 1.05rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .cta-container {
        justify-content: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        max-width: 100%;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-bottom-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-bottom-links a {
        margin: 0;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-size: 90%;
}

.wcu-title-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.wcu-title-row h2 {
    margin-bottom: 0;
}

.wcu-heading-logo {
    height: 90px;
    object-fit: contain;
}

.hero-container-centered h1, 
.hero-container-centered p, 
.problem-left h2, 
.problem-item span {
    opacity: 0;
    transition: opacity 0.5s ease;
}

@media (max-width: 1100px) {
    .wcu-title-row {
        justify-content: center;
    }
}

.solutions-section,
.about-section,
.problem-section,
.hiw-section,
.why-choose-us-section,
.partners-section {
    padding: 0;
    margin: 0;
    background-color: #ffffff;
}

.solutions-container,
.about-container,
.wcu-container,
.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 100px 40px;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1250px;
    margin: 0 auto;
    padding-bottom: 100px;
}

@media (max-width: 1100px) {
    .hiw-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
    .hiw-card:nth-child(2) .hiw-arrow { display: none; }
    .wcu-container { flex-direction: column; gap: 50px; }
    .wcu-left { position: static; flex: 1; text-align: center; }
    .wcu-right { width: 100%; }
    .wcu-title-row { justify-content: center; }
}

@media (max-width: 992px) {
    .hero-container-centered h1 { font-size: 3.5rem; }
    .solutions-grid, .partners-grid { grid-template-columns: repeat(2, 1fr); }
    h2, .solutions-header h2, .about-header h2, .problem-left h2, .wcu-left h2 { font-size: 2.2rem; }
    .problem-container, .about-split { flex-direction: column; gap: 40px; text-align: center; }
    .problem-right { justify-content: center; }
    .top-row { gap: 60px; }
    .bottom-row { gap: 50px; }
    .partners-container { gap: 60px; }
}

@media (max-width: 768px) {
    .navbar { padding: 1rem 1.5rem; }
    .nav-links, .hiw-arrow { display: none; }
    .hero-container-centered h1 { font-size: 2.8rem; }
    .hero-container-centered p { font-size: 1.15rem; }
    .hero-cta-centered { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto 30px; }
    .btn-outline, .btn-gradient, .btn-nav-outline { text-align: center; justify-content: center; }
    .minimal-divider, .solutions-container, .about-container, .problem-container, .hiw-container, .wcu-container, .partners-container { padding: 0 20px; }
    .solutions-grid, .hiw-grid, .partners-grid { grid-template-columns: 1fr; }
    .wcu-item { flex-direction: column; align-items: center; text-align: center; gap: 15px; }
    .wcu-icon-wrapper { margin-left: 0; }
    .top-row, .bottom-row { flex-direction: column; gap: 40px; }
    .footer-container { flex-direction: column; gap: 40px; }
    .footer-left, .footer-right { max-width: 100%; text-align: center; }
    .footer-bottom-links { display: flex; flex-direction: column; gap: 10px; }
    .social-icons { justify-content: center; margin-top: 20px; }
    .footer-nav a { justify-content: center; }
    .map-image { width: 100%; }
    .wcu-heading-logo { height: 40px; }
}

@media (max-width: 480px) {
    .hero-container-centered h1 { font-size: 2.2rem; }
    h2, .solutions-header h2, .about-header h2, .problem-left h2, .wcu-left h2, .hiw-main-title { font-size: 1.8rem; }
    .logo { height: 40px; }
    .nav-right { gap: 0.5rem; }
    .btn-nav-outline { padding: 8px 14px; font-size: 13px; }
    .hiw-num { font-size: 5rem; }
    .partner-item img { max-width: 200px; }
}



.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #111;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 9999;
        text-align: center;
    }

    .nav-links.active {
        display: flex !important;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 10001;
    }

    .hamburger span {
        width: 25px;
        height: 2px;
        background-color: #111;
        transition: all 0.3s ease-in-out;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 425px) {
    .navbar {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .footer-container,
    .wcu-container,
    .problem-container,
    .about-container,
    .solutions-container,
    .hiw-container,
    .partners-container {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }
    
    .footer-nav-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .wcu-left h2 {
        font-size: 2.5rem;
    }
    
    .hero-container-centered h1 {
        font-size: 1.8rem;
    }
    
    .hero-container-centered p {
        font-size: 1.2rem;
    }
}

/* --- User Greeting Text --- */
.user-greeting-badge {
    display: none !important;
    color: #201F6D; /* Your exact blue */
    font-size: 1.6rem;
    font-weight: 200; /* Normal weight, NOT bold */
    margin-bottom: 0.1rem;
    
    /* Animation Start State */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animation End State */
.user-greeting-badge.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- Centered Footer Credit --- */
.footer-bottom-credit {
    text-align: center;
    margin-top: 70px;
    padding: 0 20px;
}

.footer-bottom-credit p {
    color: rgba(255, 255, 255, 0.5); /* Light faded white/grey */
    font-size: 0.85rem;
    letter-spacing: 0.15em; /* Spreads the letters out like the image */
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
}

/* ==========================================================================
   MOBILE HORIZONTAL SCROLL FIXES & OPTIMIZATIONS
   ========================================================================== */

/* 1. Strictly bound the HTML and Body */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* 2. Prevent ANY images, videos, or icons from breaking the viewport */
img, svg, video {
    max-width: 100%;
    height: auto;
}

/* 3. Aggressive layout stacking for Tablets & Mobile (768px and below) */
@media (max-width: 768px) {
    /* Force all multi-column containers to stack vertically */
    .footer-container,
    .footer-bottom,
    .wcu-content,
    .problem-grid,
    .solutions-grid,
    .hiw-grid,
    .hero-container,
    .hero-content,
    .about-content {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Ensure all main sections respect the screen width and padding */
    .footer-container,
    .wcu-container,
    .problem-container,
    .about-container,
    .solutions-container,
    .hiw-container,
    .partners-container,
    .hero-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    /* Center align the footer bottom layout */
    .footer-bottom {
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        padding-bottom: 20px !important;
    }
    
    .footer-socials {
        justify-content: center !important;
        width: 100% !important;
    }
}

/* 4. Extra safety for very small phones (425px and below) */
@media (max-width: 425px) {
    /* Prevent long emails, links, or titles from stretching the screen */
    .footer-contact a, 
    .footer-bottom p,
    h1, h2, h3 {
        word-break: break-word !important;
        white-space: normal !important;
    }
    
    /* Ensure the Rinaldi text scales down properly */
    .footer-bottom-credit p {
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
    }
}

/* ==========================================================================
   WHY CHOOSE US - MOBILE REORDERING & ALIGNMENT
   ========================================================================== */
@media (max-width: 768px) {
    
    .wcu-container {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* 1. Break the left column open so we can reorder its children */
    .wcu-left {
        display: contents !important; 
    }
    
    /* 2. Put the Title at the very top and center it */
    .wcu-left h2 {
        order: 1 !important;
        text-align: center !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    /* (Optional) If you have a subtitle under the H2, keep it centered */
    .wcu-left > p {
        order: 2 !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    /* 3. Pull the Image (Right Column) UNDER the Title */
    .wcu-right {
        order: 3 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 40px !important;
    }

    .wcu-right img {
        max-width: 90% !important; /* Keeps the image from touching the edges */
        height: auto !important;
    }

    /* 4. Push the Features List UNDER the Image */
    .wcu-features, .wcu-list {
        order: 4 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* 5. Force the Check icon and Text Container to be NEXT to each other */
    .wcu-item, .wcu-feature {
        display: flex !important;
        flex-direction: row !important; /* This keeps them side-by-side */
        align-items: flex-start !important; /* Aligns them at the top */
        gap: 15px !important;
        text-align: left !important;
    }

    /* Prevent the checkmark icon from shrinking when text is long */
    .wcu-item svg, .wcu-item img, .wcu-feature svg, .wcu-feature img {
        flex-shrink: 0 !important;
        width: 24px !important; /* Adjust if your checkmarks are bigger/smaller */
        height: auto !important;
    }
}
/* ==========================================================================
   WHY CHOOSE US - MOBILE LAYOUT REORDERING (HARD OVERRIDE)
   ========================================================================== */
@media (max-width: 768px) {
    
    .wcu-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Forces children to center */
        width: 100% !important;
    }
    
    .wcu-left {
        display: contents !important; 
    }

    /* 1. HARD OVERRIDE FOR THE TITLE */
    .wcu-left h2, h2.section-title {
        order: 1 !important;
        display: flex !important;
        flex-direction: column !important; /* Stacks text and logo vertically */
        align-items: center !important; /* Centers them */
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important; 
        margin-bottom: 30px !important;
    }

    /* Keep the logo centered and sized */
    .wcu-heading-logo {
        height: auto !important;
        max-width: 200px !important;
        margin-left: 0 !important;
        margin-top: -20px !important;
        margin-bottom: -70px !important;
    }

    /* 2. Pull the Image directly under the Title */
    .wcu-right {
        order: 2 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 40px !important;
    }

    /* 3. Push the Features List under the Image */
    .wcu-features, .wcu-list {
        order: 3 !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 24px !important;
    }

    /* 4. Force the Checkmark and Text to stay side-by-side */
    .wcu-feature, .wcu-item {
        display: flex !important;
        flex-direction: row !important; /* Side-by-side */
        align-items: flex-start !important;
        text-align: left !important;
        gap: 15px !important;
    }

    /* Prevent checkmark from shrinking */
    .wcu-icon-wrapper {
        flex-shrink: 0 !important;
        margin: 0 !important;
        margin-top: 5px !important;
    }
}

/* ==========================================================================
   MOBILE DROPDOWN MENU FIX
   ========================================================================== */
@media (max-width: 768px) {
    .nav-links {
        margin-left: 0 !important; /* Removes the desktop spacing pushing it right */
        margin-right: 0 !important;
        left: 0 !important;
        width: 100% !important; /* Forces it to span edge-to-edge */
        border-top: 1px solid #e2e8f0 !important; /* Adds a clean divider line under the navbar */
        box-sizing: border-box !important;
    }
}

/* ==========================================================================
   NEW ABOUT US SECTION STYLES
   ========================================================================== */
.about-logo {
    height: 140px; /* Reduced from the massive 225px to match the mockup */
    margin-bottom: 25px;
}

.about-intro-text {
    max-width: 100%; 
    margin: 0 0 20px 0; /* Creates space between the paragraph and the first list item */
    text-align: left;
    font-size: 1.25rem; 
    color: #111111;
    line-height: 1.6;
    font-weight: 300;
}

.about-list-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px; /* Smooth breathing room between items */
    justify-content: center;
}

.about-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-arrow-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #1d82a4; /* Custom teal/blue matching your palette */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d82a4;
    flex-shrink: 0;
}

.about-arrow-icon svg {
    width: 20px;
    height: 20px;
}

.about-list-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.about-list-text h4 {
    font-size: 1.35rem;
    color: #184989; /* Deep blue to match NEMT */
    font-weight: 400;
    margin: 0;
}

.about-list-text p {
    font-size: 1rem;
    color: #111111;
    margin: 0;
    font-weight: 300;
}