@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Outfit:wght@400;600;700&display=swap'); :root { --primary-color: #0A1D37; --secondary-color: #2196F3; --accent-color: #00BCD4; --bg-light: #F4F7F6; --white: #FFFFFF; --text-dark: #333333; --text-muted: #666666; } body { font-family: 'Outfit', 'Cairo', sans-serif; background-color: var(--bg-light); color: var(--text-dark); margin: 0; overflow-x: hidden; } .navbar { background-color: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding: 1rem 2rem; } .navbar-brand { font-weight: 700; font-size: 1.5rem; color: var(--primary-color) !important; } .nav-link { color: var(--primary-color) !important; font-weight: 600; margin: 0 10px; } .btn-primary { background-color: var(--secondary-color); border: none; padding: 10px 25px; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; } .btn-primary:hover { background-color: var(--primary-color); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3); } .btn-outline-primary { border: 2px solid var(--secondary-color); color: var(--secondary-color); padding: 10px 25px; border-radius: 50px; font-weight: 600; } .hero-section { padding: 100px 0; background: linear-gradient(135deg, var(--white) 0%, #E3F2FD 100%); position: relative; overflow: hidden; } .hero-title { font-size: 3.5rem; font-weight: 700; color: var(--primary-color); margin-bottom: 20px; line-height: 1.2; } .hero-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; } /* Carousel Adjustments - Minimalist */ .carousel-item { transition: transform 1.2s ease-in-out; /* Slightly slower for elegance */ } /* Fix for captions in RTL if needed, but B5 RTL usually handles it */ [dir="rtl"] .carousel-caption { text-align: right; right: 5%; left: auto; } .carousel-caption { z-index: 10; } footer { background-color: var(--primary-color); color: var(--white); padding: 50px 0; }