.elementor-115 .elementor-element.elementor-element-5f37887{--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:center;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-115 .elementor-element.elementor-element-f55bf26{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-115 .elementor-element.elementor-element-6e6e4c8 img{width:100%;}.elementor-115 .elementor-element.elementor-element-54acafe{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-115 .elementor-element.elementor-element-97562f6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-115 .elementor-element.elementor-element-5f37887{--content-width:1300px;}.elementor-115 .elementor-element.elementor-element-f55bf26{--width:10%;}.elementor-115 .elementor-element.elementor-element-54acafe{--width:70%;}.elementor-115 .elementor-element.elementor-element-97562f6{--width:20%;}}/* Start custom CSS for html, class: .elementor-element-6b5c1a7 */*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===========================
   BASE / DESKTOP MENU
=========================== */
.main-menu{
    position:relative;
    width:100%;
}
.main-menu ul{
    display:flex;
    list-style:none;
    gap:4px;
    align-items:center;
}
.main-menu li{
    position:relative;
}
.main-menu a{
    display:flex;
    align-items:center;
    gap:6px;
    padding:8px 12px;
    text-decoration:none;
    color:#475569;
    font-size:14px;
    font-weight:500;
    line-height:1.5;
    transition:.25s ease;
}
.main-menu a:hover{
    color:#1C6DF5;
}
.main-menu .active{
    background:#EEF7FF;
    color:#1C6DF5 !important;
    padding:8px 12px;
    border-radius:10px;
    font-size:14px;
    font-weight:500;
}
.arrow{
    font-size:9px;
    transition:.3s;
}
.dropdown:hover .arrow{
    transform:rotate(180deg);
}

/* ===========================
   MEGA MENU (Desktop)
=========================== */
.mega-menu{
    position:absolute;
    top:48px;
    left:0;
    width:400px;
    background:#fff;
    border-radius:20px;
    padding:24px;
    box-shadow:0 20px 45px rgba(15,23,42,.12);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s ease;
    z-index:999;
}
.dropdown:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.menu-item{
    display:flex !important;
    align-items:flex-start;
    gap:16px;
    padding:12px;
    border-radius:12px;
    transition:.25s;
    text-decoration:none;
}
.menu-item:hover{
    background:#F8FAFC;
}
.icon{
    width:44px;
    height:44px;
    border-radius:12px;
    background:#EEF7FF;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:20px;
}
.content h4{
    margin:0 0 4px;
    color:#0F172A;
    font-size:14px;
    font-weight:500;
    line-height:1.4;
}
.content p{
    margin:0;
    color:#64748B;
    font-size:12px;
    font-weight:400;
    line-height:1.5;
}

/* ===========================
   HAMBURGER BUTTON (hidden on desktop by default)
=========================== */
.menu-toggle,
button.menu-toggle,
.main-menu button.menu-toggle{
    all:unset; /* nukes Elementor/theme default button styles (bg color, padding, radius, box-shadow) */
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    box-sizing:border-box;
    border:none !important;
    background:transparent !important;
    background-color:transparent !important;
    box-shadow:none !important;
    border-radius:0 !important;
    cursor:pointer;
    position:relative;
    z-index:1000;
    flex-shrink:0;
}
.menu-toggle span{
    display:block;
    width:24px;
    height:2px;
    background:#0F172A;
    margin:5px auto;
    transition:.3s;
    pointer-events:none;
}

/* Optional: animate hamburger into X when menu is active */
.main-menu.active .menu-toggle span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}
.main-menu.active .menu-toggle span:nth-child(2){
    opacity:0;
}
.main-menu.active .menu-toggle span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

/* ===========================
   RESPONSIVE MENU (Tablet + Mobile)
=========================== */
@media (max-width:1024px){

    .main-menu{
        position:relative;
        display:flex !important;
        align-items:center;
        justify-content:flex-end;
        width:100% !important;
        min-height:42px; /* prevents zero-height collapse from lazyload/parent flex issues */
    }

    /* Force the hamburger to show — high specificity + !important to beat
       any Elementor "hide on mobile/tablet" injected rules */
    .main-menu .menu-toggle{
        display:flex !important;
        visibility:visible !important;
        opacity:1 !important;
        background:transparent !important;
        border:none !important;
        box-shadow:none !important;
    }
    .main-menu .menu-toggle span{
        background:#0F172A !important;
        display:block !important;
        opacity:1 !important;
    }

    /* Blurred backdrop overlay, shown only when menu is open */
    .main-menu::before{
        content:'';
        position:fixed;
        inset:0;
        background:rgba(15,23,42,.45);
        backdrop-filter:blur(6px);
        -webkit-backdrop-filter:blur(6px);
        opacity:0;
        visibility:hidden;
        transition:opacity .35s ease, visibility .35s ease;
        z-index:998;
    }
    .main-menu.active::before{
        opacity:1;
        visibility:visible;
    }

    .main-menu ul{
        position:fixed;
        top:0;
        right:0;
        left:20px; /* 20px gap from the left edge of the screen */
        height:100vh;
        width:auto;
        max-width:none;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        background:#fff;
        padding:80px 20px 24px;
        border-radius:0;
        box-shadow:-10px 0 40px rgba(15,23,42,.15);
        overflow-y:auto;
        transform:translateX(100%);
        transition:transform .35s ease;
        z-index:999;
    }
    .main-menu.active ul{
        transform:translateX(0);
    }

    /* Pin the toggle button to the top of the screen while the drawer is open */
    .main-menu.active .menu-toggle{
        position:fixed;
        top:20px;
        right:24px;
    }
    .main-menu li{
        width:100%;
    }
    .main-menu a{
        width:100%;
        justify-content:space-between;
        padding:14px 16px;
        border-radius:10px;
    }
    .main-menu a:hover{
        background:#F8FAFC;
    }

    /* Disable hover dropdown, enable click dropdown */
    .mega-menu{
        position:static;
        width:100%;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        box-shadow:none;
        border-radius:12px;
        padding:12px;
        margin-top:6px;
        background:#F8FAFC;
    }
    .dropdown:hover .mega-menu{
        display:none;
    }
    .dropdown.active .mega-menu{
        display:block;
    }
    .menu-item{
        padding:10px;
    }
}

/* ===========================
   SMALL MOBILE
=========================== */
@media (max-width:480px){
    .main-menu a{
        font-size:15px;
    }
    .icon{
        width:38px;
        height:38px;
    }
    .content h4{
        font-size:13px;
    }
    .content p{
        font-size:11px;
    }
}/* End custom CSS */