:root { --primary-color: #003080; --secondary-color: #0ea5e9; --accent-color: #22c55e; --text-dark: #0f172a; --text-muted: #6b7280; --bg-body: #f3f4f6; --bg-light: #f9fafb; --bg-white: #ffffff; --border-color: #e5e7eb; --shadow: 0 8px 22px rgba(15, 23, 42, 0.06); --shadow-hover: 0 18px 45px rgba(15, 23, 42, 0.16); } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: 'Cairo', 'Tajawal', 'Segoe UI', Tahoma, sans-serif; direction: rtl; text-align: right; line-height: 1.8; color: var(--text-dark); background-color: var(--bg-body); } main { min-height: 100vh; } a { text-decoration: none; color: inherit; transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; } p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1rem; } ul { list-style-position: inside; } svg { width: 1em; height: 1em; fill: currentColor; } .logo-icon { width: 2.4rem; height: 2.4rem; font-size: 2rem; color: var(--primary-color); fill: currentColor; display: inline-flex; align-items: center; justify-content: center; } .feature-icon svg, .service-icon svg, .coverage-icon svg { width: 3rem; height: 3rem; } .contact-icon svg { width: 2rem; height: 2rem; fill: #ffffff; } .inline-icon { width: 1.1rem; height: 1.1rem; vertical-align: middle; margin-inline-end: 0.4rem; fill: currentColor; } h1, h2, h3, h4, h5, h6 { font-weight: 700; margin-bottom: 0.75rem; line-height: 1.4; } h1 { font-size: clamp(2.3rem, 4vw, 3rem); } h2 { font-size: clamp(2rem, 3vw, 2.4rem); } h3 { font-size: 1.4rem; } .h1 { color: #ffffff; } header { background-color: rgba(255, 255, 255, 0.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(148, 163, 184, 0.15); position: sticky; top: 0; z-index: 1000; transition: background-color 0.25s ease, box-shadow 0.25s ease; } .header-container { max-width: 1200px; margin: 0 auto; padding: 0.9rem 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; } .logo { display: flex; align-items: center; gap: 0.75rem; } .logo h2 { font-size: 1.4rem; color: var(--primary-color); margin: 0; } .logo p { font-size: 0.85rem; color: var(--text-muted); margin: 0; } nav ul { display: flex; list-style: none; gap: 1.8rem; align-items: center; } nav ul li { position: relative; } nav ul li a { position: relative; color: var(--text-dark); font-weight: 600; font-size: 0.98rem; padding: 0.4rem 0; } nav ul li a::after { content: ''; position: absolute; right: 0; bottom: -0.35rem; width: 0; height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); transition: width 0.25s ease; } nav ul li a:hover { color: var(--primary-color); } nav ul li a:hover::after { width: 100%; } .dropdown-menu { display: none; position: absolute; top: 110%; right: 0; background-color: var(--bg-white); box-shadow: var(--shadow); border-radius: 12px; min-width: 280px; padding: 0.5rem 0; border: 1px solid rgba(148, 163, 184, 0.2); z-index: 1000; } .dropdown:hover .dropdown-menu { display: block; } .dropdown-menu li a { padding: 0.7rem 1.4rem; display: block; color: var(--text-dark); font-weight: 500; } .dropdown-menu li a::after { display: none; } .dropdown-menu li a:hover { background-color: var(--bg-light); color: var(--primary-color); padding-right: 1.9rem; } .mobile-menu-toggle { display: none; font-size: 1.7rem; background: none; border: none; color: var(--primary-color); cursor: pointer; } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1.9rem; border-radius: 999px; font-weight: 600; cursor: pointer; font-size: 0.98rem; border: none; outline: none; white-space: nowrap; box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12); transform: translateY(0); } .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); } .btn-primary { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: #ffffff; } .btn-primary:hover { background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); } .btn-whatsapp { background: linear-gradient(135deg, #22c55e, #16a34a); color: #ffffff; } .btn-whatsapp:hover { background: linear-gradient(135deg, #16a34a, #22c55e); } .btn-outline { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); box-shadow: none; } .btn-outline:hover { background: var(--primary-color); color: #fff; box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35); } .btn-icon { width: 1.2rem; height: 1.2rem; } .section { padding: 4rem 1.5rem; } .section-light { background-color: var(--bg-light); } .container { max-width: 1200px; margin: 0 auto; } .section-title { text-align: center; margin-bottom: 3rem; } .section-title h2 { color: var(--text-dark); font-size: clamp(2rem, 3vw, 2.4rem); position: relative; display: inline-block; padding-bottom: 0.8rem; } .section-title h2::after { content: ''; position: absolute; right: 50%; transform: translateX(50%); bottom: 0; width: 80px; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); } .section-title p { font-size: 1.05rem; color: var(--text-muted); margin-top: 1rem; } .card { background: var(--bg-white); border-radius: 18px; padding: 2rem 1.8rem; box-shadow: var(--shadow); border: 1px solid rgba(148, 163, 184, 0.16); } .card p:not(:last-child) { margin-bottom: 1.2rem; } .hero { position: relative; overflow: hidden; padding: 6rem 1.5rem 5rem; color: #f9fafb; text-align: center; isolation: isolate; background: radial-gradient(circle at 10% 0%, rgba(234, 179, 8, 0.20), transparent 55%), radial-gradient(circle at 90% 100%, rgba(59, 130, 246, 0.30), transparent 55%), linear-gradient(135deg, #020617 0%, #020617 30%, #111827 70%, #020617 100%); } .hero::before, .hero::after { content: ''; position: absolute; pointer-events: none; border-radius: 999px; filter: blur(45px); opacity: 0.9; z-index: 0; } .hero::before { width: 420px; height: 420px; left: -60px; top: -140px; background: radial-gradient(circle, rgba(234, 179, 8, 0.45), transparent 60%); } .hero::after { width: 520px; height: 520px; right: -160px; bottom: -200px; background: radial-gradient(circle, rgba(59, 130, 246, 0.45), transparent 60%); } .hero-content { max-width: 960px; margin: 0 auto; position: relative; z-index: 1; text-align: center; padding: 2.25rem 1.75rem; border-radius: 32px; background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.9)); border: 1px solid rgba(148, 163, 184, 0.35); box-shadow: 0 28px 80px rgba(15, 23, 42, 0.9); backdrop-filter: blur(16px); } .h1 { font-size: clamp(2.6rem, 4.2vw, 3.6rem); margin-bottom: 1.1rem; letter-spacing: 0.04em; font-weight: 800; text-shadow: 0 18px 40px rgba(15, 23, 42, 0.9); } .h1 span { background: linear-gradient(135deg, #eab308, #facc15, #f97316); -webkit-background-clip: text; background-clip: text; color: transparent; } .hero p { font-size: 1.06rem; margin-bottom: 2.3rem; color: #cbd5f5; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.8; } .hero-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; } .hero-buttons .btn-primary { padding: 0.9rem 2.4rem; border-radius: 999px; border: none; font-weight: 600; font-size: 0.98rem; cursor: pointer; background: radial-gradient(circle at 0% 0%, #facc15, #eab308 40%, #f97316 100%); color: #111827; box-shadow: 0 18px 45px rgba(234, 179, 8, 0.48); } .hero-buttons .btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 24px 70px rgba(234, 179, 8, 0.60); } .hero-buttons .btn-secondary { padding: 0.9rem 2.2rem; border-radius: 999px; border: 1px solid rgba(148, 163, 184, 0.5); background: rgba(15, 23, 42, 0.85); color: #e5e7eb; font-weight: 500; font-size: 0.96rem; cursor: pointer; backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(15, 23, 42, 0.9); transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease; } .hero-buttons .btn-secondary:hover { background: rgba(15, 23, 42, 1); transform: translateY(-1px); box-shadow: 0 18px 45px rgba(15, 23, 42, 1); } @media (max-width: 640px) { .hero { padding: 4.5rem 1.25rem 4rem; } .hero-content { padding: 1.9rem 1.35rem; border-radius: 24px; } .hero-buttons { flex-direction: column; } .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; } } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; } .feature-item { text-align: center; padding: 2rem 1.7rem; background: var(--bg-white); border-radius: 18px; box-shadow: var(--shadow); border: 1px solid rgba(148, 163, 184, 0.14); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; } .feature-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(37, 99, 235, 0.45); } .feature-icon { width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 999px; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), transparent 55%), linear-gradient(135deg, var(--primary-color), var(--secondary-color)); box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35); } .feature-icon svg { fill: #ffffff; } .feature-item h3 { margin-bottom: 0.5rem; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; } .service-card { background: var(--bg-white); border-radius: 18px; padding: 2.1rem 1.8rem; text-align: center; box-shadow: var(--shadow); border: 1px solid rgba(148, 163, 184, 0.18); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; position: relative; overflow: hidden; } .service-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; border-top: 3px solid transparent; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) border-box; mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0); mask-composite: exclude; opacity: 0.9; pointer-events: none; } .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(37, 99, 235, 0.4); } .service-icon { margin-bottom: 1.2rem; } .service-icon svg { fill: var(--primary-color); } .service-card h3 { margin-bottom: 0.6rem; } .service-card p { margin-bottom: 1.4rem; } .coverage-icon { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 999px; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 55%), linear-gradient(135deg, var(--primary-color), var(--secondary-color)); box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35); } .coverage-icon svg { fill: #ffffff; } .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .testimonial-card { background: var(--bg-white); padding: 2rem; border-radius: 18px; box-shadow: var(--shadow); position: relative; border: 1px solid rgba(148, 163, 184, 0.16); } .testimonial-quote { font-size: 3rem; color: var(--primary-color); opacity: 0.12; position: absolute; top: 1rem; right: 1.2rem; } .testimonial-author { display: flex; gap: 1rem; align-items: center; margin-top: 1rem; } .author-avatar { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; } .section .blog-post { max-width: 900px; margin: 0 auto; background-color: var(--bg-white); padding: 2.5rem 2.2rem; border-radius: 18px; box-shadow: var(--shadow); border: 1px solid rgba(148, 163, 184, 0.16); } .blog-post h1 { font-size: clamp(2.1rem, 3.3vw, 2.6rem); margin-bottom: 0.5rem; } .blog-post h2 { margin-top: 2.2rem; margin-bottom: 0.7rem; font-size: 1.5rem; } .blog-post h3 { margin-top: 1.6rem; margin-bottom: 0.4rem; font-size: 1.15rem; } .blog-post p { color: var(--text-dark); margin-bottom: 0.9rem; font-size: 1rem; } .blog-post ul { margin: 0.3rem 0 1.2rem; padding-right: 1.2rem; } .blog-post li { margin-bottom: 0.4rem; color: var(--text-dark); } .blog-post a { color: var(--primary-color); font-weight: 600; } .blog-post a:hover { text-decoration: underline; } .blog-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.9rem; color: var(--text-muted); } .blog-meta span { display: inline-flex; align-items: center; gap: 0.4rem; } .blog-meta i { color: var(--primary-color); font-size: 0.95rem; } .blog-cta { margin: 2.5rem 0; padding: 1.8rem 1.6rem; border-radius: 16px; background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(56, 189, 248, 0.03)); border: 1px solid rgba(37, 99, 235, 0.16); } .blog-cta p { margin-bottom: 0; text-align: center; } .contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.8rem; } .contact-item { display: flex; gap: 1rem; background: var(--bg-white); padding: 1.4rem 1.5rem; border-radius: 16px; box-shadow: var(--shadow); border: 1px solid rgba(148, 163, 184, 0.16); align-items: center; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; } .contact-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(37, 99, 235, 0.45); } .contact-icon { min-width: 3rem; min-height: 3rem; border-radius: 999px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); } .contact-text h4 { margin-bottom: 0.2rem; } .contact-form { max-width: 600px; margin: 2.2rem auto 0; background: var(--bg-white); padding: 2rem 1.7rem; border-radius: 18px; box-shadow: var(--shadow); border: 1px solid rgba(148, 163, 184, 0.18); } .form-group { margin-bottom: 1.5rem; } .form-group label { font-weight: 600; margin-bottom: 0.5rem; display: block; color: var(--text-dark); font-size: 0.95rem; } .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 0.9rem; border: 1px solid var(--border-color); border-radius: 10px; font-size: 0.96rem; background-color: #f9fafb; transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease; } .form-group textarea { min-height: 120px; resize: vertical; } .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary-color); background-color: #ffffff; outline: none; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15); } .form-group input::placeholder, .form-group textarea::placeholder { color: #9ca3af; } footer { background: #020617; color: #f9fafb; padding: 3rem 1.5rem 1.5rem; margin-top: 2rem; } .footer-container { max-width: 1200px; margin: 0 auto; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; } .footer-section h3 { margin-bottom: 0.75rem; } .footer-section p { color: rgba(249, 250, 251, 0.85); } .footer-links { list-style: none; padding: 0; margin: 0; } .footer-links li { margin-bottom: 0.5rem; } .footer-links a { color: rgba(249, 250, 251, 0.8); font-size: 0.95rem; } .footer-links a:hover { color: #ffffff; } .footer-bottom { text-align: center; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(148, 163, 184, 0.45); } .footer-bottom p { color: rgba(249, 250, 251, 0.75); } @media (max-width: 992px) { .header-container { padding-inline: 1.5rem; } } @media (max-width: 768px) { nav { display: none; } .mobile-menu-toggle { display: block; } nav.mobile-active { display: block; position: absolute; top: 100%; right: 0; width: 100%; background: #ffffff; box-shadow: var(--shadow); padding: 0.8rem 1.2rem 1.2rem; } nav.mobile-active ul { flex-direction: column; align-items: flex-start; gap: 0.7rem; } nav.mobile-active ul li a { display: block; width: 100%; } nav.mobile-active ul li a::after { display: none; } .hero { padding: 4rem 1.2rem 3.5rem; } .hero h1 { font-size: 2rem; } .header-container { padding-inline: 1.2rem; } .section .blog-post { padding: 2rem 1.5rem; } } @media (max-width: 480px) { .logo h2 { font-size: 1.1rem; } .btn { width: 100%; justify-content: center; } .hero-buttons { flex-direction: column; } } .text-center { text-align: center; } .text-primary { color: var(--primary-color); } .mt-2 { margin-top: 2rem; } .mb-2 { margin-bottom: 2rem; }
