@keyframes blob { 0%, 100% { transform: translate(0px, 0px) scale(1); } 33% { transform: translate(30px, -50px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.9); } } .animate-blob { animation: blob 7s infinite; } .animation-delay-2000 { animation-delay: 2s; } .animation-delay-4000 { animation-delay: 4s; } :root { --primary: #6366f1; --primary-dark: #4f46e5; --primary-light: #818cf8; --primary-50: #eef2ff; --primary-100: #e0e7ff; --primary-200: #c7d2fe; --secondary: #14b8a6; --secondary-dark: #0d9488; --secondary-light: #5eead4; --secondary-50: #f0fdfa; --secondary-100: #ccfbf1; --secondary-200: #99f6e4; --accent: #8b5cf6; --accent-dark: #7c3aed; --accent-light: #a78bfa; --accent-50: #faf5ff; --accent-100: #f3e8ff; --accent-200: #e9d5ff; --bg: #ffffff; --bg-light: #f8fafc; --bg-gray: #f1f5f9; --text: #0f172a; --text-light: #64748b; --text-lighter: #94a3b8; --border: #e2e8f0; --border-light: #f1f5f9; --gradient-primary: linear-gradient(135deg, #6366f1 0%, #14b8a6 50%, #8b5cf6 100%); --gradient-hero: linear-gradient(135deg, #6366f1 0%, #14b8a6 50%, #8b5cf6 100%); --gradient-education: linear-gradient(135deg, #818cf8 0%, #5eead4 50%, #a78bfa 100%); --gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(20, 184, 166, 0.1) 50%, rgba(139, 92, 246, 0.1) 100%); --gradient-shadow-indigo: 0 10px 40px rgba(99, 102, 241, 0.3); --gradient-shadow-teal: 0 10px 40px rgba(20, 184, 166, 0.3); --gradient-shadow-purple: 0 10px 40px rgba(139, 92, 246, 0.3); --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); --spacing-xs: 0.5rem; --spacing-sm: 1rem; --spacing-md: 1.5rem; --spacing-lg: 2rem; --spacing-xl: 3rem; --spacing-2xl: 4rem; --font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; --font-family-persian: 'Vazir', Tahoma, Arial, sans-serif; --font-family-arabic: 'Vazir', Tahoma, Arial, sans-serif; --font-family-english: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; --font-family-emoji: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', 'Android Emoji', 'EmojiSymbols', 'EmojiOne', 'Twemoji Mozilla', 'Segoe UI', sans-serif; --font-size-xs: 0.75rem; --font-size-sm: 0.875rem; --font-size-base: 1rem; --font-size-lg: 1.125rem; --font-size-xl: 1.25rem; --font-size-2xl: 1.5rem; --font-size-3xl: 1.875rem; --font-size-4xl: 2.25rem; --font-size-5xl: 3rem; } * { margin: 0; padding: 0; box-sizing: border-box; } input:hover, input:focus, textarea:hover, textarea:focus, select:hover, select:focus { box-shadow: none !important; } body { font-family: var(--font-family); background-color: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; width: 100%; max-width: 100vw; position: relative; } html { overflow-x: hidden; width: 100%; max-width: 100vw; } .font-persian, [lang="fa"] { font-family: var(--font-family-persian) !important; } .font-arabic, [lang="ar"] { font-family: var(--font-family-arabic) !important; } .font-english, [lang="en"] { font-family: var(--font-family-english) !important; } .flag-image-container { display: flex !important; justify-content: center; align-items: center; margin-bottom: 0.75rem; min-height: 48px; width: 100%; } .flag-image { width: 64px !important; height: 48px !important; object-fit: cover !important; border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; display: block !important; visibility: visible !important; opacity: 1 !important; } .flag-image:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); } .container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; } .site-header { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); background: rgba(255, 255, 255, 0.95); } .navbar { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; gap: 2rem; } .navbar-brand .logo { display: flex; align-items: center; text-decoration: none; transition: opacity 0.3s ease; } .navbar-brand .logo:hover { opacity: 0.8; } .navbar-brand .logo img { height: 40px; width: auto; object-fit: contain; max-width: 200px; } @media (min-width: 768px) { .navbar-brand .logo img { height: 48px; } } .navbar-nav { display: flex; list-style: none; gap: 2rem; align-items: center; flex: 1; justify-content: center; } .navbar-nav a { text-decoration: none; color: var(--text); font-weight: 500; font-size: var(--font-size-sm); transition: color 0.2s; position: relative; padding: 0.5rem 0; } .navbar-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gradient-primary); transition: width 0.3s; } .navbar-nav a:hover, .navbar-nav a.active { color: var(--primary); } .navbar-nav a:hover::after, .navbar-nav a.active::after { width: 100%; } .navbar-actions { display: flex; gap: 1rem; align-items: center; } .desktop-menu { display: flex; } .mobile-menu-toggle { display: none; flex-direction: column; justify-content: space-around; width: 28px; height: 28px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 101; transition: all 0.3s ease; } .mobile-menu-toggle .hamburger-line { width: 100%; height: 3px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; transform-origin: center; } .mobile-menu-toggle.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); } .mobile-menu-toggle.active .hamburger-line:nth-child(2) { opacity: 0; } .mobile-menu-toggle.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); } .mobile-sidebar { position: fixed; top: 0; right: -100%; left: auto; width: 320px; max-width: 85vw; height: 100vh; max-height: 100vh; background: white; box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1); z-index: 1000; transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; overflow-y: auto; overflow-x: hidden; box-sizing: border-box; filter: none !important; -webkit-filter: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; } [dir="rtl"] .mobile-sidebar { right: auto; left: -100%; box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), right 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .mobile-sidebar.open { right: 0; left: auto; } [dir="rtl"] .mobile-sidebar.open { right: auto; left: 0; } .mobile-sidebar:not(.open) { right: -100%; left: auto; } [dir="rtl"] .mobile-sidebar:not(.open) { right: auto; left: -100%; } .mobile-sidebar-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); background: var(--bg); position: sticky; top: 0; z-index: 10; flex-shrink: 0; } [dir="rtl"] .mobile-sidebar-header { flex-direction: row-reverse; } .mobile-sidebar-logo img { height: 40px; width: auto; max-width: 180px; } .mobile-sidebar-close { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: transparent; border: none; border-radius: 0.5rem; cursor: pointer; color: var(--text); font-size: 1.5rem; transition: all 0.2s ease; } .mobile-sidebar-close:hover { background: var(--bg-secondary); color: var(--primary); } .mobile-sidebar-nav { flex: 1; overflow-y: auto; padding: 0.5rem 0; } .mobile-menu { display: none; } .mobile-menu-nav { list-style: none; padding: 0; margin: 0; } .mobile-menu-nav li { border-bottom: 1px solid var(--border); } .mobile-menu-nav li:last-child { border-bottom: none; } .mobile-menu-nav a { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; text-decoration: none; color: var(--text); font-weight: 500; font-size: var(--font-size-base); transition: all 0.2s ease; } .mobile-menu-nav a i { font-size: 1.25rem; width: 24px; text-align: center; color: var(--text-secondary); transition: color 0.2s ease; } .mobile-menu-nav a:hover, .mobile-menu-nav a.active { background: rgba(99, 102, 241, 0.1); color: var(--primary); } .mobile-menu-nav a:hover i, .mobile-menu-nav a.active i { color: var(--primary); } .mobile-sidebar-footer { padding: 1.5rem; border-top: 1px solid var(--border); background: var(--bg-secondary); position: sticky; bottom: 0; flex-shrink: 0; } .mobile-sidebar-footer .language-switcher { width: 100%; } .mobile-sidebar-footer .language-label { display: flex; align-items: center; gap: 0.5rem; font-size: var(--font-size-sm); font-weight: 600; color: var(--text); margin-bottom: 0.75rem; } .mobile-sidebar-footer .language-label i { font-size: 1.1rem; } .mobile-sidebar-footer select { width: 100%; padding: 0.75rem; border: 1px solid var(--border); border-radius: 0.5rem; font-size: var(--font-size-base); background: white; color: var(--text); cursor: pointer; transition: all 0.2s ease; } .mobile-sidebar-footer select:hover { border-color: var(--primary); } .mobile-sidebar-footer select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1); } .mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100vw; max-width: 100vw; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(8px) saturate(180%); -webkit-backdrop-filter: blur(8px) saturate(180%); z-index: 999; opacity: 0; transition: opacity 0.3s ease, backdrop-filter 0.3s ease; overflow: hidden; } .mobile-menu-overlay.active { display: block; opacity: 1; } body.mobile-menu-open { overflow: hidden; overflow-x: hidden; } body.mobile-menu-open main, body.mobile-menu-open footer { filter: blur(4px); transition: filter 0.3s ease; } .site-header, .mobile-sidebar, .mobile-sidebar *, .mobile-menu-overlay, .mobile-menu-overlay * { filter: none !important; -webkit-filter: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; } .language-switcher select { padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: 0.5rem; background: var(--bg); color: var(--text); font-size: var(--font-size-sm); cursor: pointer; transition: all 0.2s; } .language-switcher select:hover { border-color: var(--primary); } .hero-section { background: var(--gradient-hero); color: white; padding: 6rem 0; text-align: center; position: relative; overflow: hidden; } .hero-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); opacity: 0.3; } .hero-section .container { position: relative; z-index: 1; } .hero-section h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; margin-bottom: 1.5rem; letter-spacing: -0.03em; line-height: 1.1; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); } .hero-subtitle { font-size: var(--font-size-xl); margin-bottom: 2.5rem; opacity: 0.95; font-weight: 400; max-width: 600px; margin-left: auto; margin-right: auto; } .btn { display: inline-block; padding: 0.875rem 2rem; border-radius: 0.75rem; text-decoration: none; font-weight: 600; font-size: var(--font-size-base); transition: all 0.3s; border: none; cursor: pointer; text-align: center; } .btn-primary { background: white; color: var(--primary); box-shadow: var(--shadow-lg); } .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); } .btn-secondary { background: var(--gradient-primary); color: white; box-shadow: var(--shadow-md); } .btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); } .btn-outline { background: transparent; color: white; border: 2px solid white; box-shadow: none; } .btn-outline:hover { background: white; color: var(--primary); transform: translateY(-2px); } .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } .featured-teachers { padding: 5rem 0; background: var(--bg-light); } .featured-teachers h2 { font-size: var(--font-size-3xl); font-weight: 700; text-align: center; margin-bottom: 3rem; color: var(--text); } .teachers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; } .teacher-card { background: white; border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow); transition: all 0.3s; text-align: center; } .teacher-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); } .teacher-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; border: 4px solid var(--border-light); } .teacher-card h3 { font-size: var(--font-size-lg); font-weight: 600; margin-bottom: 0.75rem; color: var(--text); } .teacher-rating { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.75rem; } .teacher-rating .stars { font-size: var(--font-size-sm); } .rating-value { font-weight: 600; color: var(--text); } .teacher-rate { font-size: var(--font-size-lg); font-weight: 700; color: var(--primary); margin-bottom: 1rem; } .features-section { padding: 5rem 0; background: white; } .features-section h2 { font-size: var(--font-size-3xl); font-weight: 700; text-align: center; margin-bottom: 3rem; color: var(--text); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; } .feature-item { text-align: center; padding: 2.5rem 2rem; border-radius: 1rem; background: var(--bg-light); transition: all 0.3s; position: relative; overflow: hidden; } .feature-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-primary); transform: scaleX(0); transition: transform 0.3s; } .feature-item:hover::before { transform: scaleX(1); } .feature-item:hover { background: white; box-shadow: var(--shadow-lg); transform: translateY(-6px); } .feature-icon { font-size: 3rem; margin-bottom: 1rem; display: block; } .feature-item h3 { font-size: var(--font-size-xl); font-weight: 600; margin-bottom: 1rem; color: var(--text); } .feature-item p { color: var(--text-light); line-height: 1.7; font-size: var(--font-size-base); } .site-footer { background: var(--text); color: white; padding: 4rem 0 2rem; margin-top: 5rem; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; } .footer-section h3, .footer-section h4 { font-size: var(--font-size-lg); font-weight: 600; margin-bottom: 1.5rem; } .footer-section p { color: rgba(255, 255, 255, 0.7); line-height: 1.7; } .footer-section ul { list-style: none; } .footer-section ul li { margin-bottom: 0.75rem; } .footer-section a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.2s; } .footer-section a:hover { color: white; } .footer-bottom { display: flex; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); flex-wrap: wrap; gap: 1rem; } .footer-bottom p { color: rgba(255, 255, 255, 0.7); } .footer-links { display: flex; gap: 2rem; } .footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.2s; } .footer-links a:hover { color: white; } @media (max-width: 1024px) { .desktop-menu { display: none !important; } .mobile-menu-toggle { display: flex; } } @media (max-width: 768px) { .site-header .container { padding: 0 1rem; } .navbar { flex-wrap: wrap; position: relative; padding: 1rem 0; } .navbar-brand { flex: 1; min-width: 0; } .navbar-brand .logo img { height: 36px; max-width: 150px; } .navbar-actions { gap: 0.75rem; flex-shrink: 0; } .mobile-sidebar { width: 85vw; max-width: 320px; } body, html { overflow-x: hidden !important; max-width: 100vw !important; width: 100% !important; position: relative; } .mobile-sidebar { max-width: calc(100vw - 0px); } [dir="rtl"] .mobile-sidebar { max-width: calc(100vw - 0px); } .mobile-menu-overlay.active { display: block; } .navbar-nav { flex-direction: column; gap: 0.5rem; width: 100%; } .hero-section { padding: 4rem 0; } .hero-section h1 { font-size: var(--font-size-3xl); } .hero-subtitle { font-size: var(--font-size-lg); } .teachers-grid { grid-template-columns: 1fr; } .features-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } } .glass-card { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 1.5rem; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); transition: all 0.3s ease; } .glass-card:hover { box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1); } .gradient-button { background: linear-gradient(135deg, #6366f1 0%, #14b8a6 50%, #8b5cf6 100%); background-size: 200% 200%; color: white; border: none; border-radius: 0.75rem; padding: 0.875rem 1.75rem; font-weight: 600; font-size: var(--font-size-base); cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4), 0 0 30px rgba(20, 184, 166, 0.2); position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; animation: gradient-shift 3s ease infinite; } .gradient-button::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: left 0.5s ease; } .gradient-button:hover::before { left: 100%; } .gradient-button:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5), 0 0 40px rgba(20, 184, 166, 0.3); background-position: 100% 50%; } @keyframes gradient-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } .glass-button { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 2px solid rgba(99, 102, 241, 0.2); color: #6366f1; border-radius: 0.75rem; padding: 0.875rem 1.75rem; font-weight: 600; font-size: var(--font-size-base); cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-block; } .glass-button:hover { background: rgba(255, 255, 255, 1); border-color: #6366f1; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3), 0 0 30px rgba(20, 184, 166, 0.1); } .text-gradient { background: linear-gradient(135deg, #6366f1 0%, #14b8a6 50%, #8b5cf6 100%); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradient-shift 3s ease infinite; } .badge { display: inline-flex; align-items: center; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; transition: all 0.15s ease; } .badge-primary { background: linear-gradient(135deg, #6366f1 0%, #14b8a6 50%, #8b5cf6 100%); background-size: 200% 200%; color: white; animation: gradient-shift 3s ease infinite; box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3); } .gradient-bg-primary { background: linear-gradient(135deg, #6366f1 0%, #14b8a6 50%, #8b5cf6 100%); background-size: 200% 200%; animation: gradient-shift 3s ease infinite; } .hover-lift { transition: all 0.3s ease; } .hover-lift:hover { transform: translateY(-4px); box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1); } .modern-hero { position: relative; min-height: 90vh; display: flex; align-items: center; padding: 6rem 0; overflow: hidden; background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(20, 184, 166, 0.05) 50%, rgba(139, 92, 246, 0.05) 100%); } .hero-background { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; z-index: 0; } .gradient-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.6; animation: float 20s infinite ease-in-out; } .orb-1 { width: 500px; height: 500px; background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%); top: -200px; left: -200px; animation-delay: 0s; box-shadow: 0 0 100px rgba(99, 102, 241, 0.4); } .orb-2 { width: 400px; height: 400px; background: linear-gradient(135deg, #14b8a6 0%, #5eead4 100%); bottom: -150px; right: -150px; animation-delay: 5s; box-shadow: 0 0 100px rgba(20, 184, 166, 0.4); } .orb-3 { width: 300px; height: 300px; background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%); top: 50%; right: 10%; animation-delay: 10s; box-shadow: 0 0 100px rgba(139, 92, 246, 0.4); } @keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -30px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.9); } } .hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; } .hero-badge { display: inline-block; padding: 0.5rem 1.25rem; margin-bottom: 2rem; } .badge-text { font-size: var(--font-size-sm); font-weight: 600; color: var(--text); } .hero-title { font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 800; margin-bottom: 1.5rem; letter-spacing: -0.03em; line-height: 1.1; } .hero-description { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-light); margin-bottom: 2.5rem; line-height: 1.7; max-width: 700px; margin-left: auto; margin-right: auto; } .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; } .hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; max-width: 800px; margin: 0 auto; } .stat-item { padding: 1.5rem; text-align: center; } .stat-number { font-size: 2rem; font-weight: 800; background: linear-gradient(135deg, #6366f1 0%, #14b8a6 50%, #8b5cf6 100%); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem; animation: gradient-shift 3s ease infinite; } .stat-label { font-size: var(--font-size-sm); color: var(--text-light); font-weight: 500; } .featured-section, .features-section-modern { padding: 6rem 0; background: var(--bg); } .section-header { text-align: center; margin-bottom: 4rem; } .section-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; } .section-subtitle { font-size: var(--font-size-lg); color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.7; } .teachers-grid-modern { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; } .teacher-card-modern { padding: 1.5rem; text-align: center; } .teacher-image-wrapper { position: relative; margin-bottom: 1.5rem; display: inline-block; } .teacher-image { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 4px solid rgba(102, 126, 234, 0.1); transition: all 0.3s ease; } .teacher-card-modern:hover .teacher-image { border-color: rgba(102, 126, 234, 0.3); transform: scale(1.05); } .teacher-badge { width: fit-content; height: fit-content; position: absolute; bottom: 0; right: 0; padding: 0.375rem 0.75rem; font-size: 0.875rem; } .teacher-info { margin-bottom: 1.5rem; } .teacher-name { font-size: var(--font-size-xl); font-weight: 700; margin-bottom: 0.5rem; color: var(--text); } .teacher-languages { font-size: var(--font-size-sm); color: var(--text-light); margin-bottom: 1rem; } .teacher-rate-modern { display: flex; align-items: baseline; justify-content: center; gap: 0.25rem; margin-bottom: 1.5rem; } .rate-amount { font-size: var(--font-size-2xl); font-weight: 800; background: linear-gradient(135deg, #6366f1 0%, #14b8a6 50%, #8b5cf6 100%); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradient-shift 3s ease infinite; } .rate-period { font-size: var(--font-size-sm); color: var(--text-light); } .teacher-link { width: 100%; justify-content: center; } .features-grid-modern { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .feature-card-modern { padding: 2.5rem 2rem; text-align: center; } .feature-icon-wrapper { width: 64px; height: 64px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; background: linear-gradient(135deg, #6366f1 0%, #14b8a6 50%, #8b5cf6 100%); background-size: 200% 200%; box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4), 0 0 30px rgba(20, 184, 166, 0.2); animation: gradient-shift 3s ease infinite; } .feature-title { font-size: var(--font-size-xl); font-weight: 700; margin-bottom: 1rem; color: var(--text); } .feature-description { color: var(--text-light); line-height: 1.7; font-size: var(--font-size-base); } .cta-section { padding: 6rem 0; background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(20, 184, 166, 0.05) 50%, rgba(139, 92, 246, 0.05) 100%); } .cta-content { text-align: center; padding: 4rem 2rem; max-width: 800px; margin: 0 auto; } .cta-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; color: var(--text); } .cta-description { font-size: var(--font-size-lg); color: var(--text-light); margin-bottom: 2.5rem; line-height: 1.7; } .cta-button { font-size: var(--font-size-lg); padding: 1rem 2.5rem; } @media (max-width: 768px) { .modern-hero { min-height: auto; padding: 4rem 0; } .hero-stats { grid-template-columns: 1fr; } .teachers-grid-modern { grid-template-columns: 1fr; } .features-grid-modern { grid-template-columns: 1fr; } .hero-actions { flex-direction: column; width: 100%; } .gradient-button, .glass-button { width: 100%; justify-content: center; } } [dir="rtl"] { direction: rtl; text-align: right; } [dir="rtl"] .navbar-nav { flex-direction: row-reverse; } @keyframes blob { 0%, 100% { transform: translate(0px, 0px) scale(1); } 33% { transform: translate(30px, -50px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.9); } } .animate-blob { animation: blob 7s infinite; } .animation-delay-2000 { animation-delay: 2s; } .animation-delay-4000 { animation-delay: 4s; } html { scroll-behavior: smooth; } .gradient-text-indigo { background: linear-gradient(135deg, #6366f1 0%, #14b8a6 50%, #8b5cf6 100%); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradient-shift 3s ease infinite; } .glass-enhanced { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.3); } .shadow-premium { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); } .shadow-premium-lg { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); } .hover-lift-premium { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .hover-lift-premium:hover { transform: translateY(-8px); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); } .brand-gradient { background: linear-gradient(135deg, #6366f1 0%, #14b8a6 50%, #8b5cf6 100%); background-size: 200% 200%; animation: gradient-shift 3s ease infinite; } .brand-gradient-text { background: linear-gradient(135deg, #6366f1 0%, #14b8a6 50%, #8b5cf6 100%); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradient-shift 3s ease infinite; } .brand-indigo { color: #6366f1; background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%); } .brand-teal { color: #14b8a6; background: linear-gradient(135deg, #14b8a6 0%, #5eead4 100%); } .brand-purple { color: #8b5cf6; background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%); } .glow-indigo { box-shadow: 0 0 20px rgba(99, 102, 241, 0.5), 0 0 40px rgba(99, 102, 241, 0.3); } .glow-teal { box-shadow: 0 0 20px rgba(20, 184, 166, 0.5), 0 0 40px rgba(20, 184, 166, 0.3); } .glow-purple { box-shadow: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3); } @keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7), 0 0 0 0 rgba(20, 184, 166, 0.5); } 50% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0), 0 0 0 20px rgba(139, 92, 246, 0); } } .animate-pulse-glow { animation: pulse-glow 2s infinite; } .skeleton-loader { background: linear-gradient(90deg, rgba(229, 231, 235, 0.5) 0%, rgba(243, 244, 246, 0.5) 50%, rgba(229, 231, 235, 0.5) 100%); background-size: 200% 100%; animation: loading 1.5s infinite; } @keyframes loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } } ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: #f1f5f9; } ::-webkit-scrollbar-thumb { background: linear-gradient(135deg, #6366f1 0%, #14b8a6 50%, #8b5cf6 100%); border-radius: 5px; box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3); } ::-webkit-scrollbar-thumb:hover { background: linear-gradient(135deg, #4f46e5 0%, #0d9488 50%, #7c3aed 100%); box-shadow: 0 2px 15px rgba(99, 102, 241, 0.5); } *:focus-visible { outline: 2px solid #14b8a6; outline-offset: 2px; border-radius: 4px; } @keyframes gradient { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } .animate-gradient { background-size: 200% 200%; animation: gradient 8s ease infinite; }