.elementor-1644 .elementor-element.elementor-element-7bb9641{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-1c72b62 */```css
body{
    margin:0;
    background:#050816;
    color:#fff;
    font-family:Poppins,sans-serif;
    overflow-x:hidden;
}

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 8%;
}

.hero-container{
    display:grid;
    grid-template-columns:500px 1fr;
    gap:80px;
    align-items:center;
    z-index:2;
}

.image-frame{
    position:relative;
}

.image-frame::before{
    content:"";
    position:absolute;
    inset:-10px;
    background:linear-gradient(
    135deg,
    #38bdf8,
    #8b5cf6,
    #06b6d4);
    border-radius:30px;
    z-index:-1;
    filter:blur(25px);
}

.image-frame img{
    width:100%;
    border-radius:30px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.badge{
    display:inline-block;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.15);
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:4.5rem;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.15rem;
    line-height:1.9;
    color:#cbd5e1;
    max-width:700px;
}

.btn-primary{
    display:inline-block;
    margin-top:30px;
    padding:16px 34px;
    border-radius:12px;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(
    135deg,
    #38bdf8,
    #8b5cf6);
    transition:.4s;
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.background-animation span{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    animation:float 12s infinite;
}

.background-animation span:nth-child(1){
    width:300px;
    height:300px;
    background:#38bdf8;
    top:10%;
    left:5%;
}

.background-animation span:nth-child(2){
    width:250px;
    height:250px;
    background:#8b5cf6;
    bottom:10%;
    right:10%;
}

.background-animation span:nth-child(3){
    width:200px;
    height:200px;
    background:#06b6d4;
    top:50%;
    left:50%;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-40px);
}

100%{
transform:translateY(0);
}

}

@media(max-width:991px){

.hero-container{
grid-template-columns:1fr;
text-align:center;
}

.hero-content h1{
font-size:3rem;
}

}
```/* End custom CSS */