.navbar{
	background: #0b6094;
}
/* Main Section */
.process-wrapper{
    padding:0px 20px;
}

.process-box{
    border-radius:40px;
    padding:70px 60px;
    color:#fff;
}

/* Small Tag */
.process-tag{
    font-size:13px;
    letter-spacing:1px;
    color:#222;
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:50px;
}

.process-tag span{
    width:8px;
    height:8px;
    background:#3aa6ff;
    border-radius:50%;
    display:inline-block;
}

/* Heading */
.process-title{
    font-size:40px;
    font-weight:600;
    color: #000;
}

/* Cards */
.process-card{
    background:rgb(11,94,146);
    border-radius:25px;
    padding:35px;
    height:100%;
    transition:0.3s ease;
}

.process-card:hover{
    background:rgb(11,94,146,0.8);
    transform:translateY(-6px);
}

.process-card h5{
    font-size:18px;
    margin-bottom:15px;
}

.process-card p{
    font-size:14px;
    opacity:0.8;
}

/* Bottom CTA */
.process-cta{
    background:rgb(11,94,146);
    border-radius:20px;
    padding:20px 30px;
    margin-top:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.process-cta img{
    width:40px;
    height:40px;
    border-radius:50%;
    margin-right:-10px;
    border:2px solid #0d1b5e;
}

.start-btn{
    background:#fff;
    color:#0d1b5e;
    padding:10px 25px;
    border-radius:50px;
    font-weight:500;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.start-btn:hover{
    background:#e6e6e6;
}

/* Responsive */
@media(max-width:991px){
.process-box{
    padding:50px 30px;
}
.process-title{
    font-size:30px;
}
.process-cta{
    flex-direction:column;
    align-items:flex-start;
}
}