*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    background:linear-gradient(135deg,#0b4fa2,#1aa86f);

    position:relative;
}

/* Background */

.background-shapes span{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:float 10s infinite ease-in-out;
}

.background-shapes span:nth-child(1){

    width:350px;
    height:350px;

    left:-120px;
    top:-100px;
}

.background-shapes span:nth-child(2){

    width:250px;
    height:250px;

    right:-80px;
    bottom:-60px;

    animation-delay:2s;
}

.background-shapes span:nth-child(3){

    width:160px;
    height:160px;

    top:60%;
    left:15%;

    animation-delay:4s;
}

.container{

    width:92%;
    max-width:850px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.25);

    border-radius:25px;

    padding:60px 40px;

    text-align:center;

    color:#fff;

    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.logo{

    width:120px;
    height:120px;

    margin:auto;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#fff;

    color:#0b4fa2;

    font-size:55px;

    box-shadow:0 15px 40px rgba(0,0,0,.2);
}

h1{

    margin-top:25px;

    font-size:42px;

    letter-spacing:4px;

    font-weight:700;
}

h2{

    margin-top:10px;

    color:#d9fff0;

    font-size:30px;
}

p{

    margin-top:20px;

    line-height:1.8;

    color:#eefdf8;

    font-size:17px;
}

.icons{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:45px;

    flex-wrap:wrap;
}

.icon-box{

    width:130px;

    padding:25px 15px;

    border-radius:18px;

    background:rgba(255,255,255,.12);

    transition:.3s;
}

.icon-box:hover{

    transform:translateY(-8px);

    background:#fff;

    color:#0b4fa2;
}

.icon-box i{

    font-size:38px;

    margin-bottom:15px;
}

.icon-box span{

    display:block;

    font-weight:600;
}

.divider{

    width:140px;

    height:4px;

    background:#7cffd6;

    margin:45px auto;

    border-radius:10px;
}

.contact{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    font-size:16px;
}

.contact p{

    margin:0;
}

.contact i{

    color:#9fffdc;

    margin-right:8px;
}

@keyframes float{

    50%{

        transform:translateY(-30px);
    }
}

@media(max-width:768px){

    .container{

        padding:40px 25px;
    }

    h1{

        font-size:32px;
    }

    h2{

        font-size:24px;
    }

    .logo{

        width:90px;
        height:90px;

        font-size:42px;
    }

    .icons{

        gap:15px;
    }

    .icon-box{

        width:140px;
    }

}
.products{

    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));

    gap:20px;

}

.product{

    padding:25px;

    background:rgba(255,255,255,.08);

    border-radius:18px;

    transition:.35s;

}

.product:hover{

    background:#fff;

    color:#0b4fa2;

    transform:translateY(-6px);

}

.product i{

    font-size:34px;

    color:#72ffd4;

    margin-bottom:15px;

}

.product:hover i{

    color:#0b4fa2;

}

.product h3{

    font-size:17px;

    font-weight:600;

}