


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
/*
.hosting-hero{

    background:linear-gradient(135deg,#0b3b8f,#071d52);

    padding:90px 0;

    overflow:hidden;

}
*/

.hosting-hero{
    background: linear-gradient(135deg,#F7F1FF 0%, #ECE4FF 40%, #D8CCFF 100%);
    color:#1E1E1E;
}
/*
.hosting-container{

    width:90%;

    max-width:1300px;


    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}
*/



.hosting-container{

    width:92%;
    max-width:1320px;
    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}





.hero-left{
    max-width:100%;
}

.badge{

    background:#2ecc71;

    color:white;

    display:inline-block;

    padding:10px 20px;

    border-radius:40px;

    margin-bottom:25px;

    font-weight:bold;

}

.hero-left h1{

    font-size:64px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-left p{

/*    color:#d8e6ff; */
color:#000;

    font-size:20px;

    line-height:1.7;

    margin-bottom:30px;

}

.hero-features{

    display:flex;

    gap:25px;

    color:black;

    margin-bottom:40px;

    flex-wrap:wrap;
font-weight:800;
}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:#2ecc71;

    color:white;

    padding:18px 35px;

    border-radius:8px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    border:2px solid white;

    color:white;

    padding:18px 35px;

    border-radius:8px;

    text-decoration:none;

}

.hero-right{
    text-align:center;
    
      
}


.hero-right img{
    width:100%;
    max-width:620px;
    height:auto;
    
    animation:float 5s ease-in-out infinite;
    
    border-radius:24px;
     box-shadow:0 25px 60px rgba(58,31,214,.18);
}


@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}



.offer-badge{
    margin-top:35px;
    display:inline-block;
    background:#28c76f;
    color:#fff;
    padding:12px 22px;
    border-radius:50px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}