﻿@import url('https://fonts.googleapis.com/css2?family=Moderustic:wght@300..800&display=swap');

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Moderustic", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #292567;
}

body {
    color: #0a0a23;
}

a {
    text-decoration: none;
    transition: all 0.2s;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

#imgLeaders {
    display: block;
    max-width: 100%;
    height: 400px;
}

/* ══════════════════════════════════════════════
   LANGUAGE TOGGLE
══════════════════════════════════════════════ */
.lang-bar {
    position: fixed;
    top: 10px;
    right: 16px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #110C55;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 4px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Moderustic", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    padding: 2px 6px;
    border-radius: 12px;
    transition: all 0.2s;
    letter-spacing: 0.05em;
}

    .lang-btn.active {
        background: #ffffff;
        color: #110C55;
    }

    .lang-btn:hover:not(.active) {
        color: #ffffff;
    }

.lang-sep {
    color: rgba(255,255,255,0.3);
    font-size: 11px;
    pointer-events: none;
}

/* ══════════════════════════════════════════════
   NAVBAR — DESKTOP
══════════════════════════════════════════════ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px 0 0;
    background: white;
    margin-bottom: 45px;
    z-index: 10;
}

    .navbar .logo {
        font-weight: bold;
        color: #0b4fd6;
        font-size: 22px;
    }

    .navbar nav {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }

        .navbar nav > a {
            margin-left: 20px;
            text-decoration: none;
            color: #0a0a23;
            padding: 8px 12px;
            font-size: 14px;
            white-space: nowrap;
            display: inline-block;
            border-radius: 7px;
        }

/* homepage */
.homepage .navbar nav > a:hover,
.homepage .navbar nav > a.active,
.homepage .nav-item > a:hover,
.homepage .nav-item > a.active {
    background: #110C55;
    color: #fff;
}

/* inner pages */
.inner-page .navbar {
    position: absolute;
    z-index: 100;
    margin: 0;
    width: 100%;
    background: none;
    padding-top: 10px;
}

    .inner-page .navbar nav > a {
        color: #ffffff;
    }

        .inner-page .navbar nav > a:hover,
        .inner-page .navbar nav > a.active {
            background: rgba(255,255,255,0.2);
            color: #ffffff;
        }

.inner-page .nav-item > a {
    color: #ffffff;
}

    .inner-page .nav-item > a:hover,
    .inner-page .nav-item > a.active {
        background: rgba(255,255,255,0.2);
        color: #ffffff;
    }

/* notice page */
.notice-page .navbar nav > a {
    color: #0a0a23;
}

    .notice-page .navbar nav > a:hover,
    .notice-page .navbar nav > a.active {
        background: #110C55;
        color: #fff;
    }

.notice-page .nav-item > a {
    color: #0a0a23;
}

    .notice-page .nav-item > a:hover {
        background: #110C55;
        color: #fff;
    }

/* ══════════════════════════════════════════════
   DROPDOWN — DESKTOP
══════════════════════════════════════════════ */
.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    cursor: pointer;
}

    .nav-item > a {
        margin-left: 0;
        padding: 8px 12px;
        font-size: 14px;
        white-space: nowrap;
        display: inline-block;
        border-radius: 7px;
        text-decoration: none;
    }

    .nav-item::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 12px;
    }

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #110C55;
    border-radius: 8px;
    min-width: 190px;
    padding: 6px;
    z-index: 9999;
    box-shadow: 0 6px 24px rgba(17,12,85,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.nav-item:hover .dropdown {
    display: block;
    animation: fadeDown 0.15s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.navbar .nav-item .dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 6px;
    white-space: nowrap;
    background: none;
    margin: 0;
    transition: background 0.15s;
}

    .navbar .nav-item .dropdown a:hover {
        background: #0059DC;
        color: #ffffff;
    }

/* ══════════════════════════════════════════════
   MOBILE MENU TOGGLER
══════════════════════════════════════════════ */
.menu-toggler {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    margin-right: 20px;
    cursor: pointer;
}

    .menu-toggler span {
        width: 30px;
        height: 2px;
        background: #110C55;
        position: absolute;
        transition: all 0.3s;
        top: 50%;
    }

        .menu-toggler span:before,
        .menu-toggler span:after {
            position: absolute;
            left: 0;
            width: 100%;
            content: "";
            background: #110C55;
            transition: all 0.3s;
            height: 2px;
            top: -7px;
        }

        .menu-toggler span:after {
            top: 7px;
        }

.menu-active .menu-toggler span {
    background: none;
}

    .menu-active .menu-toggler span:before {
        transform: rotate(45deg);
        top: 0;
    }

    .menu-active .menu-toggler span:after {
        transform: rotate(-45deg);
        top: 0;
    }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.homepage .hero {
    margin: 0 20px 20px;
    border-radius: 15px;
    overflow: hidden;
}

.inner-page .hero {
    display: flex;
    height: 500px;
    position: relative;
}

    .inner-page .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 110px;
        background: linear-gradient(to bottom, rgba(17,12,85,0.5) 0%, transparent 100%);
        z-index: 5;
        pointer-events: none;
    }

    .inner-page .hero > div {
        width: 50%;
        height: 100%;
    }

        .inner-page .hero > div.left-section {
            background: #0059DC;
            display: flex;
            justify-content: flex-end;
            flex-direction: column;
            padding: 80px;
            z-index: 2;
        }

            .inner-page .hero > div.left-section h1 {
                font-weight: 700;
                font-size: 66px;
                color: #110C55;
                line-height: 1em;
                padding-right: 20px;
            }

        .inner-page .hero > div.right-section {
            background: #0059DC;
        }

.inner-page.investment .hero > div.right-section {
    background: url(images/investment.jpg) no-repeat center/cover;
}

.inner-page.trading .hero > div.right-section {
    background: url(images/trading.jpg) no-repeat center/cover;
}

.inner-page.investors .hero > div.right-section {
    background: url(images/investors.jpg) no-repeat center/cover;
}

.inner-page.contact .hero > div.right-section {
    background: url(images/contact.jpg) no-repeat center/cover;
}

.inner-page.investorRelations .hero > div.right-section {
    background: url(images/investor-relations.jpg) no-repeat center/cover;
}

/* ══════════════════════════════════════════════
   NOTICE BANNER
══════════════════════════════════════════════ */
.notice {
    margin: 20px;
}

    .notice a {
        border-radius: 15px;
        color: white;
        padding: 20px 60px;
        font-size: 24px;
        font-weight: 600;
        display: block;
        background: url(images/arrow.svg) no-repeat right 60px center #110C55;
        background-size: auto 30px;
    }

/* ══════════════════════════════════════════════
   CONTENT
══════════════════════════════════════════════ */
.content {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    flex-wrap: wrap;
}

.text-block {
    width: 50%;
    margin: 20px 0;
    line-height: normal;
}

    .text-block.intro {
        width: 100%;
        font-size: 23px;
        font-weight: 600;
    }

    .text-block .label {
        color: #0059DC;
        font-size: 14px;
        max-width: 335px;
        padding-right: 20px;
    }

    .text-block h2 {
        font-size: 46px;
        color: #0059DC;
    }

        .text-block h2 span {
            color: #fff;
            background: #0059DC;
            padding: 0 15px;
            border-radius: 24px;
        }

        .text-block h2 img {
            display: inline;
            vertical-align: middle;
        }

    .text-block.small p {
        font-size: 16px;
        margin-bottom: 15px;
    }

.services-intro {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
}

    .services-intro .text-block {
        margin: 0;
    }

        .services-intro .text-block .label {
            color: #fff;
        }

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services {
    background: #0059DC;
    padding: 60px 80px;
}

    .services * {
        color: #fff;
    }

.service {
    padding: 60px 0;
    display: flex;
    border-top: 1px solid #C0CCFC;
}

    .service h3 {
        font-size: 63px;
        margin-bottom: 15px;
        width: 50%;
        line-height: 1em;
    }

    .service > div {
        width: 50%;
        padding-left: 10%;
    }

    .service p {
        max-width: 600px;
        font-size: 14px;
        line-height: 1.6;
    }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
    color: white;
    padding: 60px 80px;
    position: relative;
    background: #110C55;
}

    .footer * {
        color: #fff;
    }

    .footer .footer-top {
        display: flex;
        justify-content: flex-end;
    }

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    width: 50%;
    padding-left: 10%;
}

    .footer-contact a {
        text-decoration: underline;
    }

    .footer-contact h3 {
        width: 100%;
        margin-bottom: 50px;
    }

    .footer-contact div {
        width: 50%;
    }

        .footer-contact div p {
            margin-bottom: 12px;
        }

.footer .footer-logo {
    position: absolute;
    left: 0;
    top: 0;
}

.footer p {
    font-size: 13px;
    margin-bottom: 5px;
}

.footer .copyright {
    width: 100%;
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
}

.social {
    text-align: center;
}

    .social a {
        display: inline-block;
        margin: 0 10px;
    }

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
.contact-block {
    border-radius: 15px;
    border: 3px solid #110C55;
    padding: 30px 45px;
    margin: 0 5px;
}

.text-block .contact-block h2 {
    color: #110C55;
    font-size: 32px;
    font-weight: 700;
    border-bottom: 1px solid #110C55;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.contact-block p {
    margin-bottom: 15px;
}

/* ══════════════════════════════════════════════
   Company Prospectus PAGE
══════════════════════════════════════════════ */
.cp-block {
    border-radius: 15px;
    border: 3px solid #110C55;
    padding: 20px 25px;
    margin: 0 5px;
}

.text-block .cp h2 {
    color: #110C55;
    font-size: 22px;
    font-weight: 600;
    border-bottom: 1px solid #110C55;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.cp-block p {
    margin-bottom: 10px;
}

/* ══════════════════════════════════════════════
   NOTICE PAGE
══════════════════════════════════════════════ */
.notice-page h1 {
    color: #110C55;
    font-size: 96px;
    max-width: 500px;
    font-weight: 700;
    line-height: 1em;
    padding-right: 20px;
}

.notice-page .content {
    align-items: center;
    min-height: 50vh;
}

/* ══════════════════════════════════════════════
   PDF LINK
══════════════════════════════════════════════ */
.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #f4f6ff;
    border: 2px solid #110C55;
    border-radius: 10px;
    color: #110C55;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    margin-top: 10px;
}

    .pdf-link:hover {
        background: #110C55;
        color: #ffffff;
    }

/* ══════════════════════════════════════════════
   RESPONSIVE 1400px
══════════════════════════════════════════════ */
@media all and (max-width: 1400px) {
    .notice-page h1, .inner-page .hero > div.left-section h1 {
        font-size: 76px;
    }

    .text-block h2 {
        font-size: 56px;
    }

        .text-block h2 img {
            height: 56px;
        }
}

/* ══════════════════════════════════════════════
   RESPONSIVE 1100px
══════════════════════════════════════════════ */
@media all and (max-width: 1100px) {
    .notice-page h1, .inner-page .hero > div.left-section h1 {
        font-size: 56px;
    }

    .navbar nav > a {
        margin-left: 15px;
    }

    .footer .footer-logo, .navbar .logo {
        width: 220px;
    }

    .text-block h2 {
        font-size: 46px;
    }

        .text-block h2 img {
            height: 50px;
        }

    .service h3 {
        font-size: 50px;
    }

    .text-block {
        margin: 40px 0;
    }

    .footer-contact {
        padding-left: 0;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE 991px — MOBILE
══════════════════════════════════════════════ */
@media all and (max-width: 991px) {

    .cp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-toggler {
        display: block;
    }

    .navbar,
    .inner-page .navbar,
    .notice-page .navbar,
    .homepage .navbar {
        position: relative !important;
        background: white !important;
        flex-wrap: wrap;
        padding-right: 0;
        margin-bottom: 0;
        width: 100%;
        z-index: 200;
    }

    .inner-page .hero {
        height: 220px;
        margin-top: 0;
    }

        .inner-page .hero::before {
            display: none;
        }

        .notice-page h1,
        .inner-page .hero > div.left-section h1 {
            font-size: 32px;
        }

        .inner-page .hero > div.left-section {
            padding: 30px 20px;
        }

    .menu {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: #110C55;
        display: flex;
        flex-direction: column;
    }

    .menu-active .menu {
        max-height: 800px;
    }

    .menu-active .menu-toggler span {
        background: none;
    }

        .menu-active .menu-toggler span:before {
            transform: rotate(45deg);
            top: 0;
        }

        .menu-active .menu-toggler span:after {
            transform: rotate(-45deg);
            top: 0;
        }

    /* ── ALL nav links: identical style ── */
    .navbar nav > a {
        color: #fff !important;
        display: block !important;
        padding: 14px 24px !important;
        font-size: 15px !important;
        border-radius: 0 !important;
        background: none !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
        margin: 0 !important;
        text-align: center !important;
        white-space: normal;
    }

        .navbar nav > a:hover,
        .navbar nav > a.active {
            color: #60a5fa !important;
            background: none !important;
        }

    /* ── nav-item wrapper ── */
    .nav-item {
        display: block !important;
        margin-left: 0 !important;
        width: 100% !important;
        position: relative !important;
        cursor: pointer;
    }

        /* ── Announcements link: SAME as other links + chevron ── */
        .nav-item > a {
            color: #fff !important;
            display: block !important;
            padding: 14px 24px !important;
            font-size: 15px !important;
            border-radius: 0 !important;
            background: none !important;
            width: 100% !important;
            border-bottom: 1px solid rgba(255,255,255,0.08) !important;
            margin: 0 !important;
            text-align: center !important;
            white-space: normal;
            position: relative !important;
        }

            .nav-item > a:hover {
                color: #60a5fa !important;
                background: none !important;
            }

            /* chevron floats right, doesn't affect centering of text */
            .nav-item > a::after {
                content: '▾';
                font-size: 11px;
                opacity: 0.5;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }

        .nav-item.open > a::after {
            content: '▴';
        }

        /* ── Dropdown: hidden by default, opens with .open ── */
        .dropdown,
        .nav-item:hover .dropdown {
            display: none !important;
            animation: none !important;
        }

        .nav-item.open .dropdown {
            display: block !important;
            position: static !important;
            background: rgba(0,89,220,0.2) !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            padding: 4px 0 !important;
            min-width: unset !important;
            transform: none !important;
            border: none !important;
        }

    .navbar .nav-item .dropdown a {
        padding: 12px 24px !important;
        font-size: 14px !important;
        border-radius: 0 !important;
        color: rgba(255,255,255,0.85) !important;
        display: block !important;
        background: none !important;
        text-align: center !important;
        border-bottom: none !important;
    }

        .navbar .nav-item .dropdown a:hover {
            background: rgba(0,89,220,0.4) !important;
            color: #fff !important;
        }

    .text-block h2 {
        font-size: 38px;
    }

    .content {
        padding: 10px 20px;
    }

    .services {
        padding: 30px 20px;
    }

    .footer-contact {
        width: 70%;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE 768px
══════════════════════════════════════════════ */
@media all and (max-width: 768px) {
    .notice-page h1, .inner-page .hero > div.left-section h1 {
        font-size: 28px;
    }

    .content, .services-intro, .service {
        display: block;
    }

        .service h3 {
            font-size: 30px;
        }

    .services-intro, .service {
        padding: 10px 0;
    }

        .service h3, .service > div, .text-block {
            padding-left: 0;
            width: 100%;
            margin: 25px 0;
        }

    .notice a {
        background-position: right 20px center;
        padding: 20px;
    }

    .footer-contact {
        width: 100%;
    }

    .footer {
        padding: 100px 20px 30px;
    }

        .footer .footer-logo {
            width: 130px;
        }

    .text-block.intro {
        font-size: 18px;
    }

    .contact-block {
        padding: 20px;
        margin: 0;
    }

    .cp-block {
        padding: 10px;
        margin: 0;
    }


    .text-block .contact-block h2 {
        font-size: 24px;
    }
}

.investorRelations .content {
    padding: 30px 50px;
}

.investorRelations .text-block {
    width: 100%;
}

/* ══════════════════════════════════════════════
   RESPONSIVE 540px
══════════════════════════════════════════════ */
@media all and (max-width: 540px) {

    .cp-grid {
        grid-template-columns: 1fr;
    }

    .text-block h2 {
        font-size: 30px;
    }

        .text-block h2 img {
            height: 40px;
        }

    .service h3 {
        font-size: 26px;
    }

    .footer-contact h3, .footer-contact div {
        width: 100%;
        margin-bottom: 20px;
    }

    .notice a {
        padding: 15px;
        font-size: 20px;
    }

    .inner-page .hero > div.right-section {
        display: none;
    }

    .inner-page .hero > div {
        width: 100%;
    }

        .inner-page .hero > div.left-section {
            padding: 30px 20px;
        }
}

.hyperlinks {
    color: #0059DC;
}


.cp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

@media all and (max-width: 768px) {
    .cp-grid {
        grid-template-columns: 1fr;
    }
}

.companyProspectus .text-block {
    width: 100%;
}