body {
    margin: 0;
    padding: 0;
    font-family: "Frank Ruhl Libre", sans-serif;
    line-height: 1.6;
}

.d-none {
    display: none;
}

.header,
.header-wrapper {
    display: block;
    width: 100%;
    z-index: 30;
    position: relative;
    background-size: cover;
    background-position: 50% 0;
    transition: background-color 0.3s, opacity 0.3s;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
}

.header-wrapper {
    background-color: rgba(255, 255, 255, 0.9);
}

.header-main {
    height: 83px;
    z-index: 10;
    position: relative;
}

.header .flex-row {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.flex-right {
    margin-left: auto;
}

.nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    text-wrap: nowrap;
}

.nav>li {
    position: relative;
}

.nav>li>a,
.nav>li>ul>li>a {
    font-family: "Frank Ruhl Libre", sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: rgba(102, 102, 102, 0.85);
    padding: 10px;
    display: inline-block;
    transition: all .2s;
    font-size: .8em;
    letter-spacing: .02em;
    font-weight: bolder;
}

.nav>li>a:hover,
.nav>li>ul>li>a:hover {
    color: black;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 260px;
    padding: 20px;
    border: 2px solid #ddd;
}

.nav-dropdown:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 10%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-bottom-color: #ddd;
    border-top-width: 0;
}

.nav-dropdown li {
    border-bottom: 1px solid #ccc;
    list-style: none;
}

.nav-dropdown li:last-child {
    border-bottom: none;
}

.nav-top-link.about:after {
    content: "\25BE";
    margin-left: .2em;
    font-size: 16px;
    opacity: .6;
}

.nav-top-link.about:hover+.nav-dropdown,
.nav-dropdown:hover {
    display: block;
}

.nav-dropdown::after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
}

.header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.9);
    transition: background-color 0.3s, opacity 0.3s;
    z-index: 1000;
}

.pl-15 {
    padding-left: 15px;
}

.pr-15 {
    padding-right: 15px;
}

.container {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

#footer {
    background-color: #000;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.footer-widgets {
    max-width: 1080px;
    margin: 0 auto;
}

.footer-widgets .row {
    display: flex;
    flex-wrap: wrap;
    gap: 35%;
    row-gap: 30px;
}

.widget_text {
    text-align: left;
    padding: 0 10px;
}

.widget-title {
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: .05em;
}

.textwidget.custom-html-widget {
    font-size: 14px;
    line-height: 1.6;
}

.textwidget.custom-html-widget a {
    color: #fff;
    text-decoration: none;
}

.textwidget.custom-html-widget img {
    margin-right: 10px;
    vertical-align: middle;
    width: 40px;
    height: 40px;
}

.is-divider {
    background-color: rgba(255, 255, 255, 0.3);
    margin-top: .66em;
    height: 3px;
    display: block;
    margin: 1em 0 1em;
    width: 100%;
    max-width: 30px
}

.slider-section {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    position: relative;
    cursor: grab;
}

.slider.dragging {
    cursor: grabbing;
}

.slide {
    min-width: 100%;
    max-height: 833.55px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.slide img {
    width: 100%;
    height: 100%;
}

.quote-container {
    position: absolute;
    bottom: 35px;
    right: 150px;
    background-color: rgba(0, 0, 0, 0.28);
    padding: 20px;
    height: 140px;
    width: 450px;
}

.quote {
    color: white;
    font-size: 2em;
    margin: 0;
    line-height: 1.2;
}


.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-section:hover .slider-controls {
    opacity: 1;
}

.prev-slide,
.next-slide {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 2px solid white;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin: 0 20px;
}

.next-slide {
    transform: rotate(180deg);
}

.prev-slide:hover,
.next-slide:hover {
    background-color: #093e7d;
    border-color: #093e7d;
}

.prev-slide svg,
.next-slide svg {
    width: 60%;
    height: auto;
    fill: white;
}

.slider-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.bullet {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 3px solid #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.bullet.active {
    background-color: #fff;
    border: 3px solid #fff;
}

.yhh-section {
    background-image: url('wp-content/uploads/2020/06/about-background-1024x458-blue.jpg');
    background-size: cover;
    overflow: hidden;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-content {
    flex: 1;
}

.image-wrapper {
    flex: 1;
    text-align: center;
}

.image-wrapper img {
    width: 70%;
    height: auto;
}

.text-content .t1 {
    font-size: 3.5em;
    font-weight: 700;
}

.text-content .t2 {
    font-size: 110%;
    color: #000000;
    margin-bottom: 1em;
}

.read-more-btn {
    padding: 10px 20px;
    background-color: #093e7d;
    color: #fff;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-size: .97em;
    font-weight: bolder;
}

.read-more-btn:hover {
    background-color: #062e5f;
}

.bg-overlay {
    margin-top: -50px;
}

.bg-overlay img {
    width: 100%;
    height: auto;
    display: block;
}

.row-section,
.voluntary-box,
.video-box {
    display: flex;
    place-content: center;
    flex-wrap: wrap;
}

.voluntary-box,
.video-box {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
}

.row-section {
    margin: 50px 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1080px;
}

.voluntary-section {
    background-color: rgb(9, 62, 125);
    width: 100%;
    text-align: center;
}

.row-section .box {
    text-align: center;
    max-width: 33.33333%;
}

.voluntary-section .box {
    max-width: 350px;
}

.row-section .box img {
    max-width: 20%;
    margin-bottom: 1em;
}

.row-section .box h1 {
    font-size: 180%;
    color: #093e7d;
    line-height: 0.85;
    margin-top: 0;
}

.row-section .box p {
    font-size: 100%;
    line-height: 1.6;
    color: #777;
    margin-top: 0;
}

.voluntary-section .box img {
    width: 350px;
    height: 190px;
    object-fit: cover;
}

.voluntary-section .box {
    padding: 0 15px 30px;
    text-align: -webkit-center;
}

.vs {
    font-size: 1.7em;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5em;
    padding: 3% 15px 30px;
}

.voluntary-box .box h5 {
    font-size: 1.15em;
    font-weight: 700;
    font-family: "Muli", sans-serif;
    line-height: 1.3;
    color: #fff;
    margin: .1em 0;
}

.voluntary-section .is-divider {
    margin: .5em 0;
    height: 2px;
}

.voluntary-box p {
    color: #f1f1f1;
    margin: .1em 0;
    font-size: .9em;
}

.btn-volun-read {
    max-width: 100%;
    font-weight: bolder;
    cursor: pointer;
    border-radius: 0;
    min-height: 2.5em;
    padding: 0 1.2em;
    background-color: #fff;
    color: #666;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 1em;
}

.btn-volun-read:hover {
    background-color: #f0f0f0;
    color: #333;
}

.home-sec-img img {
    width: 100%;
}

.video {
    max-width: 250px;
    min-height: 200px;
    overflow: hidden;
}

.video-box {
    gap: 20px;
}

.video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-section {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 1080px;
    margin-bottom: 50px;
}

.video-section .vs {
    margin-bottom: 0;
}

.btn-more-video {
    max-width: 100%;
    font-weight: bolder;
    cursor: pointer;
    border-radius: 0;
    min-height: 2.5em;
    padding: 0 1.2em;
    background-color: #093e7d;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 1em;
}

.btn-more-video:hover {
    background-color: #062e5f;
}

.content-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.content img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.description {
    text-align: justify;
    color: #777;
    line-height: 1.6;
    font-size: 100%;
}

.business-activity-content {
    background-image: url('wp-content/uploads/2020/04/222-scaled.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    padding: 50px 0;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 490px;
}

.business-activity {
    flex: 1;
    text-align: center;
    margin-right: 20px;
    color: #fff;
}

.business-activity h1 {
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.7em;
}

.business-quote {
    flex: 1;
    background-color: rgba(9, 62, 125, 0.8);
    padding: 20px;
    color: #fff;
    margin-top: auto;
    margin-right: 50px;
}

.business-quote {
    margin-bottom: 0;
}

.flex-row {
    display: flex;
}

.pd15-30 {
    padding: 0 15px 30px;
}

.img-container {
    width: 60%;
    float: left;
}

.desc-container {
    width: 30%;
    float: left;
    padding-left: 60px;
    align-content: center;
}

.desc-container p {
    color: #777;
    text-align: justify;
}

.news-container {
    padding: 20px;
}

.news-section {
    display: flex;
    max-width: 100%;
    margin: 20px auto;
    gap: 30px;
}

.news-box {
    width: 330px;
    height: 330px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.news-title {
    color: #555;
    font-family: "Muli", sans-serif;
    font-weight: 700;
    font-size: 1.4em;
    line-height: 1.3;
    margin-top: 30px;
    text-transform: uppercase;
    border-bottom: 2px solid #ececec;
    padding-bottom: 5.5px;
    margin-bottom: 50px;
}

.news-box .text-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    color: #fff;
    padding: 0 60px;
    text-align: center;
}

.news-box p {
    font-weight: bolder;
    font-size: 1.7em;
    color: #fff;
    padding: 0;
    line-height: 1;
}

.voluntary-service-content {
    background-image: url('wp-content/uploads/2020/04/cover-change-this.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    padding: 50px 0;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 870px;
}

.voluntary-service {
    flex: 1;
    text-align: center;
    margin-right: 20px;
    color: #fff;
}

.voluntary-service h1 {
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.7em;
}

.voluntary-quote {
    flex: 1;
    background-color: rgba(9, 62, 125, 0.8);
    padding: 20px;
    color: #fff;
    margin-top: auto;
    margin-right: 200px;
    max-width: 400px;
    margin-bottom: -80px;
}

.business-quote {
    margin-bottom: 0;
}

.voluntary-service-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 150px;
    margin-bottom: 50px;
    text-align: center;
}

.voluntary-service-box .box {
    width: calc(50% - 10px);
    margin-bottom: 20px;
    padding: 15px;
    box-sizing: border-box;
    text-align: -webkit-center;
}

.voluntary-service-box .box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.voluntary-service-box h5 {
    font-size: 1em;
    line-height: 1.3;
    margin-top: 1.1em;
    margin-bottom: .1em;
    font-weight: 700;
    font-family: "Muli", sans-serif;
    color: #555;
}

.voluntary-service-box p {
    font-size: .9em;
    margin-top: .1em;
    margin-bottom: .1em;
    line-height: 1.6;
    color: #777;
}

.voluntary-service-box .is-divider {
    background-color: rgba(0, 0, 0, 0.1);
}

.voluntary-service-box .btn-volun-read:hover {
    color: #fff;
    background-color: #093e7d;
}

.video-content {
    background-image: url('wp-content/uploads/2020/05/7R303522-scaled.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    padding: 50px 0;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 550px;
    justify-content: center;
}

.video-title {
    text-align: center;
    color: #fff;
}

.video-quote {
    background-color: rgba(9, 62, 125, 0.8);
    padding: 20px;
    color: #fff;
    margin-top: auto;
    margin-right: 145px;
    width: 400px;
    margin-bottom: -80px;
    text-align: center;
    animation: slide 1s forwards;
}

@keyframes slide {
    0% {
        margin-left: 300px;
        opacity: 0;
    }
    50% {
        margin-left: -50px;
        opacity: 0.5;
    }
    100% {
        margin-left: 0;
        opacity: 1;
    }
}

.video2 {
    width: 300px;
    margin-bottom: 30px;
}

.video2 p {
    font-weight: 700;
    font-family: "Muli", sans-serif;
    font-size: 1em;
    color: #555;
}

.contact-content {
    background-image: url('../pages/image/A730247333-1024x403.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    padding: 50px 0;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 400px;
    justify-content: center;
}

.contactus-content {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: rgb(255, 244, 229);
    max-width: 60%;
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact-info {
    flex: 0 0 30%;
    height: 480px;
    overflow: hidden;
    background-color: rgb(9, 62, 125);
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.22);
    align-self: center;
    position: relative;
    z-index: 1;
    align-content: center;
}

.contact-form {
    flex: 0 0 70%;
    background-color: #fff;
    padding: 30px 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: -15px;
    position: relative;
    z-index: 0;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.7em;
    line-height: 1.3;
    color: #555;
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 8px;
    color: #fff;
    /* Added to match text color */
}

.contact-form p {
    color: #777;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin-right: 10px;
}

.contact-form form {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
}

.contact-form label {
    font-weight: bold;
    color: #222;
    font-size: .9em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    max-width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #093e7d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 80px;
}

.contact-form button:hover {
    background-color: #062e5f;
}

.button2 {
    display: inline-block;
    font-size: 16px;
    background-color: white;
    color: #093e7d;
    padding: 10px 20px;
    border: 2px solid #093e7d;
    border-radius: 50px;
    text-decoration: none;
    margin: 20px 0 10px 10px;
    transition: background-color 0.3s;
}

.button2:hover {
    background-color: #062e5f;
    color: white;
    border: 2px solid white;
}

.awards-content {
    background-image: url('wp-content/uploads/2020/04/70496460_2548053098566312_7768998099275481088_o.jpg');
    background-size: cover;
    background-position: 50% 0;
    background-repeat: no-repeat;
    padding: 50px 0;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 430px;
    justify-content: center;
}

.awards-title {
    color: #fff;
    line-height: 0.85;
}

.awards-quote {
    background-color: rgba(9, 62, 125, 0.8);
    padding: 20px;
    color: #fff;
    margin-top: auto;
    margin-right: 100px;
    width: 600px;
    margin-bottom: -80px;
    animation: slide 1s forwards;
}

.award-p {
    font-weight: 700;
    font-family: "Muli", sans-serif;
    font-size: 1.7em;
    line-height: 1.3;
    color: #000000;
}

.tablinks {
    background-color: rgba(0, 0, 0, 0.04);
    border-bottom: 2px solid #ddd;
    border-top: 2px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 15px;
    cursor: pointer;
    font-size: .8em;
    color: rgba(102, 102, 102, 0.85);
    font-weight: bolder;
    transition: all .2s;
    letter-spacing: .02em;
}

.tablinks.active {
    background-color: #fff;
    border-top-color: #093e7d;
    border-bottom: none;
}

.tabcontent {
    border: 1px solid #ddd;
    padding: 30px;
}

.tabcontent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(11, 11, 11, 0.6);
    align-content: center;
    cursor: zoom-out;
}

.modal-content {
    position: relative;
    margin: auto;
    max-width: 60%;
    max-height: 90%;
    text-align: center;
    padding: 20px;
}

.modal-img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
    margin: auto;
    cursor: pointer;
}

.close {
    position: fixed;
    top: 15px;
    right: 35px;
    color: silver;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.modal-caption {
    position: relative;
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
}

.prev,
.next {
    cursor: pointer;
    position: fixed;
    top: 50%;
    width: auto;
    padding: 16px;
    color: silver;
    font-weight: bold;
    font-size: 24px;
    border: none;
    background-color: transparent;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    color: #fff;
}

.image-container {
    position: relative;
    width: 1000px;
    min-height: 880px;
}

.image-container1 {
    position: relative;
    width: 1000px;
    min-height: 580px;
}

.image {
    position: absolute;
    box-sizing: border-box;
    padding: 0 15px 30px;
}

.image:nth-child(1) {
    top: 0;
    left: 0;
}

.image:nth-child(2) {
    top: 0;
    left: 500px;
}

.image:nth-child(3) {
    top: 300px;
    left: 500px;
}

.image:nth-child(4) {
    top: 300px;
    left: 750px;
}

.image:nth-child(5) {
    top: 600px;
    left: 0;
}

.image:nth-child(6) {
    top: 600px;
    left: 250px;
}

.image:nth-child(7) {
    top: 600px;
    left: 500px;
}

#penang_awards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#penang_awards .thumbnail {
    width: calc(50% - 10px);
    height: 300px;
    object-fit: cover;
}

.tabcontent h3, .tabcontent p {
    font-size: 100%;
    color: #777;
}

.thumbnail {
    cursor: pointer;
}

.w-500 {
    width: 500px;
}

.w-250 {
    width: 250px;
}

.h-600 {
    height: 600px;
}

.h-300 {
    height: 300px;
}

/* Article Content Section */
.article-content {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    gap: 20px;
}

/* Left Side */
.article-left {
    flex: 3;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Article Header */
.article-header {
    text-align: center;
}

.charity,
.art-title,
.post-date {
    margin: 10px 0;
}

.charity {
    font-size: .7em;
    font-weight: 700;
    font-family: "Muli", sans-serif;
    color: #334862;
    line-height: 1.05;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.art-title {
    font-size: 1.7em;
    font-weight: 700;
    font-family: "Muli", sans-serif;
    line-height: 1.3;
    color: #555;
}

.post-date {
    font-size: .7em;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #777;
}

/* Article Image */
.article-img img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.badge {
    position: relative;
    top: 100px;
    right: 10px;
    width: 2.8em;
    height: 2.8em;
    background-color: #fff;
    color: #093e7d;
    text-align: center;
    line-height: .85;
    font-weight: bolder;
    border: 2px solid currentColor;
    align-content: center;
    cursor: pointer;
}

/* Social Icons */
.social-icons2 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon2 {
    font-size: 24px;
    color: silver;
    text-decoration: none;
}

.bi-facebook:hover {
    color: #3a589d;
}

.bi-twitter:hover {
    color: #2478ba;
}

.bi-envelope:hover {
    color: #111;
}

.bi-pinterest:hover {
    color: #cb2320;
}

.bi-google:hover {
    color: #dd4e31;
}

.bi-linkedin:hover {
    color: #0072b7;
}

/* Bottom Icons */
.bottom-icons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.bottom-icon {
    font-size: 100%;
    color: #334862;
    text-decoration: none;
    width: 50%;
    padding: 10px;
}

.left-icon {
    text-align: left;
    border-right: 1px solid #ececec;
}

.right-icon {
    text-align: right;
    border-left: 1px solid #ececec;
}

/* Sidebar */
.sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-left: 1px solid #ececec;
    padding: 0 20px;
}

/* Search Bar */
.search-bar {
    width: 100%;
}

.search-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.search-bar input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    flex: 1;
}

.search-button {
    background-color: #00aeef;
    border: none;
    color: white;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button i {
    font-size: 16px;
}

.search-button:hover {
    background-color: #007bb5;
}


/* Recent Posts and Comments */
.recent-posts,
.recent-comments {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.recent-posts h3,
.recent-comments h3 {
    margin: 0 0 10px 0;
    font-size: 1em;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #777;
}

.recent-posts ul,
.recent-comments ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li,
.recent-comments li {
    margin-bottom: 10px;
    border-bottom: 1px solid #ececec;
    padding: 6px 0;
}

.recent-posts li:last-child,
.recent-comments li:last-child {
    border-bottom: none;
}

.recent-posts a,
.recent-comments a {
    text-decoration: none;
    color: #777;
}

.recent-posts a:hover,
.recent-comments a:hover {
    text-decoration: none;
    color: #333;
}

.menu-icon div {
    width: 20px;
    height: 1.5px;
    background-color: #555;
    margin: 5px 0;
    margin-left: 20px;
    display: none;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.95);
    overflow-x: hidden;
    transition: width 0.5s ease;
    padding-top: 60px;
}

.sidenav.open {
    width: 260px;
}

.sidenav a {
    padding: 15px 0 15px 20px;
    text-decoration: none;
    font-size: .8em;
    color: rgba(102,102,102,0.85);
    display: block;
    transition: all .2s;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-weight: bolder;
}

.sidenav a:hover {
    background-color: rgba(0,0,0,0.05);
    color: #666;
}

.menu-item {
    margin: 10px 0;
}

.expandable .submenu {
    display: none;
}

.expandable.active .submenu {
    display: block;
    background-color: rgba(0,0,0,0.05);
    margin-top: -5px;
    padding-left: 15px;
}

.submenu a {
    font-size: .7em;
}

.expandable a {
    text-decoration: none;
}

.submenu a {
    display: block;
    margin: 5px 0;
}

.angle-down {
    float: right;
    margin-right: 30px;
    transition: transform 0.3s ease;
}

.angle-down.rotate-up {
    transform: rotate(180deg);
}

.scroll-to-top {
    position: fixed;
    background-color: transparent;
    border: 2px solid gray;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    display: none;
    z-index: 1000;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.scroll-to-top div {
    color: gray;
    text-decoration: none;
    display: block;
    font-size: 20px;
}

.scroll-to-top:hover {
    background-color: #093e7d;
    border-color: #093e7d;
}

.scroll-to-top div:hover {
    color: #fff
}

@media (max-width: 768px) {
    .menu-icon div {
        display: block;
    }

    .nav {
        display: none;
    }

    .description {
        padding: 0 20px;
    }

    .business-activity-content {
        flex-direction: column;
    }

    .business-quote {
        margin-left: 50px;
        flex: 0;
    }

    .content-wrapper {
        flex-direction: column;
        margin-top: 50px;
    }

    .quote-container {
        width: auto;
        height: auto;
        bottom: 30px;
        right: 0;
    }

    .quote {
        font-size: 1.6em;
    }

    .bg-overlay {
        display: none;
    }

    .flex-row {
        flex-direction: column;
    }

    .img-container {
        width: 100%;
    }

    .desc-container {
        width: 100%;
        padding: 0;
    }

    .text-content .t1 {
        font-size: 200%;
        margin-bottom: 20px;
    }

    .row-section,
    .voluntary-box,
    .video-box {
        flex-direction: column;
        align-items: center;
    }

    .row-section .box {
        max-width: 100%;
    }

    .row-section .box img {
        width: 100%;
    }

    .voluntary-section .box img {
        width: 100%;
    }

    .news-section {
        flex-direction: column;
    }

    .news-box {
        width: 100%;
    }

    .voluntary-service-content {
        flex-direction: column;
    }

    .voluntary-service-box {
        flex-direction: column;
    }

    .voluntary-service-box .box {
        width: 100%;
    }

    .voluntary-service {
        flex: 0;
    }

    .voluntary-quote {
        flex: 0;
        margin-right: 0;
        margin-bottom: 0;
    }

    .voluntary-quote p {
        padding: 20px;
    }

    .voluntary-service h1 {
        margin-top: 135px;
    }

    .video-content {
        flex-direction: column;
    }

    .video-title {
        margin-top: auto;
    }

    .video-quote {
        width: 275px;
        margin-right: 0;
        margin-bottom: 0;
    }

    .mgt-530 {
        margin-top: -530px;
    }

    .contactus-content {
        flex-direction: column;
        max-width: 100%;
    }

    .contact-form {
        margin-left: 0;
        margin-top: 20px;
    }

    .w-250,
    .w-500 {
        width: 100%;
    }

    .h-300,
    .h-600 {
        height: 100%;
    }

    .tabcontent img {
        width: 100%;
        height: auto;
    }

    #penang_awards {
        flex-direction: column;
    }

    #penang_awards .thumbnail {
        width: 100%;
    }

    .image-container,
    .image-container1 {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .image {
        position: static;
        width: 100%;
        max-width: 500px;
        margin-bottom: 15px;
    }

    .image:nth-child(7) {
        margin-bottom: 0;
    }

    .awards-content {
        flex-direction: column;
    }

    .awards-quote {
        width: 300px;
        margin-right: 0;
    }

    .awards-quote p {
        padding: 20px;
    }

    .awards-quote {
        margin-top: 0;
    }

    .article-content {
        flex-direction: column;
    }

    .contact-content {
        min-height: 80px;
        background-position: 50% 0;
    }

    .contact-info {
        width: calc(100% - 60px)
    }
    
}
