/* Sections Styles */


.growth-section-with-bg {
    position: relative;
    background-image: url('../assets/img/bgstat.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 80vh;
    padding: 4rem 0;
    display: flex;
    align-items: center;
}

.growth-section-with-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 43, 83, 0.1); /* dark blue overlay */
    z-index: 1;
}

.growth-section-with-bg .container {
    z-index: 2;
}

.growth-divider {
    width: 60px;
    height: 3px;
    background-color: #f4a261;
}

.circle-stat {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

@media (max-width: 767px) {
    .circle-stat {
        width: 120px;
        height: 120px;
        font-size: 1.5rem;
    }
}
