/* CSS Reset and Global Styles */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Tajawal', sans-serif; } :root { --primary-color: #005A9E; --secondary-color: #003087; --accent-color: #b3e5fc; --light-bg: #f0f8ff; --white: #fff; --text-color: #2c3e50; --text-muted: #62778c; --shadow-color: rgba(0, 90, 158, 0.3); --border-color: rgba(0, 90, 158, 0.2); --gradient-bg: linear-gradient(135deg, rgba(240, 248, 255, 0.9), rgba(173, 216, 230, 0.7)); } @keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(180deg); } } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } } @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } body, html { min-height: 100vh; color: var(--text-color); line-height: 1.6; overflow-x: hidden; background: url("../images/background/Supply Chain Delivery.gif") no-repeat center center fixed; background-size: cover; background-color: #f5f5f5; display: flex; flex-direction: column; margin: 0; padding: 0; } 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 var(--border-color); 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: flex-start; align-items: center; padding: 1rem 5%; max-width: 1400px; margin: 0 auto; height: 80px; width: 100%; } .logo { height: 80px; transition: all 0.3s ease; margin-right: 3rem; order: 3; } .logo img { height: 100%; width: auto; display: block; max-height: 100%; filter: drop-shadow(0 0 10px var(--shadow-color)); 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; order: 2; } .nav-links li a { text-decoration: none; color: var(--text-color); 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, .nav-links li a.active { color: var(--primary-color); background: var(--border-color); } .nav-links li a::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--primary-color); transition: width 0.3s ease; } .nav-links li a:hover::after { width: 100%; } .hamburger { display: none; font-size: 1.8rem; color: var(--text-color); background: none; border: none; cursor: pointer; order: 0; } .language-switcher { display: flex; gap: 0.5rem; align-items: center; margin-left: 2rem; order: 1; } .language-switcher select { padding: 0.8rem 2.5rem 0.8rem 1.5rem; background: var(--accent-color); color: var(--text-color); font-weight: 600; border: 1px solid var(--primary-color); border-radius: 25px; cursor: pointer; transition: all 0.3s ease; appearance: none; box-shadow: 0 2px 10px var(--shadow-color); 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 var(--shadow-color); } .floating-element { position: fixed; background: var(--shadow-color); border-radius: 50%; pointer-events: none; animation: float 8s ease-in-out infinite; } .floating-element:nth-child(1) { width: 80px; height: 80px; top: 10%; left: 5%; animation-delay: 0s; } .floating-element:nth-child(2) { width: 120px; height: 120px; top: 50%; right: 10%; animation-delay: 2s; } .floating-element:nth-child(3) { width: 60px; height: 60px; bottom: 20%; left: 15%; animation-delay: 4s; } .hero { text-align: center; padding: 8rem 2rem 6rem; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(5px); margin-top: 80px; } .hero h1 { font-size: 3rem; color: var(--text-color); margin-bottom: 2rem; text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); } .buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; } .btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.8rem; background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); color: var(--white); text-decoration: none; border-radius: 25px; font-weight: 500; transition: all 0.3s ease; } .btn:hover { background: linear-gradient(to right, var(--secondary-color), var(--primary-color)); transform: translateY(-3px); box-shadow: 0 4px 15px var(--shadow-color); } .home-button { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.8rem; background: var(--shadow-color); color: var(--white); text-decoration: none; border-radius: 25px; font-weight: 500; border: 1px solid rgba(0, 90, 158, 0.5); transition: all 0.3s ease; } .home-button:hover { background: rgba(0, 90, 158, 0.4); transform: translateY(-3px); box-shadow: 0 4px 15px var(--shadow-color); } .section-title { text-align: center; font-size: 2.5rem; color: var(--text-color); margin-bottom: 3rem; position: relative; } .section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: linear-gradient(to right, transparent, var(--primary-color), transparent); } .features-section { padding: 4rem 5%; background: var(--light-bg); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1400px; margin: 0 auto; } .feature-card { background: var(--white); padding: 2rem; border-radius: 10px; text-align: center; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; } .feature-card:hover { transform: translateY(-5px); } .feature-card i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1rem; } .feature-card h3 { font-size: 1.5rem; color: var(--text-color); margin-bottom: 0.5rem; } .feature-card p { color: var(--text-muted); } /* Services Section */ .services-section { padding: 4rem 5%; background: var(--white); } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1400px; margin: 0 auto; } .service-card { background: var(--light-bg); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; } .service-card:hover { transform: translateY(-5px); } .service-card img { width: 100%; height: 200px; object-fit: cover; } .service-card h3 { font-size: 1.4rem; color: var(--text-color); padding: 1rem; } .service-card p { color: var(--text-muted); padding: 0 1rem 1rem; } .stats-section { padding: 4rem 5%; background: linear-gradient(135deg, var(--accent-color), #e1f5fe); text-align: center; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 1400px; margin: 0 auto; } .stat-card { background: rgba(255, 255, 255, 0.9); padding: 2rem; border-radius: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .stat-number, .stat-label { font-size: 2rem; color: var(--text-color); margin-bottom: 0.5rem; } .stat-label { font-size: 1.2rem; } .countries-list { font-size: 1rem; color: var(--text-muted); line-height: 1.8; } .rotating-globe { font-size: 3rem; color: var(--primary-color); animation: rotate 10s linear infinite; } .stat-tech { font-size: 3rem; color: var(--primary-color); } /* Wave Separator */ .wave-separator { background: linear-gradient(to bottom, #e1f5fe, var(--white)); padding: 2rem 0; text-align: center; } .separator-content { display: flex; justify-content: center; gap: 2rem; } .separator-icon i { font-size: 2rem; color: var(--primary-color); animation: pulse 2s ease-in-out infinite; } /* Contact Section */ .contact-section { padding: 4rem 5%; background: var(--light-bg); } .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1400px; margin: 0 auto; } .contact-info { display: flex; flex-direction: column; gap: 1rem; } .contact-card { background: var(--white); padding: 1.5rem; border-radius: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .contact-card h3 { font-size: 1.3rem; color: var(--text-color); margin-bottom: 0.5rem; } .contact-card p { color: var(--text-muted); } .contact-card a { color: var(--primary-color); text-decoration: none; font-weight: 500; transition: color 0.3s ease; } .contact-card a:hover { color: var(--secondary-color); } /* Fax and Telephone numbers alignment - start from left */ .contact-card a[href^="tel:"], .contact-card a[href^="fax:"], .contact-card p:contains("tel:"), .contact-card p:contains("fax:") { direction: ltr; text-align: left; unicode-bidi: bidi-override; } /* Alternative approach for telephone and fax numbers */ .contact-card .phone-number, .contact-card .fax-number, .contact-card a[href*="tel"], .contact-card a[href*="fax"] { direction: ltr !important; text-align: left !important; unicode-bidi: bidi-override; display: inline-block; } /* For any contact information that contains numbers */ .contact-card p:has(a[href^="tel:"]), .contact-card p:has(a[href^="fax:"]) { direction: ltr; text-align: left; } .map-container iframe { width: 100%; height: 500px; border: none; border-radius: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .address-bar { background: var(--text-color); color: var(--white); text-align: center; padding: 1rem; font-size: 1rem; } .address-bar i { margin-right: 0.5rem; color: var(--primary-color); } /* About Section */ .about-container { max-width: 1200px; margin: 120px auto 50px; padding: 2rem; position: relative; z-index: 2; flex: 1; } .about-content { background: rgba(255, 255, 255, 0.95); padding: 3rem; border-radius: 10px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; } .about-content:hover { transform: translateY(-5px); } .about-text { font-size: 1.1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 2rem; } .about-text ul { list-style: none; padding: 0; } .about-text ul li { position: relative; padding-right: 1.5rem; margin-bottom: 0.8rem; } .about-text ul li::before { content: '•'; color: var(--primary-color); position: absolute; right: 0; } .info-boxes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 3rem 0; } .info-box { background: var(--light-bg); border-radius: 10px; padding: 2rem; text-align: center; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; } .info-box:hover { transform: translateY(-5px); } .info-box i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1rem; } .info-box h3 { font-size: 1.5rem; color: var(--text-color); margin-bottom: 1rem; } .info-box p, .info-box ul li { color: var(--text-muted); line-height: 1.6; } .info-box ul { list-style: none; padding: 0; text-align: right; } .info-box ul li { position: relative; padding-right: 1.5rem; margin-bottom: 0.8rem; } .info-box ul li::before { content: '•'; color: var(--primary-color); position: absolute; right: 0; } /* Download Section */ .download-section { text-align: center; margin: 3rem 0; padding: 2rem; background: var(--light-bg); border-radius: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); display: flex; flex-direction: column; align-items: center; justify-content: center; } .download-section h2 { font-size: 1.8rem; color: var(--text-color); margin-bottom: 1.5rem; } .download-section p { color: var(--text-muted); margin-bottom: 1.5rem; max-width: 700px; margin-left: auto; margin-right: auto; } .download-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.8rem; background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); color: var(--white); text-decoration: none; border-radius: 25px; font-weight: 500; transition: all 0.3s ease; } .download-btn:hover { background: linear-gradient(to right, var(--secondary-color), var(--primary-color)); transform: translateY(-3px); box-shadow: 0 4px 15px var(--shadow-color); } /* Logos Section */ .logos-section { padding: 4rem 5%; background: var(--white); } .logos-container { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1400px; margin: 0 auto; } .top-logo, .logo-box { background: var(--light-bg); border-radius: 10px; padding: 1.5rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; } .top-logo:hover, .logo-box:hover { transform: translateY(-5px); } .top-logo img, .logo-box img, .main-logo img { max-width: 100%; max-height: 200px; object-fit: contain; transition: all 0.3s ease; opacity: 0.8; } .top-logo:hover img, .logo-box:hover img, .main-logo:hover img { transform: scale(1.05); opacity: 1; } .bottom-logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; } /* Footer */ footer { background: var(--text-color); color: var(--white); padding: 4rem 5%; text-align: center; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1400px; margin: 0 auto; } .footer-section h4 { font-size: 1.5rem; margin-bottom: 1rem; } .footer-section p, .footer-section a { color: var(--text-muted); font-size: 1rem; line-height: 1.6; text-decoration: none; } .footer-section a:hover { color: var(--primary-color); } .footer-section ul { list-style: none; padding: 0; } .footer-section ul li { margin-bottom: 0.5rem; } .footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--border-color); font-size: 0.9rem; color: var(--text-muted); } /* Responsive Design */ @media (max-width: 992px) { nav { flex-direction: row; gap: 1rem; height: auto; padding: 1rem; } .nav-links { display: none; flex-direction: column; gap: 0.5rem; width: 100%; background: var(--white); position: absolute; top: 80px; left: 0; padding: 1rem; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); } .nav-links.active { display: flex; } .hamburger { display: block; } .hero h1 { font-size: 2.5rem; } .contact-container { grid-template-columns: 1fr; } .map-container iframe { height: 400px; } .about-container { margin: 120px auto 30px; padding: 1rem; } .about-content { padding: 2rem; } .section-title { font-size: 2rem; } } @media (max-width: 768px) { .hero { padding: 6rem 1rem 4rem; } .btn, .download-btn, .home-button { padding: 0.6rem 1.5rem; font-size: 1rem; } .section-title { font-size: 1.8rem; } .features-grid, .services-grid, .stats-grid, .info-boxes, .bottom-logos { grid-template-columns: 1fr; } .logo-box { height: 150px; } .map-container iframe { height: 350px; } } @media (max-width: 480px) { .hero h1 { font-size: 2rem; } .section-title { font-size: 1.6rem; } .feature-card, .service-card, .stat-card, .contact-card, .info-box { padding: 1rem; } .about-text, .info-box p { font-size: 1rem; } .map-container iframe { height: 300px; } }