/* =========================================================
   SCIA compact footer v2
   File: scia_footer2.css
   ========================================================= */

.scia-footer2 {
    width: 100%;
    background: #35156f;
    color: #ffffff;
    font-family: inherit;
}

.scia-footer2,
.scia-footer2 * {
    box-sizing: border-box;
}

.scia-footer2-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 18px;
    padding-right: 24px;
}

.scia-footer2-main {
    min-height: 54px;
    display: grid;
    grid-template-columns: repeat(3, 190px) max-content minmax(300px, 1fr);
    align-items: center;
}

.scia-footer2-column {
    position: relative;
    min-width: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.scia-footer2-toggle {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 24px;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
}

.scia-footer2-toggle:focus-visible,
.scia-footer2-social-links a:focus-visible,
.scia-footer2-menu a:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: -3px;
}

.scia-footer2-plus {
    position: relative;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
}

.scia-footer2-plus::before,
.scia-footer2-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.scia-footer2-plus::before {
    width: 12px;
    height: 1.5px;
}

.scia-footer2-plus::after {
    width: 1.5px;
    height: 12px;
}

.scia-footer2-column.is-open .scia-footer2-plus::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.scia-footer2-menu {
    position: absolute;
    left: 0;
    bottom: 100%;
    z-index: 30;
    width: 100%;
    min-width: 220px;
    padding: 14px 0;
    background: #2b105d;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.scia-footer2-column.is-open .scia-footer2-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scia-footer2-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.scia-footer2-menu li {
    margin: 0;
    padding: 0;
}

.scia-footer2-menu a {
    display: block;
    padding: 9px 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.35;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.scia-footer2-menu a:hover {
    padding-left: 27px;
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
}

.scia-footer2-social {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    white-space: nowrap;
}

.scia-footer2-social-title {
    font-size: 12px;
    font-weight: 600;
}

.scia-footer2-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
/* ======================================================
   Social Icons
====================================================== */

.scia-footer2-social-links a{
    width:20px;
    height:20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:#ffffff;
    transition:all .25s ease;
    box-shadow:0 2px 6px rgba(0,0,0,.18);
}

.scia-footer2-social-links a i{
    font-size:13px;
}

/* Official brand colours */

.scia-footer2-social-links a.facebook{
    color:#1877F2;
}

.scia-footer2-social-links a.instagram{
    background:radial-gradient(circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285AEB 90%);
    color:#fff;
}

.scia-footer2-social-links a.youtube{
    color:#FF0000;
}

.scia-footer2-social-links a.linkedin{
    color:#0A66C2;
}

.scia-footer2-social-links a.wechat{
    color:#07C160;
}

.scia-footer2-social-links a.x{
    color:#000000;
}

.scia-footer2-social-links a:hover{
    transform:translateY(-2px) scale(1.08);
    box-shadow:0 5px 12px rgba(0,0,0,.3);
}


.scia-footer2-copyright {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 24px;
    font-size: 10px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .scia-footer2-main {
        grid-template-columns: repeat(3, minmax(150px, 1fr)) max-content;
    }

    .scia-footer2-social {
        padding-left: 14px;
        padding-right: 14px;
    }

    .scia-footer2-copyright {
        grid-column: 1 / -1;
        min-height: 38px;
        justify-content: center;
        padding: 0 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        white-space: normal;
        text-align: center;
    }
}


@media (max-width: 991px) and (min-width: 768px) {
    .scia-footer2-main {
        grid-template-columns: repeat(3, minmax(145px, 1fr));
    }

    .scia-footer2-social {
        grid-column: 1 / -1;
        justify-content: center;
        min-height: 46px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .scia-footer2-copyright {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .scia-footer2-container {
        padding-left: 0;
        padding-right: 0;
    }

    .scia-footer2-main {
        display: block;
        min-height: 0;
    }

    .scia-footer2-column {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .scia-footer2-toggle {
        min-height: 52px;
        padding: 0 20px;
        font-size: 14px;
    }

    .scia-footer2-menu {
        position: static;
        width: 100%;
        min-width: 0;
        max-height: 0;
        padding: 0;
        overflow: hidden;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .scia-footer2-column.is-open .scia-footer2-menu {
        max-height: 500px;
        padding: 10px 0;
    }

    .scia-footer2-menu a {
        padding: 9px 30px;
    }

    .scia-footer2-menu a:hover {
        padding-left: 35px;
    }

    .scia-footer2-social {
        min-height: 58px;
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .scia-footer2-social-title {
        font-size: 13px;
    }

    .scia-footer2-copyright {
        min-height: 50px;
        padding: 9px 20px;
        font-size: 10px;
    }
}


.careers{
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 24px;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
}