.elementor-42 .elementor-element.elementor-element-2b57b088{padding:0% 5% 0% 5%;z-index:1000;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-2415311 *//* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 40px;
}

/* LOGO */
.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #1a3c5e;
    text-decoration: none;
}
.logo span {
    color: #f97316;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

/* BUTTONS */
.nav-btns {
    display: flex;
    gap: 12px;
}

.btn-outline {
    padding: 10px 22px;
    border-radius: 8px;
    border: 1.5px solid #1a3c5e;
    color: #1a3c5e;
    text-decoration: none;
}

.btn-primary {
    padding: 10px 22px;
    border-radius: 8px;
    background: #f97316;
    color: #fff;
    text-decoration: none;
}

/* DROPDOWN */
.services-parent {
    position: relative;
}

.services-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    list-style: none;
    padding: 10px 0;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: none;
}

.services-parent:hover .services-menu {
    display: block;
}

.services-menu li a {
    display: block;
    padding: 10px 20px;
    color: #1a3c5e;
}

.services-menu li a:hover {
    background: #f8fafc;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-btns {
        display: none;
    }

    /* Dropdown mobile */
    .services-menu {
        position: relative;
        border: none;
        box-shadow: none;
        display: none;
    }

    .services-menu.active {
        display: block;
    }
}/* End custom CSS */