/**
* Template Name: UpConstruction
* Template URL: https://bootstrapmade.com/upconstruction-bootstrap-construction-website-template/
* Updated: May 10 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/

/* Fonts */
:root {
    --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Roboto", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root {
    /* Background Color - This color is applied to the background of the entire website as well as individual sections. */
    --background-color: #FFFFF7;

    /* Default Color - This is the default color used for the majority of the text content. */
    --default-color: #000000;

    /* Sub Heading Color - This color is used for titles, headings and secondary elements. (eg: about us/company overview) */
    --subHeading-color: #BEBEBE;

    /* Green Button - This color is applied to the background of the green buttons like "Contact Us" button. */
    --green-button: #5EDC1F;

    /* Green Icon - This color is applied to the background of the green icons for Homepage. */
    --green-icon: #9EE67A;

    /* Yellow Icon - This color is applied to the background of the yellow icons. */
    --yellow-icon: rgba(255,251,195,0.69);

    /* Selection Color - This color is applied to the background of the card of year selection. */
    --year-selection: #FAEDCD;
}

/* Nav Menu Colors */
:root {
    /* Nav Color - This is the default color of the main navmenu links. */
    --nav-color: #000000;

    /* Nav Hover Color - This color is applied to main navmenu links when they are hovered over. */
    --nav-hover-color: #004D11;

    /* Nav Dropdown Background Color - This color is used as the background for dropdown boxes that appear when hovering over primary navigation items. */
    --nav-dropdown-background-color: #FCFBF8;

    /* Nav Dropdown Color - This color is used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-color: #000000;

    /* Nav Dropdown Hover Color - Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
    --nav-dropdown-hover-color: #004D11;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'CustomFont';
    src: url('assets/fonts/RedHatDisplay-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'RedHatDisplayItalic';
    src: url('assets/fonts/RedHatDisplay-Italic-VariableFont_wght.ttf') format('truetype');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--default-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--nav-hover-color));
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--default-color);
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    z-index: 997;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient( 90deg, rgba(253,255,222, 1) 0%, rgba(210, 239, 210, 1) 50%, rgba(210, 239, 210, 1) 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    /* Transparent State (index.php Top only) */
    .index-page:not(.scrolled) .header {
        background: transparent !important;
        box-shadow: none !important;
    }

    /* Scrolled Header */
    .scrolled .header,
    body:not(.index-page) .header {
        background: linear-gradient( 90deg, rgba(253,255,222, 1) 0%, rgba(210, 239, 210, 1) 50%, rgba(210, 239, 210, 1) 100%);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5) !important;
    }

/* Logo & Container Elements */
.logo-background {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 12px 10px 10px 10px;
}

.index-page:not(.scrolled) .logo-background {
    background: transparent !important;
}

.header img {
    width: 100%;
    max-width: 380px;
    height: auto;
}

s.header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    color: var(--green-icon);
    font-family: 'CustomFont', sans-serif;
}

.header .logo .quality {
    font-family: 'RedHatDisplayItalic', sans-serif;
    font-size: 20px;
    color: var(--green-icon);
    font-style: italic;
}

/* Container Reset */
.container-xl {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .header {
        background: linear-gradient( 90deg, rgba(253,255,222, 1) 0%, rgba(210, 239, 210, 1) 70%, rgba(210, 239, 210, 1) 100% );
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
        margin-right: 10px;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu > ul > li {
            white-space: nowrap;
            padding: 15px 14px;
        }

            .navmenu > ul > li:last-child {
                padding-right: 0;
            }

        .navmenu a,
        .navmenu a:focus {
            color: var(--default-color) !important;
            font-size: 14px;
            padding: 0 2px;
            font-family: var(--nav-font);
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
            text-transform: uppercase;
        }

            /* Space between text and chevron arrow */
            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 10px !important;
                transition: 0.3s;
            }

            .navmenu li:hover > a:not(.btn-contact-us),
            .navmenu a:hover:not(.btn-contact-us),
            .navmenu a.active:not(.btn-contact-us) {
                color: var(--nav-hover-color) !important;
            }

        /* --- UNDERLINE LOGIC --- */
        .navmenu > ul > li > a:not(.btn-contact-us):before {
            content: "";
            position: absolute;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: var(--green-button);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out;
        }

        /* Green underline remains visible for the Active page and on Hover */
        .navmenu li:hover > a:not(.btn-contact-us):before,
        .navmenu a.active:not(.btn-contact-us):before {
            visibility: visible;
            width: 100%;
            background-color: var(--nav-hover-color) !important;
        }

        /* Dropdown Menu */
        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 10px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

                .navmenu .dropdown ul li.dropdown-header {
                    font: var(--nav-font);
                    padding: 10px 20px;
                    font-size: 15px;
                    text-transform: none;
                    font-weight: 600;
                    color: var(--nav-dropdown-color);
                    cursor: default;
                    pointer-events: none;
                }


                    .navmenu .dropdown ul li.dropdown-header:hover {
                        color: var(--nav-dropdown-color) !important;
                    }

            .navmenu .dropdown ul a,
            .navmenu .dropdown ul a.active {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color) !important;
            }

                .navmenu .dropdown ul li:hover > a,
                .navmenu .dropdown ul a:hover {
                    color: var(--nav-hover-color) !important;
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

    /* --- SOLUTIONS SUB-ITEMS (ICT/FCT) --- */
    .dropdown ul li.dropdown-subitem {
        padding-left: 0 !important;
    }

        .dropdown ul li.dropdown-subitem a {
            padding-left: 30px !important;
            font-size: 15px;
            justify-content: flex-start;
            margin-right: 0;
        }

        .dropdown ul li.dropdown-subitem i {
            font-size: 14px;
            margin-right: 20px;
            color: inherit;
        }

    /* Contact Us Button */
    .btn-contact-us {
        background-color: var(--green-button);
        color: #000;
        padding: 10px 20px !important;
        margin: 0 20px 0 15px;
        border-radius: 15px;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        white-space: nowrap;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        border: none;
    }

        .btn-contact-us:hover {
            background-color: #55C428;
            color: #000 !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
}

/* Mobile Navigation */
@media (max-width: 1119px) {
    .navmenu {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background: linear-gradient(180deg, #FDFFDE 0%, #D2EFD2 100%);
        transition: 1s ease-in-out;
        z-index: 9999;
        padding: 60px 5px 20px 5px;
        display: block !important;
        overflow-y: auto;
        box-shadow: none;
    }

        .navmenu ul {
            display: block;
            padding: 0;
            margin: 0;
            list-style: none;
        }

            .navmenu ul li {
                display: block;
                list-style: none;
                padding: 10px 0;
            }

                .navmenu ul li a {
                    padding: 0 20px;
                    font-size: 14px;
                    color: var(--default-color);
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }

        .navmenu a,
        .navmenu a:focus {
            color: var(--default-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 13px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-hover-color);
        }

            .navmenu .active i,
            .navmenu .active:focus i {
                background-color: var(--accent-color);
                color: var(--contrast-color);
            }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 0;
            margin: 0 20px;
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul li:not(.dropdown-header):not(.dropdown-subitem) a {
                white-space: normal;
                line-height: 1.4;
                align-items: flex-start;
                margin: 0;
                padding: 0 0 0 20px;
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
        }

        .navmenu .dropdown ul li.dropdown-header {
            font: var(--nav-font);
            padding: 10px 0 5px 20px;
            font-size: 14px;
            text-transform: none;
            font-weight: 600;
            cursor: default;
            pointer-events: none;
        }

        .navmenu .dropdown > a i {
            background-color: rgba(0, 0, 0, 0.05);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        /* Rotation state when dropdown is open */
        .navmenu .dropdown > a.active-dropdown i {
            transform: rotate(180deg);
            background-color: #C1DD94;
            color: #000;
        }

        /* Ensure the submenu shows when active */
        .navmenu .dropdown ul.dropdown-active {
            display: block !important;
        }

    /* --- SOLUTIONS SUB-ITEMS (ICT/FCT) --- */
    .dropdown ul li.dropdown-subitem {
        padding: 5px 0 5px 0;
    }

        .dropdown ul li.dropdown-subitem a {
            padding: 0 5px 0 20px;
            margin: 0;
            font-size: 14px;
            justify-content: flex-start;
            font-weight: 500;
        }

    .mobile-nav-toggle.bi-x::before {
        content: "\f479" !important;
    }

    .mobile-nav-active .mobile-nav-toggle {
        display: none !important;
    }

    .bi-list.mobile-nav-toggle {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-nav-active .bi-list.mobile-nav-toggle {
        display: none !important;
    }

    .mobile-nav-active .navmenu {
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.4);
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    background: linear-gradient(180deg, #D7FDDD 40%, #498F49 100%) !important;
    --default-color: var(--default-color);
    color: var(--default-color);
    font-size: 14px;
    position: relative;
    background-size: cover;
    padding-top: 10px !important;
    padding-bottom: 5px !important;
}

    .footer .container {
        max-width: 95% !important;
    }

    .footer:before {
        display: none;
    }

    .footer .footer-top {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .footer ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

.footer-about p {
    line-height: 1.7;
    padding-left: 120px;
    font-size: 14px;
}

    /* Name & Address */
    .footer-about p strong {
        font-size: 20px;
        display: block;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .footer-about p i,
    .footer-about p small {
        font-size: 14px;
        display: block;
        margin-top: -27px;
        color: #333;
        font-style: italic;
    }

/* Our Solution */
.footer h4 {
    color: var(--default-color);
    font-size: 18px;
    font-weight: bold;
    padding-top: 23px;
    padding-bottom: 5px;
    padding-left: 0;
    text-align: left;
}

.footer .footer-links {
    margin-bottom: 0;
    padding-right: 10px;
}

    .footer .footer-links ul li {
        padding: 6px 0;
        margin-bottom: 0;
        margin-left: 0;
        line-height: 1.5;
        align-items: center;
    }

    .footer .footer-links ul p,
    .footer .footer-links ul a {
        color: var(--default-color);
        display: inline-block;
        transition: 0.3s;
        padding-left: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

        .footer .footer-links ul a:hover {
            color: var(--nav-hover-color);
            font-weight: bold;
        }

.footer-subitem {
    padding-left: 20px !important;
}

.footer .footer-contact {
    padding-top: 35px;
    padding-left: 80px;
}

    .footer-contact p {
        display: grid;
        grid-template-columns: 60px auto; /* Gap between ":" */
        margin-bottom: 8px;
    }

    .footer-contact .contact-label {
        font-weight: bold;
    }

/* Social Links */
.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background-color: #3B5998;
    color: #FFFFFF;
    margin-top: -5px;
    font-size: 16px;
    border: none;
    transition: 0.3s;
}

    .footer .social-links a.linkedin {
        background-color: #0077B5;
        margin-left: 10px;
    }

    .footer .social-links a:hover {
        opacity: 0.8;
        transform: translateY(-2px);
    }

/* Centered Copyright */
.footer .copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    font-size: 13px;
}

    .footer .copyright p {
        font-size: 15px;
        margin-top: 5px;
    }

/* --- MOBILE VERSION --- */
@media (max-width: 768px) {
    .footer-about p {
        padding-left: 0;
    }

        .footer-about p strong {
            font-size: 1.2rem;
        }

        .footer-about p i {
            font-size: 0.85rem;
        }

    .footer h4 {
        padding-left: 0;
        padding-top: 0;
        margin-left: 0;
        padding-top: 25px;
    }

    .footer .footer-links {
        margin-top: 0;
    }

        .footer .footer-links ul li {
            margin-left: 0 !important;
            margin-top: 0;
        }

    .footer .footer-contact {
        padding-top: 0;
        padding-left: 15px;
        margin-left: 0;
        margin-top: 15px;
    }

    .footer .copyright p {
        text-align: center;
    }

    .footer .social-links {
        display: flex;
        margin-left: 0 !important;
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #E9F9E9;
        border-color: #498F49 transparent #498F49 transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--background-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--default-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: var(--background-color);
        /* color: var(--accent-color); */
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --default-color: var(--default-color);
    background-color: var(--background-color);
    padding: 120px 0 40px 0;
    text-align: center;
    position: relative;
}

    .page-title h1 {
        font-family: var(--heading-font);
        font-size: 56px;
        font-weight: 700;
        margin-bottom: 8px;
        margin-top: 30px;
        color: var(--default-color);
    }

    .page-title .breadcrumbs {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-family: var(--default-font);
        font-size: 18px;
    }

        .page-title .breadcrumbs span,
        .page-title .breadcrumbs a,
        .page-title .breadcrumbs .separator,
        .page-title .breadcrumbs .current {
            color: var(--subHeading-color) !important;
            text-decoration: none;
            transition: 0.3s;
        }

            .page-title .breadcrumbs a:hover {
                color: var(--nav-hover-color) !important;
                text-decoration: underline;
            }

/* Mobile responsive */
@media (max-width: 768px) {
    .page-title {
        padding: 100px 0 30px 0;
    }

        .page-title h1 {
            font-size: 2rem;
            margin: 30px 20px 10px 20px;
        }

        .page-title .breadcrumbs {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin: 0;
            padding: 0;
            font-size: 1rem;
        }

            .page-title .breadcrumbs span {
                font-size: 1rem;
                padding: 0;
                margin: 0;
            }

                .page-title .breadcrumbs .current {
                    margin: 0;
                }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 50px 0;
    scroll-margin-top: 92px;
    overflow: clip;
}

@media (max-width: 768px) {
    section,
    .section {
        scroll-margin-top: 76px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        position: relative;
    }

/*        .section-title h2:before,
        .section-title h2:after {
            content: "";
            width: 50px;
            height: 3px;
            background: var(--background-color);
            display: inline-block;
        }
*/
        .section-title h2:before {
            padding: 0;
        }

        .section-title h2:after {
            padding: 0;
        }

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    --default-color: var(--default-color);
    --heading-color: var(--default-color);
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
    /* Overlay effect */
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.2); /* Adjust opacity and color here */
        z-index: 2; /* Places overlay above background but below content */
    }

    .hero .info {
        position: relative;
        inset: 0;
        z-index: 3;
        padding: 140px 0 60px 0;
    }

@media (max-width: 768px), (max-height: 480px) {
    .hero .info {
        padding: 100px 50px 60px 50px;
    }
}

.hero .info h2 {
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 56px;
    font-weight: 700;
    position: relative;
}

@media (max-width: 768px) {
    .hero .info h2 {
        font-size: 30px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    #get-started h3 {
        margin: 0 20px 0;
        padding: 0;
        font-size: 1.7rem;
    }
}

.hero .info p {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
}

.hero .info .btn-get-started {
    font-family: var(--heading-font);
    background-color: var(--green-button);
    color: var(--default-color);
    padding: 10px 20px !important;
    margin-top: 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

.hero .info .btn-book-slot {
    font-family: var(--heading-font);
    background-color: var(--green-button);
    color: var(--default-color);
    padding: 10px 20px !important;
    margin-left: 50px;
    margin-top: 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

    .hero .info .btn-book-slot:hover,
    .hero .info .btn-get-started:hover {
        background-color: #55C428;
        color: #000 !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

@media (max-width: 768px) {
    .hero .info .btn-book-slot {
        padding-left: 0;
        margin-left: 0;
    }
}

.hero .carousel {
    inset: 0;
    position: absolute;
    overflow: hidden;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition-duration: 0.4s;
}


    .hero .carousel-item img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero .carousel-item::before {
        content: "";
        background-color: color-mix(in srgb, var(--background-color), transparent 30%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

    .hero .carousel-control-prev:focus,
    .hero .carousel-control-next:focus {
        opacity: 0.5;
    }

    .hero .carousel-control-prev:hover,
    .hero .carousel-control-next:hover {
        opacity: 0.9;
    }

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started {
    background-color: var(--background-color);
    padding: 60px 10px;
    padding-bottom: 10px !important;
}

    .get-started .content h3 {
        color: var(--default-color);
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .get-started .content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
        color: var(--default-color);
    }

/* Icon Container Styling */
.about-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

    .about-img .img-cont {
        background-color: var(--yellow-icon);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
        width: 80px;
        height: 80px;
        transition: 0.3s;
        border: 1px solid #e1eedb; 
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .about-img img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .about-img p {
        font-size: 15px;
        color: var(--default-color);
        line-height: 1.2;
        align-items: center; 
        text-align: center;
        margin-top: 5px;
    }

@media screen and (max-width: 768px) {
    .about-img {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-left: 30px;
        margin-right: 30px;
    }

        .about-img p {
            align-items: center; 
            text-align: center;
        }

    .get-started .content p {
        padding: 0 20px 0;
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Our Solution Section
--------------------------------------------------------------*/
.solutions-section {
    padding-top: 0;
    background-color: var(--background-color);
}

.solutions-container {
    max-width: 1500px;
    margin: 0 auto;
}

.solutions-title {
    text-align: center;
    margin-bottom: 50px;
}

    .solutions-title h2 {
        font-family: var(--heading-font);
        color: var(--default-color);
        font-size: 2rem;
        font-weight: 700;
        margin-top: 60px;
        margin-bottom: -30px;
    }

.solutions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 130px;
    justify-content: center;
}

.solution-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease !important;
    will-change: transform;
}

    .solution-card:hover {
        transform: translateY(-10px) !important;
        box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15); 
        z-index: 10;
    }

.solution-icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--green-icon);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

    .solution-icon-box i {
        font-size: 40px;
        color: #000000; 
    }

.solution-header {
    font-family: var(--heading-font);
    color: var(--default-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.solution-desc {
    font-family: var(--default-font);
    color: var(--default-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.solution-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.solution-links .link-header {
    display: block;
    font-weight: 600;
    color: var(--default-color);
    text-decoration: none;
    font-size: 0.95rem;
}

.read-more {
    display: inline-block;
    color: var(--green-button);
    font-weight: 700;
    text-decoration: underline;
    font-size: 0.85rem;
    transition: color 0.2s ease;
    cursor: pointer;
    margin-bottom: 10px;
}

    .read-more:hover {
        color: var(--nav-hover-color);
        text-decoration: underline; 
        opacity: 1; 
    }

/* --- Carousel & Grid Fixes --- */
#solutionsCarousel {
    position: relative;
}

.carousel-item .solutions-grid {
    display: flex;
    justify-content: center;
    gap: 70px;
    padding: 20px 0;
}

/* --- Navigation Button Styling --- */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #E7E9EB;
    border-radius: 50%;
    background-size: 50%;
    filter: invert(0);
}

.carousel-control-prev {
    left: -5px;
}

.carousel-control-next {
    right: -5px;
}

@media (max-width: 768px) {
    .solutions-title h2 {
        font-size: 1.7rem;
    }
    
    #solutionsCarousel .carousel-inner {
        display: block !important;
        overflow: visible !important; 
    }

    #solutionsCarousel .carousel-item {
        display: block !important;
        margin-right: 0 !important;
        width: 100% !important;
        float: none !important;
        position: relative !important;
    }

    .carousel-item .solutions-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; 
        justify-content: center !important;
        padding: 20px !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        gap: 40px !important; 
    }

    .solution-card {
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 360px !important;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        box-sizing: border-box;
    }

    /* Disable for mobile */
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators {
        display: none !important;
    }
} 

/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
/*.constructions {
    background-color: #052b01;
}

    .constructions .card-item {
        display: flex;
        flex-direction: row;
        height: 100%;
        border-radius: 10px;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.7);
        overflow: hidden;
        margin-right: 20px;
        background-color: #fafafa9d;
    }

.col-lg-6 {
    padding-bottom: 20px;*/ /* Adjust as needed */
/*}

.constructions .card-item .card-bg {
    flex: 1;*/ /* Take up equal space in the row */
    /*height: 100%;*/ /* Make sure it fills the card's height */
    /*position: relative;
}

    .constructions .card-item .card-bg img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 1;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

.constructions .card-item .card-body {
    flex: 1;*/ /* Take up equal space in the row */
    /*padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.constructions .card-item h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.constructions .card-item p {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    margin: 0;
}*/

/* -------------------------------------------------------------
# Partners
---------------------------------------------------------------- */
/*.partners {
    padding: 60px 0;
}

    .partners .section-title h2 {
        color: #454545;
        font-size: 36px;
        font-weight: 600;
        position: relative;
    }

        .partners .section-title h2:before,
        .partners .section-title h2:after {
            content: "";
            width: 50px;
            height: 3px;
            color: #217b0f;
            display: inline-block;
        }

.partner-slider {
    overflow: hidden;
    width: 100%;
}

.partner-track {
    display: flex;
    gap: 30px;*/ /* Space between images */
    /*animation: scroll 130s linear infinite;
}

    .partner-track img {
        max-height: 50px;*/ /* Set a max height for the images */
        /*object-fit: contain;*/ /* Keeps the aspect ratio of the images */
    /*}

@keyframes scroll {
    0% {
        transform: translateX(5%);
    }

    100% {
        transform: translateX(-280%);
    }
}*/

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
/*.projects .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

    .projects .portfolio-filters li {
        cursor: pointer;
        display: inline-block;
        padding: 0;
        font-size: 18px;
        font-weight: 500;
        margin: 0 10px;
        line-height: 1;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
    }

        .projects .portfolio-filters li:hover,
        .projects .portfolio-filters li.filter-active {
            color: var(--accent-color);
        }

        .projects .portfolio-filters li:first-child {
            margin-left: 0;
        }

        .projects .portfolio-filters li:last-child {
            margin-right: 0;
        }

@media (max-width: 575px) {
    .projects .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.projects .portfolio-content {
    position: relative;
    overflow: hidden;
}

    .projects .portfolio-content img {
        transition: 0.3s;
    }

    .projects .portfolio-content .portfolio-info {
        opacity: 0;
        position: absolute;
        inset: 0;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        background: rgba(0, 0, 0, 0.6);
        padding: 15px;
    }

        .projects .portfolio-content .portfolio-info h4 {
            font-size: 14px;
            padding: 5px 10px;
            font-weight: 400;
            color: #ffffff;
            display: inline-block;
            background-color: var(--accent-color);
        }

        .projects .portfolio-content .portfolio-info p {
            position: absolute;
            bottom: 10px;
            text-align: center;
            display: inline-block;
            left: 0;
            right: 0;
            font-size: 16px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
        }

        .projects .portfolio-content .portfolio-info .preview-link,
        .projects .portfolio-content .portfolio-info .details-link {
            position: absolute;
            left: calc(50% - 40px);
            font-size: 26px;
            top: calc(50% - 14px);
            color: #fff;
            transition: 0.3s;
            line-height: 1.2;
        }

            .projects .portfolio-content .portfolio-info .preview-link:hover,
            .projects .portfolio-content .portfolio-info .details-link:hover {
                color: var(--accent-color);
            }

        .projects .portfolio-content .portfolio-info .details-link {
            left: 50%;
            font-size: 34px;
            line-height: 0;
        }

    .projects .portfolio-content:hover .portfolio-info {
        opacity: 1;
    }

    .projects .portfolio-content:hover img {
        transform: scale(1.1);
    }*/

/*--------------------------------------------------------------
# About Section (Checkmark)
--------------------------------------------------------------*/
.custom-green-list {
    list-style: none; 
    padding-left: 0;
    margin-left: 10px;
}

    .custom-green-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 10px;
    }

        .custom-green-list li i.bi-check-circle-fill {
            color: var(--green-button) !important; 
            margin-right: 20px; 
            font-size: 1.2rem; 
            flex-shrink: 0; 
            margin-top: 3px; 
        }

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #464646;
    padding-bottom: 20px;
}

.about-content {
    display: flex;
    align-items: stretch;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3); /* Single shadow for both sections */
    border-radius: 20px;
    overflow: hidden; /* Ensures content stays within rounded corners */
}

.about .col-lg-6 {
    padding: 0;
}

    .about .col-lg-6 img {
        width: 100%; /* Full width for responsive sizing */
        height: 100%; /* Full height to match the about container */
        object-fit: cover; /* Ensures the image covers the container without distortion */
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

@media (max-width: 768px) {
    .about .inner-title {
        max-width: 100%;
        padding-bottom: 10px;
        font-size: 1.75rem;
        padding-left: 20px;
    }
}

.about-content {
    margin: 0 20px 0;
}

.about .our-story {
    padding: 40px;
    background-color: #eeeeeea5;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

    .about .our-story h4 {
        text-transform: uppercase;
        font-size: 1.1rem;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
    }

    .about .our-story h3 {
        font-size: 2.25rem;
        font-weight: 700;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

.about p {
    font-size: 15px;
}

.about .our-story p:last-child {
    margin-bottom: 0;
}

.about ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

    .about ul li {
        padding: 5px 0;
        display: flex;
        align-items: center;
    }

    .about ul i {
        font-size: 1.25rem;
        margin-right: 0.5rem;
        line-height: 1.2;
        color: var(--accent-color);
    }

.about .about-img {
    min-height: 400px;
    position: relative;
}

@media (min-width: 992px) {
    .about .about-img {
        position: absolute;
        top: 0;
        right: 0;
        min-height: 600px;
    }
}

.about .about-img img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Mobile view */
@media (max-width: 768px) {
    .about h2 {
        margin-bottom: 20px;
    }

    .about-content {
        flex-direction: column; /* Stack text and image vertically */
    }

    .about .col-lg-6 {
        order: 1; /* Text content comes first */
    }

        .about .col-lg-6 img {
            order: 2; /* Image appears after text content */
            width: 100%;
            height: auto; /* Allows the image to adjust height automatically */
            object-fit: cover;
        }

    .about ul li {
        padding: 3px 0;
    }
}

/*--------------------------------------------------------------
# Alt Services Section (Quality Policy and Objectives)
--------------------------------------------------------------*/
.alt-services {
    background-color: #FCFFF1;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    position: relative; 
    z-index: 10; 
}
    /* Center align items in the row */
    .alt-services .row {
        display: flex;
        justify-content: space-between; /* Spaces out the two sections */
        align-items: flex-start; /* Aligns the sections to the top */
        gap: 20px; /* Adds spacing between the two sections */
    }

    /* Quality Policy and Objectives Header Alignment */
    .alt-services .header-container {
        display: flex;
        align-items: center;
        justify-content: center; /* Center-aligns header container horizontally */
        gap: 10px;
        margin-bottom: 20px; /* Space between header and content */
    }

        .alt-services .header-container h3 {
            color: var(--default-color);
            font-size: 28px;
            font-weight: 700;
            /* padding-bottom: 10px; */
            text-align: center; /* Center the text itself */
            position: relative;
        }

            .alt-services .header-container h3:after {
                content: "";
                background: var(--default-color);
                position: absolute;
                display: block;
                width: 90px;
                height: 3px;
                bottom: -8px; /* Positioned below the text */
            }

    /* Icon Container Styling */
    .alt-services .img-cont {
        background-color: var(--green-icon);
        padding: 10px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
    }

        .alt-services .img-cont img {
            width: 100%;
            max-width: 30px;
            height: auto;
        }

.alt-services .icon-box p {
    padding: 0 20px 0;
}

.second-green-list {
    list-style: none;
    padding-left: 0;
    margin-left: 10px;
}

    .second-green-list li {
        display: flex;
        align-items: flex-start;
        margin-top: 20px;
        margin-bottom: 20px;
    }

        .second-green-list li i.bi-check-circle-fill {
            color: var(--green-button) !important; 
            margin-right: 20px; 
            font-size: 1.2rem; 
            flex-shrink: 0; 
            margin-top: 3px; 
        }

@media (max-width: 768px) {
    .alt-services {
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    }

        .alt-services .header-container h3 {
            font-size: 1.7rem;
            padding-left: 0;
        }

        .alt-services .icon-box p {
            padding-bottom: 0;
            gap: 0;
        }

            .alt-services .icon-box p:last-child {
                padding-bottom: 30px;
            }

        .alt-services .second-green-list {
            padding: 0 20px 0;
            margin: 0;
        }
}

/* -------------------------------------------------------------
# Serving
---------------------------------------------------------------- */
.serving .row {
    justify-content: space-between;
}

    .serving .row img {
        max-width: 80px;
        height: auto;
        object-fit: contain;
    }

    .serving .row .col {
        flex-direction: column;
    }

        .serving .row .col p {
            margin-top: 10px !important;
            text-align: center;
        }

    .serving .row .img-cont {
        background-color: var(--yellow-icon);
        padding: 25px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
        width: 120px;
        height: 120px;
        aspect-ratio: 1 / 1;
        margin-left: auto;
        margin-right: auto;
        transition: 0.3s;
        border: 1px solid #e1eedb;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }

        .serving .row .img-cont img {
            margin: 0 !important;
            padding: 0 !important;
            max-width: 70px;
            height: auto;
            display: block;
        }

/* Mobile view */
@media (max-width: 768px) {
    .serving .row {
        flex-direction: column;
        gap: 30px;
    }

    .serving .section-title h2,
    .testimonials .section-title h2,
    .awards .section-title h2 {
        font-size: 1.75rem; 
        white-space: normal; 
        justify-content: center;
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Certificates Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    padding-left: 50px;
}

.testimonials .col {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: flex-start; 
    text-align: center;
    padding: 5px;
}

.testimonials .cert-img-box {
    height: 400px; 
    display: flex;
    align-items: center; 
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

    .testimonials .cert-img-box img {
        width: 300px;
        height: 420px;
        object-fit: cover;
    }

.testimonials .col p {
    min-height: 3em;
    margin: 20px 20px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .testimonials .col {
        margin-bottom: 40px; 
        flex-direction: column;
    }
        
        .testimonials .col:last-child {
            margin-bottom: 0;
        }

    .testimonials .col p {
        padding: 0 20px 0;
    }

    .testimonials .cert-img-box img {
        padding: 0 20px 0;
    }
}

/*--------------------------------------------------------------
# Awards Section
--------------------------------------------------------------*/
.awards .award-wrap {
    padding-left: 50px;
    margin-top: 0;
}

.awards .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

    .awards .col p {
        margin-top: 20px;
        text-align: center;
    }

.awards img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .awards img {
        padding: 0 20px 0 20px;
        margin: 0;
        object-fit: contain;
    }

    .awards .col p {
        margin-top: -20px;
    }
}

/*--------------------------------------------------------------
# Milestone Section
--------------------------------------------------------------*/
.milestone-header-container {
    background-color: #D2E8C7;
    padding: 12px 40px;
    border-radius: 12px;
    max-width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

    .milestone-header-container h2 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #000;
    }

/* --- Timeline Structure --- */
.timeline-v {
    position: relative;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
}

    /* THE SMOOTH CONTINUOUS LINE */
    /* This starts from the header and goes to the very bottom */
    .timeline-v::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        background: #166534;
        z-index: 1;
        top: 0;
        bottom: 0;
    }

    .timeline-v .timeline-item {
        position: relative;
        margin-bottom: 40px;
        display: flex;
        width: 100%;
        align-items: center;
    }

        /* Masking the line so it doesn't shoot past the last dot */
        .timeline-v .timeline-item:last-child {
            margin-bottom: 0;
            background: transparent;
        }

        /* THE STOPPER: Masks the line so it stops at the center of the last dot */
        .timeline-v .timeline-item:last-child::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            bottom: -40px; /* Covers the line segment below the last dot */
            width: 10px;
            background: var(--background-color); /* Matches your background color */
            transform: translateX(-50%);
            z-index: 2;
        }

    /* -------- Year dot -------- */
    .timeline-v .dot {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 35px;
        height: 35px;
        background: #fff;
        border: 5px solid var(--green-button);
        border-radius: 50%;
        z-index: 5;
    }

    .timeline-v .timeline-item:last-child .dot {
        background-color: #55FF00;
        border-color: rgba(22, 101, 52, 0.69);
        box-shadow: 0 0 15px rgba(85, 255, 0, 0.6);
    }

    /* --- The Cards --- */
    .timeline-v .content {
        width: 100%;
        max-width: 650px;
        min-height: 200px;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        padding: 20px 35px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

.timeline-year {
    color: rgba(22,101,52,0.7);
    font-style: italic;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(15, 45, 25, 0.3);
}

.timeline-v ul {
    margin: 0;
    padding-left: 18px;
    list-style-type: disc;
}

    .timeline-v ul li {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 8px;
        color: #333;
    }

/* --- Desktop Layout (Alternating) --- */
@media (min-width: 769px) {
    .timeline-v .timeline-item:nth-child(odd) {
        justify-content: flex-start;
        padding-right: 52%;
    }

        .timeline-v .timeline-item:nth-child(odd) .content {
            margin-right: 52px;
            margin-left: auto;
        }

    .timeline-v .timeline-item:nth-child(even) {
        justify-content: flex-end;
        padding-left: 52%;
    }

        .timeline-v .timeline-item:nth-child(even) .content {
            margin-left: 52px;
            margin-right: auto;
        }
}

/* --- Mobile View --- */
@media (max-width: 768px) {
    /* Align line to the left */
    .timeline-v::before {
        left: 31px;
        transform: none;
        top: -20px;
    }

    /* Align dot to the left */
    .timeline-v .dot {
        left: 31px;
        transform: translateX(-50%);
    }


    .timeline-v .timeline-item {
        padding-left: 70px; /* Space for the line and dot */
        padding-right: 15px;
        justify-content: flex-start;
    }

        /* Align stopper to the left */
        .timeline-v .timeline-item:last-child::after {
            left: 31px;
            transform: translateX(-50%);
        }

    .timeline-v .content {
        width: 100%;
        max-width: 100%;
        margin: 0 !important;
    }

    .milestone-header-container {
        margin: 0 0 20px 10px !important;
        left: 0 !important;
    }

        .milestone-header-container h2 {
            font-size: 1.2rem;
        }
}

/* -------------------------------------------------------------
ICT FCT (Yellow Icon)
---------------------------------------------------------------- */
.icon-circle {
    background-color: var(--yellow-icon);
    width: 80px;
    height: 80px; 
    border-radius: 50%; 
    border: 1px solid #e1eedb; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    transition: transform 0.3s ease; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

    .icon-circle img {
        width: 45px; 
        height: auto;
    }

    .icon-circle:hover {
        transform: translateY(-5px);
    }

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
    box-shadow: 0px 2px 20px color-mix(in srgb, var(--default-color), transparent 92%);
    transition: 0.3s;
}

    .recent-blog-posts .post-item .post-img img {
        transition: 0.5s;
    }

    .recent-blog-posts .post-item .post-date {
        position: absolute;
        right: 0;
        bottom: 0;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        text-transform: uppercase;
        font-size: 13px;
        padding: 6px 12px;
        font-weight: 500;
    }

    .recent-blog-posts .post-item .post-content {
        padding: 30px;
    }

    .recent-blog-posts .post-item .post-title {
        color: var(--heading-color);
        font-size: 20px;
        font-weight: 700;
        transition: 0.3s;
        margin-bottom: 15px;
    }

    .recent-blog-posts .post-item .meta i {
        font-size: 16px;
        color: var(--accent-color);
    }

    .recent-blog-posts .post-item .meta span {
        font-size: 15px;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
    }

    .recent-blog-posts .post-item hr {
        color: color-mix(in srgb, var(--default-color), transparent 80%);
        margin: 20px 0;
    }

    .recent-blog-posts .post-item .readmore {
        display: flex;
        align-items: center;
        font-weight: 600;
        line-height: 1;
        transition: 0.3s;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

        .recent-blog-posts .post-item .readmore i {
            line-height: 0;
            margin-left: 6px;
            font-size: 16px;
        }

    .recent-blog-posts .post-item:hover .post-title,
    .recent-blog-posts .post-item:hover .readmore {
        color: var(--accent-color);
    }

    .recent-blog-posts .post-item:hover .post-img img {
        transform: scale(1.1);
    }

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
    box-shadow: 0px 0 30px color-mix(in srgb, var(--default-color), transparent 92%);
    padding: 30px;
}

    .stats-counter .stats-item i {
        color: var(--accent-color);
        font-size: 42px;
        line-height: 0;
        margin-right: 20px;
    }

    .stats-counter .stats-item span {
        color: var(--heading-color);
        font-size: 36px;
        display: block;
        font-weight: 600;
    }

    .stats-counter .stats-item p {
        padding: 0;
        margin: 0;
        font-family: var(--heading-font);
        font-size: 16px;
    }

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
    position: relative;
}

    .team .member .member-img {
        margin: 0 80px;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
    }

@media (max-width: 1024px) {
    .team .member .member-img {
        margin: 0 60px;
    }
}

.team .member .member-img img {
    position: relative;
    z-index: 1;
}

.team .member .member-img .social {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-bottom: 20px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

    .team .member .member-img .social a {
        transition: 0.3s;
        color: var(--contrast-color);
        font-size: 20px;
        margin: 0 8px;
    }

        .team .member .member-img .social a:hover {
            color: var(--accent-color);
        }

.team .member .member-info {
    margin-top: 30px;
}

    .team .member .member-info h4 {
        font-weight: 700;
        margin-bottom: 6px;
        font-size: 18px;
    }

    .team .member .member-info span {
        font-style: italic;
        display: block;
        font-size: 15px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-bottom: 10px;
    }

    .team .member .member-info p {
        margin-bottom: 0;
        font-size: 14px;
    }

.team .member:hover .member-img .social {
    padding-bottom: 0;
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards h3 {
    font-size: 20px;
    font-weight: 700;
}

.features-cards p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 20px;
}

.features-cards img {
    max-width: 60px;
    height: auto;
    margin-bottom: 20px;
}

.features-cards ul li {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding-top: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

    .features-cards ul li i {
        font-size: 16px;
        color: var(--accent-color);
        margin-right: 6px;
    }

/*--------------------------------------------------------------
# Summary Section
--------------------------------------------------------------*/
/* Table shell */
#summary {
    padding-top: 0; 
}

.summary-table {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
    background: #fff;
}

    /* Header */
    .summary-table thead th {
        background: rgba(31,136,18,0.38);
        border-right: 1px solid #e5e7eb;
        color: var(--default-color);
        font-weight: 700;
        vertical-align: middle;
        white-space: nowrap;
        padding-left: 15px;
    }

    /* Left column (row headings) */
    .summary-table .row-heading {
        background: rgba(255,247,192,0.49);
        border-right: 1px solid #e5e7eb;
        color: var(--default-color);
        font-weight: 700;
        width: 220px; 
        padding-left: 15px;
    }

    /* Zebra rows for readability */
    .summary-table tbody tr:nth-child(even) td {
        background: #f9fafb;
    }

    /* Bullets spacing */
    .summary-table td ul {
        padding-left: 0;
        list-style: none; 
    }


    /* Borders */
    .summary-table td,
    .summary-table th {
        border-color: #e5e7eb;
    }

/* Sticky left heading on wide screens (nice touch) */
@media (min-width: 992px) {
    .summary-table .col-heading,
    .summary-table .row-heading {
        position: sticky;
        left: 0;
        z-index: 2;
    }
}

/* Mobile: stack cells as cards */
@media (max-width: 768px) {
    .summary-table thead {
        display: none;
    }

    .summary-table,
    .summary-table tbody,
    .summary-table tr,
    .summary-table td,
    .summary-table th {
        display: block;
        width: 100%;
    }

        .summary-table tr {
            border-top: 1px solid #e5e7eb;
        }

        .summary-table .row-heading {
            background: rgba(255,247,192,0.49);
            color: var(--default-color);
            width: 100%;
            padding: .85rem 1rem;
        }

        .summary-table td {
            padding: .85rem 1rem;
        }

    .section h3 {
        padding-left: 30px;
    }

    .table-responsive {
        padding: 0 20px 0;
    }
}

/* ------------------------------------------------------------
Benefits
--------------------------------------------------------------- */
.benefits {
    background-color: #FFFFF9;
    padding: 0; /* Remove any padding from the benefits section */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative; 
    z-index: 5; 
}

    .benefits .container-fliud {
        display: flex;
        align-items: stretch; /* Ensures all columns take the same height */
    }

    .benefits .benefits-title {
        background-color: #D2E8C7;
        padding: 20px;
        text-align: center;
        height: 260px; /* Ensure it takes full height */
    }

        .benefits .benefits-title h3 {
            color: var(--default-color);
        }

    .benefits img {
        max-width: 70px;
        height: auto;
    }

    .benefits p {
        color: var(--default-color);
        font-size: 14px; /* Adjust font size if needed */
        margin-top: 15px;
        text-align: left;
    }

    .benefits .row {
        margin: 0;
    }

        .benefits .row .col-2 {
            padding: 0 5px; /* Adjust padding to control spacing */
            flex: 1; /* Allows columns to fill available space */
        }

    .benefits .icons-container {
        display: flex;
        justify-content: space-evenly; /* Evenly space each column */
        gap: 40px; /* Adds consistent space between items */
        text-align: center;
    }

/* Define the jump animation */
@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px); /* Adjust the value for higher/lower jump */
    }
}
/* Apply the jump animation on hover */
.icons-container .col-2:hover {
    animation: jump 0.9s ease-in-out; /* Duration and easing of the jump */
}

/* Mobile View */
@media (max-width: 768px) {
    .icons-container {
        flex-direction: column; /* Stack items vertically */
        gap: 20px; /* Add spacing between each item */
    }

    .benefits {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

        .benefits .benefits-title {
            flex-basis: 100%; /* Full width for the title */
            text-align: center;
            width: 100%;
        }

    .icons-container .col-2 {
        width: 100%; /* Make each benefit take the full width */
    }
}

/* ------------------------------------------------------------
Flip Card
--------------------------------------------------------------- */
.flip-card, .flip-card-inner {
    height: 300px; /* Adjust to the desired height */
}

.flip-card {
    position: relative;
    margin-bottom: 40px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    display: flex;
    flex-direction: column; /* Ensures content is arranged in a column */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    position: absolute; /* Keeps front and back aligned */
    top: 0;
    left: 0;
    padding: 20px;
    background-color: #eeeeeea5;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.flip-card-front {
    color: black;
}

.flip-card-back {
    color: black;
    transform: rotateY(180deg);
}

/*-------------------------------------------------------------
#   Types of Fixtures
---------------------------------------------------------------*/
/* Fixture cards */
.fixture-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-right: 30px;
    width: 300px;
}

.fixture-thumb {
    height: 220px; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff; 
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 12px; 
}

    .fixture-thumb img {
        height: 180px; /* Force a standard height */
        width: 100%;
        object-fit: contain; /* Prevents stretching */
        padding: 10px;
    }

.fixture-card .card-title {
    font-weight: 700;
    color: var(--heading-color);
}

.fixture-card .card-text {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-top: 0;
}

.fixture-card .card-body {
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px;
}

@media (max-width: 768px) {
    .fixture-card {
        max-width: 100%;
        margin: 0 20px 0;
        box-sizing: border-box;
        float: none;
    }

    .fixture-thumb {
        height: auto; 
        min-height: 200px;
    }

    #services .fixture-card {
        margin: 0 40px 0;
        align-items: center;
    }

    .col-12 {
        padding: 0;
        padding-bottom: 20px;
    }
}

/*-------------------------------------------------------------
Platform
---------------------------------------------------------------*/
/* Platforms – simple card */
.platform-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
/*.platform-card:hover{*/
/*  transform: translateY(-4px);*/
/*  box-shadow: 0 10px 28px rgba(0,0,0,.12);*/
/*}*/

.platform-img {
    width: 100%;
    max-width: 300px; /* control max size */
    height: 200px; /* fixed height */
    object-fit: contain; /* scale image without stretching */
    display: block;
    margin: 0 auto 16px; /* center the image, add spacing below */
}

.platform-body {
    width: 100%;
    text-align: left; /* title/paragraph left-aligned like your ref */
}

.platform-title {
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 8px;
    color: var(--heading-color);
}

.platform-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--default-color);
}

@media (max-width: 768px) {
    .platform-card {
        margin: 0 30px 0;
    }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

    .service-details .services-list a {
        display: block;
        line-height: 1;
        padding: 8px 0 8px 15px;
        border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
        margin: 20px 0;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        transition: 0.3s;
    }

        .service-details .services-list a.active {
            color: var(--heading-color);
            font-weight: 700;
            border-color: var(--accent-color);
        }

        .service-details .services-list a:hover {
            border-color: var(--accent-color);
        }

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .service-details ul li {
        padding: 5px 0;
        display: flex;
        align-items: center;
    }

    .service-details ul i {
        font-size: 20px;
        margin-right: 8px;
        color: var(--accent-color);
    }

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
    width: 100%;
}

.project-details .swiper-wrapper {
    height: auto;
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

    .project-details .swiper-button-prev:after,
    .project-details .swiper-button-next:after {
        color: rgba(255, 255, 255, 0.8);
        background-color: rgba(0, 0, 0, 0.15);
        font-size: 24px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .project-details .swiper-button-prev:hover:after,
    .project-details .swiper-button-next:hover:after {
        background-color: rgba(0, 0, 0, 0.3);
    }

@media (max-width: 575px) {

    .project-details .swiper-button-prev,
    .project-details .swiper-button-next {
        display: none;
    }
}

.project-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .project-details .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: color-mix(in srgb, var(--default-color), transparent 85%);
        opacity: 1;
    }

    .project-details .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

.project-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

    .project-details .portfolio-info h3:after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 3px;
        background: var(--accent-color);
        left: 0;
        bottom: 0;
    }

.project-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .project-details .portfolio-info ul li {
        display: flex;
        flex-direction: column;
        padding-bottom: 15px;
    }

    .project-details .portfolio-info ul strong {
        text-transform: uppercase;
        font-weight: 400;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        font-size: 14px;
    }

.project-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

    .project-details .portfolio-info .btn-visit:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
    }

.project-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.project-details .portfolio-description p {
    padding: 0;
}

.project-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

    .project-details .portfolio-description .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50px;
        border: 6px solid var(--background-color);
        float: left;
        margin: 0 10px 0 0;
    }

    .project-details .portfolio-description .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 15px 0 5px 0;
        padding-top: 20px;
    }

    .project-details .portfolio-description .testimonial-item h4 {
        font-size: 14px;
        color: #6c757d;
        margin: 0;
    }

    .project-details .portfolio-description .testimonial-item .quote-icon-left,
    .project-details .portfolio-description .testimonial-item .quote-icon-right {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        font-size: 26px;
        line-height: 0;
    }

    .project-details .portfolio-description .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .project-details .portfolio-description .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .project-details .portfolio-description .testimonial-item p {
        font-style: italic;
        margin: 0 0 15px 0 0 0;
        padding: 0;
    }

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
    box-shadow: 0px 2px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: 0.3s;
}

.blog-posts .post-img img {
    transition: 0.5s;
}

.blog-posts .post-date {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    position: absolute;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.blog-posts .post-content {
    padding: 30px;
}

.blog-posts .post-title {
    font-size: 20px;
    color: var(--heading-color);
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}

.blog-posts .meta i {
    font-size: 16px;
    color: var(--accent-color);
}

.blog-posts .meta span {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
    margin-top: 20px;
}

.blog-posts hr {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-bottom: 15px;
}

.blog-posts .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

    .blog-posts .readmore i {
        line-height: 0;
        margin-left: 6px;
        font-size: 16px;
    }

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
    color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

    .pagination-2 ul {
        display: flex;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .pagination-2 li {
        margin: 0 5px;
        transition: 0.3s;
    }

        .pagination-2 li a {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            padding: 7px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pagination-2 li.active,
        .pagination-2 li:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
        }

            .pagination-2 li.active a,
            .pagination-2 li:hover a {
                color: var(--contrast-color);
            }

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
}

    .blog-details p {
        font-size: 15px;
        margin-top: 0;
        line-height: 1.5;
        padding: 0 20px 0;
    }

    .blog-details .container .fct-intro {
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .blog-details .container .fct-info {
        background-color: #eeeeeea5;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .blog-details .fct-img {
        overflow: hidden;
    }

        .blog-details .fct-img img {
            width: 100%;
            height: auto;
        }

/* Mobile view */
@media (max-width: 768px) {
    .features-cards {
        margin: 0 40px;
    }

    .blog-details .fct-img img {
        padding: 0 20px 0;
        align-items: center;
        margin-left: 0;
    }

    .blog-details .row {
        flex-direction: column;
    }

    .blog-details .container .fct-intro {
        box-shadow: none;
    }

    #blog-details .benefits-title {
        padding: 100px 0;
        margin: 0 !important;
    }

    #blog-details .benefits-title h3 {
        padding-left: 0;
    }
}

.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

    .blog-details .content blockquote p {
        color: var(--default-color);
        line-height: 1.6;
        margin-bottom: 0;
        font-style: italic;
        font-weight: 500;
        font-size: 22px;
    }

    .blog-details .content blockquote:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background-color: var(--accent-color);
        margin-top: 20px;
        margin-bottom: 20px;
    }

/*--------------------------------------------------------------
# FCT Solutions
--------------------------------------------------------------*/
.solution-icon-circle {
    width: 100px; 
    height: 100px; 
    background-color: #C2FEA5; 
    border-radius: 50%; 
    display: flex; 
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
}

    .solution-icon-circle img {
        max-width: 55px; 
        height: auto;
        margin-bottom: 0;
    }

#features-cards p {
    font-size: 14px;
    font-weight: 500;
    max-width: 140px; 
    line-height: 1.3;
}

/*--------------------------------------------------------------
# FCT Bottom corousel
--------------------------------------------------------------*/
#fctCarousel {
    position: relative;
    padding: 0 100px; /* Creates space for the arrows on the sides */
}

#fctCarousel .carousel-inner {
    height: 440px;
    background: #fff;
}

/* Center the image inside the slide */
#fctCarousel .carousel-item {
    height: 100%;
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
    background: #fff;
}

/* Make the control hit-area small (only the round button) */
#fctCarousel .carousel-control-prev,
#fctCarousel .carousel-control-next {
    width: 35px; /* clickable area */
    height: 35px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* keep visible */
}

#fctCarousel .carousel-control-prev {
    left: 12px;
}

#fctCarousel .carousel-control-next {
    right: 12px;
}

/* Size of the arrow glyph */
#fctCarousel .carousel-control-prev-icon,
#fctCarousel .carousel-control-next-icon {
    width: 35px;
    height: 35px;
    background-color: #E7E9EB;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--subHeading-color); /* Dark dots */
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: var(--subHeading-color); /* Highlight active dot (green for example) */
}

@media (max-width: 768px) {
    #fctCarousel {
        padding: 0 30px; 
    }

        #fctCarousel .carousel-item {
            height: 100%;
            display: flex !important;
            align-items: center;
            justify-content: center;
            background: #fff;
        }

        #fctCarousel .carousel-inner {
            height: 300px; 
            background: #fff;
        }

        #fctCarousel .carousel-control-prev,
        #fctCarousel .carousel-control-next {
            display: flex !important; 
            width: 50px;
            height: 50px;
        }

        #fctCarousel .carousel-control-prev-icon,
        #fctCarousel .carousel-control-next-icon {
            width: 25px;
            height: 25px;
            background-color: #E7E9EB;
        }

        #fctCarousel .carousel-item img {
            width: auto;
            height: auto; 
            max-width: 80%;
            max-height: 80%; 
            object-fit: contain;
        }

    /* Make the indicator dots smaller */
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin-bottom: -10px; 
    }
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
/*.blog-author {
    padding: 10px 0 40px 0;
}

    .blog-author .author-container {
        padding: 20px;
        box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .blog-author img {
        max-width: 120px;
        margin-right: 20px;
    }

    .blog-author h4 {
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 0px;
        padding: 0;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

    .blog-author .social-links {
        margin: 0 10px 10px 0;
    }

        .blog-author .social-links a {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
            margin-right: 5px;
        }

    .blog-author p {
        font-style: italic;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 0;
    }*/

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
/*.blog-comments {
    padding-top: 10px;
}

    .blog-comments .comments-count {
        font-weight: bold;
    }

    .blog-comments .comment {
        margin-top: 30px;
        position: relative;
    }

        .blog-comments .comment .comment-img {
            margin-right: 14px;
        }

            .blog-comments .comment .comment-img img {
                width: 60px;
            }

        .blog-comments .comment h5 {
            font-size: 16px;
            margin-bottom: 2px;
        }

            .blog-comments .comment h5 a {
                font-weight: bold;
                color: var(--default-color);
                transition: 0.3s;
            }

                .blog-comments .comment h5 a:hover {
                    color: var(--accent-color);
                }

            .blog-comments .comment h5 .reply {
                padding-left: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
            }

                .blog-comments .comment h5 .reply i {
                    font-size: 20px;
                }

        .blog-comments .comment time {
            display: block;
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin-bottom: 5px;
        }

        .blog-comments .comment.comment-reply {
            padding-left: 40px;
        }

    .blog-comments .reply-form {
        margin-top: 30px;
        padding: 30px;
        box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .blog-comments .reply-form h4 {
            font-weight: bold;
            font-size: 22px;
        }

        .blog-comments .reply-form p {
            font-size: 14px;
        }

        .blog-comments .reply-form input {
            background-color: var(--background-color);
            color: var(--default-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
            font-size: 14px;
            border-radius: 4px;
            padding: 10px 10px;
        }

            .blog-comments .reply-form input:focus {
                box-shadow: none;
                border-color: var(--accent-color);
            }

        .blog-comments .reply-form textarea {
            background-color: var(--background-color);
            color: var(--default-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
            border-radius: 4px;
            padding: 10px 10px;
            font-size: 14px;
            height: 120px;
        }

            .blog-comments .reply-form textarea:focus {
                box-shadow: none;
                border-color: var(--accent-color);
            }

        .blog-comments .reply-form .form-group {
            margin-bottom: 25px;
        }

        .blog-comments .reply-form .btn-primary {
            border-radius: 4px;
            padding: 10px 20px;
            border: 0;
            background-color: var(--accent-color);
            color: var(--contrast-color);
        }

            .blog-comments .reply-form .btn-primary:hover {
                color: var(--contrast-color);
                background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
            }*/

/*--------------------------------------------------------------
# Maintenance Section
--------------------------------------------------------------*/
/* Warranty / Post-warranty cards */
.maintenance-card {
    position: relative;
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    padding: 22px 22px 22px 90px; /* room for icon column */
    min-height: 220px;
    margin-right: 20px;
}

    .maintenance-card:before { /* left accent bar */
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 8px;
        background: rgba(94,220,31,0.3);
        border-top-left-radius: 14px;
        border-bottom-left-radius: 14px;
    }

    .maintenance-card .icon-wrap img {
        width: 28px; 
        height: auto; 
        display: block; 
    }

    .maintenance-card .icon-wrap {
        position: absolute;
        left: 22px;
        top: 22px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: rgba(255,251,195,0.69);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-color, #217b0f);
        font-size: 28px;
    }

    .maintenance-card h4 {
        margin: 0 0 8px 0;
        font-weight: 700;
        color: var(--default-color);
    }

    .maintenance-card p {
        margin-bottom: 8px;
    }

    .maintenance-card .muted {
        color: #6b7280;
    }
/* bullets similar to your slide (subtle spacing + green bullets) */
.green-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .green-list li {
        position: relative;
        padding-left: 25px;
        margin: 6px 0;
    }

        .green-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--default-color);
            font-weight: 900;
            padding-left: 8px;
        }

@media (max-width: 768px) {
    .maintenance-card {
        margin: 0 30px 0;
    }
}

/*--------------------------------------------------------------
# Modern Bursa Table & Year Selection
--------------------------------------------------------------*/
.yearDropdownButton {
    display: flex;
    align-items: center;
}

#yearDropdownButton {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border: 1px solid rgba(0,0,0,0.3) !important;
    border-radius: 10px;
    padding: 8px 15px;
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    #yearDropdownButton::after {
        margin-left: 10px;
    }

/* General styling */
.dropdown-menu {
    border-radius: 10px !important;
    border: none !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important;
    padding: 10px !important;
    min-width: 150px !important;
    background-color: #FFFFFF !important;
}

.dropdown-item.filter-opt {
    border-radius: 10px !important;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    margin: 4px 0;
    padding: 8px 12px;
    color: #000000;
}

    .dropdown-item.filter-opt:hover,
    .dropdown-item.filter-opt:focus,
    .dropdown-item.filter-opt.active {
        background-color: #FAEDCD !important;
        color: #000000 !important;
        min-width: 100px !important;
    }

    .dropdown-item.filter-opt.active {
        background-color: #FAEDCD !important;
        color: #000000 !important;
    }

    .dropdown-item.filter-opt:hover {
        background-color: #FAEDCD !important;
        color: #000000 !important;
    }

#table {
    border-collapse: separate !important;
    border-spacing: 0;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

    #table thead th {
        background-color: rgba(156, 208, 150, 1.0) !important;
        border-bottom: 1px solid #dee2e6 !important;
        color: #333;
        padding: 12px 20px;
    }

    #table th:first-child,
    #table td:first-child {
        border-right: 1px solid #dee2e6 !important;
    }

    #table td {
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
    }

    #table a {
        color: #5a8d65;
        text-decoration: none;
        transition: 0.1s;
    }

        #table a:hover {
            text-decoration: underline !important;
            color: var(--nav-hover-color);
            font-weight: 600;
        }

    /* Zebra rows for readability */
    .table tbody tr:nth-child(even) td {
        background: #f9fafb;
    }

@media (max-width: 768px) {
    .year-filter {
        margin-left: 20px;
    }
}

/*-------------------------------------------------------------
 Corporate Governance (CG) 
 --------------------------------------------------------------*/
.CG h4 {
    font-size: 19px;
}

.CG li {
    font-size: 15px;
    padding-bottom: 5px;
}

.CG-Card {
    background: white;
    border: 1px solid rgba(0,0,0,0.1) !important;
    padding: 5px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    cursor: pointer;
    text-align: left;
}

    .CG-Card:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        color: var(--nav-hover-color);
        font-weight: bold;
    }

    .CG-Card a {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: inherit;
        padding: 15px;
    }

@media (max-width: 768px) {
    .CG .row {
        display: flex;
        flex-direction: column;
    }

    .CG h2 {
        padding: 0 20px 0;
    }

    .CG hr {
        margin: 0 20px 0;
    }

    .CG-Card {
        margin: 10px 20px 10px;
    }
}

/*-------------------------------------------------------------
 News 
 --------------------------------------------------------------*/
.to-be-published {
    padding: 0;
}

@media (max-width: 768px) {
    .to-be-published {
        padding: 0 20px 0;
    }
}

/*@media (max-width: 768px) {
    .to-be-published {
        padding: 0 20px 0;
    }
*/
/*.roadmap h4 {
    font-size: 19px;
}

.roadmap li {
    font-size: 15px;
    padding-bottom: 5px;
}

.roadmap-desc {
    display: flex;*/ /* Enables flexbox */
/*flex-direction: column;*/ /* Ensures content stacks vertically */
/*}

    .roadmap-desc img {
        max-width: 70px;
        height: auto;
        display: block;*/ /* Ensures the image is treated as a block-level element */
/*margin: 0 auto;*/ /* Horizontally centers the image */
/*padding-bottom: 10px;*/ /* Adds spacing below the image for better layout */
/*}

@media (max-width: 768px) {
    .roadmap .row {
        display: flex;
        flex-direction: column;
    }
}*/

/* -------------------------------------------------------------
Events
---------------------------------------------------------------- */
/* Card Container */
.event-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 100%;
    margin: 0 30px 0;
}

    .event-card:hover {
        transform: translateY(-5px);
    }

    .event-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 15px 15px 0 0;
    }

.event-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.event-meta {
    font-size: 0.85rem;
    color: #777;
    display: flex;
    align-items: center;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
}

    .modal-content img {
        width: 100%;
        border-radius: 8px;
    }

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

#noEventMsg {
    display: none;
    color: var(--default-color);
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .event-card {
        margin: 0 20px 0;
    }

    #noEventMsg {
        padding: 0 20px 0;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
    .contact-info-wrapper {
        padding-right: 50px;
    }

        .contact-info-wrapper p {
            margin-top: 0;
        }

    .map-link {
        display: block;
        margin-top: 10px;
        color: #166534 !important;
        text-decoration: underline;
        font-size: 14px;
    }

        .map-link:hover {
            color: var(--green-button) !important;
            text-decoration: underline;
        }

    .contact .php-email-form {
        background-color: #f1f4ef;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border: 1px solid rgba(0,0,0,0.09);
        height: 620px;
        width: 630px;
    }

        .contact .php-email-form label {
            margin-bottom: 5px;
            color: #333;
        }

        .contact .php-email-form .form-control {
            border: none;
            border-radius: 10px;
            padding: 12px 15px;
            background-color: #ffffff;
        }

        /* Submit Button */
        .contact .php-email-form button[type=submit] {
            background: #9EE67A;
            color: var(--default-color);
            border: 0;
            padding: 10px 50px;
            border-radius: 15px;
            font-weight: 700;
            transition: 0.3s;
            margin-top: 60px;
        }

            .contact .php-email-form button[type=submit]:hover {
                background: #88d466;
                transform: translateY(-2px);
            }

    info-item-box .col-4 {
        padding: 0 35px;
    }

/* Responsive handling */
@media (max-width: 768px) {
    .contact .col-lg-6 {
        width: 100%;
        margin-left: 0;
        padding-top: 0;
    }

    .col-lg-6 ps-5 pe-0 {
        margin-left: 0;
        padding-left: 0;
    }

    .img-fluid {
        margin-left: 25px;
        padding: 0 20px 0;
    }

    .map-link {
        margin-left: 25px;
        padding: 0 20px 0;
    }

        .map-link:hover {
            color: var(--green-button) !important;
            text-decoration: underline;
        }

    .contact-info-wrapper {
        margin-left: 50px;
        padding-right: 10px;
    }

    .info-item-box {
        padding-bottom: 0;
    }

    .info-item-box .col-4 .small {
        overflow-wrap: break-word;
        display: block;
    }

    /* Adds a little space between the 3 stacked rows */
    .info-item-box .col-12 {
        margin-bottom: 10px;
    }

    .info-item-box .col-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 10px; /* Adds space between each email row */
        padding: 0 10px 0 !important; /* Removes side padding that causes misalignment */
    }

    .contact .php-email-form {
        height: 680px;
        width: auto;
        margin-right: 45px;
    }

        .contact .php-email-form button[type=submit] {
            margin-top: 25px;
        }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    padding: 30px;
    margin: 60px 0 30px 0;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.widget-item {
    margin-bottom: 40px;
}

    .widget-item:last-child {
        margin-bottom: 0;
    }

.search-widget form {
    background: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    padding: 3px 10px;
    position: relative;
}

    .search-widget form input[type=text] {
        border: 0;
        padding: 4px;
        border-radius: 4px;
        width: calc(100% - 40px);
        background-color: var(--background-color);
        color: var(--default-color);
    }

        .search-widget form input[type=text]:focus {
            outline: none;
        }

    .search-widget form button {
        background: var(--accent-color);
        color: var(--contrast-color);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        border: 0;
        font-size: 16px;
        padding: 0 15px;
        margin: -1px;
        transition: 0.3s;
        border-radius: 0 4px 4px 0;
        line-height: 0;
    }

        .search-widget form button i {
            line-height: 0;
        }

        .search-widget form button:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 20%);
        }

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .categories-widget ul li {
        padding-bottom: 10px;
    }

        .categories-widget ul li:last-child {
            padding-bottom: 0;
        }

    .categories-widget ul a {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        transition: 0.3s;
    }

        .categories-widget ul a:hover {
            color: var(--accent-color);
        }

        .categories-widget ul a span {
            padding-left: 5px;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            font-size: 14px;
        }

.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
}

    .recent-posts-widget .post-item:last-child {
        margin-bottom: 0;
    }

    .recent-posts-widget .post-item img {
        width: 80px;
        margin-right: 15px;
    }

    .recent-posts-widget .post-item h4 {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 5px;
    }

        .recent-posts-widget .post-item h4 a {
            color: var(--default-color);
            transition: 0.3s;
        }

            .recent-posts-widget .post-item h4 a:hover {
                color: var(--accent-color);
            }

    .recent-posts-widget .post-item time {
        display: block;
        font-style: italic;
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
    }

.tags-widget {
    margin-bottom: -10px;
}

    .tags-widget ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .tags-widget ul li {
            display: inline-block;
        }

        .tags-widget ul a {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-size: 14px;
            padding: 6px 14px;
            margin: 0 6px 8px 0;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
            display: inline-block;
            transition: 0.3s;
        }

            .tags-widget ul a:hover {
                background: var(--accent-color);
                color: var(--contrast-color);
                border: 1px solid var(--accent-color);
            }

            .tags-widget ul a span {
                padding-left: 5px;
                color: color-mix(in srgb, var(--default-color), transparent 60%);
                font-size: 14px;
            }

p {
    margin-top: 20px;
    text-align: justify;
}