.elementor-13 .elementor-element.elementor-element-9d9d2ec{--display:flex;--min-height:100vh;--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;--justify-content:center;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}body.elementor-page-13{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(max-width:767px){.elementor-13 .elementor-element.elementor-element-9d9d2ec{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for container, class: .elementor-element-9d9d2ec *//* --- Custom CSS for a World-Class "Aurora Glass" Background --- */
/* This code creates the entire lighter, animated background effect FOR DESKTOP */
/* and disables it for mobile. */

/* 1. Prepare the main section container */
.main-container-area {
    position: relative; /* Anchor for the animated elements */
    z-index: 1;         /* Keep content on top */
    overflow: hidden;   /* Essential to contain the effect */
    
    /* 2. The New, Lighter Gradient Base (Desktop-first) */
    background-color: #1e293b; /* A deep slate blue as a fallback */
    background-image: radial-gradient(at 20% 25%, hsla(212,80%,55%,0.4) 0px, transparent 50%),
                      radial-gradient(at 78% 32%, hsla(280,70%,60%,0.3) 0px, transparent 50%),
                      radial-gradient(at 50% 80%, hsla(220,75%,65%,0.35) 0px, transparent 50%);
}

/* 3. The animated blobs (Desktop-first) */
.main-container-area::before,
.main-container-area::after {
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
}

.main-container-area::before {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -10%;
    background: rgba(79, 70, 229, 0.4); /* A vibrant Indigo */
    animation: bldr-aurora-1 30s infinite alternate cubic-bezier(0.39, 0.58, 0.57, 1);
}

.main-container-area::after {
    width: 500px;
    height: 500px;
    bottom: -15%;
    right: -20%;
    background: rgba(59, 130, 246, 0.3); /* The original Accent Blue */
    animation: bldr-aurora-2 35s infinite alternate-reverse cubic-bezier(0.39, 0.58, 0.57, 1);
}

/* 4. The fluid animation keyframes */
@keyframes bldr-aurora-1 {
    to { transform: translate(100px, 80px) scale(1.2) rotate(30deg); }
}

@keyframes bldr-aurora-2 {
    to { transform: translate(-80px, -60px) scale(0.9) rotate(-45deg); }
}


/* --- RESPONSIVE OVERRIDE FOR MOBILE --- */
/* On screens 767px wide or less, this code will run and turn off the effects. */
@media (max-width: 767px) {
    .main-container-area {
        /* Remove the background color and gradient images */
        background-color: unset;
        background-image: unset;
    }

    /* Completely hide the animated blobs on mobile */
    .main-container-area::before,
    .main-container-area::after {
        display: none;
    }
}/* End custom CSS */