.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;
    }
}


.cta-box {
    background: oklch(0.96 0.02 225.77);
    border: 1px solid var(--color-primary);
    border-radius: 14px;
    padding: 40px 20px;        
}

:root.dark .cta-box{
    background: #08181f;        
}

.cta-text {
    font-size: 14px;
    color: #888;
    max-width: 620px;
    margin: 0 auto;
}

.cta-btn-primary {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
}

.cta-btn-outline {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    color: #60a5fa;
    border-color: #2563eb;
}

.cta-btn-outline:hover {
    background: rgba(37,99,235,0.15);
}

.project-info-box {
    background: #f3f9ff;
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: left;
}

:root.dark .project-info-box{
    background: linear-gradient(180deg, #0b1220, #070d1a);
}

.info-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.info-value {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
}

.country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.country-tags .tag {
    background: rgba(37,99,235,0.15);
    color: #60a5fa;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}