body {
    margin: 0;
    background-color: #11151b;
    color: white;
    font-family: Arial, sans-serif;
}
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: #11151b;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}
.header-content img {
    height: 40px;
}
.header-content nav {
    display: flex;
    gap: 10px;
}
.header-content nav a {
    color: white;
    text-decoration: none;
}
.header-content nav a:hover {
    text-decoration: underline;
}



header {

    position: sticky;
    top: 0;
    z-index: 1000;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background-color: #11151b;
    position: relative;
    z-index: 10;
}

.nav-left {
    margin-right: 30em;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin-right: 2em;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-weight: bold;
    color: white;
}

/* DROPDOWN MENU */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #f8f9fb;
    padding: 20px 40px;
    width: 500px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100; /* makes sure it's above other content */
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown content layout */
.dropdown-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #11151b;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
}

.dropdown-menu ul li {
    margin-bottom: 1em;
    margin-top: 1em;
}

.dropdown-menu ul li a {
    color: #11151b;
    font-weight: bold;
    display: block;
}

.dropdown-menu ul li p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #444;
}

.contact-btn {
    background: #f8cb1a;
    color: black;
    padding: 8px 16px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}



















.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
}
.nav-left img {
    max-height: 100%;
    max-width: 100%;
    -webkit-mask-image:
            linear-gradient(to top, transparent 0%, black 10%, black 90%, transparent 100%),
            linear-gradient(to left, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-composite: intersect;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: cover;
    mask-image: linear-gradient(to top, transparent 0%, black 10%, black 80%, transparent 100%), linear-gradient(to left, transparent 0%, black 5%, black 96%, transparent 100%);
    mask-composite: intersect;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;
}
.banner img {
    max-height: 100%;
    max-width: 100%;
    -webkit-mask-image:
            linear-gradient(to top, transparent 0%, black 10%, black 90%, transparent 100%),
            linear-gradient(to left, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-composite: intersect;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: cover;

    mask-image:
            linear-gradient(to top, transparent 0%, black 10%, black 90%, transparent 100%),
            linear-gradient(to left, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-composite: intersect;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;
}
.tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #11151b;
    padding: 5em 0 0 0;
}
.tab {
    padding: 10px 20px;
    border: 2px solid transparent;
    border-bottom: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-right: 1em;
}
.tab:not(.active) {
    background: transparent;
    border-color: #f8cb1a;
}
.tab.active {
    background: white;
    color: #0a0842;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 1;
}
.tab:not(.active):hover {
    background: rgba(255, 255, 255, 0.1);
}
.content {
    background: white;
    height: 100%;
}









.moloco-section {
    width: 60%;
    margin: 0 auto;
    padding: 60px 0;
    background: white;
    font-family: Arial, sans-serif;
}

.moloco-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;  /* ✅ Keeps image at top */
}

/* Optional: Fix image position visually */
.moloco-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;  /* ✅ Always aligns to top */
    position: relative;  /* ✅ Keeps image pinned when scrolling */
    top: 100px;        /* Adjust if you want it to stay fixed while scrolling */
}

.moloco-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    display: block;
}

/* RIGHT SIDE */
.moloco-right {
    flex: 1;
}

.moloco-right h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #11151b;
}

.moloco-right h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000000;
}

.moloco-right .highlight {
    color: #f8cb1a;
}

.moloco-right p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
}

.moloco-right ul {
    margin-bottom: 20px;
    padding-left: 18px;
}

.moloco-right ul li {
    margin-bottom: 10px;
    color: #11151b;
}

.learn-btn {
    background: #11151b;
    color: white;
    padding: 12px 24px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}


.separator {
    background: #11151b;
    width: 100%;
    height: 5em;
}



.client-logos-wrapper {
    background: white;
    display: flex;
    justify-content: center;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    width: 70%;
}
.client-logos img {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s;
    padding: 1em 5em 0 0;
}
.client-logos img:hover {
    transform: scale(1.1);
}












 .footer {
     background: #11151b;
     color: white;
     padding: 40px 20px 10px;
     font-family: Arial, sans-serif;
 }

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo h2 {
    color: white;
    font-size: 22px;
}
.footer-logo .highlight {
    color: #f8cb1a;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: #f8cb1a;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 6px 0;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #f8cb1a;
}

.footer-contact p {
    margin: 5px 0;
}

.social-icons a img {
    width: 24px;
    margin-right: 10px;
    filter: invert(1);
    transition: transform 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}








#solutions {
    display: none;
}

    @media screen and (max-width: 768px) {

    header {
        padding: 2em;
    }

    .navbar {
        flex-direction: column;
        align-items: center;   /* ✅ Centers everything horizontally */
        justify-content: center; /* ✅ Centers vertically */
        text-align: center;
    }

    .nav-left {
        margin: 0; /* ✅ Remove large right margin */
    }

    .nav-links {
        flex-direction: column;
        align-items: center;   /* ✅ Center links */
        gap: 15px;
        margin: 10px 0;
    }
    .dropdown-menu {
        position: relative;
    }

    .tabs {
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        padding: 1em !important;
        gap: 0.5em !important;
    }

    .tab {
        flex: 1 1 auto !important;
        margin-right: 0 !important;
        font-size: 14px !important;
        padding: 8px 12px !important;
        min-width: 100px !important;
    }

    .moloco-section {
        width: 95% !important;
        padding: 30px 10px !important;
    }

    .moloco-container {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .moloco-left,
    .moloco-right {
        width: 100% !important;
        text-align: center !important;
        position: static !important; /* undo 'top: 100px' */
    }

    .moloco-left {
        margin-bottom: 20px !important;
    }

    .moloco-img {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 10px !important;
    }

    .client-logos img {
        padding: 2em 0 0 0.5em;
    }

    .nav-links {
        display: none;
    }

    header {
        position: relative;
    }

    .dropdown .dropdown-menu {
        margin-top: 2em;
    }

    .dropdown-menu {
        position: static; /* Removes absolute positioning */
        box-shadow: none;  /* Optional for better mobile look */
        display: none;     /* Hide initially */
    }

    .dropdown.open .dropdown-menu {
        display: block; /* Show when parent has class "open" */
    }

    .moloco-right ul li {
        text-align: left;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #solutions {
        display: block;
        margin-bottom: 1em;
    }

}


