@charset "UTF-8";
/* 
 * Renovation Styles for Public 2 
 * Add your custom styles here to override the default theme.
 * This file is loaded after styles.css, so your rules will take precedence.
 */

/* ==========================================================================
   Header Navigation Dropdown
   ========================================================================== */

/* Ensure parent item is relative for absolute positioning of submenu */
.gHeader_item {
    position: relative !important;
    overflow: visible !important;
    /* Ensure dropdowns aren't clipped */
}

/* Ensure parents don't clip */
.gHeader,
.gHeader_inner,
.gHeader_nav,
.gHeader_list {
    overflow: visible !important;
}

/* Submenu Styles */
.gHeader_subMenu {
    display: none !important;
    /* Force hidden by default */
    position: absolute !important;
    top: 100% !important;
    /* Position below the parent item */
    left: 50% !important;
    transform: translateX(-50%) !important;
    /* Center align */
    background-color: rgba(40, 42, 43, 0.658) !important;
    min-width: 260px !important;
    /* Slightly wider for longer text */
    padding: 15px 0 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    border-radius: 0 !important;
    /* Sharp edges as per image */
    z-index: 9999 !important;
    /* Make sure it sits on top */
    list-style: none !important;
    margin: 0 !important;
}

/* Show submenu on hover */
.gHeader_item:hover .gHeader_subMenu {
    display: block !important;
    animation: menuFadeIn 0.2s ease-out forwards;
}

/* Submenu Item Styles */
.gHeader_subItem {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gHeader_subItem a {
    display: block !important;
    padding: 10px 24px !important;
    color: #ffffff !important;
    /* White text */
    font-size: 15px !important;
    text-decoration: none !important;
    transition: background-color 0.2s, opacity 0.2s;
    line-height: 1.5 !important;
    text-align: left !important;
    white-space: normal !important;
    border: none !important;
    background: transparent !important;
}

.gHeader_subItem a:hover {
    background-color: rgba(49, 46, 46, 0.048) !important;
    /* Light overlay on hover */
    color: #ffffff !important;
}

/* Animation */
@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ==========================================================================
   Top Page Customizations
   ========================================================================== */

/* Add boundary line for SDGs section on Top Page */
/* Add boundary and header for SDGs section on Top Page */
.topSdgs {
    margin-top: 80px !important;
    padding-top: 0 !important;
}

.topSdgs_head {
    text-align: center !important;
    margin-bottom: 40px !important;
    padding: 20px 0 !important;
    border-top: 1px solid #111111 !important;
    border-bottom: 1px solid #1b1b1b !important;
    width: 100% !important;
}

.topSdgs_ttl {
    font-size: 24px !important;
    /* Adjust size as needed */
    font-weight: normal !important;
    letter-spacing: 0.1em !important;
    color: #333 !important;
    margin: 0 !important;
}



/* Resize Service Button on Top Page */
/* Resize Service Button on Top Page */
.topService_more a {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 600px !important;
    height: 80px !important;
    font-size: 20px !important;
    max-width: 100% !important;
    background-color: #161515 !important;
    color: #fff !important;
    text-decoration: none !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    z-index: 1 !important;
    transition: all 0.3s ease !important;
}

/* Pseudo-element for Pulse Wave */
.topService_more a::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px !important;
    z-index: -1 !important;
    animation: wave-pulse 2s infinite !important;
}

.topService_more a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.548) !important;
    background-color: #333 !important;
}

.topService_more a:hover::after {
    animation: none !important;
}

@keyframes wave-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(22, 21, 21, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(22, 21, 21, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(22, 21, 21, 0);
    }
}