.card .img{
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
    margin: 20px auto 10px auto;
} 
.approach-desc{
    margin: auto;
    width: 80.6%;
}  

.slider-container {
    width: 100%;
    position: relative;
    margin: auto;
    background-color: transparent;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.slide-image-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #007bff;
    flex-shrink: 0;
}

.slide-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    flex-grow: 1;
}

.nav-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    color: white;
    font-size: 18px;
    transition: background-color 0.3s ease;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dot-container {
    text-align: center;
    padding: 20px 0;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #888;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.yellow-outline{
    outline: 1px solid var(--color-secondary-dark);
}

.dot.active,
.dot:hover {
    background-color: var(--color-text);
}

@media screen and (max-width:592px){
    .approach-desc{
        margin: auto;
        width: 100%;
        font-size: 12px
    }   
    .about-us-text{
        width: 100%;            
    }
    .about-us-text p{
        font-size: 12px;
    }

    .about-us-text h2{
        font-size: 32px;
    }

    .slide-item{
        flex-direction: column;
        align-items: center;
    }     
    
    .row .counter-box{
        width: 50%;
    }

    .row .counter-box .count-number{
        font-size: 36px !important;
    }
}