* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Tajawal', sans-serif; } @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.03); } 100% { transform: scale(1); } } body, html { height: 100%; color: #2c3e50; line-height: 1.6; overflow-x: hidden; background: linear-gradient(135deg, rgba(240, 248, 255, 0.9), rgba(173, 216, 230, 0.7)), url(); background-size: cover; background-position: center; background-attachment: fixed; } body.rtl { direction: rtl; text-align: right; } header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.85)); height: 80px; display: flex; align-items: center; justify-content: flex-start; transition: all 0.3s ease; border-bottom: 1px solid rgba(0, 90, 158, 0.2); padding: 0 2rem; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2); } nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; max-width: 1400px; margin: 0 auto; height: 80px; } .logo { height: 80px; transition: all 0.3s ease; margin-right: 3rem; } .logo img { height: 100%; width: auto; display: block; max-height: 100%; filter: drop-shadow(0 0 10px rgba(0, 90, 158, 0.3)); transition: transform 0.3s ease; } .logo img:hover { transform: scale(1.05); } .nav-links { display: flex; list-style: none; gap: 1.5rem; align-items: center; } .nav-links li a { text-decoration: none; color: #2c3e50; font-weight: 500; font-size: 1.1rem; padding: 0.5rem 1.2rem; border-radius: 20px; transition: all 0.3s ease; position: relative; } .nav-links li a:hover { color: #005A9E; background: rgba(0, 90, 158, 0.1); } .nav-links li a.active { color: #005A9E; background: rgba(0, 90, 158, 0.2); box-shadow: 0 2px 8px rgba(0, 90, 158, 0.2); transform: translateY(-2px); } .nav-links li a::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: #005A9E; transition: width 0.3s ease; } .nav-links li a:hover::after { width: 100%; } .language-switcher { position: relative; margin-left: 2rem; } .language-switcher select { padding: 0.8rem 2.5rem 0.8rem 1.5rem; background: #b3e5fc; color: #2c3e50; font-weight: 600; border: 1px solid #005A9E; border-radius: 25px; cursor: pointer; transition: all 0.3s ease; appearance: none; box-shadow: 0 2px 10px rgba(0, 90, 158, 0.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232c3e50' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px; } .language-switcher select:hover { background: #e1f5fe; transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0, 90, 158, 0.3); } .services-container { max-width: 1200px; margin: 150px auto 50px; padding: 2rem; position: relative; z-index: 2; } .services-content { background: rgba(255, 255, 255, 0.95); padding: 3rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); transition: all 0.5s ease; } .services-content:hover { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); transform: translateY(-5px); } .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 2.5rem; color: #2c3e50; position: relative; padding-bottom: 1rem; } .section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 3px; background: linear-gradient(to right, transparent, #005A9E, transparent); } .intro-text { font-size: 1.1rem; line-height: 1.8; margin-bottom: 3rem; color: #62778c; text-align: center; } .services-boxes { display: flex; flex-direction: column; gap: 2.5rem; margin: 3rem 0; } .service-box { background: #f0f8ff; border-radius: 15px; padding: 0; border: 1px solid rgba(0, 90, 158, 0.2); transition: all 0.3s ease; overflow: hidden; display: flex; min-height: 350px; } .service-box:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); background: rgba(240, 248, 255, 0.9); } .service-image { flex: 1; min-width: 40%; position: relative; overflow: hidden; } .service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .service-box:hover .service-image img { transform: scale(1.05); } .service-content { flex: 1; padding: 2rem; display: flex; flex-direction: column; justify-content: center; } .service-content h2 { color: #005A9E; margin-bottom: 1.5rem; font-size: 1.8rem; position: relative; padding-bottom: 0.8rem; } .service-content h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 2px; background: #005A9E; } .service-content p { color: #62778c; line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.1rem; } .service-features { margin-top: 1rem; } .service-features li { color: #62778c; margin-bottom: 0.8rem; position: relative; padding-left: 1.5rem; } .service-features li::before { content: '•'; color: #005A9E; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; } .map-container iframe { width: 100%; height: 500px; border: none; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .floating-element { position: fixed; z-index: 1; opacity: 0.6; animation: float 6s ease-in-out infinite; } .floating-element:nth-child(1) { top: 15%; right: 5%; width: 40px; height: 40px; background: #005A9E; border-radius: 50%; animation-delay: 0s; } .floating-element:nth-child(2) { bottom: 20%; left: 10%; width: 60px; height: 60px; background: #003087; border-radius: 10px; transform: rotate(45deg); animation-delay: 1s; animation-duration: 8s; } .floating-element:nth-child(3) { top: 30%; left: 15%; width: 30px; height: 30px; background: #b3e5fc; border-radius: 50%; animation-delay: 2s; animation-duration: 7s; } @media (max-width: 992px) { .nav-links { display: none; } .services-container { margin: 120px auto 30px; padding: 1rem; } .services-content { padding: 2rem; } .section-title { font-size: 2rem; } .service-box { flex-direction: column; min-height: auto; } .service-image { min-height: 250px; } .map-container iframe { height: 400px; } } @media (max-width: 768px) { .services-container { margin: 100px auto 20px; } .services-content { padding: 1.5rem; } .section-title { font-size: 1.8rem; } .service-content { padding: 1.5rem; } .map-container iframe { height: 350px; } } @media (max-width: 480px) { .section-title { font-size: 1.6rem; } .service-content h2 { font-size: 1.5rem; } .intro-text, .service-content p { font-size: 1rem; } .map-container iframe { height: 300px; } }