:root{
    --primary:#0d6efd;
    --secondary:#0a58ca;
    --dark:#0b2340;
    --light:#f8fbff;
    --white:#ffffff;
    --text:#555;
    --shadow:0 15px 35px rgba(80, 146, 244, 0.15);
}

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

/* Hero */
.hero{
    padding:90px 0;
    background:linear-gradient(135deg,#2f76f0,#5ec8ee,#53c7f1);
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(35, 122, 253, 0.08);
    border-radius:50%;
    top:-180px;
    right:-120px;
}

.hero::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(62, 137, 249, 0.05);
    border-radius:50%;
    bottom:-120px;
    left:-80px;
}

.hero h1{
    font-size:3rem;
    font-weight:500;
    color:#fff;
    margin:20px 0;
}

.hero p{
    font-size:1.05rem;
    color:#fff;
}

.badge-custom{
    display:inline-block;
    padding:10px 18px;
    background:rgba(199, 205, 214, 0.1);
    color:#fff;
    border-radius:50px;
    font-weight:600;
}

/* Image */
.image-circle{
    width:480px;
    height:480px;
    background:#7ed5f5;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    box-shadow:var(--shadow);
}

.rotate-img{
    width:90%;
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

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

    100%{
        transform:translateY(0px);
    }

}

/* Common Section */
section{
    padding:90px 0;
}

.section-title{
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.4rem;
    color:var(--dark);
    font-weight:500;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
}

/* About */
.about img{
    border-radius:35px;
    transition:.5s;
    box-shadow:var(--shadow);
}

.about img:hover{
    transform:scale(1.03);
}

.about h2{
    color:var(--dark);
    margin-bottom:20px;
}

.list-group-item{
    border:none;
    padding:12px 0;
    background:transparent;
    font-weight:500;
}

.tick{
    color: #28a745;      /* Green */
    font-size: 18px;     /* Bigger tick */
    font-weight: bold;
    margin-right: 10px;
    vertical-align: middle;
}


/* Features */
.features{
    background:#ffffff;
}

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

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(13,110,253,.18);
}

.icon{
    width:75px;
    height:75px;
    background:#5b9bf5;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    margin:auto auto 20px;
}

.feature-card h5{
    color:var(--dark);
    margin-bottom:15px;
    font-weight:500;
}

/* Benefits */
.benefits{
    background:linear-gradient(180deg,#f7fbff,#ffffff);
}

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

.benefit-box:hover{
    transform:translateY(-8px);
}

.benefit-box h4{
    color:var(--primary);
    margin-bottom:15px;
}

/* Process */
.process{
    background:#ffffff;
}

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

.step:hover{
    transform:translateY(-8px);
}

.step-number{
    width:70px;
    height:70px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    font-weight:500;
    margin:auto auto 20px;
}

.step h5{
    color:var(--dark);
    margin-bottom:15px;
}

/* Applications */
.applications{
    background:#f5f9ff;
}

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

.application-card:hover{
    transform:translateY(-8px);
}

.application-card h5{
    color:var(--primary);
    margin-bottom:15px;
}

/* CTA */
.cta{
    background:linear-gradient(135deg,#2f76f0,#5ec8ee,#53c7f1);
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:2.1rem;
    font-weight:500;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto auto 30px;
}

.cta .btn{
    padding:14px 40px;
    border-radius:50px;
    font-weight:500;
    transition:.4s;
}

.cta .btn:hover{
    transform:translateY(-5px);
}


/* Animations */
.feature-card,
.benefit-box,
.application-card,
.step,
.about img{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

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

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

    .hero h1{
        font-size:2rem;
    }

    .image-circle{
        width:320px;
        height:320px;
        margin-top:40px;
    }
}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    .hero h1{
        font-size:2rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .image-circle{
        width:270px;
        height:270px;
    }

    .feature-card,
    .benefit-box,
    .application-card,
    .step{
        padding:25px;
    }

    .cta h2{
        font-size:2rem;
    }
}

@media(max-width:576px){

    .hero{
        padding:60px 0;
    }

    .hero h1{
        font-size:1.8rem;
    }

    .image-circle{
        width:220px;
        height:220px;
    }

    .badge-custom{
        font-size:14px;
    }

    .btn-primary{
        width:100%;
    }
}