body {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 0;
}

.site-header {
    padding: 20px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 20;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border-radius: 16px;
    gap: 15px;
}

.site-branding {
    display: flex;
}

.custom-logo-link {
    max-width: 220px;
    width: 100%;
    display: flex;
}

.custom-logo-link img {
    height: auto;
    width: 100%;
}

.main-navigation {
    width: fit-content;
}

.main-navigation ul {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .header-actions {
    display: none;
}

.main-navigation ul li {
    margin: 0;
}

.main-navigation a {
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #3b4fa3;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.login-btn {
    color: #1E3A8A;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.get-started-btn {
    background: #1E3A8A;
    color: #FFFFFF;
    text-decoration: none;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 21px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    transition: all .3s ease;
}

.el-btns .elementor-button {
    position: relative;
    overflow: hidden;
}

.el-btns .elementor-button::before,
.get-started-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    -webkit-transform: skewx(-20deg);
    -khtml-transform: skewx(-20deg);
    -moz-transform: skewx(-20deg);
    -ms-transform: skewx(-20deg);
    -o-transform: skewx(-20deg);
    transform: skewx(-20deg);
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, .35), transparent);
    z-index: 1;
}

.get-started-btn:hover {
    background: #000000;
    color: #fff;
}

.el-btns:hover .elementor-button::before,
.get-started-btn:hover::before {
    -webkit-animation: pxl_btn_shine 1.8s ease;
    animation: pxl_btn_shine 1.8s ease;
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

.el-btns .elementor-button-icon {
    width: 20px;
    height: 20px;
    font-size: 24px;
    line-height: 21px;
}

@keyframes pxl_btn_shine {
    0% {
        left: -200%;
    }

    100% {
        left: 200%;
    }
}

.menu-toggle {
    padding: 0 !important;
    display: none;
    background-color: transparent !important;
    border: 0;
    width: 24px;
    height: 16px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1E3A8A;
    position: relative;
}

.menu-toggle span::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #1E3A8A;
    top: 7px;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #1E3A8A;
    top: 14px;
    left: 0;
    transition: all 0.3s ease;
}

.site-title,
.site-description {
    display: none;
}

.entry-header .entry-title {
    display: none;
}

.sub-heading {
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 5px;
    margin: 0 auto;
    background: #FFFFFF;
}

.sub-heading p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub-heading span {
    font-size: 14px;
    line-height: 18px;
    padding: 5px 12px;
    background: #1E3A8A;
    border-radius: 7px;
    color: #ffffff;
    display: flex;
    align-items: center;
}


/* Responsive Styles */
@media only screen and (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .custom-logo-link {
        width: 180px;
    }

    .header-container {
        padding: 12px 16px;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 16px;
        width: calc(100% - 32px);
        background-color: #FFFFFF;
        border-radius: 16px;
        padding: 20px;
        z-index: 11;
        display: none;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 16px;
    }

    .main-navigation a {
        text-align: center;
    }

    .main-navigation ul li {
        padding: 0 0 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #E5E7EB;
    }

    .main-navigation .header-actions {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-top: 16px;
    }

    .main-navigation .get-started-btn {
        width: 100%;
        text-align: center;
        color: #FFFFFF;
    }

    .main-navigation .get-started-btn:hover {
        color: #FFFFFF;
    }

    body.menu-active .main-navigation {
        display: block;
    }

    .menu-toggle.menu-active span {
        background-color: transparent;
    }

    .menu-toggle.menu-active span::before {
        transform: translate3d(0, 10px, 0) rotate(45deg);
        top: -2px;
    }

    .menu-toggle.menu-active span::after {
        transform: translate3d(0, 10px, 0) rotate(-45deg);
        top: -2px;
    }
}