/* ===== Hero Overlay ===== */
.hero-overlay {
    background: linear-gradient(to left, rgba(12, 74, 77, 0.9) 0%, rgba(12, 74, 77, 0.4) 50%, transparent 100%);
}

/* ===== شريط التقدم المطور ===== */
.indicator-item {
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-bar-bg {
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
    border-radius: 4px;
}
.progress-fill {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: white;
    width: 0%;
    transition: width 5s linear;
}
.indicator-item.active .progress-fill {
    width: 100%;
    background: #c5a059;
}
.indicator-item.active { opacity: 1; }
.indicator-item:not(.active) { opacity: 0.6; }

/* ===== حركات النصوص ===== */
.animate-text {
    animation: slideUp 0.8s forwards;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Project Cards ===== */
.project-card img { transition: transform 0.6s ease; }
.project-card:hover img { transform: scale(1.1); }
