.navbar{
	background: #0b6094;
}
.about .about-image {
    position: relative;
    margin-bottom: 30px;
}
.about .about-image .main-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about .about-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #04084d;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 120px;
}
.about .about-image .experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.about .about-image .experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}
.about .about-content {
    padding-left: 20px;
}
.about .about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}
.about .about-content p {
    margin-bottom: 1.5rem;
    color: #444d4d;
}
.why-choose {
    background-color: #f5f9fc;
    padding: 70px 0;
}
.stats-section {
    padding: 70px 20px;
    text-align: center;
    background: #f5f9fc;
}
.stats-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}
.stats-header p {
    font-size: 18px;
    color: #333;
    max-width: 900px;
    margin: auto;
}
.stats-grid {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.stat-item {
    flex: 1;
    min-width: 180px;
}
.stat-circle {
    width: 160px;
    height: 160px;
    background: #126a9b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    margin: 0 auto 20px;
}
@media(max-width: 567px){
	.stats-header h2 {
    font-size: 26px;
}
.stats-header p {
    font-size: 14px;
}
    .stat-circle {
        width: 130px;
        height: 130px;
        font-size: 34px;
    }
}

.steps-section{
    padding:50px 0;
    color:#fff;
        background: #0b6197;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title p{
    color:#aaa;
}

.step-card{
    text-align:center;
    position:relative;
    padding:20px 10px;
}

.step-circle{
    width:85px;
    height:85px;
    border-radius:50%;
    border:2px solid #f5f9fc;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    position:relative;
}

.step-circle span{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#fff;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

/* Curved Arrow */
.curve-arrow{
    position:absolute;
    right:-65px;
    top:45px;
    width:120px;
}

.curve-arrow svg{
    width:100%;
}

.step-title{
    font-weight:600;
    margin-bottom:10px;
}

.step-text{
        color: #f5f9fc;
    font-size: 13px;

}

.step-link{
    color:#ff7a00;
    text-decoration:none;
    font-size:14px;
}

/* Hide arrows mobile */
@media(max-width:991px){
    .curve-arrow{
        display:none;
    }
}