:root {
            --ethio-red: #C8102E; 
            --ethio-dark-blue: #0A192F;
            --ethio-gold: #C5A059;
        }

        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Inter', sans-serif;
            background-color: var(--ethio-dark-blue);
            color: #fff;
            overflow: hidden;
        }

        /* Snap Scroll Container */
        .snap-container {
            height: 100vh;
            overflow-y: scroll;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
            background-color: var(--ethio-dark-blue);
        }

        section {
            position: relative;
            height: 100vh;
            width: 100%;
            scroll-snap-align: start;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            z-index: 1; /* Creates a local stacking context */
        }

        /* FIXED BACKGROUND SYSTEM - Using positive Z-index within the section */
        .section-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1; /* Bottom Layer */
            transition: transform 10s ease-out;
            transform: scale(1);
        }

        /* Scale up image when section is active */
        section.is-visible .section-bg {
            transform: scale(1.15);
        }

        /* Overlay sits on top of the image but below text */
        .overlay {
            position: absolute;
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%;
            background: linear-gradient(to bottom, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.6) 100%);
            z-index: 2; /* Middle Layer */
        }

        .content-container {
            position: relative;
            max-width: 1200px;
            width: 90%;
            z-index: 3; /* Top Layer */
        }

        /* Typography */
        .ethio-heading {
            font-weight: 900;
            font-size: clamp(2.2rem, 6vw, 4.2rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .ethio-label {
            display: block;
            text-transform: uppercase;
            letter-spacing: 4px;
            font-size: 0.9rem;
            color: var(--ethio-red);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .sub-text {
            font-size: 1.2rem;
            max-width: 750px;
            color: #efefef;
            line-height: 1.6;
        }

        .btn-ethio {
            background-color: var(--ethio-red);
            color: white;
            border: none;
            padding: 15px 35px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-ethio:hover {
            background-color: #fff;
            color: var(--ethio-red);
            transform: translateY(-5px);
        }

        .reveal { opacity: 0; }

        /* Navbar */
        .navbar {
            z-index: 1000;
            transition: 0.5s;
            background: rgba(6, 12, 28, 0.94);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        body.home-page .navbar {
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border-bottom: 0;
            box-shadow: none;
        }
        .logo-text { font-weight: 900; color: #fff; letter-spacing: -1px; }
        .logo-red { color: var(--ethio-red); }
        .nav-main-links .nav-link { font-size: 0.82rem; letter-spacing: 0.5px; }

/* Desktop navbar dropdown behavior: open on hover/focus like Peraton */
@media (min-width: 1200px) {
    .nav-main-links .dropdown {
        position: static;
    }

    .nav-main-links .dropdown-menu {
        margin-top: 0;
        border: 0;
        border-radius: 0;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        background: #f3f3f3;
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
    }

    .nav-main-links .dropdown:hover > .dropdown-menu,
    .nav-main-links .dropdown:focus-within > .dropdown-menu {
        display: block;
    }

    .health-mega-menu {
        display: flex;
        min-height: 218px;
    }

    .health-mega-intro {
        width: 36%;
        padding: 1rem 1.15rem 1rem;
        background: linear-gradient(150deg, #ececec 0%, #e6e6e6 100%);
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .health-mega-image {
        width: 66%;
        height: 126px;
        object-fit: cover;
        object-position: center;
        display: block;
        margin-left: 0;
        margin-bottom: 0.55rem;
        filter: none;
    }

    .health-mega-label {
        display: block;
        color: var(--ethio-red);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 1.3px;
        margin-bottom: 0.55rem;
        text-align: center;
    }

    .health-mega-title {
        color: #111;
        text-transform: uppercase;
        font-weight: 800;
        font-size: 0.95rem;
        line-height: 1.35;
        letter-spacing: 0.2px;
        text-align: center;
        max-width: 22rem;
    }

    .health-mega-copy {
        color: rgba(17, 17, 17, 0.75);
        text-transform: none;
        font-weight: 500;
        font-size: 0.78rem;
        line-height: 1.55;
        letter-spacing: 0;
        text-align: center;
        max-width: 22rem;
    }

    .health-mega-links {
        flex: 1;
        padding: 0.85rem 1.1rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1.6rem;
        row-gap: 0.2rem;
        align-content: center;
    }

    .health-mega-dropdown-wrap .dropdown-item {
        color: #1a1a1a;
        font-size: 0.74rem;
        letter-spacing: 1px;
        font-weight: 700;
        padding: 0.6rem 0.25rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        transition: color 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
    }

    .health-mega-dropdown-wrap .dropdown-item:hover {
        color: var(--ethio-red);
        background: transparent;
        border-color: rgba(200, 16, 46, 0.38);
        padding-left: 0.5rem;
    }

    .health-mega-dropdown-wrap .dropdown-item.active,
    .health-mega-dropdown-wrap .dropdown-item:active {
        color: var(--ethio-red);
        background: transparent;
        border-color: rgba(200, 16, 46, 0.5);
    }

    .health-mega-dropdown-wrap > .nav-link,
    .health-mega-dropdown-wrap > .nav-link:hover,
    .health-mega-dropdown-wrap > .nav-link:focus {
        color: var(--ethio-red) !important;
    }
}

@media (max-width: 1399px) {
    .nav-main-links .nav-link {
        padding-left: 0.65rem !important;
        padding-right: 0.65rem !important;
    }
}

        /* Side Dots */
        .side-dots {
            position: fixed; right: 30px; top: 50%;
            transform: translateY(-50%); z-index: 100;
            display: flex; flex-direction: column; gap: 15px;
        }
        .dot-link {
            width: 12px; height: 12px; border-radius: 50%;
            background: rgba(255,255,255,0.2); cursor: pointer;
            border: 1px solid rgba(255,255,255,0.5);
            transition: 0.3s;
        }
        .dot-link.active { background: var(--ethio-red); transform: scale(1.5); border-color: #fff; }

        .service-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
            margin-top: 3rem;
        }
        .service-item {
            background: rgba(255,255,255,0.07);
            padding: 30px;
            border-bottom: 4px solid var(--ethio-red);
            backdrop-filter: blur(5px);
            transition: 0.3s;
        }


                #footer-section { background-color: #000; display: block; height: auto; min-height: 100vh; padding-top: 100px;}
        
        .footer-header { font-weight: 900; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 20px; color: #fff; letter-spacing: 1px; }
        .footer-link-list { list-style: none; padding: 0; margin: 0; }
        .footer-link-list li { margin-bottom: 8px; }
        .footer-link-list a { color: #aaa; text-decoration: none; font-size: 0.85rem; transition: 0.3s; }
        .footer-link-list a:hover { color: var(--ethio-red); }

        .cta-box h2 { font-weight: 900; font-size: 1.8rem; text-transform: uppercase; margin-bottom: 15px; }
        .cta-box p { font-size: 0.9rem; color: #ccc; line-height: 1.5; margin-bottom: 25px; }
        .btn-outline-white { border: 1px solid #fff; color: #fff; text-transform: uppercase; font-weight: 700; padding: 10px 20px; font-size: 0.8rem; transition: 0.3s; text-decoration: none; }
        .btn-outline-white:hover { background: #fff; color: #000; }

        .footer-bottom { border-top: 1px solid #333; margin-top: 60px; padding: 30px 0; font-size: 0.8rem; color: #888; }
        .footer-bottom a { color: #fff; text-decoration: none; margin-right: 20px; font-weight: 700; }
        .footer-bottom a:hover { color: var(--ethio-red); }
        .social-icons a { color: #fff; margin-left: 15px; font-size: 1.1rem; transition: 0.3s; }
        .social-icons a:hover { color: var(--ethio-red); }
            /* CSS Updates for Full Height Effect */
    #footer-section {
        background-color: #000;
        height: 100vh; /* Force full height */
        display: flex;
        align-items: stretch;
        scroll-snap-align: start;
        position: relative;
        overflow: hidden;
    }

    #footer-section .container {
        position: relative;
        z-index: 2;
    }

    /* Add a subtle brand mark in background if you want */
    #footer-section::after {
        content: "EG";
        position: absolute;
        bottom: -50px;
        right: -20px;
        font-size: 30vw;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.02);
        line-height: 1;
        z-index: 1;
        pointer-events: none;
    }

    .footer-header {
        font-weight: 900;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        margin-bottom: 25px;
        color: #fff;
    }

    .footer-link-list a {
        font-size: 0.9rem;
        color: #888;
        transition: color 0.3s ease;
    }

    .footer-link-list a:hover {
        color: var(--ethio-red);
    }

    .cta-box h2 {
        font-weight: 900;
        letter-spacing: -1px;
    }

    .letter-spacing-2 {
        letter-spacing: 2px;
    }

    /* Ensure bottom bar stays thin and at the bottom */
    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 20px;
    }

    @media (max-width: 991px) {
        #footer-section {
            height: auto; /* Allow overflow on small mobile if links are too many */
            min-height: 100vh;
        }
        .cta-box {
            margin-top: 30px;
        }
    }
    /* Ensure the mobile menu has a background when expanded */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 25, 47, 0.95); /* Matches your Ethio-dark-blue */
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    /* Make the toggle button more visible */
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
}

@media (max-width: 991px) {
    .navbar {
        background: rgba(10, 25, 47, 0.96);
        backdrop-filter: blur(8px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    }
    body.home-page .navbar {
        background: rgba(10, 25, 47, 0.96);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    }

    body, html {
        overflow: auto;
    }

    .snap-container {
        height: 100vh;
        overflow-y: auto;
        scroll-snap-type: none;
    }

    section {
        height: auto;
        min-height: 100vh;
        overflow: visible;
        align-items: flex-start;
        padding: 110px 0 50px;
    }

    .content-container {
        width: 92%;
    }

    .side-dots {
        display: none;
    }

    .reveal {
        opacity: 1 !important;
    }

    .animate__animated {
        animation: none !important;
    }

    .section-bg,
    section.is-visible .section-bg {
        transition: none;
        transform: none;
    }

    .ethio-heading {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
    }

    .sub-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    #footer-section {
        min-height: auto;
        height: auto;
        padding-top: 100px;
    }
}

@media (max-width: 1199px) {
    .health-mega-dropdown-wrap .dropdown-menu {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .navbar-collapse .dropdown-menu {
        border: 0;
        background: transparent;
        margin-top: 0.25rem;
    }

    .navbar-collapse .dropdown-item {
        color: rgba(255, 255, 255, 0.85);
        padding-left: 1.75rem;
    }

    .navbar-collapse .dropdown-item:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
    }
}

.navbar .nav-link.active {
    color: var(--ethio-red) !important;
}

.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:active {
    background: rgba(200, 16, 46, 0.12);
    color: var(--ethio-red);
}

.about-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 3px solid var(--ethio-red);
    backdrop-filter: blur(5px);
    padding: 2rem 1.5rem;
    height: 100%;
}

.about-card h4 {
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-card p {
    color: #efefef;
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 1.1px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.about-read-more::after {
    content: ">";
    font-size: 0.75rem;
    line-height: 1;
}

.about-read-more:hover {
    background: #fff;
    color: #0A192F;
    border-color: #fff;
}

.about-icon {
    color: var(--ethio-red);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-story-image {
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.customer-logo-wrap {
    width: 128px;
    height: 128px;
    margin: 0 auto;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.customer-logo-wrap:hover {
    transform: translateY(-4px);
    border-color: var(--ethio-red);
}

.customer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.contact-hero .overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.68) 100%);
}

.contact-hero {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
    padding: 96px 0 26px;
    overflow: hidden;
}

/* Force image-only header on contact page */
.contact-hero video,
.contact-hero .hero-video,
.contact-simple-page .contact-hero video {
    display: none !important;
}

.contact-hero-title {
    font-weight: 900;
    font-size: clamp(2.2rem, 5.8vw, 3.9rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.02;
}

.contact-hero-copy {
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin-top: 0.7rem;
    margin-bottom: 0;
    font-size: 0.92rem;
    letter-spacing: 0.1px;
    line-height: 1.6;
}

.contact-hero .content-container {
    max-width: 1050px;
}

.contact-main-section .content-container {
    max-width: 1200px;
}

.contact-main-section {
    position: relative;
    height: auto;
    min-height: auto;
    background: #060606;
    padding-top: 70px;
    padding-bottom: 72px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-content-wrap {
    padding-top: 0;
    padding-bottom: 0;
}

.contact-top-intro {
    margin-bottom: 2.4rem;
}

.contact-section-heading {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-white-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.contact-intro-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.1rem;
    line-height: 1.55;
}

.contact-aside-box {
    border-left: 1px solid rgba(255, 255, 255, 0.26);
    padding-left: 1.8rem;
    margin-top: 2px;
}

.contact-aside-box h3 {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-details-list {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-details-list i {
    color: var(--ethio-red);
    margin-top: 4px;
    min-width: 20px;
}

.contact-details-list a {
    color: #e9e9e9;
    text-decoration: none;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-details-list a:hover {
    color: #fff;
    border-color: var(--ethio-red);
}

.contact-main-section .contact-form-alert.alert-success {
    background: rgba(25, 135, 84, 0.18);
    color: #cfead8;
    border-left: 4px solid #198754 !important;
}

.contact-main-section .contact-form-alert.alert-danger {
    background: rgba(200, 16, 46, 0.12);
    color: #f5d0d6;
    border-left: 4px solid var(--ethio-red) !important;
}

.contact-main-section .contact-form-alert ul {
    color: rgba(255, 255, 255, 0.92);
}

.contact-form-box {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    padding: 1rem;
}

.contact-input {
    border-radius: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #f6f6f6;
    min-height: 46px;
    font-size: 0.84rem;
    letter-spacing: 0.3px;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-input:focus {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--ethio-red);
    color: #fff;
    box-shadow: none;
}

.contact-main-section .form-label {
    color: rgba(255, 255, 255, 0.92);
}

.contact-main-section .contact-input.is-invalid {
    border-color: #ff6b6b;
}

.contact-main-section .invalid-feedback {
    color: #ffc9c9;
    font-size: 0.8rem;
}

.contact-textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-captcha-placeholder {
    max-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.contact-captcha-placeholder span {
    margin-left: auto;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-submit-btn {
    border-radius: 0;
    padding: 9px 24px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    border: 1px solid var(--ethio-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 12rem;
    transition: opacity 0.2s ease;
}

.contact-submit-btn.is-loading {
    pointer-events: none;
    opacity: 0.95;
}

.contact-submit-btn .contact-submit-progress-label {
    letter-spacing: 0.06em;
}

.contact-map-wrap {
    margin-top: 2.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
    overflow: hidden;
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
    filter: grayscale(0.25) contrast(1.04);
}

.contact-simple-html {
    overflow-y: auto !important;
}

.contact-simple-page .side-dots {
    display: none;
}

body.contact-simple-page {
    overflow-x: hidden;
    overflow-y: auto;
}

.contact-simple-page .snap-container {
    height: auto;
    min-height: 100vh;
    overflow-y: visible;
    overflow-x: clip;
    scroll-snap-type: none;
}

.contact-simple-page section {
    scroll-snap-align: none;
    min-height: auto;
    height: auto;
    align-items: flex-start;
    padding: 0;
}

.contact-simple-page .reveal {
    opacity: 1 !important;
}

.contact-simple-page .animate__animated {
    animation: none !important;
}

.contact-simple-page #footer-section {
    min-height: auto !important;
    height: auto;
    padding-top: 56px;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-simple-page #footer-section::after {
    display: none;
}

@media (max-width: 991px) {
    .contact-main-section {
        padding-top: 42px;
        padding-bottom: 46px;
    }
    .contact-content-wrap {
        padding-top: 0;
    }
    .contact-section-heading {
        margin-bottom: 1.25rem;
    }
    .contact-hero {
        min-height: 220px;
        padding: 84px 0 20px;
    }

    .contact-hero-title {
        font-size: clamp(1.9rem, 9.5vw, 3rem);
    }

    .contact-map-wrap iframe {
        height: 320px;
    }

    .contact-aside-box {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.26);
        padding-left: 0;
        padding-top: 1.2rem;
        margin-top: 1rem;
    }
}

.customer-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.customer-logo-item {
    flex: 0 0 auto;
}

@media (min-width: 1200px) {
    .customer-logos-row {
        flex-wrap: nowrap;
        justify-content: center;
    }

    .customer-logo-wrap {
        width: 112px;
        height: 112px;
    }
}

body.about-static,
body.about-static html {
    overflow: auto;
}

body.about-static .side-dots {
    display: none !important;
}

body.about-static .snap-container {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: none;
}

body.about-static section {
    height: auto;
    min-height: auto;
    scroll-snap-align: none;
    align-items: flex-start;
    overflow: visible;
    padding: 120px 0 80px;
}

body.about-static #about-hero {
    min-height: 72vh;
    align-items: center;
}

body.about-static .reveal {
    opacity: 1 !important;
}

body.about-static .animate__animated {
    animation: none !important;
}

body.about-static .section-bg,
body.about-static section.is-visible .section-bg {
    transition: none;
    transform: none;
}

html.federal-team-html {
    overflow-y: auto;
}

body.federal-team-page {
    overflow-x: hidden;
    overflow-y: auto;
    background: #05070d;
}

body.federal-team-page .side-dots {
    display: none !important;
}

body.federal-team-page .snap-container {
    height: auto;
    min-height: 100vh;
    overflow-y: visible;
    scroll-snap-type: none;
    background: #05070d;
}

body.federal-team-page #footer-section {
    height: auto;
    min-height: auto;
    padding-top: 52px;
    background: #060606;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

body.federal-team-page #footer-section::after {
    display: none;
}

body.federal-team-page section {
    min-height: auto;
    height: auto;
    scroll-snap-align: none;
    align-items: flex-start;
    padding: 0;
}

body.federal-team-page .reveal {
    opacity: 1 !important;
}

body.federal-team-page .animate__animated {
    animation: none !important;
}

body.federal-team-page .section-bg,
body.federal-team-page section.is-visible .section-bg {
    transform: none;
    transition: none;
}

.federal-hero {
    min-height: 70vh;
    display: flex;
    align-items: flex-end !important;
    padding: 126px 0 58px !important;
}

.federal-hero .overlay {
    background: linear-gradient(to bottom, rgba(4, 8, 16, 0.35) 0%, rgba(4, 8, 16, 0.84) 62%, rgba(4, 8, 16, 1) 100%);
}

.federal-hero-content {
    max-width: 1140px;
}

.federal-hero-content .ethio-heading {
    margin-bottom: 0.85rem;
    font-size: clamp(2.6rem, 7vw, 5rem);
    letter-spacing: 1px;
}

.federal-hero-content .sub-text {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.federal-team-section {
    background: #040404;
    padding: 36px 0 44px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.federal-team-section-alt {
    background: #080808;
}

.federal-section-title {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 900;
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    margin-bottom: 1.25rem;
    text-align: center;
}

.federal-card {
    background: #101621;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 100%;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.federal-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.federal-photo {
    background: radial-gradient(circle at top center, rgba(42, 59, 82, 0.95) 0%, rgba(19, 28, 43, 0.98) 58%, rgba(10, 15, 24, 1) 100%);
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 12px 0;
}

.federal-avatar {
    width: 164px;
    height: 164px;
    object-fit: cover;
    border-radius: 0;
    display: block;
    margin: 0 auto;
    border: 0;
}

.federal-meta {
    background: rgba(255, 255, 255, 0.82);
    color: #050505;
    text-align: left;
    padding: 0.52rem 0.66rem 0.58rem;
    min-height: 68px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
}

.federal-meta h3 {
    margin: 0;
    color: #121821;
    font-weight: 800;
    font-size: 0.84rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.federal-meta a {
    display: inline-block;
    margin-top: 0.24rem;
    color: #27313d;
    text-decoration: none;
    font-size: 0.73rem;
    line-height: 1;
    text-transform: uppercase;
}

.federal-meta a:hover {
    color: #111;
}

@media (max-width: 991px) {
    .federal-hero {
        min-height: 54vh;
        padding: 102px 0 34px !important;
    }

    .federal-team-section {
        padding: 28px 0 34px !important;
    }

    .federal-avatar {
        width: 118px;
        height: 118px;
    }

    .federal-photo {
        min-height: 186px;
    }

    .federal-meta {
        min-height: 62px;
    }

    .federal-meta h3 {
        font-size: 0.73rem;
    }

    .federal-meta a {
        font-size: 0.67rem;
    }
}

body.health-page {
    overflow-x: hidden;
    overflow-y: auto;
    background: #f4f4f4;
    color: #1d1d1d;
}

body.health-page .side-dots {
    display: none !important;
}

body.health-page .snap-container {
    height: auto;
    min-height: 100vh;
    overflow-y: visible;
    scroll-snap-type: none;
    background: #f4f4f4;
}

body.health-page section {
    min-height: auto;
    height: auto;
    scroll-snap-align: none;
    align-items: flex-start;
    padding: 0;
    color: #1d1d1d;
}

body.health-page .reveal {
    opacity: 1 !important;
}

body.health-page .animate__animated {
    animation: none !important;
}

body.health-page .section-bg,
body.health-page section.is-visible .section-bg {
    transform: none;
    transition: none;
}

.health-hero {
    min-height: 56vh;
    display: flex;
    align-items: flex-end !important;
    padding: 124px 0 48px !important;
    position: relative;
}

.health-hero .overlay {
    background: linear-gradient(to bottom, rgba(0, 40, 44, 0.18) 0%, rgba(0, 40, 44, 0.72) 70%, rgba(0, 40, 44, 0.88) 100%);
}

.health-hero-title {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    font-size: clamp(1.8rem, 4.7vw, 3.25rem);
    letter-spacing: 0.8px;
}

.health-main {
    background: #f4f4f4;
    padding: 46px 0 56px !important;
}

.health-main .content-container {
    max-width: 1100px;
}

.health-main h2 {
    color: #0f6b67;
    font-weight: 800;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    margin-bottom: 1rem;
}

.health-main h3 {
    color: #0f6b67;
    font-weight: 800;
    font-size: clamp(1.05rem, 2vw, 1.5rem);
    margin-top: 1.4rem;
    margin-bottom: 0.75rem;
}

.health-main p,
.health-main li {
    color: #222;
    line-height: 1.7;
    font-size: 0.97rem;
}

.health-main ul {
    padding-left: 1.15rem;
    margin-bottom: 1rem;
}

.health-page #footer-section {
    min-height: auto !important;
    height: auto;
    padding-top: 44px;
    background: #f4f4f4;
    color: #102229;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.health-page #footer-section .footer-header,
.health-page #footer-section a,
.health-page #footer-section p,
.health-page #footer-section .footer-link-list a,
.health-page #footer-section .social-icons a {
    color: #102229 !important;
}

.health-page #footer-section::after {
    display: none;
}

@media (max-width: 991px) {
    .health-hero {
        min-height: 40vh;
        padding: 102px 0 28px !important;
    }

    .health-main {
        padding: 32px 0 38px !important;
    }
}

html.brands-html {
    overflow-y: auto;
}

body.brands-page {
    overflow-x: hidden;
    overflow-y: auto;
    background: #05070d;
    color: #edf1fb;
}

body.brands-page .side-dots {
    display: none !important;
}

body.brands-page .snap-container {
    height: auto;
    min-height: 100vh;
    overflow-y: visible;
    scroll-snap-type: none;
    background: #05070d;
}

body.brands-page section {
    min-height: auto;
    height: auto;
    scroll-snap-align: none;
    align-items: flex-start;
    padding: 0;
}

body.brands-page .reveal {
    opacity: 1 !important;
}

body.brands-page .animate__animated {
    animation: none !important;
}

body.brands-page .section-bg,
body.brands-page section.is-visible .section-bg {
    transform: none;
    transition: none;
}

.brands-hero {
    min-height: 64vh;
    display: flex;
    align-items: flex-end !important;
    position: relative;
    padding: 132px 0 56px !important;
}

.brands-hero .overlay {
    background: linear-gradient(180deg, rgba(4, 8, 16, 0.45) 0%, rgba(4, 8, 16, 0.92) 62%, #05070d 100%);
}

.brands-hero-content {
    max-width: 1050px;
}

.brands-hero-title {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: clamp(2rem, 5.5vw, 4.4rem);
}

.brands-hero-copy {
    max-width: 760px;
    margin-top: 0.8rem;
    margin-bottom: 0;
    color: rgba(236, 241, 250, 0.92);
    font-size: 0.98rem;
    line-height: 1.8;
}

.brands-intro {
    padding: 50px 0 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brands-intro .content-container {
    max-width: 1120px;
}

.brands-intro h2 {
    margin-bottom: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    font-weight: 800;
}

.brands-intro p {
    margin: 0;
    color: rgba(231, 238, 247, 0.9);
    font-size: 0.95rem;
    line-height: 1.8;
}

.brands-grid-section {
    padding: 26px 0 66px !important;
}

.brands-section-title {
    color: #fff;
    text-transform: uppercase;
    font-size: clamp(1rem, 2vw, 1.6rem);
    font-weight: 800;
    letter-spacing: 0.6px;
    margin-bottom: 1.15rem;
}

.brands-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.brand-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    min-height: 118px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(1.5px);
}

.brand-card img {
    width: 100%;
    max-height: 74px;
    object-fit: contain;
    mix-blend-mode: normal;
}

body.brands-page #footer-section {
    min-height: auto !important;
    height: auto;
    padding-top: 52px;
    background: #06080f;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

body.brands-page #footer-section::after {
    display: none;
}

@media (max-width: 1199px) {
    .brands-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .brands-hero {
        min-height: 50vh;
        padding: 108px 0 34px !important;
    }

    .brands-intro {
        padding: 38px 0 18px !important;
    }

    .brands-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        min-height: 98px;
        padding: 12px;
    }

    .brand-card img {
        max-height: 62px;
    }
}

/* Contact header: mirror brands hero styling exactly */
body.contact-simple-page .brands-hero {
    height: auto;
    min-height: 64vh;
    display: flex;
    align-items: flex-end !important;
    position: relative;
    padding: 132px 0 56px !important;
}

@media (max-width: 991px) {
    body.contact-simple-page .brands-hero {
        height: auto;
        min-height: 50vh;
        padding: 108px 0 34px !important;
    }
}


body.health-services-page {
    overflow-x: hidden;
    overflow-y: auto;
    background: #030b1e;
}

.health-services-html {
    overflow-y: auto !important;
}

body.health-services-page .side-dots {
    display: none !important;
}

body.health-services-page .snap-container {
    height: auto;
    min-height: 100vh;
    overflow-y: visible;
    scroll-snap-type: none;
    background: #030b1e;
}

body.health-services-page section.about-page {
    min-height: auto;
    height: auto;
    align-items: flex-start;
    padding: 0;
    scroll-snap-align: none;
}

body.health-services-page .section-bg {
    background-image: url('../images/health-management/service-page-bg.png') !important;
    background-size: cover;
    background-position: center;
    filter: blur(0.5px);
}

body.health-services-page .overlay {
    background: linear-gradient(to bottom, rgba(4, 13, 34, 0.78) 0%, rgba(4, 13, 34, 0.88) 100%);
}

body.health-services-page .content-container {
    max-width: 1160px;
}

body.health-services-page .ethio-label {
    color: #e6eefc;
    letter-spacing: 2px;
}

body.health-services-page .ethio-heading {
    color: #ffffff;
}

body.health-services-page .sub-text,
body.health-services-page li,
body.health-services-page p {
    color: rgba(255, 255, 255, 0.95);
}

body.health-services-page ul {
    padding-left: 1.25rem;
}

body.health-services-page ul ul {
    margin-top: 0.35rem;
}

body.health-services-page #health-front-office-hero,
body.health-services-page #health-credentialing-hero,
body.health-services-page #health-ar-hero,
body.health-services-page #health-medical-billing-hero,
body.health-services-page #health-qpp-hero,
body.health-services-page #health-audit-hero,
body.health-services-page #health-it-hero {
    min-height: 34vh;
    display: flex;
    align-items: flex-end !important;
    padding: 122px 0 22px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

body.health-services-page #health-front-office-content,
body.health-services-page #health-credentialing-content,
body.health-services-page #health-ar-content,
body.health-services-page #health-medical-billing-content,
body.health-services-page #health-qpp-content,
body.health-services-page #health-audit-content,
body.health-services-page #health-it-content {
    padding: 24px 0 56px !important;
}

body.health-services-page #footer-section {
    min-height: auto !important;
    height: auto;
    padding-top: 44px;
    background: #030b1e;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

body.health-services-page #footer-section::after {
    display: none;
}

@media (max-width: 991px) {
    body.health-services-page #health-front-office-hero,
    body.health-services-page #health-credentialing-hero,
    body.health-services-page #health-ar-hero,
    body.health-services-page #health-medical-billing-hero,
    body.health-services-page #health-qpp-hero,
    body.health-services-page #health-audit-hero,
    body.health-services-page #health-it-hero {
        min-height: 28vh;
        padding: 104px 0 16px !important;
    }

    body.health-services-page #health-front-office-content,
    body.health-services-page #health-credentialing-content,
    body.health-services-page #health-ar-content,
    body.health-services-page #health-medical-billing-content,
    body.health-services-page #health-qpp-content,
    body.health-services-page #health-audit-content,
    body.health-services-page #health-it-content {
        padding: 16px 0 36px !important;
    }
}