/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* HERO */
.hero{
    padding:90px 0;
    min-height:60vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#349ef4,#86c2f6,#25cced);
    overflow:hidden;
}

.badge-custom{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#88c0f5;
    color:#f0f0f0;
    font-size:14px;
    font-weight:500;
    margin-bottom:20px;
}

.hero h1{
    font-size:45px;
    font-weight:500;
    color:#ebedf4;
    margin-bottom:20px;
}

.hero p{
    font-size:17px;
    color:#ebe9e9;
}

.product-circle{
    width:520px;
    height:520px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#80b5f6,#87d0ff);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.product-circle img{
    width:80%;
}

/* SECTION */
section{
    padding:90px 0;
}

section h2{
    font-size:35px;
    color:#0b1f54;
    font-weight:500;
    margin-bottom:20px;
}

/* FEATURE CARD */
.features{
    background:#fff;
}

.feature-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card h5{
    color:#4a77f1;
    font-weight:600;
    margin:20px 0 15px;
}

.feature-card p{
    color:#666;
    font-size:15px;
}

.icon{
    font-size:48px;
}

/* SPECIFICATION */
.specification{
    background:#f5fbff;
}

.spec-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    padding:18px 22px;
    margin-bottom:18px;
    border-radius:12px;
    border-radius:15px;
    border-left:5px solid #0d6efd;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.spec-box:hover{
    transform:translateX(8px);
}

.spec-box div:first-child{
    font-weight:600;
    color:#0b1f54;
}

.spec-box div:last-child{
    color:#0d6efd;
    font-weight:500;
}

/* CTA */
.cta{
    background:linear-gradient(135deg,#39a2f7,#91c6f3,#48def5);
    color:#fff;
    text-align:center;
}

.cta h2{
    color:#fff;
    margin-bottom:20px;
}

.cta p{
    max-width:800px;
    margin:auto;
    margin-bottom:35px;
    font-size:17px;
}

.cta .btn1{
    background:#fff;
    color:#0d6efd;
}

.cta .btn1:hover{
    background:#3a6bf0;
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:992px){
    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:40px;
    }

    .product-circle{
        width:380px;
        height:380px;
        margin-top:50px;
    }

}

@media(max-width:768px){
    .hero{
        padding:60px 0;
    }

    .hero h1{
        font-size:32px;
    }

    .product-circle{
        width:280px;
        height:280px;
    }

    .product-circle img{
        width:75%;
    }

    .btn2{
        margin-left:0;
        margin-top:15px;
    }

    section{
        padding:70px 0;
    }

    section h2{
        font-size:30px;
    }

    .spec-box{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }

}

/* TABLET (769px - 991px) */
@media (min-width:769px) and (max-width:991px){
    .hero{
        padding:70px 0;
        text-align:center;
    }

    .hero h1{
        font-size:38px;
        line-height:1.3;
    }

    .hero p{
        font-size:16px;
        max-width:650px;
        margin:0 auto;
    }

    .badge-custom{
        font-size:13px;
        padding:8px 16px;
    }

    .product-circle{
        width:360px;
        height:360px;
        margin:40px auto 0;
    }

    .product-circle img{
        width:78%;
    }

    section{
        padding:80px 0;
    }

    section h2{
        font-size:32px;
    }

    .feature-card{
        padding:30px 20px;
    }

    .feature-card h5{
        font-size:20px;
    }

    .feature-card p{
        font-size:15px;
    }

    .icon{
        font-size:42px;
    }

    .spec-box{
        padding:18px 20px;
    }

    .rotate-small{
        height:360px;
    }

}

/* MOBILE (768px and below) */
@media (max-width:768px){
    .hero{
        padding:60px 0;
        text-align:center;
    }

    .hero h1{
        font-size:32px;
    }

    .hero p{
        font-size:16px;
    }

    .product-circle{
        width:280px;
        height:280px;
    }

    .product-circle img{
        width:75%;
    }

    .btn2{
        margin-left:0;
        margin-top:15px;
    }

    section{
        padding:70px 0;
    }

    section h2{
        font-size:30px;
    }

    .spec-box{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }

    .rotate-small{
        height:250px;
    }
}