/* assets/css/style.css */
body { 
    font-family: 'Tajawal', sans-serif !important; 
    background-color: var(--light-color);
    color: var(--dark-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* شريط الأخبار */
.ticker-wrap { position: fixed; top: 0; width: 100%; height: 40px; background: #111; z-index: 2000; color: white; line-height: 40px; overflow: hidden; }
.ticker { display: inline-block; white-space: nowrap; padding-left: 100%; animation: ticker 25s linear infinite; }
.ticker-item { display: inline-block; padding: 0 2rem; font-weight: bold; }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(100%, 0, 0); } }
body.has-ticker { padding-top: 40px; }
body.has-ticker .navbar { top: 40px; }

/* Navbar */
.navbar { padding: 1.2rem 0; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1); background-color: transparent !important; z-index: 999; }
.navbar.scrolled-nav { background-color: rgba(255, 255, 255, 0.98) !important; backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); padding: 0.8rem 0; }
.navbar-brand { font-size: 1.8rem; font-weight: 900 !important; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-link { font-weight: 700; margin-left: 15px; transition: 0.3s; position: relative; padding: 0.5rem 0.8rem !important; border-radius: 8px; }
.nav-link:hover { color: var(--primary-color) !important; background-color: rgba(var(--primary-color), 0.08); }
.nav-link::after { content: ''; position: absolute; width: 0; height: 3px; background: var(--primary-color); bottom: 0; right: 50%; transform: translateX(50%); transition: width 0.3s ease; border-radius: 10px; }
.nav-link:hover::after { width: 70%; }

/* Hero Section */
.hero-section { background: linear-gradient(135deg, var(--dark-color) 0%, #0f172a 100%); color: white; padding: 180px 0 120px; text-align: center; position: relative; overflow: hidden; }
.hero-section::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 100%; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.4; }
.hero-title { font-size: 3.5rem; font-weight: 900; line-height: 1.2; margin-bottom: 1.5rem; background: linear-gradient(90deg, #fff, #a5b4fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.3rem; opacity: 0.85; max-width: 700px; margin: 0 auto 3rem; }
.btn-cta { padding: 15px 45px; font-size: 1.2rem; border-radius: 50px; transition: all 0.3s ease; font-weight: 800; letter-spacing: -0.5px; position: relative; overflow: hidden; z-index: 1; border: none; }
.btn-cta::before { content: ''; position: absolute; top: 0; right: 0; width: 0; height: 100%; background-color: rgba(255, 255, 255, 0.1); transition: width 0.5s ease; z-index: -1; }
.btn-cta:hover::before { width: 100%; }
.btn-cta:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important; }
.btn-primary-custom { background: var(--primary-color); color: white; }
.btn-primary-custom:hover { background: var(--secondary-color); color: white; }

/* Sections General */
.services-section { padding: 100px 0; background-color: var(--light-color); }
.feature-box { background: white; padding: 40px 30px; border-radius: 20px; height: 100%; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1); border: 1px solid transparent; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); text-align: center; position: relative; overflow: hidden; }
.feature-box::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 5px; background: var(--primary-color); transform: translateY(-100%); transition: transform 0.5s ease; }
.feature-box:hover::before { transform: translateY(0); }
.feature-box:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); border-color: rgba(0,0,0,0.05); }
.feature-icon-wrapper { font-size: 3.5rem; margin-bottom: 25px; display: inline-block; transition: all 0.5s ease; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.feature-box:hover .feature-icon-wrapper { transform: scale(1.1) rotate(5deg); }
.feature-box h4 { font-weight: 800; color: var(--dark-color); margin-bottom: 15px; font-size: 1.4rem; }
.feature-box p { color: var(--gray-medium); font-size: 1rem; line-height: 1.6; }

/* Portfolio */
.portfolio-section { padding: 100px 0; background-color: var(--gray-light); }
.project-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1); border: 1px solid rgba(0, 0, 0, 0.03); height: 100%; }
.project-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12); }
.project-img-wrapper { height: 250px; overflow: hidden; position: relative; }
.project-img-wrapper::after { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent); opacity: 0; transition: opacity 0.5s ease; }
.project-card:hover .project-img-wrapper::after { opacity: 1; }
.project-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.project-card:hover img { transform: scale(1.15); }
.project-body { padding: 30px; }
.project-category { font-size: 0.85rem; color: var(--primary-color); font-weight: 800; background: rgba(0,0,0, 0.05); padding: 6px 15px; border-radius: 30px; display: inline-block; margin-bottom: 15px; letter-spacing: -0.5px; }

/* Filter & Stats & Contact & Footer */
/* (تم نقل باقي التنسيقات هنا بنفس الطريقة...) */
.filter-btn { border: 2px solid #e2e8f0; background: white; color: #64748b; padding: 10px 28px; border-radius: 50px; font-weight: 800; margin: 5px; transition: all 0.3s ease; letter-spacing: -0.5px; }
.filter-btn:hover, .filter-btn.active { background: var(--primary-color); color: white; border-color: transparent; box-shadow: 0 8px 20px rgba(0,0,0, 0.1); transform: translateY(-3px); }
.stats-section { padding: 80px 0; background: linear-gradient(135deg, var(--dark-color) 0%, #0f172a 100%); color: white; }
.stat-box { text-align: center; padding: 30px; }
.stat-number { font-size: 3.5rem; font-weight: 900; background: linear-gradient(90deg, #fff, #a5b4fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 10px; }
.stat-text { font-size: 1.1rem; opacity: 0.85; font-weight: 600; }
.contact-section { padding: 100px 0; background-color: var(--light-color); }
.contact-box { background: white; padding: 50px; border-radius: 25px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); text-align: center; }
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: linear-gradient(135deg, #25D366, #128C7E); color: white; width: 70px; height: 70px; border-radius: 50%; text-align: center; font-size: 32px; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); z-index: 1000; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1); animation: pulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.15) rotate(5deg); box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
h2.section-title { font-size: 2.8rem; font-weight: 900; margin-bottom: 15px; background: linear-gradient(90deg, var(--dark-color), var(--primary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -1px; }
.section-subtitle { font-size: 1.3rem; color: var(--gray-medium); margin-bottom: 60px; max-width: 700px; margin-right: auto; margin-left: auto; }
.btn { border-radius: 12px; font-weight: 700; padding: 0.8rem 1.8rem; transition: all 0.3s ease; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.2rem; }
.mb-6 { margin-bottom: 4rem !important; }
.pb-6 { padding-bottom: 4rem !important; }
@media (max-width: 992px) { .hero-title { font-size: 2.8rem; } h2.section-title { font-size: 2.3rem; } }
@media (max-width: 768px) { .hero-title { font-size: 2.3rem; } h2.section-title { font-size: 2rem; } .hero-section { padding: 150px 0 80px; } .services-section, .portfolio-section { padding: 70px 0; } }
@media (max-width: 576px) { .hero-title { font-size: 2rem; } .btn-cta { padding: 12px 30px; font-size: 1rem; } .filter-btn { padding: 8px 20px; font-size: 0.9rem; } }