* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html:lang(zh) body {
    font-family: "Chiron Hei HK", sans-serif;
}

html:lang(en) body {
    font-family: "Helvetica", sans-serif;
}

html,
body {
    max-width: 100%;
    width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: "Chiron Hei HK", "Helvetica", Arial, sans-serif;
    line-height: 1.6;
    color: #3E3A39;
    background-color: #F5F5F5;
    overflow-x: hidden;
}


h5 {
    font-size: 32px;
    font-weight: bold;
    color: #1E53A4;
}


h6 {
    font-size: 20px;
    font-weight: normal;
}


p {
    font-size: 20px;
}

.content-box p {
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: #000000;
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
}

figure {
    margin: 0;
}

section {
    margin: 0;
}

.jarallax {
    position: relative;
    z-index: 0;
}

    .jarallax > .jarallax-img,
    picture.jarallax-img img {
        position: absolute;
        object-fit: cover;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

.scroll {
    scroll-margin-top: 250px;
}

.figure-text-wrapper {
    gap: 12px;
    padding-left: 16px;
}

.figure-vertical-line {
    display: inline-block;
    width: 5px;
    align-self: stretch;
    min-height: 50px;
    background: linear-gradient(180deg, #CF1F51 0%, #2599B3 25%, #CF1F51 50%, #2599B3 75%, #CF1F51 100%);
    background-size: 100% 200%;
    animation: flowGradient 3s linear infinite;
}

@keyframes flowGradient {
    0% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.gradient-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF0331, #80116B, #401788, #0088A5, #401788, #80116B, #FF0331);
    background-size: 300% 100%;
    animation: flow-gradient 5s linear infinite;
    box-shadow: 0 0 10px #ffffff;
    z-index: 9999;
}

@keyframes flow-gradient {
    0% {
        background-position: 0% 150%;
    }

    100% {
        background-position: 150% 0%;
    }
}


.vertical-line {
    position: relative;
    top: -30px;
    left: 50%;
    width: 35px;
    height: 1px;
    background: #CF1F51;
    transform: translateX(-50%) rotate(90deg);
}

.information-news .vertical-line {
    top: -50px;
}

#mobileMenu {
    display: none;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 999;
    height: 90px;
    padding: 0 0 0 0;
}

.nav-icon {
    width: 100vw;
    z-index: 1999;
    height: 50px;
    margin-bottom: 15px;
    padding-right: 15px;
    text-shadow: 0px 0px 2px #ffffff21;
}

    .nav-icon i {
        font-size: 1.2rem;
        margin: 0 0.3rem;
    }

.nav-item-group {
    position: fixed;
    top: 50px;
    background-color: #0000009c;
    width: 100vw;
    height: 35px;
}

.nav-list {
    display: flex;
    justify-content: space-between;
    padding: 0;
    width: 100%;
    font-size: 0.9rem;
}

.nav-list,
.mobile-nav-list,
.submenu,
.mobile-submenu {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .nav-list li {
        flex: 1;
        border-right: 1px solid rgba(255, 255, 255, 0.4);
    }

        .nav-list li:last-child {
            border-right: none;
        }

        .nav-list li a {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #ffffff;
            height: 35px;
            letter-spacing: 2px;
            font-weight: 500;
        }

            .nav-list li a:hover {
                background-color: #3161AE;
            }


.submenu-link:hover {
    background-color: #f2f2f2;
}

.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background: #fff;
    background-color: #0000009c;
    min-width: 100%;
    display: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-radius: 1px;
    overflow: hidden;
    z-index: 1000;
    animation: fadeIn 0.2s ease-in-out;
    text-align: center;
    padding-left: 0;
    margin: 0;
}


.has-submenu:hover .submenu {
    display: flex;
}

.submenu li a {
    color: #ffffff;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease;
}

    .submenu li a:hover {
        background-color: #004080;
        color: #ffffff;
    }

.hamburger-btn {
    position: absolute;
    right: 0;
    top: 4px;
}

.mobile-nav {
    background-color: #F5F5F5;
    position: absolute;
    right: 0;
    top: 50px;
    width: 100%;
    height: auto;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-submenu {
    display: none;
    padding-left: 1rem;
}

.mobile-nav-link,
.mobile-submenu-link {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

    .mobile-nav-link:hover,
    .mobile-submenu-link:hover {
        background-color: #004080;
        color: #ffffff;
    }



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-bk {
    background-color: #F5F5F5;
    width: 100vw;
    height: 50px;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #cccccc6f;
}

    .nav-bk::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(35, 84, 164, 0.05);
        z-index: 5;
    }

.logo-img {
    position: absolute;
    top: 15px;
    height: auto;
    max-height: 30px;
    width: 320px;
    object-fit: contain;
    z-index: 1000;
}

.icon-gradient {
    font-weight: bold;
    background: linear-gradient(0deg, #ff7fb2, #52a8ff, #77CAC0, #52a8ff, #ff7fb2);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: gradientMoveVertical 5s linear infinite;
}

.logo-div {
    width: 50%;
    height: auto;
    max-height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
}

.bi-list {
    font-size: 2rem;
}

.menu-div {
    width: 30%;
    height: auto;
    max-height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99999;
}

@keyframes gradientMoveVertical {
    0% {
        background-position: 150% 0%;
    }

    100% {
        background-position: 50% 150%;
    }
}

#langText {
    font-size: 0.75rem;
    vertical-align: middle;
    margin-left: 1px;
}

#langToggle {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 5px 12px 5px 5px;
    color: #000000;
    border: 0.5px solid #F3ABC5;
}

    #langToggle:hover {
        background-color: #3161AE;
        color: #ffffff;
    }

.mobile-nav #langToggle {
    border-radius: 10px;
    padding: 5px 12px 5px 12px;
    color: #000000;
    border: none;
}




/*Hero Banner*/


.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border: none;
    margin: 0 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicators .active {
    background-color: #000000;
    transform: scale(1.2);
}

.carousel-indicators [data-bs-target]:hover {
    background-color: #333;
}


.content {
    width: 100%;
}

.carousel {
    position: relative;
    top: 0;
    width: 100%;
}

.carousel-item {
    position: relative;
    width: 100%;
    height: 100vh;
}

    .carousel-item img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

.carousel-caption1 {
    position: absolute;
    bottom: 40%;
    left: 15%;
    color: #fff;
    text-align: left;
    letter-spacing: 3px;
    font-weight: bold;
}

.custom-carousel-btn {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #000000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 5px;
}

    .custom-carousel-btn:hover {
        background-color: rgba(0, 0, 0, 0.8);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        transform: translateY(-50%) scale(1.1);
    }

    .custom-carousel-btn i {
        font-size: 1.5rem;
    }

#carouselExampleCaptions {
    position: relative;
}

/*Hero Banner*/

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #3161AE;
    font-display: swap;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.85;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}


.intro-num {
    max-width: 60%;
    border-radius: 12px;
    margin: 0 auto;
    padding-left: 0px;
    padding-right: 0px;
    z-index: 10;
    color: #ffffff;
    background-color: #1E53A4;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.273);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

    .intro-num .row {
        --bs-gutter-x: 5rem;
    }

.intro-num-md {
    width: 100%;
    z-index: 10;
    color: #ffffff;
    background-color: #1E53A4;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.273);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    display: none;
}

    .intro-num-md .row {
        --bs-gutter-x: 0rem;
    }

.intro-num h6 {
    font-weight: 500;
    font-size: 1rem;
}

.counter {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    min-width: 3em;
    /* 預留寬度，例如最多999 */
}


.navbar {
    display: flex;
    gap: 1.5rem;
}

    .navbar a {
        color: #333;
        font-weight: 500;
    }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
}

/* Hero 區塊 */

.hero {
    padding: 6rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(to right, #dfefff, #ffeffe);
}

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

.counter-container .col-md-2 {
    border-right: 1px solid #ccc;
}

    .counter-container .col-md-2:last-child {
        border-right: none;
    }



/* 區塊通用 */
section {
    padding: 3rem 2rem;
}

.about,
.events,
.partners {
    background-color: #f8f8f8;
    margin-top: 1rem;
}

.t-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-image: url("../images/t-icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.about-tusa {
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s ease;
}

    .about-tusa h5 {
        padding-top: 60px;
    }

    .about-tusa.animate {
        opacity: 1;
        transform: translateX(0);
    }


.active-news {
    background-color: #ffffff;
    background-image: url("../images/news-bk.png");
    background-size: 100% auto;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.horizontal-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

    .horizontal-rain span {
        position: absolute;
        left: -200px;
        height: 0.5px;
        background: #CF1F51;
        animation: moveRight linear infinite;
        border-radius: 2px;
        z-index: 180;
    }

        .horizontal-rain span:nth-child(1) {
            top: 3%;
            width: 142px;
            animation-duration: 3.6s;
            animation-delay: 0.8s;
        }

        .horizontal-rain span:nth-child(2) {
            top: 9%;
            width: 121px;
            animation-duration: 2.8s;
            animation-delay: 1.1s;
        }

        .horizontal-rain span:nth-child(3) {
            top: 14%;
            width: 196px;
            animation-duration: 4.2s;
            animation-delay: 0.5s;
        }

        .horizontal-rain span:nth-child(4) {
            top: 6%;
            width: 132px;
            animation-duration: 3.0s;
            animation-delay: 1.4s;
        }

        .horizontal-rain span:nth-child(5) {
            top: 19%;
            width: 150px;
            animation-duration: 2.7s;
            animation-delay: 0.2s;
        }

        .horizontal-rain span:nth-child(6) {
            top: 24%;
            width: 103px;
            animation-duration: 3.9s;
            animation-delay: 1.7s;
        }

        .horizontal-rain span:nth-child(7) {
            top: 27%;
            width: 87px;
            animation-duration: 2.5s;
            animation-delay: 0.4s;
        }

        .horizontal-rain span:nth-child(8) {
            top: 31%;
            width: 178px;
            animation-duration: 3.5s;
            animation-delay: 1.0s;
        }

        .horizontal-rain span:nth-child(9) {
            top: 36%;
            width: 112px;
            animation-duration: 4.0s;
            animation-delay: 1.6s;
        }

        .horizontal-rain span:nth-child(10) {
            top: 42%;
            width: 165px;
            animation-duration: 2.9s;
            animation-delay: 0.6s;
        }

        .horizontal-rain span:nth-child(11) {
            top: 48%;
            width: 190px;
            animation-duration: 3.3s;
            animation-delay: 0.9s;
        }

        .horizontal-rain span:nth-child(12) {
            top: 52%;
            width: 98px;
            animation-duration: 4.4s;
            animation-delay: 1.2s;
        }

        .horizontal-rain span:nth-child(13) {
            top: 58%;
            width: 154px;
            animation-duration: 3.1s;
            animation-delay: 0.3s;
        }

        .horizontal-rain span:nth-child(14) {
            top: 63%;
            width: 126px;
            animation-duration: 4.1s;
            animation-delay: 1.8s;
        }

        .horizontal-rain span:nth-child(15) {
            top: 68%;
            width: 180px;
            animation-duration: 3.7s;
            animation-delay: 0.1s;
        }

        .horizontal-rain span:nth-child(16) {
            top: 72%;
            width: 143px;
            animation-duration: 2.6s;
            animation-delay: 0.5s;
        }

        .horizontal-rain span:nth-child(17) {
            top: 78%;
            width: 97px;
            animation-duration: 3.4s;
            animation-delay: 1.5s;
        }

        .horizontal-rain span:nth-child(18) {
            top: 84%;
            width: 134px;
            animation-duration: 4.8s;
            animation-delay: 0.7s;
        }

        .horizontal-rain span:nth-child(19) {
            top: 89%;
            width: 108px;
            animation-duration: 3.2s;
            animation-delay: 0.9s;
        }

        .horizontal-rain span:nth-child(20) {
            top: 94%;
            width: 172px;
            animation-duration: 2.7s;
            animation-delay: 1.9s;
        }

        .horizontal-rain span:nth-child(21) {
            top: 98%;
            width: 120px;
            animation-duration: 4.3s;
            animation-delay: 1.0s;
        }

        .horizontal-rain span:nth-child(22) {
            top: 13%;
            width: 145px;
            animation-duration: 3.0s;
            animation-delay: 1.3s;
        }

        .horizontal-rain span:nth-child(23) {
            top: 17%;
            width: 200px;
            animation-duration: 3.8s;
            animation-delay: 0.6s;
        }

        .horizontal-rain span:nth-child(24) {
            top: 29%;
            width: 115px;
            animation-duration: 2.6s;
            animation-delay: 1.7s;
        }

        .horizontal-rain span:nth-child(25) {
            top: 34%;
            width: 177px;
            animation-duration: 4.9s;
            animation-delay: 0.3s;
        }

        .horizontal-rain span:nth-child(26) {
            top: 38%;
            width: 106px;
            animation-duration: 3.5s;
            animation-delay: 1.2s;
        }

        .horizontal-rain span:nth-child(27) {
            top: 45%;
            width: 189px;
            animation-duration: 3.9s;
            animation-delay: 0.8s;
        }

        .horizontal-rain span:nth-child(28) {
            top: 51%;
            width: 124px;
            animation-duration: 2.8s;
            animation-delay: 1.1s;
        }

        .horizontal-rain span:nth-child(29) {
            top: 57%;
            width: 160px;
            animation-duration: 4.6s;
            animation-delay: 0.4s;
        }

        .horizontal-rain span:nth-child(30) {
            top: 62%;
            width: 85px;
            animation-duration: 3.2s;
            animation-delay: 1.6s;
        }

        .horizontal-rain span:nth-child(31) {
            top: 67%;
            width: 138px;
            animation-duration: 2.9s;
            animation-delay: 0.5s;
        }

        .horizontal-rain span:nth-child(32) {
            top: 73%;
            width: 182px;
            animation-duration: 3.3s;
            animation-delay: 0.7s;
        }

        .horizontal-rain span:nth-child(33) {
            top: 77%;
            width: 104px;
            animation-duration: 4.7s;
            animation-delay: 1.5s;
        }

        .horizontal-rain span:nth-child(34) {
            top: 81%;
            width: 149px;
            animation-duration: 3.6s;
            animation-delay: 0.3s;
        }

        .horizontal-rain span:nth-child(35) {
            top: 86%;
            width: 94px;
            animation-duration: 2.5s;
            animation-delay: 1.1s;
        }

        .horizontal-rain span:nth-child(36) {
            top: 92%;
            width: 173px;
            animation-duration: 3.1s;
            animation-delay: 0.9s;
        }

        .horizontal-rain span:nth-child(37) {
            top: 4%;
            width: 128px;
            animation-duration: 4.0s;
            animation-delay: 1.4s;
        }

        .horizontal-rain span:nth-child(38) {
            top: 10%;
            width: 193px;
            animation-duration: 3.8s;
            animation-delay: 0.2s;
        }

        .horizontal-rain span:nth-child(39) {
            top: 16%;
            width: 101px;
            animation-duration: 3.0s;
            animation-delay: 1.0s;
        }

        .horizontal-rain span:nth-child(40) {
            top: 22%;
            width: 184px;
            animation-duration: 4.5s;
            animation-delay: 0.6s;
        }

        .horizontal-rain span:nth-child(41) {
            top: 26%;
            width: 118px;
            animation-duration: 2.7s;
            animation-delay: 1.2s;
        }

        .horizontal-rain span:nth-child(42) {
            top: 32%;
            width: 141px;
            animation-duration: 3.4s;
            animation-delay: 0.8s;
        }

        .horizontal-rain span:nth-child(43) {
            top: 37%;
            width: 186px;
            animation-duration: 4.2s;
            animation-delay: 1.6s;
        }

        .horizontal-rain span:nth-child(44) {
            top: 43%;
            width: 111px;
            animation-duration: 2.9s;
            animation-delay: 0.1s;
        }

        .horizontal-rain span:nth-child(45) {
            top: 49%;
            width: 198px;
            animation-duration: 3.7s;
            animation-delay: 1.9s;
        }

        .horizontal-rain span:nth-child(46) {
            top: 54%;
            width: 123px;
            animation-duration: 2.6s;
            animation-delay: 0.5s;
        }

        .horizontal-rain span:nth-child(47) {
            top: 60%;
            width: 167px;
            animation-duration: 4.8s;
            animation-delay: 1.3s;
        }

        .horizontal-rain span:nth-child(48) {
            top: 65%;
            width: 107px;
            animation-duration: 3.5s;
            animation-delay: 0.7s;
        }

        .horizontal-rain span:nth-child(49) {
            top: 71%;
            width: 192px;
            animation-duration: 3.3s;
            animation-delay: 0.4s;
        }

        .horizontal-rain span:nth-child(50) {
            top: 75%;
            width: 130px;
            animation-duration: 4.6s;
            animation-delay: 1.1s;
        }

        .horizontal-rain span:nth-child(51) {
            top: 80%;
            width: 146px;
            animation-duration: 2.5s;
            animation-delay: 0.9s;
        }

        .horizontal-rain span:nth-child(52) {
            top: 85%;
            width: 199px;
            animation-duration: 3.9s;
            animation-delay: 1.5s;
        }

        .horizontal-rain span:nth-child(53) {
            top: 91%;
            width: 125px;
            animation-duration: 3.1s;
            animation-delay: 0.2s;
        }

        .horizontal-rain span:nth-child(54) {
            top: 97%;
            width: 161px;
            animation-duration: 4.4s;
            animation-delay: 1.8s;
        }

        .horizontal-rain span:nth-child(55) {
            top: 1%;
            width: 119px;
            animation-duration: 2.8s;
            animation-delay: 0.6s;
        }

        .horizontal-rain span:nth-child(56) {
            top: 8%;
            width: 183px;
            animation-duration: 3.6s;
            animation-delay: 1.2s;
        }

        .horizontal-rain span:nth-child(57) {
            top: 20%;
            width: 116px;
            animation-duration: 4.1s;
            animation-delay: 0.7s;
        }

        .horizontal-rain span:nth-child(58) {
            top: 35%;
            width: 137px;
            animation-duration: 2.7s;
            animation-delay: 1.4s;
        }

        .horizontal-rain span:nth-child(59) {
            top: 46%;
            width: 176px;
            animation-duration: 3.4s;
            animation-delay: 0.8s;
        }

        .horizontal-rain span:nth-child(60) {
            top: 53%;
            width: 109px;
            animation-duration: 4.0s;
            animation-delay: 1.1s;
        }

@keyframes moveRight {
    0% {
        transform: translateX(0);
        opacity: 0.2;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translateX(120vw);
        opacity: 0;
    }
}

.figure {
    border-radius: 8px;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

    .figure:hover {
        transform: rotateX(5deg) rotateY(-5deg) scale(1.03);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

.figure-img {
    border-start-start-radius: 8px;
    border-top-right-radius: 8px;
}

/* 合作夥伴 LOGO */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.figure-text {
    font-size: 0.7rem;
}


.information-bk {
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    /* background-image: url("../images/information-bk1.jpg"); */
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.information-title {
    --bs-gutter-x: 0rem;
}

    .information-title hr {
        border: 2px solid #000;
        margin-top: 10px;
    }


.animate-fadeInUp {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.circle-1 {
    position: absolute;
    left: -30px;
    top: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#F8EC8C, #F3ABC5, #4EBED9, #6FC5C6, #4EBED9, #F3ABC5, #F8EC8C);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1px), black calc(100% - 0.8px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 1px), black calc(100% - 0.8px));
    animation: spin 8s linear infinite;
    z-index: -10;
}

.circle-2 {
    position: absolute;
    left: -50px;
    bottom: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: conic-gradient(#F8EC8C, #F3ABC5, #4EBED9, #6FC5C6, #4EBED9, #F3ABC5, #F8EC8C);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), black calc(100% - 1.5px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), black calc(100% - 1.5px));
    animation: spin 12s linear infinite;
    z-index: -10;
}

.circle-3 {
    position: absolute;
    right: -20px;
    bottom: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: conic-gradient(#F8EC8C, #F3ABC5, #4EBED9, #6FC5C6, #4EBED9, #F3ABC5, #F8EC8C);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 2px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 2px));
    animation: spin 10s linear infinite;
    z-index: -9;
}

.circle-4 {
    position: absolute;
    right: 60px;
    bottom: -20px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: conic-gradient(#F8EC8C, #F3ABC5, #4EBED9, #6FC5C6, #4EBED9, #F3ABC5, #F8EC8C);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), black calc(100% - 0.5px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), black calc(100% - 0.5px));
    animation: spin 10s linear infinite;
    z-index: -10;
}

.circle-5 {
    position: absolute;
    right: -60px;
    top: -100px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: conic-gradient(#F8EC8C, #F3ABC5, #4EBED9, #6FC5C6, #4EBED9, #F3ABC5, #F8EC8C);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 2.5px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 2.5px));
    animation: spin 6s linear infinite;
    z-index: -10;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



.information-news {
    margin-left: 80px;
    margin-right: 80px;
}

.information-news-content {
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.589);
    padding-right: 60px;
    padding-left: 60px;
}

.information-title hr {
    border-color: #1E53A4;
    opacity: 1;
}

.information-content {
    --bs-gutter-x: 0rem;
}

.i-circle {
    width: 10px;
    height: 10px;
    background-color: #CF1F51;
    border-radius: 50%;
    display: inline-block;
}

.if-hr {
    height: 0.5px !important;
    background-color: #1E53A4 !important;
    opacity: 0.5;
    margin-top: 5px;
    margin-bottom: 5px;
    border: none;
}

.news-date font {
    font-size: 1rem;
}

.more-if {
    position: absolute;
    top: 80px;
    right: 80px;
    display: block;
}

    .more-if a {
        color: #1E53A4;
    }

.more-if-moblie {
    display: none;
}

.square {
    width: 10px;
    height: 22px;
    background: linear-gradient(180deg, #ff7fb2, #52a8ff);
}

.brand-carousel {
    margin-top: 20px;
}

.industry-section {
    background: #5A5A5A;
    background-image: radial-gradient(circle at top left, rgba(0, 0, 0, 0.321), transparent 25%), radial-gradient(circle at top right, rgba(0, 0, 0, 0.321),transparent 25%), radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.321),transparent 25%), radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.321),transparent 25%);
    background-blend-mode: multiply;
    background-repeat: no-repeat;
}

    .industry-section h5 {
        color: #ffffff;
    }


.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 25px;
    box-sizing: border-box;
}

    .logo-item img {
        max-height: 80px;
        max-width: 100%;
        object-fit: contain;
        display: block;
    }

.slick-initialized .slick-slide {
    display: flex;
}

.contact {
    position: relative;
    width: 100%;
}

.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -3;
}

.bubble {
    position: absolute;
    bottom: 0px;
    width: 50px;
    height: 50px;
    background-color: #46aac333;
    border-radius: 50%;
    animation: rise 10s infinite ease-in;
    z-index: -2;
}

    .bubble:nth-child(1) {
        left: 20%;
        width: 30px;
        height: 30px;
        animation-duration: 5s;
        animation-delay: 0s;
        background-color: #2e7b8f56;
    }

    .bubble:nth-child(2) {
        left: 3%;
        width: 7vw;
        height: 7vw;
        animation-duration: 15s;
        animation-delay: 1s;
    }

    .bubble:nth-child(3) {
        left: 50%;
        width: 5vw;
        height: 5vw;
        animation-duration: 9s;
        animation-delay: 1.5s;
        background-color: #4ebdd956;
    }

    .bubble:nth-child(4) {
        left: 70%;
        width: 2vw;
        height: 2vw;
        animation-duration: 7s;
        animation-delay: 2.5s;
    }

    .bubble:nth-child(5) {
        left: 95%;
        width: 3vw;
        height: 3vw;
        animation-duration: 6s;
        animation-delay: 0s;
        background-color: #2e7b8f56;
    }

    .bubble:nth-child(6) {
        left: 85%;
        width: 4vw;
        height: 4vw;
        animation-duration: 8s;
        animation-delay: 3s;
        background-color: #4ebdd947;
    }

    .bubble:nth-child(7) {
        left: 75%;
        width: 6.5vw;
        height: 6.5vw;
        animation-duration: 12s;
        animation-delay: 1s;
        background-color: #2e7b8f56;
    }

    .bubble:nth-child(8) {
        left: 25%;
        width: 5vw;
        height: 5vw;
        animation-duration: 10s;
        animation-delay: 2s;
        background-color: #4ebdd947;
    }

@keyframes rise {
    0% {
        transform: translateY(-100) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-400%) scale(0.8);
        opacity: 0;
    }
}



.contact-bg {
    width: 100%;
    height: auto;
    display: block;
}

.contact-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1E53A4;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 0.5em 1em;
    z-index: 3;
}

.contact-btn {
    background-color: #1E53A4;
    color: #ffffff;
    border-radius: 50px;
    padding-right: 50px;
    padding-left: 50px;
}

    .contact-btn:hover {
        color: #ffffff;
        background-color: #0e2950;
    }

footer {
    background-color: #ffcaca;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 1.5rem;
    z-index: 0;
}




.footer-bg {
    background-color: rgba(35, 84, 164, 0.05);
}

.information-area {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.information-icon {
    color: #5A5A5A;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 1rem !important;
}

.people {
    font-size: 0.7rem;
}

.divider {
    border-right: 0.5px solid #9FA0A0;
    border-left: 0.5px solid #9FA0A0;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border: none;
}

.footer-bar {
    background-color: #1E53A4;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.7rem;
}

.logo-accessibility {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.moea-logos {
    align-items: center;
    margin-top: .5rem;
    max-height: 40px;
    object-fit: contain;
}

.paint-line {
    height: 20px;
    border-right: 0.5px solid #9FA0A0;
}

.policy {
    text-decoration: none;
}


#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(180deg, #DA2975,#1a7aef);
    color: white;
    border: none;
    padding: 0.75rem;
    font-size: 1.2rem;
    border-radius: 5px;
    display: none;
    cursor: pointer;
    z-index: 999;
    width: 50px;
}

.map-mobile {
    display: none;
}

.map-desktop {
    display: block;
}

.content-area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
}


@media (max-width: 1312px) {
    .intro-num {
        max-width: 65%;
    }
}

@media (max-width: 1195px) {
    .contact-text {
        padding: 0%;
    }
}

@media (max-width: 1110px) {
    .intro-num {
        max-width: 70%;
    }

    .contact-bg {
        height: 200px;
    }
}



@media (max-width: 1031px) {
    .intro-num {
        max-width: 75%;
    }
}

@media screen and (min-width: 1025px) {

    .information-box {
        font-size: 0.9rem;
    }

}


@media screen and (max-width: 1024px) {
    .map-mobile {
        display: block !important;
    }

    .map-desktop {
        display: none !important;
    }

    .col-ll-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-ll-4 {
        flex: 0 0 auto;
        width: 33.3333%;
    }

    .col-ll-5 {
        flex: 0 0 auto;
        width: 41.6667%;
    }


}


@media (max-width: 992px) {
    .carousel-caption1 {
        bottom: 35%;
    }

    .intro-num-md {
        display: block;
    }
}

@media screen and (max-width: 991px) {
    .divider {
        border-left: none;
    }
}

@media screen and (max-width: 989px) {
    .divider {
        border-left: none;
    }
}

@media (max-width: 768px) {

    h6 {
        font-size: 16px;
    }

    h5 {
        font-size: 20px;
        font-weight: bold;
        color: #1E53A4;
    }

    p,
    li {
        font-size: 12px;
    }

    .content-box p {
        font-size: 12px;
    }

    .mail-area {
        font-size: 12px;
        text-align: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #ffffff;
        position: absolute;
        top: 60px;
        right: 2rem;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

        .nav-links.active {
            display: flex;
        }

    .partner-logos {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .more-if {
        display: none;
    }

    .more-if-moblie {
        display: block;
    }

    .active-news {
        background-size: 100% 100%;
    }

    .information-area {
        flex-direction: inherit;
    }

    .divider {
        border-right: none;
        border-left: none;
    }

    .col-mm-12 {
        width: 100%;
    }

    .content-box {
        margin-top: 20px;
        text-align: center;
    }

    .img-moblie {
        text-align: center;
    }

    .content-area {
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

@media (max-width: 767px) {
    .parallax-banner {
        height: 50vh;
    }

    .jarallax-img {
        background-position: center center !important;
    }

    .origin-image-wrapper {
        margin-top: 2rem;
    }

    .tusa-card {
        margin-bottom: 2rem;
    }

    .information-area {
        flex-direction: inherit;
    }

    .divider {
        border-right: none;
        border-left: none;
    }



    .card-custom {
        padding: 1rem;
    }
}


@media (max-width: 681px) {
    .contact-text {
        padding: 0%;
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .contact-btn {
        margin: 0% !important;
    }
}

@media (max-width: 597px) {
    .mb-col-12 {
        width: 50%;
    }

    .information-news {
        margin-left: 0;
        margin-right: 0;
    }

    .information-content {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}


@media (max-width: 551px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .carousel-caption1 {
        position: absolute;
        bottom: 40%;
        left: 10%;
    }

    .contact-text {
        padding: 0%;
    }
}
