.elementor-52 .elementor-element.elementor-element-58ff78e{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:767px){.elementor-52 .elementor-element.elementor-element-58ff78e{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-108aaa6 *//* =========================
   HEADER
========================= */
.main-header {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* =========================
   CONTAINER
========================= */
.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* =========================
   LOGO
========================= */
.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.12);
}

/* =========================
   NAV MENU
========================= */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #064375, #024379);
    transition: width 0.35s ease;
    border-radius: 5px;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #313b43;
  
}

/* =========================
   HAMBURGER BUTTON – MOBILE ONLY
========================= */
.menu-toggle {
    display: none !important; /* hidden on desktop */
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: #ffffff !important;
    color: #000000 !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    z-index: 1001;
}

.menu-toggle:hover {
    background: #e6f0ff;
    color: #000000;
}

/* Hamburger to cross */
.menu-toggle::before {
    content: "\2630"; /* hamburger icon */
    font-size: 36px;
    line-height: 1;
    display: block;
}

.menu-toggle.active::before {
    content: "\2715"; /* cross icon */
    font-size: 36px;
    line-height: 1;
}

/* =========================
   MOBILE MENU
========================= */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important; /* visible on mobile */
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
        z-index: 999;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .nav-menu ul li {
        border-bottom: 1px solid #eee;
        text-align: center;
        width: 100%;
    }

    .nav-menu ul li a {
        display: block;
        padding: 15px;
    }
}

/* =========================
   SLIDE DOWN ANIMATION
========================= */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* End custom CSS */