.elementor-kit-6{--e-global-color-primary:#94A3B8;--e-global-color-secondary:#2563EB;--e-global-color-text:#E2E8F0;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */body {
    background-color: #020610;
    margin: 0;
    min-height: 100vh;
    font-family: ui-sans-serif, system-ui, sans-serif;
    color: #e2e8f0;
    position: relative;
    overflow-x: hidden; 
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    pointer-events: none;

    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    
    background-size: 55px 55px;
    
    animation: cellMove 20s linear infinite;

    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 100%);
}

body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -2;
    pointer-events: none;

    background-image: 
        radial-gradient(circle at center, rgba(30, 58, 138, 0.15) 0%, transparent 70%),
        radial-gradient(circle at center, rgba(22, 78, 99, 0.15) 0%, transparent 60%);

    background-repeat: no-repeat;
    
    animation: blobSway 10s ease-in-out infinite alternate;
    
    will-change: background-position;
}

@keyframes cellMove {
    0% { background-position: 0px 0px; }
    100% { background-position: 55px 55px; }
}

@keyframes blobSway {
    0% {
        background-position: 50% 50%, 50% 50%;
    }
    100% {
        background-position: 40% 40%, 60% 60%;
    }
}/* End custom CSS */