.elementor-18 .elementor-element.elementor-element-8f9dc32{--display:flex;--min-height:484px;--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;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-18 .elementor-element.elementor-element-8f9dc32{--content-width:100%;}}/* Start custom CSS for container, class: .elementor-element-8f9dc32 */.landing-home {
    position: relative !important;
    overflow: hidden !important;
    height: 100vh;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #4a008a, #6a1db8); /* Darker gradient */
}

/* Main line texture overlay */
.landing-home.elementor-element::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.02) 1px,
        transparent 1px,
        transparent 6px
    );
    background-size: auto;
    transform: rotate(30deg);
    z-index: 0;
}

/* Decorative moving lines */
.landing-home .overlay-line {
    position: absolute;
    width: 200%;
    height: 2px;
    background: rgba(255,255,255,0.05);
    top: 20%;
    left: -50%;
    transform: rotate(15deg);
    animation: lineMove 15s linear infinite;
    z-index: 0;
}

.landing-home .overlay-line:nth-child(2) {
    top: 40%;
    transform: rotate(-10deg);
    animation-delay: 2s;
}

.landing-home .overlay-line:nth-child(3) {
    top: 60%;
    transform: rotate(5deg);
    animation-delay: 4s;
}

/* Animation for lines */
@keyframes lineMove {
    0% { transform: translateX(0) rotate(15deg); }
    100% { transform: translateX(20%) rotate(15deg); }
}

/* Keep section content above overlays */
.landing-home .elementor-container {
    position: relative;
    z-index: 1;
}/* End custom CSS */