.elementor-58 .elementor-element.elementor-element-5515f88f{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:flex-end;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-58 .elementor-element.elementor-element-3bd7664a{--display:flex;}.elementor-58 .elementor-element.elementor-element-eacab67{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-58 .elementor-element.elementor-element-b547858{--spacer-size:50px;}.elementor-58 .elementor-element.elementor-element-69828c8c{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:flex-end;--align-items:flex-end;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-58 .elementor-element.elementor-element-69828c8c.e-con{--flex-grow:0;--flex-shrink:1;}.elementor-58 .elementor-element.elementor-element-50b270df > .elementor-widget-container{margin:-15px 0px 0px 0px;}.elementor-58 .elementor-element.elementor-element-50b270df.elementor-element{--align-self:flex-end;}.elementor-58 .elementor-element.elementor-element-0039a45{--spacer-size:5px;}.elementor-58 .elementor-element.elementor-element-a332803{--display:flex;}@media(max-width:767px){.elementor-58 .elementor-element.elementor-element-69828c8c{--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}}@media(min-width:768px){.elementor-58 .elementor-element.elementor-element-3bd7664a{--width:10%;}.elementor-58 .elementor-element.elementor-element-eacab67{--width:15%;}.elementor-58 .elementor-element.elementor-element-69828c8c{--width:25%;}.elementor-58 .elementor-element.elementor-element-a332803{--width:5%;}}/* Start custom CSS for container, class: .elementor-element-69828c8c *//* Parent container: use flexbox to center children vertically and horizontally */
.parent-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height:100%;
        }

/* Hide the toggle input */
.toggle-input {
    display: none;
        }

/* Toggle Button Container: Centered */
.toggle-container {
    margin-bottom: -0.3rem!important;  /* Adds space between the toggle and dropdown */
        }

/* Toggle Button Styling */
.toggle {
    position: relative;
    width: 40px;
    height: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
            gap: 5px;
    transition-duration: 0.3s;
        }

.bars {
    width: 100%;
    height: 4px;
    background-color: #00418B;
    border-radius: 5px;
    transition: transform 0.3s, opacity 0.3s;
    position: absolute;
        }

/* Bar positions */
#bar1 { top: 10px; }
#bar2 { top: 25px; }
#bar3 { top: 40px; }

/* Transform bars into an "X" */
.toggle-input:checked + .toggle-container .toggle #bar1 {
    transform: rotate(45deg) translate(-5px, -5px);
    top: 16px;
     background-color:#00418B;
}

.toggle-input:checked + .toggle-container .toggle #bar2 {
    opacity: 0;
}

.toggle-input:checked + .toggle-container .toggle #bar3 {
    transform: rotate(-45deg) translate(5px, -5px);
    top: 16px;
    background-color:#00418B;
}

/* Menu Container (Dropdown) Styling */
.menu-container {
    --main-color: #00418B;
    --main-color-opacity: #00418B1c;
    --total-radio: 6;
    
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 0.5rem!important;
    margin-top: 4px!important;
    margin-bottom: 3px!important;
    font-family: "Poppins",Sans-Serif;
    font-size: 28px;
    font-weight: 400;
            
/* Initially hide with fade/expand effect */
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
        }

/* Show the menu when toggle is checked */
.toggle-input:checked ~ .menu-container {
    opacity: 1;
    max-height: 500px; /* Adjust as needed for content */
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
        }

/* The rest of your menu design CSS */
.menu-container input {
    cursor: pointer;
    appearance: none;
        }

.menu-container .glider-container {
    position: absolute;
    left: 0!important;
    top: 0!important;
    bottom: 0!important;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0) 100%);
    width: 1px;
        }

.menu-container .glider-container .glider {
    position: relative;
    height: calc(100% / var(--total-radio));
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, var(--main-color) 50%, rgba(0, 0, 0, 0) 100%);
    transition: transform 0.5s cubic-bezier(0.37, 1.95, 0.66, 0.56);
        }

.menu-container label {
    cursor: pointer;
    padding: 0.8rem!important;
    position: relative;
    color: #00418B;
    transition: all 0.3s ease-in-out;
        }

.menu-container input:checked + label {
    color: var(--main-color);
        }
        
.menu-container {
  transition: opacity 0.3s ease, max-height 0.3s ease; /* Faster transition (0.3s instead of 0.5s) */
}

/* Add gradient background color on hover for menu items */
.menu-container label {
    cursor: pointer;
    padding: 0.5rem!important;
    margin-right: 20px!important;
    margin-left: 20px!important;
    position: relative;
    color: #00418B;
    transition: all 0.3s ease-in-out;
}

/* Change text color when the input is checked */
.menu-container input:checked + label {
    color: var(--main-color);
}

/* Add hover effect with gradient background */
.menu-container label:hover {
    background: linear-gradient(to right, #00418B, #00418B50);
    color: #fff; /* Change text color on hover to make it more readable */
    border-radius: 5px;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-5515f88f *//* General styling for the sticky section */
.sticky-section {
    position: fixed; /* Keeps the section fixed at the top */
    top: 0;
    left: 0;
    right: 0; /* Ensures full width */
    width: 100%; /* Full width across the screen */
    z-index: 100001; /* Ensures it stays on top of other content */
    overflow: visible; /* Ensure dropdown can overflow */
    background-color: #fff; /* Fallback solid color (black) */
    background-color: rgba(244, 244, 244, 0); /* Transparent initial background */
    transition: background-color 0.3s ease; /* Smooth transition for color change */
    pointer-events: auto!important; /* Ensures the section is clickable */
}

.menu-item {
    position: relative; /* For the dropdown to be positioned relative to this item */
}

.dropdown-menu {
    position: absolute; /* Positioned absolutely below the menu item */
    top: 100%; /* Starts just below the menu item */
    left: 0;
    z-index: 100002; /* Ensure it's on top */
    background-color: rgba(244, 244, 244, 0.5); /* Background color for the dropdown */
    overflow: visible; /* Ensure dropdown contents are visible */
}

/* Page container prevent jumping */
body {
  margin: 0!important;
  overflow-x: hidden;  /* Prevent horizontal scroll on body */
}/* End custom CSS */