         body {
            font-family: 'AlibabaPuHuiTi-2-45-Light', sans-serif;
           }

        .container {
            text-align: center;
            font-family: 'AlibabaPuHuiTi-2-45-Light', sans-serif;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            padding: 20px;
            border-radius: 10px;
        }
        .container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .text {
            margin-top: 15px;
            font-family: 'AlibabaPuHuiTi-2-45-Light', sans-serif;
        }
        .text h1 {
            margin: 10px 0;
            font-family: 'AlibabaPuHuiTi-2-45-Light', sans-serif;
            font-size: 24px;
            color: #333;
        }
        .text p {
            font-size: 16px;
            font-family: 'AlibabaPuHuiTi-2-45-Light', sans-serif;
            color: #666;
        }
        
    .footertest {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 60px;
      background-color: #fff;
      padding: 6px;
    }

    .footertest p {
      margin: 0;
      color: black;
      text-align: center;
      line-height: 1.2; /* Adjust if you need more/less space between lines */
    }
     
     .footer_y_1_left_mid_2 {
       font-family: 'AlibabaPuHuiTi-2-45-Light', sans-serif;
       }
     
         /* General Styles */
        body {
            font-family: 'AlibabaPuHuiTi-2-45-Light', sans-serif;
            margin: 0;
            padding: 0;
        }

        /* Navbar Styles */
        .navbar, .custom-navbar {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 8px 15px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background-color: transparent;
            transition: top 0.3s, background-color 0.3s, color 0.3s;
        }

        .navbar.scrolled, .custom-navbar.scrolled {
            background-color: white;
            color: black;
        }

        .navbar img, .custom-navbar img {
            height: 50px;
            margin-right: auto;
        }

        /* Desktop Menu */
        .desktop-menu {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
        }

        .desktop-menu li {
            position: relative;
            margin: 0 10px;
        }

        .desktop-menu a {
            text-decoration: none;
            color: black;
            padding: 8px;
            display: block;
            transition: background-color 0.3s ease, color 0.3s ease;
            font-size: 14px;
        }

        .navbar.scrolled .desktop-menu a {
            color: black;
        }

        .desktop-menu li:hover > a {
            background-color: white;
            color: black;
        }

        .submenu, .sub-submenu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            list-style-type: none;
            padding: 0;
            margin: 0;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .submenu li, .sub-submenu li {
            width: 210px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .submenu a, .sub-submenu a {
            color: black;
            font-size: 13px;
        }

        .desktop-menu li:hover > .submenu {
            display: block;
        }

        .submenu li:hover > .sub-submenu {
            display: block;
            top: 0;
            left: 100%;
        }
        /* Sub-sub-submenu styling for desktop */
        .sub-sub-submenu {
         display: none;
         position: absolute;
         top: 0;
         left: 100%;
         background-color: white;
         padding: 0;
         list-style-type: none;
         box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
         }

         .sub-sub-submenu li {
          width: 210px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.1);
         }

         .sub-submenu li:hover > .sub-sub-submenu {
          display: block;
         }
         /* Sub-sub-sub-submenu styling for desktop */
          .sub-sub-sub-submenu {
           display: none;
           position: absolute;
           top: 0;
           left: 100%;
           background-color: white;
           padding: 0;
           list-style-type: none;
           box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
         }

          .sub-sub-sub-submenu li {
           width: 200px;
           border-bottom: 1px solid rgba(0, 0, 0, 0.1);
         }

         .sub-sub-submenu li:hover > .sub-sub-sub-submenu {
          display: block;
         }

        /* Language Select */
        .language-select {
            margin-left: auto;
            background-color: white;
            color: black;
            border: 1px solid black;
            padding: 5px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            outline: none;
            transition: background-color 0.3s, color 0.3s, border-color 0.3s;
        }

        .language-select:focus {
            border-color: #333;
        }
            @media (min-width: 768px) {
           .custom-menu.custom-mobile-menu {
        display: none;
         }
         }
         /* Custom Font Size and Padding for Large Screens */
        @media (min-width: 1600px) {
            .desktop-menu a,
            .submenu a,
            .sub-submenu a,
            .sub-sub-submenu a,
            .sub-sub-sub-submenu a,
            .language-select {
                font-size: 18px;
            }

            /* Adjust Padding */
            .desktop-menu a {
                padding: 12px 16px;
            }

            .submenu a,
            .sub-submenu a,
            .sub-sub-submenu a,
            .sub-sub-sub-submenu a {
                padding: 14px 18px;
            }

            .navbar, .custom-navbar {
                padding: 12px 30px;
            }
        }
        @media (max-width: 768px) {
    /* Mobile Menu Styles */
    .desktop-menu {
        display: none; /* Hide desktop menu on mobile */
    }

    .custom-hamburger {
        display: flex; /* Show hamburger menu on mobile */
        flex-direction: column;
        cursor: pointer;
    }

    .custom-hamburger div {
        width: 20px;
        height: 2px;
        background-color: black;
        margin: 3px 0;
        transition: transform 0.3s, background-color 0.3s;
    }

    .custom-mobile-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        background-color: black;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        color: white;
        padding-top: 60px;
        overflow: auto;
    }

    .custom-mobile-menu.active {
        display: flex;
    }

    .custom-mobile-menu li {
        margin: 0;
        border-bottom: 1px solid white;
    }

    .custom-mobile-menu a {
        color: white;
        padding: 15px 0;
        display: block;
        font-size: 18px;
        transition: background-color 0.3s ease, color 0.3s ease;
        text-align: left;
        padding-left: 15px;
    }

    .custom-mobile-menu li:hover > a {
        background-color: #555;
        color: white;
    }

    .custom-submenu, .custom-sub-submenu {
        display: none;
        position: relative;
        background-color: #444;
        padding-left: 15px;
    }

    .custom-has-submenu.custom-active > .custom-submenu {
        display: block;
    }

    .custom-has-sub-submenu.custom-active > .custom-sub-submenu {
        display: block;
    }

    .custom-mobile-menu li.custom-has-submenu > a::after {
        content: ' +';
        float: right;
        margin-left: 10px;
        font-size: 15px;
    }

    .custom-mobile-menu li.custom-active > a::after {
        content: ' -';
    }

    .custom-mobile-menu li.custom-has-sub-submenu > a::after {
        content: ' -';
        float: right;
        margin-left: 10px;
        font-size: 16px;
    }

    .custom-submenu li a, .custom-sub-submenu li a {
        color: white;
        padding: 10px 0;
        font-size: 15px;
        padding-left: 3px;
    }

    .custom-sub-submenu {
        padding-left: 3px;
    }

    .custom-sub-submenu li a::before {
        content: '•';
        margin-right: 10px;
        font-size: 16px;
    }

    /* Mobile menu styling */
    .custom-sub-sub-submenu {
        display: none;
        padding-left: 1px;
        background-color: #555;
    }

    .custom-has-sub-sub-submenu.custom-active > .custom-sub-sub-submenu {
        display: block;
    }

    /* Mobile menu styling */
    .custom-sub-sub-sub-submenu {
        display: none;
        padding-left: 60px;
        background-color: #555;
    }

    .custom-has-sub-sub-sub-submenu.custom-active > .custom-sub-sub-sub-submenu {
        display: block;
    }

    .non-link {
        cursor: default;
    }
}
        /* Scroll to Top Button */
        #scrollToTopBtn {
            display: none; /* Hidden by default */
            position: fixed; /* Fixed/sticky position */
            bottom: 20px; /* Place the button at the bottom of the page */
            right: 30px; /* Place the button 30px from the right */
            z-index: 99; /* Make sure it does not overlap */
            border: none; /* Remove borders */
            outline: none; /* Remove outline */
            background-color: black; /* Set background color */
            color: white; /* Set text color */
            cursor: pointer; /* Add a mouse pointer on hover */
            width: 50px; /* Set width */
            height: 50px; /* Set height */
            font-size: 30px; /* Increase font size */
            text-align: center; /* Center the text */
            line-height: 50px; /* Center the text vertically */
        }

        #scrollToTopBtn:hover {
            background-color: #555; /* Add a dark-grey background on hover */
        }

        body {
            font-family: 'AlibabaPuHuiTi-2-45-Light', sans-serif;
        }
        ul {
            list-style-type: disc;
            padding-left: 40px;
        }
        ul li {
            margin-bottom: 10px;
        }
        /* Mobile styles */
        @media (max-width: 768px) {
            .shoujibannerimg {
                height: auto;
                min-height: 500px; /* Adjust minimum height for mobile */
                width: 100%;
                object-fit: fit;
            }

            .nybanner_bg {
                display: none; /* Hide background div for mobile if using image */
            }
        }

        /* Additional styles if needed */
        .nybanner_bg {
            background-size: cover;
            background-position: center;
            height: 100%; /* Ensure background div covers the parent div */
        }

        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
        @media (max-width: 768px) {
        .navbar.scrolled-up .language-select {
            background: black;
            color: white;
        }

        .navbar.scrolled-up .mobile-menu {
            background-color: black;
        }

        .navbar.scrolled-up .mobile-menu a {
            color: white;
        }

        .navbar.scrolled-up .hamburger div {
            background-color: black;
        }
    }

@font-face {
            font-family: 'bookmanoldstylebold';
            src: url('https://heveaboard.com.my/wp/hbb/public/css/bookmanoldstyle_bold.ttf') format('truetype');
            font-weight: bold;
        }

        .y_index_1_1 {
            font-family: 'bookmanoldstylebold', sans-serif;
            font-weight: bold;
            color: #046A38; /* PMS 349 color */
        }