/* HERO */
.hero{
    padding:90px 0;
    background:linear-gradient(135deg,#0056b3,#00b4ff);
    overflow:hidden;
    color:#fff;
}

.badge-custom{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.15);
    border-radius:30px;
    font-size:17px;
    margin-bottom:20px;
}

.hero h1{
    font-size:40px;
    font-weight:400;
    line-height:1.1;
}

.hero p{
    font-size:17px;
    margin-top:25px;
    max-width:500px;
}

.product-circle{
    width:480px;
    height:480px;
    background:rgba(255,255,255,.12);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
}

/* FEATURES SECTION */
.features{
    padding:80px 0;
    background:#f8fbff;
}

.features h2{
    font-size:35px;
    font-weight:100;
    color:#11223b;
    margin-bottom:15px;
}

.features p{
    color:#666;
    font-size:16px;
}

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

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,136,204,.2);
}

.feature-card .icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#408af8,#76b8fa,#4aa3ff);
    color:#fff;
    font-size:34px;
    border-radius:50%;
    transition:0.4s;
}

.feature-card .icon i{
    font-size:45px;
}

.feature-card:hover .icon{
    transform:rotate(360deg) scale(1.08);
}

.feature-card h5{
    font-size:22px;
    font-weight:600;
    color:#222;
    margin-bottom:15px;
}

.feature-card p{
    font-size:15px;
    color:#666;
    line-height:1.8;
    margin-bottom:0;
}

/* SPECIFICATION */
.specification{
    background:#eef8ff;
    padding:80px 0;
}

.specification h2{
    font-size: 40px;
    font-weight: 300;
    
}

.spec-box{
    display:flex;
    justify-content:space-between;
    background:#fff;
    padding:18px 25px;
    margin-bottom:15px;
    border-radius:10px;
    border-left:6px solid #075de6;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.spec-box:hover{
    transform:translateX(8px);
    border-left:6px solid #00b4d8;
}

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

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

/* CTA */
.cta{
    background:linear-gradient(135deg,#117ff5,#57baf9,#009dff);
    color:#fff;
    padding:80px 0;
}

.cta h2{
    font-size:35px;
    font-weight:600;
}

.cta p{
    font-size:20px;
    margin:20px 0;
}

.cta .btn1{
    font-size:18px;
}

/* HERO RESPONSIVE */

/* Tablet */
@media (max-width: 991px) {

    .hero{
        padding:70px 0;
        text-align:center;
    }

    .hero .row{
        flex-direction:column;
    }

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

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

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

    .product-circle img{
        max-width:85%;
    }

    .btn1,
    .btn2{
        display:inline-block;
        margin:10px 8px;
    }

    .features{
        padding:60px 0;
    }

    .features h2{
        font-size:32px;
    }

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

}

/* Mobile */
@media (max-width:767px){

    .hero{
        padding:60px 0;
    }

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

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

    .hero p{
        font-size:15px;
        line-height:1.8;
    }

    .product-circle{
        width:280px;
        height:280px;
        margin:0 auto 35px;
    }

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

    .btn1,
    .btn2{
        display:inline-block;
        padding:12px 24px;
        font-size:15px;
        margin:8px;
    }

    .features{
        padding:50px 0;
    }

    .features h2{
        font-size:28px;
    }

    .feature-card{
        margin-bottom:20px;
    }

    .feature-card .icon{
        width:70px;
        height:70px;
        font-size:28px;
    }

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

}

/* Small Mobile */
@media (max-width:575px){

    .hero{
        padding:50px 0;
    }

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

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

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

    .btn1,
    .btn2{
        width:100%;
        max-width:220px;
        padding:12px 20px;
        font-size:15px;
    }

    .features h2{
        font-size:24px;
    }

    .features p{
        font-size:14px;
    }

    .feature-card{
        padding:25px 18px;
    }

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

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

}



