/* DEFAULT FONT: MONTSERRAT */
body {
    font-family: 'Montserrat', sans-serif;
}

/* GLOBAL TEXT JUSTIFICATION */
body p,
body li,
body span,
body .richtext,
body .description,
body .text-content {
    text-align: justify;
}

/* Don't justify headings or UI elements */
h1, h2, h3, h4, h5, h6,
button, a, label {
    text-align: left;
}

/* Ensure all text inherits the base font */
h1, h2, h3, h4, h5, h6, p, a, span, li, button {
    font-family: inherit;
}

/* NAVBAR STYLING */
.navbar-top {
    background-color: #FFFFFF;
    padding: 15px 0;
}
.navbar-bottom {
    background-color: #004F49;
    padding: 10px 0;
    color: #FFFFFF;
}
.navbar .row {
    margin-bottom: 10px;
}
.navbar-brand img {
    height: 100px;
}
@media (max-width: 768px) {
    .navbar-brand img {
        height: auto;
    }
}
.search-form {
    position: relative;
    width: 100%;
}
.search-input {
    border: 1px solid #DDD;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 16px;
    width: 100%;
}
.linkedin-cta {
    display: inline-block;
    border: solid;
    border-width: 0.1px;
    border-radius: 50px;
    padding: 10px;
    border-color: #ACACAC;
}
.linkedin-icon {
    height: 30px;
    width: 30px;
}
.navbar-nav .nav-link {
    color: #FFFFFF;
    font-weight: 500;
    padding: 10px 15px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #FFFFFF;
}
/* Show dropdown on hover DESKTOP ONLY */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
/* Smooth transition (optional) */
.dropdown-menu {
    transition: all 0.3s ease;
    display: none;
}
.dropdown-menu .dropdown-item {
    color: #000000;
    font-weight: 400;
    transition: all 0.2s ease;
}
.dropdown-menu .dropdown-item:hover {
    color: #004F49;
    font-weight: 700;
    background-color: transparent;
}
.dropdown-menu li {
    user-select: none;
    --bs-dropdown-link-active-bg: transparent;
}
.dropdown-menu .dropdown-submenu {
    position: relative;
}
.dropdown-menu .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
    position: absolute;
    display: none;
}
.dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Navbar Mobile Styling */
.navbar-toggler {
    border: none;
}
.navbar-toggler-icon {
    background-color: #004F49;
}
@media (max-width: 768px) {
    /* Hide desktop-specific elements */
    .search-form,
    .linkedin-cta,
    .navbar-top .row {
        display: none !important;
    }
    /* Mobile navbar top layout */
    .navbar-top {
        padding: 10px 15px;
    }
    .navbar-top .navbar-brand {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navbar-top .navbar-toggler {
        margin: 0;
    }
    .navbar-toggler-icon {
        width: 30px;
        height: 30px;
        background-color: transparent;
    }
    .navbar-top .btn {
        padding: 0;
        background: transparent;
        border: none;
    }
    .navbar-top .btn i {
        font-size: 1.5rem;
        color: #004F49; /* Matches your brand green */
    }
}

#mobileSearchBar {
    display: none;
}

/* FOOTER SECTION STYLING */
.footer {
    background-color: #ffffff; /* White background */
    margin: 60px 0;

    .footer-heading {
        color: #004F49;
    }
    .logo img {
        height: 60px;
    }
    .contact-info {
        font-size: 14px;
        color: #004F49;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    .contact-info i {
        color: #0d3b36;
        margin-right: 8px;
    }
    .contact-info a {
        color: #0d3b36;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-icons a {
        color: #0d3b36;
        font-size: 20px;
        margin: 0 10px;
        transition: 0.3s;
    }
    .social-icons a:hover {
        color: #075e54;
    }
}
/* FOOTER BOTTOM SECTION */
.footer-bottom {
    background-color: #004F49;
    color: white;
    padding: 25px 0;

    .row {
        display: flex;
        align-items: center;
    }
    a {
        color: white;
        text-decoration: none;
        font-weight: 500;
    }
    a:hover {
        text-decoration: underline;
    }
    .policy-links {
        justify-content: flex-end;
        
    }
    .whistleblowing-link {
        padding-right: 25px;
    }
    .privacy-link {
        padding-left: 25px;
    }
}

/* FOOTER MOBILE RESPONSIVE */
@media (max-width: 768px) {
    /* FOOTER TOP */
    .footer {
        margin: 20px 0;

        .row {
            flex-direction: column !important;
            align-items: center;
        }
        .logo {
            max-width: 80%;
        }
        .col-3 {
            width: 100% !important;
            max-width: 90%;
            margin-top: 0px !important;
        }
        .contact-info {
            justify-content: start;
        }
        .ir-contact {
            margin-left: 20px;
            text-align: left;
        }
        .col-md-6,.col-md-3 {
            width: 100%;
            padding: 0 !important;
        }
        .col-md-3 a {
            display: inline-block;
            margin: 0 10px;
        }
    }

    /* FOOTER BOTTOM */
    .footer-bottom .policy-links {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }
    .footer-bottom .copyright-text {
        padding: 10px 25px;
    }
}


/* HERO SECTION STYLING */
.hero {
    position: relative;
    width: 100%;
    height: 65vh;
    background-size: cover;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
}
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 300;
    max-width: 480px;
}
.hero-content h1 span {
    font-weight: 700;
}
.hero-content p {
    margin-bottom: 20px;
    max-width: 440px;
    color: #DFDFDF;
}
.hero-content .btn {
    padding: 15px 70px;
    font-size: 1.1rem;
    border-radius: 5px;
    border: 2px solid white;
    color: white;
    background: transparent;
    transition: 0.3s;
    margin-top: 15px;
}
.hero-content .btn:hover {
    background: white;
    color: black;
}
@media (max-width: 768px) {
    .hero-content {
        position: absolute;
        max-width: 75%;
        left: 13%;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.0rem;
    }
}


/* WHO WE ARE SECTION */
.who-we-are {
    background-color: #004F49;
    color: #FFFFFF;
}
.who-we-are .row {
    display: flex;
    height: inherit;
}
.who-we-are-image {
    background-repeat: no-repeat;
}
.who-we-are .content {
    padding: 80px 0px;
    max-width: 500px;
    margin-left: 100px;
    height: inherit;
}
.who-we-are .heading {
    font-weight: bold;
    margin-bottom: 15px;
}
.who-we-are .subheading {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFFFFF;
}
.who-we-are .description {
    margin-bottom: 40px;
    max-width: 450px;
}
.who-we-are .btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 300;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.who-we-are .btn-outline-light:hover {
    background-color: white;
    color: #0d3b36;
}
@media (max-width: 768px) {
    .who-we-are {
        height: auto;
    }
    .who-we-are .row {
        flex-direction: column-reverse;
        height: auto;
    }
    .who-we-are .col-6 {
        width: 100%;
    }
    .who-we-are .content {
        margin-left: 0;
        padding: 40px 20px;
    }
    .who-we-are .heading {
        max-width: 80%;
    }
    .who-we-are .description {
        margin: 20px 0px 40px;
        max-width: 85%;
    }
    .who-we-are .btn-outline-light {
        padding: 20px 80px;
        font-size: 14px;
    }
    .who-we-are .col-6:first-child {
        background-size: cover;
        background-position: center;
        height: 300px;
    }
}


/* OUR PRODUCTS SECTION */
.product-section {
    padding: 60px 0;

    .product-header {
        text-align: center;
        font-weight: bold;
        font-size: 24px;
        color: #004F49;
    }
    .nav-tabs {
        justify-content: center;
        border: none;
        font-size: 35px;
        padding: 10px 50px;
    }
    .product-section .nav-item {
        margin-right: 20px;
        margin-left: 20px;
    }
    .nav-tabs .nav-link {
        color: #505050;
        border: none;
    }
    .nav-tabs .nav-link.active {
        border-bottom: solid 3px #004F49;
        color: #004F49;
        font-weight: bold;
    }
    .tab-content {
        margin-top: 20px;
    }
    .product-item {
        padding-top: 25px;
        padding-bottom: 25px;
        padding-left: 30px;
        background-repeat: no-repeat;
        height: 400px;
        background-size: contain;
    }
    .product-item h6{
        color: #004F49;
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .nav-tabs {
            display: flex !important;
            justify-content: center;
            flex-wrap: nowrap;
            gap: 40px;
        }
        .nav-tabs .nav-link {
            font-size: 24px;
            padding: 10px 0;
        }
        .carousel-item {
            height: 400px;
        }
        .carousel-item .product-item {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 30px;
            color: white;
            height: 100%;
            background-position: center;
        }
        .carousel-item {
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .product-carousel-item {
            width: 80%;
            height: 90%;
            background-size: cover;
            background-repeat: no-repeat;
            position: relative;
        }
        .product-caption {
            position: absolute;
            top: 20px;
            left: 30px;
            color: #004F49;
            font-weight: 600;
            margin-bottom: 0;
            max-width: 80%;
            font-size: 14px;
        }
        .mobile-carousel-wrapper {
            overflow-x: scroll;
            scroll-snap-type: x mandatory;
            padding-left: 20px;
            padding-right: 20px;
            margin-bottom: 25px;
        }
        .mobile-carousel-track {
            display: flex;
            gap: 15px;
            width: 100%;
        }
        .carousel-item-custom {
            flex: 0 0 80%;
            scroll-snap-align: center;
            background-size: contain;
            background-repeat: no-repeat;
            height: 340px;
            position: relative;
        }
        /* Optional: remove scrollbar in Webkit browsers */
        .mobile-carousel-wrapper::-webkit-scrollbar {
            display: none;
        }
    }
}


/* INVESTOR RELATIONS SECTION */
.investor-relations {
    background-color: #F5F7F8;
    color: #004F49;
    margin-top: 80px;
    margin-bottom: 80px;
}
.investor-relations .content {
    max-width: 450px;
    padding: 20px;
}
.investor-relations .subheading {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
}
.investor-relations .heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}
.investor-relations .description {
    font-size: 16px;
    margin-bottom: 30px;
    color: #004F49;
}
.investor-relations .learn-more-btn {
    background-color: transparent;
    color: #004F49;
    padding: 20px 60px;
    border: solid 1px;
    border-color: #004F49;
}
.investor-relations .learn-more-btn:hover {
    background-color: #004F49;
    color: #FFFFFF;
}
.investor-relations .img-group {
    margin-top: -80px;
    margin-bottom: -80px;
    max-width: 80%;
}
.investor-relations .img-group img {
    width: 100%;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .investor-relations {
        padding: 40px 20px;
        margin-top: -60px;
        margin-bottom: 0;
    }
    .investor-relations .learn-more-btn {
        width: 70%;
    }
    .investor-relations .img-group img {
        width: 100%;
    }
    .investor-relations .img-group {
        position: relative;
        max-width: 100%;
        margin-top: 30px;
        margin-bottom: 0;
    }
}



/* AWARDS & RECOGNITION SECTION */
.awards-section {
    padding-top: 80px;
    text-align: left;
    margin-bottom: 60px;
}
.awards-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #004F49;
}
.awards-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}
.awards-gallery {
    display: flex;
    margin-top: 30px;
}
.awards-img-wrap{
    padding: 10px 10px;
}
.awards-gallery .col {
    flex: 1;
    max-width: 150px;
}
.awards-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.accordion-button {
    background-color: #FFFFFF;
    color: #004F49;
    font-weight: 600;
}
.accordion-button:focus {
    box-shadow: none;
}
.award-card {
    border: 1px solid #EBEBEB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: #FFFFFF;
    height: 180px;
}
.award-card h5 {
    font-size: 1rem;
    font-weight: bold;
    color: #004F49;
}
.award-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0px;
}
.g-3 {
    row-gap: 20px;
}
@media (max-width: 768px) {
    .awards-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* NEWS & AWARDS SECTION */
.news-section {
    color: white;
    border-radius: 10px;
}
.news-events-wrapper {
    max-width: 450px;
}
.carousell-wrapper {
    background-color: #F5F7F8;
}
.news-text h6 {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.news-text h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 10px;
}
.news-text p {
    font-size: 1rem;
    margin-top: 10px;
}
.news-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    height: 280px;
    width: 280px;
}
.news-card a {
    text-decoration: none;
}
.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.news-content {
    padding: 20px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-content h5 {
    color: #4B8179;
    font-size: 1rem;
    font-weight: 600;
}
.news-content p {
    color: #666666;
    margin-top: auto;
}
/* Bootstrap Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: flex-start;
    margin-top: 25px;
    gap: 30px;
}
.carousel-control-prev, .carousel-control-next {
    position: static !important;
    background-color: #004F49;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* Mobile Horizontal Carousel */
.mobile-news-carousel-wrapper {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    padding: 40px 20px;
    background-color: #F5F7F8;

    a {
        text-decoration: none;
    }
}
.mobile-news-carousel-track {
    display: flex;
    width: 100%;
}
.news-carousel-item-custom {
    flex: 0 0 80%;
    scroll-snap-align: center;
}
/* Hide mobile scrollbar */
.mobile-news-carousel-wrapper::-webkit-scrollbar {
    display: none;
}



/* Career Page*/
/* Innovating Section */
.innovating-section {
    padding: 100px 0;
}
.innovating-text-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.innovating-text-title {
    color: #004F49;
    font-weight: bold;
    font-size: 35px;
    max-width: 35%;
}
.innovating-text-desc {
    color: #505050;
    font-size: 18px;
    max-width: 60%;
}
.innovating-image-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}
.innovating-image-group img {
    width: 100%;
}
@media (max-width: 768px) {
    .innovating-section { 
        padding: 50px 10px;
    }
    .innovating-text-wrapper {
        flex-direction: column;
        gap: 0;
    }
    .innovating-text-title {
        font-size: 28px;
        font-weight: 700;
        max-width: 90%;
    }
    .innovating-text-desc {
        font-size: 16px;
        max-width: 100%
    }
    .innovating-image-group {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    .innovating-image-group img {
        width: 100%;
        height: 100%;
    }
}



/* Investing Section */
.investing-section {
    background-color: #004F49;
    color: #FFFFFF;
    height: 55vh;
}
.investing-section-image {
    background-repeat: no-repeat;
    background-size: cover;
    height: 55vh;
}
.investing-section .row {
    display: flex;
    flex-wrap: wrap;
    height: inherit;
}
.investing-section .content {
    padding: 80px 0px;
    max-width: 500px;
    margin-left: 100px;
    height: inherit;
    align-content: center;
}
.investing-section .heading {
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFFFFF;
}
.investing-section .description {
    max-width: 85%;
    color: #FFFFFF;
}
/* Responsive for Mobile */
@media (max-width: 768px) {
    .investing-section {
        height: auto;
    }
    .investing-section .row {
        flex-direction: column-reverse;
    }
    .investing-section-image {
        height: 250px;
        width: 100%;
    }
    .investing-section .content {
        height: auto;
        width: 100%;
        margin-left: 0;
        padding: 40px 30px;
    }
    .investing-section .content {
        max-width: 100%;
    }
    .investing-section .description {
        max-width: 100%;
    }
}



/* Open Positions Section */
.open-position-section {
    background-color: #FFFFFF;
    padding: 100px 0;
}
.open-position-section .container .row h2 {
    padding-bottom: 50px;
    color: #004F49;
    font-weight: 700;
}
.open-position-item {
    padding-bottom: 110px;
}
.open-position-title {
    color: #004F49;
    font-weight: 700;    
}
.open-position-description {
    color: #505050;
    padding: 0;
    margin: 0;
}
.open-position-line{
    width: 100%;
    border: 1px solid #ACACAC;
    margin-top: 35px;
    margin-bottom: 19px;
}
.open-position-footer {
    display: flex;
    justify-content: space-between;
}
.open-position-department {
    color: #ACACAC;
}
.open-position-details-url {
    color: #004F49;
}
@media (max-width: 768px) {
    .open-position-section {
        padding: 50px 20px;
    }
}


/* Job Details Page */ 
.job-details-banner {
    height: 15vh;
    background-color: #004F49;
    color: #FFFFFF;
    text-align: center;
    align-content: center;
}
.job-details-banner h1 {
    font-weight: 600;
}
.job-details-desc-summary {
    color: #004F49; 
    font-weight: 700;
    padding-bottom: 5%;
}
.job-extra-details {
    background-color: #F5F5F5;
    border-top: 10px solid #004F49;
    width: 448px;
    height: 240px;

    .list-style {
        list-style-type: none;
        padding-top: 30px;
        padding-left: 40px;
        padding-bottom: 35px;
        
        li {
            margin-bottom: 5%
        }
    }
}
.job-details-btm-line {
    width: 100%;
    border: 1px solid #ACACAC;
    margin-top: 7%;
    margin-bottom: 7%;
}
.job-details-copy {
    color: #004F49; 
    gap: 20px;
}
.job-details-copy:hover {
    cursor: pointer;
}
@media (max-width: 768px) {
    .job-details-banner {
        height: auto;
        padding: 30px 10px;
    }
    .job-details-banner h1 {
        font-size: 24px;
    }
    .job-details-wrapper {
        padding: 25px;
    }
    .row {
        flex-direction: column;
    }
    .col-8, .col-4 {
        width: 100% !important;
        padding: 20px 0 !important;
    }
    .job-extra-details {
        width: 100%;
        height: auto;
    }
    .job-extra-details .list-style {
        padding: 20px;
    }
    .job-details-btm-line {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .job-details-copy {
        margin-top: 20px;
    }
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 20px;
    }
}



/* About Us Page */
.about-us-header {
    font-weight: 700 !important;
} 
.innovating-text-desc {
    color: #505050;
    font-size: 20px;
    max-width: 784px;
}


/* CONNECTING CONTINENTS SECTION */
.connecting-continents-section {
    .content-row {
        display: flex;
        height: 465px;
    }
    .text-content, .image-content {
        flex: 1;
        background-size: cover;
        background-position: center;
    }
    .text-content {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 80px;
        color: #FFFFFF;
    }
    .text-wrapper {
        max-width: 600px;
    }
    .text-wrapper .title {
        font-size: 35px;
        font-weight: bold;
    }
    .text-wrapper .description {
        font-size: 20px;
        margin-top: 15px;
    }
    .full-width-section {
        background-size: cover;
        background-position: center;
        height: 365px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .full-width-section .content {
        max-width: 1200px;
    }
    .full-width-title {
        color: white;
        font-size: 35px;
        text-align: center;
        font-weight: bold;
        padding: 20px;
    }
    .full-width-desc {
        color: white;
        font-size: 35px;
        text-align: center;
        font-weight: 500;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .connecting-continents-section {
        .content-row {
            flex-direction: column;
            height: auto;
        }
        .text-content {
            padding: 60px 20px;
        }
        .text-wrapper .title {
            font-size: 24px;
        }
        .text-wrapper .description {
            font-size: 16px;
        }
        .image-content {
            min-height: 400px;
            background-size: cover;
        }
        .full-width-title {
            font-size: 24px;
            font-weight: 600;
        }
    }
}



/* VISION MISSION SECTION */
.vision-mission-section {
    padding-bottom: 50px;

    .full-width-section {
        background-size: cover;
        background-position: center;
        height: 365px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .full-width-section .content {
        max-width: 1200px;
    }
    .full-width-title {
        color: white;
        font-size: 35px;
        text-align: center;
        font-weight: bold;
    }
    .full-width-desc-vision {
        color: white;
        font-size: 35px;
        text-align: center;
        font-weight: 200;
        max-width: 800px;
    }
    .full-width-desc-mission {
        color: white;
        font-size: 35px;
        text-align: center;
        font-weight: 200;
        max-width: 800px;
    }
}
@media (max-width: 768px) {
    .vision-mission-section {
        display: none;
    }
}


/* SINCE 1987 SECTION */
.since-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.since-section-title {
    color: #004F49;
    font-weight: 700;
    font-size: 35px;
}
.since-section-description-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.since-section-description-text {
    color: #004F49;
    font-size: 20px;
    min-width: 648px;
}
.since-section-image-wrapper {
    padding: 45px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.since-section-image-wrapper img {
    width: 314px;
    height: 314px;
}
@media (max-width: 768px) {
    .since-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .since-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .since-section-description-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    .since-section-description-text {
        min-width: auto;
        font-size: 18px;
    }
    .since-section-image-wrapper {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    .since-section-image-wrapper img {
        flex: 0 0 auto;
        width: 150px;
        height: 150px;
    }
}

/* Latest News Page */
/* .latest-news {
    position: relative;
    width: 100%;
    background-color: #004F49;
    display:flex;
} */

/* Latest News Page */
.latest-news {
    position: relative;
    width: 100%;
    min-height: 65vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}
.hero-content-latest-news {
    color: #FFFFFF;
    padding-top: 90px;
    padding-left: 250px;
    padding-right: 75px;

    .btn {
        padding: 15px 70px;
        font-size: 1.1rem;
        border-radius: 5px;
        border: 2px solid white;
        color: white;
        background: transparent;
        transition: 0.3s;
        margin-top: 15px;
    }
    .latest-news-title {
        font-size: 30px;
        font-weight: 700;
    }
    .latest-news-date {
        font-size: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

.latest-news-list-section {
    .container {
        padding-top: 100px;
        padding-bottom: 110px;
    }
    .news-list-title {
        font-size: 30px;
        font-weight: 700;
        color: #004F49;
    }
    .news-list-wrapper {
        padding-top: 65px;
    }
    .news-item {
        padding-bottom: 45px;

        .news-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #004F49;
        }
        .news-bottom {
            display: block;
        }
        .news-title {
            font-weight: 700;
        }
        .news-details-url {
            color: #004F49;
            white-space: nowrap;
        }
        .news-details-url-mobile {
            display: none;
        }
        .news-date {
            color: #666666;
            margin-top: 10px;
        }
        .news-line {
            width: 100%;
            border: 1px solid #ACACAC;
            margin-top: 35px;
        }
    }
}
@media (max-width: 768px) {
    .latest-news {
        flex-direction: column;
        align-items: center;
    }
    .latest-news-list-section .news-list-wrapper {
        padding-top: 30px;
    }
    .latest-news > div:last-child {
        order: -1;
        width: 100%;
    }
    .latest-news img {
        width: 100%;
        height: auto;
        display: block;
    }
    .hero-content-latest-news {
        padding: 30px 20px;
        text-align: center;
    }
    .latest-news-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
    }
    .hero-content-latest-news .latest-news-date {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .hero-content-latest-news .latest-news-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .latest-news-list-section .container {
        padding: 40px 20px;
    }
    .latest-news-list-section .news-item {
        padding-bottom: 30px;

        .news-line {
            margin-top: 20px;
        }
        .news-top {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        .news-title {
            font-size: 16px;
            font-weight: 700;
        }
        .news-details-url {
            display: none;
        }
        .news-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            width: 100%;
        }
        .news-bottom .news-date {
            color: #666666;
        }
        .news-bottom .news-details-url {
            display: inline;
            color: #004F49;
        }
        .news-details-url-mobile {
            color: #004F49;
            display: block;
        }
    }
}


/* News Article Page */
.news-article-banner {
    background-color: #004F49;
    padding-top: 60px;
    padding-bottom: 40px;

    .news-article-title {
        font-size: 70px;
        font-weight: 700;
        color: #FFFFFF;
    }
    .news-article-date {
        color: #FFFFFF;
        margin-top: 60px;
        margin-bottom: 30px;
    }
}
.news-article-content {
    color: #505050;
    margin-top: 8svh;
    padding-bottom: 5%;
}


/* CONTACT FORM PAGE */
.contact-banner {
  padding: 60px 20px;
  color: #fff;
}
.contact-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
}
.contact-form .container {
    max-width: 800px;
}
.contact-form {
    padding: 50px 0;
}
.form-heading {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}
.form-label {
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    color: #004F49;
    margin-top: 15px;
}
.form-control {
    border-radius: 0px;
    height: 45px;
    border: 1px solid #9F9F9F;
    font-size: 14px;
    padding: 10px;
    width: 100%;
}
.form-control:focus {
    border-color: #006d5b;
    box-shadow: 0 0 5px rgba(0, 109, 91, 0.2);
}
.form-select {
    border-radius: 0px;
    height: 45px;
    border: 1px solid #9F9F9F;
    font-size: 14px;
    padding: 10px;
    width: 100%;
}
.form-select:focus {
    border-color: #006d5b;
    box-shadow: 0 0 5px rgba(0, 109, 91, 0.2);
}
.message-box {
    height: 150px;
    resize: none;
}
.submit-btn {
    background-color: #004F49;
    color: #FFFFFF;
    padding: 25px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    margin-top: 20px;
    width: 100%;
}
.submit-btn:hover {
    background-color: #004F49;
    color: #FFFFFF;
}


/* ABOUT OUR BOD SECTION */
.board-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}
.board-title {
    font-size: 28px;
    font-weight: bold;
    color: #004F49;
}
.board-description {
    font-size: 16px;
    line-height: 1.8;
    color: #2C544A;
    font-weight: 400;
    max-width: 95%;
}


/* BOD HIERARCHY SECTION */
.bod-hierarchy {
    text-align: center;
    padding: 60px 0;
    background: #f9f9f9;
}
.bod-hierarchy .row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 65px;
}
.bod-card {
    background: #FFFFFF;
    border: 1px solid #004F49;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.bod-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
}
.bod-card h5 {
    font-weight: bold;
    color: #505050;
    margin-top: 20%;
    font-size: 15px;
    margin-bottom: 5px;
}
.bod-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0;
}
.bod-card a {
    display: inline-block;
    font-size: 14px;
    color: #004F49;
    margin-top: auto;
}
@media (max-width: 768px) {
    .bod-card {
        width: 90%;
        margin: 20px auto;
    }
    .bod-hierarchy .row {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    .bod-hierarchy .col-md-3 {
        margin-bottom: 30px;
    }
}


/* IR HOMEPAGE CTA SECTION  */
.bod-cta-section {
  padding: 60px 5%;
  background-color: #FFFFFF;
  justify-content: center;
  display: flex;

    .cta-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .cta-card {
        position: relative;
        height: 200px;
        width: 500px;
        color: #004F49;
        background-color: #F5F7F8;
        text-decoration: none;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 30px;
        border-radius: 10px;
    }
    .cta-card:hover {
        color: #FFFFFF;
        background-color: #004F49;
    }
    .cta-title {
        position: relative;
        z-index: 1;
        font-size: 25px;
        font-weight: 700;
        margin: 0;
    }
    .cta-icon {
        position: relative;
        z-index: 1;
        font-size: 18px;
        padding: 6px;
        max-width: 5%;
        max-height: 15%;
    }
}
@media (max-width: 768px) {
  .bod-cta-section {
    display: none;
  }
}



/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

/* When modal is targeted, show it */
.modal:target {
    opacity: 1;
    visibility: visible;
}

/* POPUP MODAL */
.modal-content {
    background: #FFFFFF;
    padding: 20px;
    width: 60%;
    height: 70%;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.close-btn {
    position: absolute;
    top: -30px;
    right: -40px;
    font-size: 50px;
    text-decoration: none;
    color: #FFFF;
}
.modal-body {
    display: flex;
    gap: 30px;
    overflow: hidden;
    flex: 1;
}
.modal-body img {
    width: 38%;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
    align-self: flex-start;
}
.modal-text {
    flex: 1;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #004F49;

    .modal-text-name {
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 5px;
    }
}
/* Make only the description scrollable */
#modal-description {
    overflow-y: auto;
    max-height: 100%;
    margin-top: 10px;
    padding-right: 10px; /* avoid text flush against scroll */
}

/* Optional: Style scrollbars */
#modal-description::-webkit-scrollbar {
    width: 6px;
}
#modal-description::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    .modal-body {
        flex-direction: column;
        gap: 20px;
    }
    .modal-body img {
        width: 100%;
        height: auto;
        max-width: 250px;
        margin: 0 auto;
    }
    .modal-text {
        max-width: 100%;
        overflow: visible;
    }
    /* Make only the description scrollable */
    #modal-description {
        max-height: 200px; /* or adjust based on design */
        overflow-y: auto;
    }
}



/* SUSTAINABILITY - OVERVIEW PAGE STYLING */
.sustainability-section {
    display: flex;
    flex-direction: column;

    .hero-content {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        color: white;

        h1 {
            font-weight: 700;
        }
    }
    .hero-banner {
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: start;
        color: white;
    }
    .description {
        color: white;
        padding: 40px;
        justify-items: center;

        p {
            max-width: 1000px;
        }
    }
}
@media (max-width: 768px) {
    .sustainability-section {
        .hero-content {
            position: relative;
            top: 0;
            left: 0;
        }
        .hero-banner {
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
    }
}

/* SUSTAINABILITY - STATEMENT PAGE STYLING */
.sustainability-statement-section {
    display: flex;
    flex-direction: column;

    .hero-content {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        color: white;

        h1 {
            font-weight: 700;
        }
    }
    .hero-banner {
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: start;
        color: white;
    }
    .description {
        color: #004F49;
        padding: 40px;
        justify-items: center;
        font-size: 30px;
        font-weight: 400;

        p {
            max-width: 60%;
        }
    }
}
@media (max-width: 768px) {
    .sustainability-statement-section {
        .hero-content {
            position: relative;
            top: 0;
            left: 0;
        }
        .hero-banner {
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        .description {
            color: #004F49;
            padding: 30px 20px;
            justify-items: center;
            font-size: 25px;
            font-weight: 400;

            p {
                max-width: 100%;
            }
        }
    }
}

/* SUSTAINABILITY COMMITMENT SECTION */
.sustainability-commitment {
    background-color: #F5F7F8;

    .commitment-section-content {
        ul {
            color: #004F49;
            max-width: 70%;
            font-size: 18px;
        }
        li {
            margin-bottom: 20px;

            p {
                max-width: 100%;
            }
        }
        p {
            color: #004F49;
            font-size: 18px;
            max-width: 70%;
        }
    }
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sustainability-commitment {
        .commitment-section-content {
            ul {
                max-width: 100%;
            }
            li {
                margin-bottom: 20px;

                p {
                    max-width: 100%;
                }
            }
            p {
                max-width: 100%;
            }
        }
    }
}

/* ENVIRONMENT TAB PANE STYLING */
.environment-pane {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    min-height: 550px;

    h3 {
        color: #004F49;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }
    p {
        color: #000000;
        font-size: 18px;
        max-width: 75%;
    }
}
@media (max-width: 768px) {
    .environment-pane {
        h3 {
            max-width: 100%;
        }
        p {
            max-width: 100%;
        }
    }
}

/* SOCIAL TAB PANE STYLING */
.social-tab-section-1 {
  color: #004F49;

  h2 {
    color: #004F49;
    font-size: 30px;
    font-weight: 700;
  }
  p {
    font-size: 18px;
    max-width: 100%;
  }
  h5 {
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
  }
  img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
  }
}
.social-tab-section-2 {
  color: #004F49;

  h2 {
    color: #004F49;
    font-size: 30px;
    font-weight: 700;
  }
  p {
    font-size: 18px;
    max-width: 100%;
  }
  .info-card {
    background-color: #F8F9FA;
    border-radius: 10px;
    min-height: 250px;
    align-content: center;
    text-align: center;
    padding: 30px 75px;

    h6 {
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 10px;
    }
  }
}
.social-tab-section-3 {
  color: #004F49;

  h2 {
    color: #004F49;
    font-size: 30px;
    font-weight: 700;
  }
  p {
    font-size: 18px;
    max-width: 100%;
  }
  .info-card {
    background-color: #F8F9FA;
    border-radius: 10px;
    min-height: 250px;
    align-content: center;
    text-align: center;
    padding: 0 50px;
  }
}

.governance-tab-section-1 {
  color: #505050;

  p {
    font-size: 18px;
    max-width: 100%;
  }
}
.governance-tab-section-2 {
  color: #004F49;

    .governance-tab-reports-item {
        padding: 40px;
        background-color: #F5F7F8;
        color: #004F49;
        margin-bottom: 25px;
    }
    .btn-outline-dark-green {
        border: 1px solid #004F49;
        color: #004F49;
        padding: 20px 55px;
        border-radius: 10px;
        transition: all 0.3s ease;
        background-color: #FFFFFF;
        font-weight: 600;
    }
    .btn-outline-dark-green:hover {
        background-color: #004F49;
        color: #FFFFFF;
    }
}



/* SUSTAINABILITY SECTION */
.sustainability-content-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 10%;
  background-color: #FFFFFF;
}
.sustainability-row {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.sustainability-image {
  flex: 1;
  max-width: 500px;
}
.sustainability-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.sustainability-text {
  flex: 1;
  background-color: #F5F7F8;
  padding: 50px;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sustainability-text h2 {
  font-size: 30px;
  color: #004F49;
  font-weight: 700;
  margin-bottom: 15px;
}
.sustainability-text ul {
  list-style: none;
  padding: 0;
}
.sustainability-text ul li {
  padding-left: 20px;
  margin-bottom: 20px;
  position: relative;
}
.sustainability-text ul li::before {
  content: "●";
  color: #004F49;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .sustainability-row {
    flex-direction: column;
  }
  .sustainability-text {
    max-width: 125%;
    width: 125%;
    padding: 30px 20px;
    left: -40px;
    position: relative;
  }
  .sustainability-row-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

.sustainability-banner {
  background-size: cover;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sustainability-banner-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sustainability-banner-overlay p {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 700;
  max-width: 55%;
}

@media (max-width: 768px) {
  .sustainability-banner {
    height: 300px;
  }
  .sustainability-banner-overlay p {
    font-size: 22px;
    max-width: 80%;
  }
}

/* IR HOMEPAGE CTA SECTION  */
.investor-relations-cta-section {
  padding: 60px 5%;
  background-color: #FFFFFF;
  justify-content: center;
  display: flex;

    .cta-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        width: 60%;
    }
    .cta-card {
        position: relative;
        height: 220px;
        width: 100%;
        color: #FFFFFF;
        text-decoration: none;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 30px;
    }
    .cta-title {
        position: relative;
        z-index: 1;
        font-size: 25px;
        font-weight: 700;
        margin: 0;
    }
    .cta-icon {
        position: relative;
        z-index: 1;
        font-size: 18px;
        padding: 6px;
        max-width: 5%;
        max-height: 15%;
    }
    /* Mobile styles */
    @media (max-width: 768px) {
        .cta-grid {
            grid-template-columns: 1fr;
            width: 100%;
        }
    }
}


/* IR BURSA ANNOUNCEMENT SECTION STYLING */
.bursa-announcement-section {
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;

  .container {
    max-width: 60%;
  }

    .section-title {
        font-size: 28px;
        font-weight: 600;
        color: #00473E;
        margin-bottom: 40px;
    }
    .announcement-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    .announcement-box {
        border-bottom: 2px solid #707070;
        padding-bottom: 16px;
        height: 120px;
    }
    .announcement-content {
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        border-left: 5px solid #004F49;
        padding-left: 12px;
        height: 100%;
    }
    .announcement-content h4 {
        font-size: 16px;
        font-weight: 600;
        color: #004F49;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    .announcement-date {
        font-size: 14px;
        color: #666;
        margin: 0;
    }
    .view-all-wrapper {
        margin-top: 48px;
        text-align: left;
    }
    .view-all-btn {
        display: inline-block;
        padding: 20px 70px;
        border: 1px solid #00473E;
        background-color: #00473E;
        color: #ffffff;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: small;
        text-decoration: none;
    }
    .view-all-btn:hover {
        background-color: #ffffff;
        color: #00473E;
    }
}
@media (max-width: 768px) {
  .bursa-announcement-section {
    padding-top: 10px;

    .container {
      max-width: 95%;
    }
    .announcement-grid {
      grid-template-columns: 1fr;
    }
    .view-all-btn {
      width: 60%;
      padding: 16px;
      text-align: center;
    }
  }
}


/* IR CONTACT SECTION STYLING */
.investor-relations-contact-section {
  width: 100%;
  background-color: #00534A;
  color: white;

    .contact-row {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }
    .contact-image {
        flex: 1;
        background-size: cover;
        background-position: center;
    }
    .contact-info {
        flex: 1;
        padding: 40px;
        background-color: #00534A;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .contact-info h3 {
        font-weight: 700;
        margin-bottom: 20px;
    }
    .contact-info p {
        font-size: 16px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 15px;
        line-height: 1.6;
    }
    .contact-info i {
        font-size: 18px;
        flex-shrink: 0;
        margin-top: 4px;
    }
}
@media (max-width: 768px) {
  .investor-relations-contact-section {
    .contact-row {
      flex-direction: column-reverse;
      height: auto;
    }
    .contact-image {
      min-height: 250px;
    }
    .contact-info {
      padding: 50px;
    }
  }
}


/* ANALYST REPORT & BRIEFING CONTENT SECTION */
.hero-analyst-briefing {
    position: relative;
    width: 100%;
    height: 65vh;
    background-size: cover;

    .hero-content {
        position: absolute;
        top: 50%;
        left: 15%;
        transform: translateY(-50%);
        color: white;
    }
    .hero-content h1 {
        font-size: 2.8rem;
        font-weight: 700;
        max-width: 100%
    }
    .hero-content h1 span {
        font-weight: 700;
    }
    .hero-content p {
        margin-bottom: 20px;
        max-width: 29%;
        color: #DFDFDF;
    }
    .hero-content .btn {
        padding: 15px 70px;
        font-size: 1.1rem;
        border-radius: 5px;
        border: 2px solid white;
        color: white;
        background: transparent;
        transition: 0.3s;
        margin-top: 15px;
    }
    .hero-content .btn:hover {
        background: white;
        color: black;
    }
    @media (max-width: 768px) {
        .hero-content {
            position: absolute;
            max-width: 80%;
            text-align: center;
            left: 10%;
        }
        .hero-content h1 {
            font-size: 2.0rem;
            max-width: 100%;
        }
        .hero-content p {
            max-width: 100%;
        }
    }
}


.ar-briefing-content {
    .ar-briefing-heading {
        color: #004F49;
        font-weight: 700;
    }
    .btn-outline-dark-green {
        border: 1px solid #004F49;
        color: #004F49;
        padding: 20px 55px;
        border-radius: 10px;
        transition: all 0.3s ease;
        background-color: #FFFFFF;
        font-weight: 600;
    }
    .btn-outline-dark-green:hover {
        background-color: #004F49;
        color: #FFFFFF;
    }
    .accordion {
        margin-bottom: 40px;

        .accordion-header {
            border-bottom: 1px solid #ACACAC;
            margin-bottom: 15px;
        }
        .accordion-button {
            font-size: 2rem;
            font-weight: 700;
            padding: 16px 2px;
        }
        .accordion-button:not(.collapsed) {
            background-color: transparent;
            color: #004F49;
        }
        .accordion-content {
            padding: 40px;
            background-color: #F5F7F8;
            color: #004F49;
            margin-bottom: 15px;
        }
    }
    @media (max-width: 768px) {
        padding: 20px 20px;

        .ar-briefing-heading {
            font-size: 2rem;
        }
    }
}

/* ANALYST REPORT PAGE STYLING (MATCH BURSA DESIGN) */
.analyst-report-content {
    a {
        text-decoration: none;
    }

    .ar-briefing-heading {
        color: #004F49;
        font-weight: 700;
    }

    .ar-briefing-subheading {
        color: #666;
        font-size: 1rem;
    }

    /* Card design matches Bursa */
    .announcement-card {
        background-color: #F5F7F8;
        border-radius: 12px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 180px;
        transition: all 0.3s ease;

        h5 {
            color: #004F49;
        }
    }

    /* Reusable icon circle (same as Bursa) */
    .icon-circle {
        width: 35px;
        height: 35px;
        border: 2px solid #004F49;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #004F49;
        font-size: 1.25rem;
        transition: background 0.3s, color 0.3s, border 0.3s;
    }

    /* Hover state identical to Bursa */
    .announcement-card:hover {
        background-color: #004F49;

        h5 {
            color: #FFFFFF;
        }

        .icon-circle {
            color: #FFFFFF;
            border: 2px solid #FFFFFF;
        }
    }

    @media (max-width: 768px) {
        .container {
            padding: 0px 30px;
        }

        .announcement-card {
            background-color: #F5F7F8;
            height: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }

        .announcement-card h5 {
            text-align: left;
            margin-bottom: 0;
            font-size: 1rem;
            max-width: 80%;
        }
    }
}

/* BURSA ANNOUNCEMENT PAGE STYLING */
.bursa-announcements-content {
    a {
        text-decoration: none;
    }
    .bursa-announcements-heading {
        color: #004F49;
        font-weight: 700;
    }
    .bursa-announcements-subheading {
        color: #666;
        font-size: 1rem;
    }
    .announcement-card {
        background-color: #F5F7F8;
        border-radius: 12px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 180px;

        h5 {
            color: #004F49;
        }
    }
    .icon-circle {
        width: 35px;
        height: 35px;
        border: 2px solid #004F49;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #004F49;
        font-size: 1.25rem;
        transition: background 0.3s, color 0.3s;
    }
    .announcement-card:hover {
        background-color: #004F49;

        h5 {
            color: #FFFFFF;
        }
        .icon-circle {
            color: #FFFFFF;
            border: 2px solid #FFFFFF;
        }
    }

    @media (max-width: 768px) {
        .container {
           padding: 0px 30px; 
        }
        .announcement-card {
            background-color: #F5F7F8;
            height: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        .announcement-card h5 {
            text-align: left;
            margin-bottom: 0;
            font-size: 1rem;
            max-width: 80%;
        }
    }
}


/* OUR BUSINESS - GLOVES HERO BANNER SECTION */
.gb-hero {
    position: relative;
    width: 100%;
    min-height: 65vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.gb-hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
}

.gb-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 300;
    max-width: 480px;
}

.gb-hero-content .spin-text {
  display: inline-block;
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.3s ease-out;
}

.spin-text.animate {
  opacity: 1;
  animation: spinAndStop 1.2s ease-out forwards;
}

@keyframes spinAndStop {
  0% {
    transform: rotate(-360deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(0deg);
    opacity: 1;
  }
}

.gb-hero-content h1 span {
    font-weight: 700;
}
@media (max-width: 768px) {
    .gb-hero {
        background-position-x: center;
    }
    .gb-hero-content {
        position: relative;
        max-width: 80%;
        text-align: center;
    }
    .gb-hero-content h1 {
        font-size: 3rem;
    }
}


/* OUR BUSINESS - GLOVES DESC BANNER SECTION */
.glove-desc-banner-section {
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
}
.glove-text p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 55%;
  color: #004F49;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .glove-desc-banner-section {
        padding: 40px 10px;

        .glove-text p {
            max-width: 100%;
        }
    }
}

/* OUR BUSINESS - GLOVES PRODUCTS SECTION */
.latex-gloves-section {
    padding: 60px 0;

    @media (min-width: 768px) {
        .custom-card-width {
            flex: 0 0 28%;
            margin: 0 10px;
        }
    }

    .section-title {
        margin-bottom: 16px;
        font-weight: 700;
        color: #004F49;
    }
    .product-item {
        padding-top: 25px;
        padding-left: 30px;
        padding-bottom: 25px;
        background-repeat: no-repeat;
        height: 400px;
        background-size: contain;
    }
    .product-item h6, .product-item-missing h6{
        color: #004F49;
        max-width: 90%
    }
    .product-item-missing {
        /*padding-top: 25px;*/
        padding-left: 30px;
        height: 300px;
        display: flex;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .latex-gloves-section {
        padding: 60px 20px;
    }
}


/* ANNUAL REPORTS PAGE CONTENT STYLING */
.annual-reports-content {
    padding: 0;
    background-color: #F5F7F8;
    color: #004F49;
    margin-bottom: 35px;

    .report-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    .annual-report-thumbnail {
        max-width: 150px;
        min-height: 250px;
        height: auto;
    }
    .btn-view-report {
        border: 1px solid #004F49;
        color: #004F49;
        padding: 20px 55px;
        border-radius: 10px;
        transition: all 0.3s ease;
        background-color: #FFFFFF;
        font-weight: 600;
    }
    .btn-view-report:hover {
        color: #FFFFFF;
        background-color: #004F49;
    }
}
@media (max-width: 768px) {
    .annual-reports-content {

        .report-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .btn-view-report {
            padding: 15px 20px;
        }
    }
}



/* OUR BUSINESS - QUALITY ASSURANCE PAGE STYLING */
/* PRODUCT TABS SECTION */
.product-tabs {
    .nav-tabs {
        justify-content: center;
        border: none;
        font-size: 35px;
        padding: 10px 50px;
    }
    .product-section .nav-item {
        margin-right: 20px;
        margin-left: 20px;
    }
    .nav-tabs .nav-link {
        color: #505050;
        border: none;
    }
    .nav-tabs .nav-link.active {
        border-bottom: solid 3px #004F49;
        color: #004F49;
        font-weight: bold;
    }
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .product-tabs .nav-tabs {
        flex-direction: row;
            font-size: 30px;
            padding: 0;
    }
    .product-tabs .nav-tabs .nav-item {
        margin-bottom: 0.5rem;
    }
    .product-tabs .nav-tabs .nav-link {
        padding: 0.5rem 1rem;
        border-bottom: 2px solid #dee2e6 !important; /* Add border for better separation */
    }
    .product-tabs .nav-tabs .nav-link.active {
        border-bottom: 2px solid #004F49 !important;
    }
    .product-content .col-md-6:first-child {
        margin-bottom: 2rem; /* Add space between image and text on mobile */
    }
    .product-content .company-commitment {
        font-size: 1.5rem;
    }
}

/* PRODUCT CONTENT SECTION */
.gloves-tab-section-1 {
    background-color: #F5F7F8;
    color: #004F49;

    .text-content {
        max-width: 100%;
        margin-left: 40px;

        h2 {
            font-weight: bold;
            margin-bottom: 15px;
            max-width: 80%;
        }
        h6 {
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 700;

        }
        ul {
            margin-bottom: 40px;
            max-width: 80%;
        }
        li {
            margin-bottom: 0.75rem;
            line-height: 1.6;
        }
        li::marker {
            font-size: 1.5rem;
        }
    }
}
@media (max-width: 768px) {
    .gloves-tab-section-1 {
        .text-content {
            max-width: 100%;
            margin: 0;
            padding: 40px 20px;

            .heading {
                font-weight: bold;
                margin-bottom: 15px;
                max-width: 90%;
            }
        }
    }
}

.gloves-tab-section-2 {
    color: #004F49;

    .section-divider {
        margin-top: -5px;
    }
    .heading {
        font-weight: bold;
        margin-bottom: 15px;
        max-width: 60%;
    }
    .subheading {
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 700;
    }
    .certification-border {
        border-right: 4px solid #004F49;
        padding-right: 1rem;

        img {
            width: 120px;
            height: 80px;
        }
    }
}
@media (max-width: 768px) {
    .gloves-tab-section-2 {
        .cert-header {
            flex-direction: row;
            gap: 20px;
        }
    }
}

.quality-management-banner {
  background-size: cover;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;

    .quality-title {
        font-weight: 700;
        font-size: 2rem;
        max-width: 30%;
    }
}
@media (max-width: 768px) {
    .quality-management-banner {
        .quality-title {
            max-width: 100%;
        }
    }
}

.cert-card {
    border: 1px solid #000000;
    border-radius: 5px;
    background: #FFFFFF;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cert-text {
    color: #004F49;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
}

.gloves-tab-section-3 {
    color: #004F49;

    .section-divider {
        margin-top: -5px;
    }
    .heading {
        font-weight: bold;
        margin-bottom: 0;
        max-width: 60%;
    }
    .subheading {
        font-size: 18px;
        font-weight: 700;
    }
    .cert-item {
        border-left: solid 4px #004F49;
        min-height: 80px;
        align-items: center;
        padding-left: 15px;
        margin-bottom: 25px;

        .description {
            font-size: 18px;
            margin-bottom: 0px;
            max-width: 75%;
        }
    }
    .test-list p {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 12px;
    }
}
@media (max-width: 768px) {
    .gloves-tab-section-3 {
        .cert-header {
            flex-direction: row;
            gap: 20px;
        }
    }
}

/* QUALITY ASSURANCE SECTION */
.quality-assurance {
    padding-top: 30px;
    padding-bottom: 30px;
}

.quality-assurance .quality-assurance-heading {
    color: #004F49;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding: 20px 0px;
}

/* Flex Grid Fix: Ensures cards align and stretch evenly */
.quality-assurance .row > .col {
    display: flex;
}

/* CARD STYLING */
.quality-assurance .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: solid 1px #000000;
    border-radius: 5px;
    padding: 30px 20px;
    min-height: 250px; /* ensure equal height */
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
}

.quality-assurance .card-title {
    color: #004F49;
    font-size: 1.1rem;
    line-height: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.quality-assurance .card-text {
    color: #004F49;
    font-size: 1rem;
    line-height: 1.5;
}

/* Hover Enhancement (optional, desktop only) */
@media (min-width: 769px) {
    .quality-assurance .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .quality-assurance .quality-assurance-heading {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .quality-assurance .card {
        min-height: 200px;
        padding: 20px;
    }

    /* Two cards per row for tablets */
    .quality-assurance .row-cols-md-3 > * {
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    /* Stack cards on small phones */
    .quality-assurance .row-cols-md-3 > * {
        flex-basis: 100%;
        max-width: 100%;
    }
}

/* Force all text center inside cards */
.quality-assurance .card * {
    text-align: center !important;
}


/* KNOW MORE SECTION */
.know-more {
    padding: 50px 40px;
    background-color: #F5F7F8;
}
.know-more-heading {
    color: #004F49;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
}
.know-more-subheading {
    color: #004F49;
    font-size: 1rem;
}
.know-more-button {
    display: inline-block;
    padding: 20px 80px;
    font-size: 1rem;
    font-weight: 600;
    color: #004F49;
    border: 1px solid #004F49;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.know-more-button:hover {
    background-color: #004F49;
    color: #fff;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .know-more {
        padding: 1.5rem 1rem;
        text-align: center; /* Center content on smaller screens */

        .row {
            flex-direction: column; /* Stack elements vertically */
            align-items: center;
        }
        .col-md-auto:first-child {
            margin-bottom: 1rem; /* Add space between text and button */
        }
        .know-more-heading {
            font-size: 1.5rem;
            margin-bottom: 0.25rem;
        }
        .know-more-button {
            width: 100%; /* Make button full width on smaller screens */
        }
    }
    
}


/* SEARCH RESULTS */
.page-link {
    position: relative;
    display: block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    color: #004F49;
    text-decoration: none;
    background-color: #FFFFFF;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.page-link:hover {
    z-index: 2;
    color: #004F49;
    background-color: #F5F7F8;
    border-color: #dee2e6;
}
.active>.page-link, .page-link.active {
    z-index: 3;
    color: #FFFFFF;
    background-color: #004F49;
    border-color: #004F49;
}
.mobileSearchInput {
    border: 1px solid #9F9F9F;
    border-right: 0;
    font-size: 14px;
    padding: 10px;
    height: 2.8rem;
    border-radius: 0;
}
.mobileSearchButton {
    border-left: 0;
    color: #FFFFFF;
    background-color: #004F49;
    height: 2.8rem;
    border-radius: 0;
}


/* OUR OFFICES PAGE STYLING */
.our-offices-banner {
    min-height: 700px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}
.our-offices-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 300px;
}

/* CONTACT OFFICES SECTION */
.contact-offices {
    background-color: transparent;
    margin-top: -400px;
}
.contact-offices .overseas-heading {
    color: #2C544A;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.corporate-heading {
    color: #004F49;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 35px;
}
.corporate-subheading {
    font-weight: 700;
    color: #004F49;
    font-size: 20px;
}
.contact-details {
    color: #2C544A;
    max-width: 65%;

    p {
        display: flex;
        align-items: baseline;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }
    .label {
        font-weight: bold;
        width: 100px;
        flex-shrink: 0;
    }
    .colon {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        font-size: 18px;
        font-weight: 600;
    }
    a {
        color: #2C544A;
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-offices .corporate-headquarters .row {
        flex-direction: column;
    }
    .contact-offices .corporate-headquarters .col-md-6:first-child {
        margin-bottom: 2rem;
    }
    .contact-offices .overseas-offices .row-cols-md-2 > * {
        flex-basis: 100%;
        max-width: 100%;
    }
    .corporate-heading {
        font-size: 28px;
    }
    .contact-details {
        max-width: 100%;
    }
}
/* OVERSEAS OFFICES SECTION */
.overseas-heading {
    color: #004F49;
    font-weight: bold;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}
.office-image {
    width: 100%;
    display: block;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
}
.office-title {
    color: #2C544A;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.office-details {
    margin-top: 20px;

    p {
        display: flex;
        align-items: baseline;
        margin-bottom: 0.5rem;
        color: #2C544A;
        font-size: 1rem;
    }
    .label {
        font-weight: bold;
        width: 100px;
        flex-shrink: 0;
    }
    .colon {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    a {
        color: #007bff;
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .overseas-heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .office-card {
        padding: 1rem;
    }
    .office-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    .office-details .label {
        width: 60px;
    }
    .office-details p {
        font-size: 0.9rem;
    }
}

.event-section {
    .container {
        padding-top: 100px;
        padding-bottom: 110px;
    }
    
    .event-list-month-header {
        font-size: 1.9rem;
        font-weight: 700;
    }
    
    .event-list-month {
        margin-bottom: 4svh;
        margin-top: 5rem;
    }
    
    .event-item {
        margin-bottom: 5svh;
    }

    .event-list-title {
        font-size: 1.8rem;
        font-weight: 600;
        color: #004F49;
    }
    .events-list-wrapper {
        padding-top: 5px;
    }
    
    .event-date-details {
        font-size: 1.2rem;
    }
    

    .events-line {
        width: 100%;
        border: 1px solid #ACACAC;
        margin-top: 20px;
        margin-bottom: 1svh;
    }
}


.fade-in-element {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fade-in-element.is-visible {
  opacity: 1;
}

.slide-in-text {
  opacity: 0; /* Initially hidden */
  transform: translateX(-100%); /* Start off-screen to the left */
  transition: opacity 1.2s ease-out, transform 1.2s ease-out; /* Smooth transition */
  overflow: hidden;
}

.slide-in-text.in-view {
  opacity: 1; /* Fully visible */
  transform: translateX(0); /* Slide into view */
}

.rolling-element {
    display: inline-block;
}

.roll-is-visible {
    animation-name: roll;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

@keyframes roll {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.scam-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.scam-modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideIn 0.4s ease-out;
    overflow: hidden;
}

.scam-modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 1;
}

.scam-modal-close-btn:hover {
    background: #f0f0f0;
    color: #333;
    transform: rotate(90deg);
}

.scam-modal-header {
    background: linear-gradient(135deg, #004F20 0%, #004F49 100%);
    color: white;
    padding: 32px 24px 24px 24px;
}

.scam-modal-header h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.scam-modal-body {
    padding: 24px;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

.scam-modal-body p {
    margin: 0 0 16px 0;
    font-size: 1rem;
}

.scam-modal-body p:last-child {
    margin-bottom: 0;
}

.scam-modal-footer {
    padding: 0 24px 24px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.scam-modal-primary-btn {
    background: linear-gradient(135deg, #004F20 0%, #004F49 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.scam-modal-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.scam-modal-primary-btn:active {
    transform: translateY(0);
}

/* Animation classes */
.scam-modal-overlay.closing {
    animation: fadeOut 0.3s ease-out forwards;
}

.scam-modal-overlay.closing .scam-modal-content {
    animation: slideOut 0.3s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    to {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .scam-modal-content {
        max-width: 100%;
        margin: 20px;
    }

    .scam-modal-header h2 {
        font-size: 1.5rem;
    }

    .scam-modal-body {
        font-size: 0.95rem;
    }

    .scam-modal-footer {
        flex-direction: column;
    }

    .scam-modal-primary-btn {
        width: 100%;
    }
}

/* Prevent body scroll when modal is open */
body.scam-modal-open {
    overflow: hidden;
}