/* ===== تخصيص شريط التمرير ===== */
html.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-dark);
}

html.custom-scrollbar::-webkit-scrollbar {
    width: 10px;
}

html.custom-scrollbar::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

html.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 6px;
    border: 2px solid var(--bg-dark);
}

/* إصلاح مشكلة التمرير على الأجهزة المحمولة واللابتوب */
html, body {
    height: auto !important;
    overflow-y: auto !important;
    position: relative;
}

section {
    overflow: visible !important;
}

.portfolio-grid, 
.services-grid, 
.about-features, 
.skills-circles,
.testimonials-slider {
    overflow: visible !important;
}

/* تحسين التمرير على الأجهزة المحمولة */
@media (max-width: 992px) {
    html, body {
        -webkit-overflow-scrolling: touch;
    }
    
    .container {
        overflow: visible !important;
    }
}
