/* =========================================
   1. GLOBAL DARI FONT (VAZIRMATN)
   ========================================= */
/* Targets all Dari/RTL content across the entire site */
[dir="rtl"], 
.persian-text, 
[lang="fa"], 
[lang="ps"] {
    font-family: 'Vazirmatn', sans-serif !important;
}
}

/* --- TEAM MEMBER CARD (Fixed Screenshot Issues) --- */
.team-horizontal-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.team-card-wrapper {
    flex: 0 0 300px; /* Width of the photo card */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-img-wrapper {
    width: 100%;
    height: 350px; /* Forces all team photos to same height */
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents stretching */
    object-position: top;
}

.team-info-bar {
    background: #F57C00; /* Afghan Cyber Orange */
    padding: 12px;
    text-align: center;
    color: #ffffff;
}

.team-info-bar h4 { margin: 0; font-weight: 700; font-size: 1.1rem; }
.team-info-bar span { font-size: 0.85rem; opacity: 0.9; }

.team-text-wrapper {
    flex: 1;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .team-horizontal-layout {
        flex-direction: column;
        align-items: center;
    }
    .team-card-wrapper { width: 100%; max-width: 350px; }
}
/* Fix for Client Slider Navigation Buttons */
.clients-section .position-relative {
    padding: 0 50px; /* Space for buttons */
}

.clients-nav-btn {
    color: #F57C00 !important; /* Brand Orange */
    width: 40px !important;
    height: 40px !important;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 10;
}

.clients-nav-btn::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.clients-nav-btn:hover {
    background: #F57C00;
    color: #fff !important;
}

/* Ensure one line for logos */
.clients-slider .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}