/* ======================================== MSPE Ultimate UI Enhancement v2.0 Modern Glassmorphic Design with Enhanced Neon Effects Premium Visual Experience ======================================== */ /* Enhanced Color Palette */ :root { /* Neon Colors - Refined for Cybersecurity */ --neon-cyan: #0ea5e9; --neon-cyan-soft: #38bdf8; --neon-purple: #0284c7; --neon-purple-soft: #0369a1; --neon-pink: #0c4a6e; --neon-pink-soft: #075985; --neon-blue: #2563eb; --neon-blue-soft: #3b82f6; --neon-green: #10b981; --neon-gold: #e6c068; --neon-orange: #f59e0b; /* Glass Effects - Enhanced */ --glass-bg: rgba(255, 255, 255, 0.03); --glass-bg-hover: rgba(255, 255, 255, 0.08); --glass-bg-active: rgba(255, 255, 255, 0.12); --glass-border: rgba(255, 255, 255, 0.08); --glass-border-hover: rgba(255, 255, 255, 0.15); --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4); --glass-shadow-lg: 0 16px 48px 0 rgba(0, 0, 0, 0.5); /* Neon Shadows - Enhanced */ --shadow-neon-cyan: 0 0 15px var(--neon-cyan), 0 0 30px rgba(14, 165, 233, 0.5), 0 0 45px rgba(14, 165, 233, 0.3); --shadow-neon-purple: 0 0 15px var(--neon-purple), 0 0 30px rgba(2, 132, 199, 0.5); --shadow-neon-pink: 0 0 15px var(--neon-pink), 0 0 30px rgba(12, 74, 110, 0.5); --shadow-neon-multi: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-purple), 0 0 60px var(--neon-pink); /* Gradients */ --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #2563eb 50%, #0d9488 100%); --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%); --gradient-shine: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); /* Timing */ --transition-fast: 0.15s ease; --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1); --transition-smooth: 0.5s cubic-bezier(0.22, 1, 0.36, 1); --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); } body { background: #0d2038; background-image: radial-gradient(ellipse at 0% 0%, rgba(14, 165, 233, 0.1) 0%, transparent 42%), radial-gradient(ellipse at 100% 0%, rgba(2, 132, 199, 0.09) 0%, transparent 42%), linear-gradient(180deg, #17335a 0%, #10223d 45%, #0d1d34 100%); /* background-attachment: fixed removed — causes full repaint on every scroll */ position: relative; min-height: 100vh; color: rgba(255, 255, 255, 0.9); } /* Grid background pseudo-element REMOVED for performance — was causing compositor layer overhead */ /* body::before { ... } */ /* Floating orbs pseudo-element REMOVED for performance — fixed-position overlay with gradients */ /* body::after { ... } */ /* gridMove and orbFloat animations removed for performance */ /* Particles Background - Enhanced */ .particles-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; overflow: hidden; } .particle { position: absolute; width: 3px; height: 3px; background: var(--neon-cyan); border-radius: 50%; opacity: 0; animation: particleFloat 25s infinite; box-shadow: 0 0 6px var(--neon-cyan); will-change: transform; } .particle:nth-child(2n) { background: var(--neon-purple); box-shadow: 0 0 6px var(--neon-purple); } .particle:nth-child(3n) { background: var(--neon-pink); box-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink); } .particle:nth-child(4n) { background: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue); width: 2px; height: 2px; } .particle:nth-child(5n) { animation-duration: 25s; } .particle:nth-child(7n) { animation-duration: 30s; } .particle:nth-child(11n) { animation-duration: 35s; } @keyframes particleFloat { 0% { transform: translateY(100vh) translateX(0) rotate(0deg) scale(0); opacity: 0; } 5% { opacity: 0.8; transform: translateY(90vh) translateX(10px) rotate(45deg) scale(1); } 50% { opacity: 1; transform: translateY(50vh) translateX(-20px) rotate(180deg) scale(1.2); } 95% { opacity: 0.8; transform: translateY(10vh) translateX(30px) rotate(315deg) scale(1); } 100% { transform: translateY(-50px) translateX(0) rotate(360deg) scale(0); opacity: 0; } } /* Scroll Progress Indicator - Enhanced */ .scroll-progress { position: fixed; top: 0; left: 0; width: 0; height: 3px; background: var(--gradient-primary); z-index: 999999; transition: width 0.05s linear; } /* scrollShine infinite animation removed for performance */ /* Glassmorphic Navigation Enhancement - Premium */ .header { background: rgba(10, 22, 40, 0.9); border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .header.scrolled { background: rgba(5, 8, 16, 0.95); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4); border-bottom: 1px solid rgba(14, 165, 233, 0.1); } .header::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gradient-primary); transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1); } .header.scrolled::after { width: 100%; box-shadow: 0 0 20px var(--neon-cyan); } /* Enhanced Navigation Links - Premium */ .nav-link { position: relative; color: rgba(255, 255, 255, 0.9); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); padding: 0.5rem 0; font-weight: 500; letter-spacing: 0.02em; background: transparent; border-radius: 0; } .nav-link::before { content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 3px; background: var(--gradient-primary); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); transform: translateX(-50%); border-radius: 2px; z-index: 2; } .nav-link::after { content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 12px; background: var(--neon-cyan); filter: blur(10px); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); transform: translateX(-50%); opacity: 0; z-index: 1; } .nav-link:hover, .nav-link.active { color: var(--neon-cyan); text-shadow: 0 0 15px rgba(14, 165, 233, 0.4); background: rgba(14, 165, 233, 0.05); } .nav-link:hover::before, .nav-link.active::before { width: 100%; } .nav-link:hover::after, .nav-link.active::after { width: 100%; opacity: 1; } /* Enhanced Active State for Navigation */ .nav-link.active { color: var(--neon-cyan); text-shadow: 0 0 15px rgba(14, 165, 233, 0.4); background: rgba(14, 165, 233, 0.05); } .nav-link.active::before { width: 100%; background: var(--gradient-primary); box-shadow: 0 0 10px var(--neon-cyan); } .nav-link.active::after { width: 100%; opacity: 0.8; } /* Enhanced Buttons - Premium Design */ .btn { position: relative; overflow: hidden; border-radius: 12px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* cursor: none; Removed */ font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; font-size: 0.875rem; } .btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); transition: left 0.5s ease; } .btn:hover::before { left: 100%; } .btn::after { content: ''; position: absolute; inset: -2px; border-radius: inherit; background: var(--gradient-primary); z-index: -1; opacity: 0; transition: opacity 0.3s ease; } .btn-primary { background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%); color: #ffffff; border: 1px solid rgba(56, 189, 248, 0.4); box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35), 0 1px 3px rgba(0, 0, 0, 0.3); font-weight: 700; } .btn-primary:hover { background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%); color: #ffffff; border-color: rgba(56, 189, 248, 0.6); transform: translateY(-3px) scale(1.02); box-shadow: 0 0 25px rgba(14, 165, 233, 0.5), 0 12px 35px rgba(14, 165, 233, 0.3); } .btn-primary:active { transform: translateY(-2px) scale(0.98); } /* Lead Magnet Pulse Animation */ .btn-pulse { animation: pulse-glow 2s infinite; } @keyframes pulse-glow { 0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(14, 165, 233, 0); } 100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); } } .btn-outline { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.9); border: 1px solid rgba(255, 255, 255, 0.2); } .btn-outline:hover { background: rgba(2, 132, 199, 0.15); border-color: var(--neon-purple); color: var(--neon-purple); transform: translateY(-4px) scale(1.02); box-shadow: 0 0 15px rgba(2, 132, 199, 0.3), 0 10px 30px rgba(2, 132, 199, 0.15); } .btn-outline:active { transform: translateY(-2px) scale(0.98); } /* Button Ripple Effect */ .btn-ripple { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.4); transform: scale(0); animation: btnRipple 0.6s linear; pointer-events: none; } @keyframes btnRipple { to { transform: scale(4); opacity: 0; } } /* Glassmorphic Cards - Performance Optimized (backdrop-filter removed) */ .card, .service-card, .news-card, .portfolio-item, .feature-card, .philosophy-card, .contact-card, .contact-form-wrapper, .sidebar-info, .sidebar-cta { background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%); border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease; position: relative; overflow: hidden; border-radius: 20px; } /* Card shine effect REMOVED for performance — was creating extra compositing layers on every card */ /* .card::before, .service-card::before, ... { } */ /* Card glow border REMOVED for performance — mask-composite on every card is expensive */ /* .card::after, .service-card::after, ... { } */ /* Card hover pseudo-element triggers removed (pseudo-elements removed for perf) */ .card:hover, .service-card:hover, .news-card:hover, .portfolio-item:hover, .feature-card:hover, .contact-card:hover { transform: translateY(-6px); border-color: rgba(14, 165, 233, 0.2); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 15px rgba(14, 165, 233, 0.08); } /* Floating Elements - Enhanced Animation */ .floating-card { animation: floatEnhanced 8s ease-in-out infinite; background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%); border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); white-space: nowrap; min-width: max-content; } .floating-card:nth-child(1) { animation-delay: 0s; } .floating-card:nth-child(2) { animation-delay: -2.5s; animation-duration: 7s; } .floating-card:nth-child(3) { animation-delay: -5s; animation-duration: 9s; } @keyframes floatEnhanced { 0%, 100% { transform: translateY(0) rotate(0deg); } 25% { transform: translateY(-15px) rotate(2deg); } 50% { transform: translateY(-25px) rotate(0deg); } 75% { transform: translateY(-10px) rotate(-2deg); } } /* Neon Text Effects - Enhanced */ .highlight, .hero-title .highlight { color: var(--neon-cyan); background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: none; position: relative; display: inline; word-break: normal; white-space: normal; } .highlight::after, .hero-title .highlight::after { content: attr(data-text); position: absolute; left: 0; top: 0; color: var(--neon-cyan); filter: blur(20px); opacity: 0.6; z-index: -1; animation: glowPulse 3s ease-in-out infinite; } @keyframes glowPulse { 0%, 100% { filter: blur(20px); opacity: 0.5; } 50% { filter: blur(30px); opacity: 0.8; } } /* Text Glow Animation */ .neon-text { animation: neonFlicker 4s ease-in-out infinite; } @keyframes neonFlicker { 0%, 100% { text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan); } 50% { text-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan); } 52% { text-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--neon-cyan), 0 0 50px var(--neon-cyan); } 54% { text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan); } } /* Section Headers - Premium */ .section-label { color: var(--neon-cyan); text-shadow: 0 0 20px rgba(14, 165, 233, 0.5); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.875rem; display: inline-flex; align-items: center; gap: 0.75rem; } .section-label::before, .section-label::after { content: ''; width: 30px; height: 1px; background: linear-gradient(90deg, transparent, var(--neon-cyan)); } .section-label::after { background: linear-gradient(90deg, var(--neon-cyan), transparent); } .section-title { color: #ffffff; font-weight: 700; line-height: 1.2; } .section-description { color: rgba(255, 255, 255, 0.7); } /* Hero Section Enhancement - Premium */ .hero { position: relative; overflow: hidden; background: #050810; } .hero-content { max-width: 100%; } .hero::before { content: ''; position: absolute; top: 50%; left: 50%; width: 800px; height: 800px; background: radial-gradient(circle at center, var(--neon-cyan) 0%, transparent 50%); opacity: 0.06; transform: translate(-50%, -50%); filter: blur(60px); /* heroGlowEnhanced animation removed for performance */ } .hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to top, #050810 0%, transparent 100%); pointer-events: none; z-index: 2; } @keyframes heroGlowEnhanced { 0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 0.08; } 33% { transform: translate(-50%, -50%) scale(1.1) rotate(120deg); opacity: 0.12; } 66% { transform: translate(-50%, -50%) scale(0.9) rotate(240deg); opacity: 0.06; } } /* Hero Visual Enhancements */ .hero-graphic .orbit { border-color: rgba(14, 165, 233, 0.2); box-shadow: 0 0 20px rgba(14, 165, 233, 0.1); } .hero-graphic .core { background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%); box-shadow: 0 0 40px var(--neon-cyan), 0 0 80px rgba(14, 165, 233, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.2); } /* Back to Top Button Enhancement - Premium */ .back-to-top { background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(2, 132, 199, 0.1) 100%); border: 1px solid rgba(14, 165, 233, 0.3); color: var(--neon-cyan); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); border-radius: 12px; width: 50px; height: 50px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .back-to-top::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s ease; z-index: -1; } .back-to-top:hover { background: transparent; color: #ffffff; transform: translateY(-5px); box-shadow: 0 0 15px rgba(14, 165, 233, 0.3), 0 10px 30px rgba(14, 165, 233, 0.15); } .back-to-top:hover::before { opacity: 1; } /* Form Inputs Enhancement - Premium */ input, textarea, select { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.95); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 12px; padding: 1rem 1.25rem; } input:focus, textarea:focus, select:focus { border-color: var(--neon-cyan); box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1), 0 0 20px rgba(14, 165, 233, 0.2); outline: none; background: rgba(14, 165, 233, 0.03); } input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, 0.4); transition: all 0.3s ease; } input:focus::placeholder, textarea:focus::placeholder { color: rgba(14, 165, 233, 0.5); transform: translateX(5px); } /* Form Label Animation */ .form-group { position: relative; } .form-group label { color: rgba(255, 255, 255, 0.7); font-weight: 500; margin-bottom: 0.5rem; display: block; transition: all 0.3s ease; } .form-group:focus-within label { color: var(--neon-cyan); } /* Dropdown Menu Enhancement - Premium */ .dropdown-menu { background: rgba(5, 8, 16, 0.98); border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); border-radius: 16px; padding: 0.75rem; overflow: hidden; } .dropdown-menu li a { color: rgba(255, 255, 255, 0.8); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 10px; padding: 0.75rem 1rem; margin: 0.25rem 0; position: relative; overflow: hidden; } .dropdown-menu li a::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 0; background: var(--gradient-primary); border-radius: 3px; transition: height 0.3s ease; } .dropdown-menu li a:hover { background: rgba(14, 165, 233, 0.1); color: var(--neon-cyan); padding-left: 1.5rem; } .dropdown-menu li a:hover::before { height: 60%; } /* Preloader Enhancement - Premium */ .preloader { background: #050810; background-image: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(2, 132, 199, 0.05) 0%, transparent 40%), radial-gradient(circle at 80% 20%, rgba(12, 74, 110, 0.05) 0%, transparent 40%); } .loader-ring { border: 3px solid transparent; border-top-color: var(--neon-cyan); border-right-color: var(--neon-purple); border-bottom-color: var(--neon-pink); box-shadow: 0 0 30px var(--neon-cyan), inset 0 0 30px rgba(14, 165, 233, 0.1); animation: spin 0.8s linear infinite, loaderGlow 2s ease-in-out infinite; } @keyframes loaderGlow { 0%, 100% { box-shadow: 0 0 30px var(--neon-cyan), inset 0 0 30px rgba(14, 165, 233, 0.1); } 50% { box-shadow: 0 0 50px var(--neon-purple), inset 0 0 50px rgba(2, 132, 199, 0.1); } } .loader-text { color: var(--neon-cyan) !important; text-shadow: 0 0 30px var(--neon-cyan); animation: loaderTextPulse 2s ease-in-out infinite; font-weight: 800; letter-spacing: 0.2em; } @keyframes loaderTextPulse { 0%, 100% { opacity: 1; text-shadow: 0 0 30px var(--neon-cyan); } 50% { opacity: 0.7; text-shadow: 0 0 50px var(--neon-cyan), 0 0 80px var(--neon-purple); } } /* Footer Enhancement - Premium */ footer, .footer { background: linear-gradient(180deg, transparent 0%, rgba(5, 8, 16, 0.98) 20%, #050810 100%) !important; border-top: 1px solid rgba(14, 165, 233, 0.1) !important; position: relative; } footer::before, .footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gradient-primary); opacity: 0.5; } /* Image hover transitions - only on interactive images, not all */ /* img { transition: ... } removed — transitioning ALL images is expensive */ .portfolio-item img, .news-card img, .team-member img { transition: transform 0.4s ease; } .portfolio-item:hover img, .news-card:hover img, .team-member:hover img { transform: scale(1.05); } /* Scrollbar Styling - Premium */ ::-webkit-scrollbar { width: 10px; height: 10px; } ::-webkit-scrollbar-track { background: #050810; border-left: 1px solid rgba(14, 165, 233, 0.1); } ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, rgba(14, 165, 233, 0.3) 0%, rgba(2, 132, 199, 0.3) 100%); border: 1px solid rgba(14, 165, 233, 0.2); border-radius: 10px; transition: all 0.3s ease; } ::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--neon-cyan) 0%, var(--neon-purple) 100%); box-shadow: 0 0 20px var(--neon-cyan); } /* Text Selection - Premium */ ::selection { background: var(--neon-cyan); color: #050810; text-shadow: none; } ::-moz-selection { background: var(--neon-cyan); color: #050810; text-shadow: none; } /* Link Hover Effects */ a { /* cursor: none; Removed */ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } /* Stats/Counter Enhancement - Premium */ .stat-item { text-align: center; padding: 2rem; border-radius: 20px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%); border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .stat-item:hover { background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(2, 132, 199, 0.05) 100%); border-color: rgba(14, 165, 233, 0.2); transform: translateY(-8px); } .stat-number, .stat-value, .counter-value, .counter { color: var(--neon-cyan) !important; text-shadow: 0 0 30px rgba(14, 165, 233, 0.5); font-weight: 700; font-size: 2.5rem; } .stat-icon { color: var(--neon-cyan); font-size: 2rem; margin-bottom: 1rem; text-shadow: 0 0 20px var(--neon-cyan); } .stat-label { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; } /* Timeline Elements - Enhanced */ .timeline-item::before { background: var(--gradient-primary) !important; box-shadow: 0 0 20px var(--neon-cyan); } /* Process Steps Enhancement */ .process-step { background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; } .process-step:hover { background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(2, 132, 199, 0.05) 100%); border-color: rgba(14, 165, 233, 0.2); transform: translateY(-8px) scale(1.02); } .step-number { color: var(--neon-cyan); font-size: 2.5rem; font-weight: 800; text-shadow: 0 0 30px rgba(14, 165, 233, 0.5); margin-bottom: 0.5rem; } /* SECTIONS - Alternating Dark Backgrounds for Visual Rhythm */ section, .services, .about, .portfolio, .testimonials, .news, .contact, .features, .process, .partners { background: #050810 !important; background-color: #050810 !important; position: relative; } /* Alternating lighter sections for breathing room */ .how-to-start, .why-us, .industries { background: #0a1225 !important; background-color: #0a1225 !important; } /* Philosophy gets a distinct break - slightly lighter to stand out */ .philosophy { background: linear-gradient(180deg, #0d1b35 0%, #0a1628 100%) !important; border-top: 1px solid rgba(14, 165, 233, 0.08); border-bottom: 1px solid rgba(14, 165, 233, 0.08); } /* Section Content Text Colors */ section h1, section h2, section h3, section h4, section h5, section h6, section .section-title, section .card-title { color: #ffffff !important; } section p, section .section-description, section .card-text { color: rgba(255, 255, 255, 0.82) !important; } /* Service Icon Enhancement */ .service-icon { width: 80px; height: 80px; border-radius: 20px; background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(2, 132, 199, 0.1) 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid rgba(14, 165, 233, 0.2); } .service-icon i { font-size: 2rem; color: var(--neon-cyan); text-shadow: 0 0 20px var(--neon-cyan); transition: all 0.4s ease; } .service-card:hover .service-icon { background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%); transform: scale(1.1) rotate(5deg); } .service-card:hover .service-icon i { color: #ffffff; text-shadow: none; } /* Service Title and Description */ .service-title { color: rgba(255, 255, 255, 0.95) !important; font-weight: 700; margin-bottom: 1rem; } .service-description { color: rgba(255, 255, 255, 0.7) !important; line-height: 1.7; } /* Service Features */ .service-features li { color: rgba(255, 255, 255, 0.8); display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; } .service-features li i { color: var(--neon-cyan); font-size: 0.875rem; } /* Service Link */ .service-link { color: var(--neon-cyan) !important; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; transition: all 0.3s ease; } .service-link:hover { color: var(--neon-cyan-soft) !important; gap: 1rem; } /* Mobile Responsive - Enhanced */ @media (max-width: 768px) { .custom-cursor { display: none !important; } body { cursor: auto; } body::before, body::after { display: none; } a, button, .btn { cursor: pointer; } .hero::before { width: 500px; height: 500px; } .floating-card { animation: none; } .card:hover, .service-card:hover, .news-card:hover, .portfolio-item:hover, .feature-card:hover { transform: translateY(-6px); } .stat-number, .counter { font-size: 2rem; } } @media (max-width: 480px) { .btn { padding: 0.875rem 1.5rem !important; font-size: 0.8rem; } .section-label::before, .section-label::after { width: 15px; } } /* Page Load Animation - Enhanced */ @keyframes pageLoadFade { from { opacity: 0; transform: translateY(30px); filter: blur(10px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } } /* pageLoadFade animation on .container > * REMOVED — was setting opacity:0 on hundreds of elements causing UI corruption when animation didn't complete properly. Sections still get reveal animations via JS IntersectionObserver which is more reliable. */ /* Magnetic Effect for Interactive Elements */ .btn, .nav-link { transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1); } /* Interactive Glow Effect */ .interactive-glow { position: relative; } .interactive-glow::after { content: ''; position: absolute; top: 50%; left: 50%; width: 150%; height: 150%; background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 60%); opacity: 0; transform: translate(-50%, -50%); transition: opacity 0.4s ease; pointer-events: none; z-index: -1; } .interactive-glow:hover::after { opacity: 1; } /* Feature Item Enhancement */ .feature-item { display: flex; gap: 1.5rem; padding: 1.5rem; border-radius: 16px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%); border: 1px solid transparent; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .feature-item:hover { background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(2, 132, 199, 0.03) 100%); border-color: rgba(14, 165, 233, 0.1); transform: translateX(10px); } .feature-icon { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(2, 132, 199, 0.1) 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(14, 165, 233, 0.2); transition: all 0.4s ease; } .feature-icon i { font-size: 1.5rem; color: var(--neon-cyan); } .feature-item:hover .feature-icon { background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%); transform: scale(1.1); } .feature-item:hover .feature-icon i { color: #ffffff; } .feature-content h4 { color: rgba(255, 255, 255, 0.95); font-weight: 600; margin-bottom: 0.5rem; } .feature-content p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; line-height: 1.6; } /* Why Us Section Enhancement */ .why-us { position: relative; } .why-us-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } @media (max-width: 968px) { .why-us-content { grid-template-columns: 1fr; gap: 3rem; } } /* Process Flow Enhancement */ .process-flow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } /* Reveal Animation Classes */ .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); } .reveal.active { opacity: 1; transform: translateY(0); } .reveal-left { opacity: 0; transform: translateX(-40px); } .reveal-left.active { opacity: 1; transform: translateX(0); } .reveal-right { opacity: 0; transform: translateX(40px); } .reveal-right.active { opacity: 1; transform: translateX(0); } .reveal-scale { opacity: 0; transform: scale(0.9); } .reveal-scale.active { opacity: 1; transform: scale(1); } /* Loading Skeleton */ .skeleton { background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 75%); background-size: 200% 100%; animation: skeletonLoading 1.5s infinite; border-radius: 8px; } @keyframes skeletonLoading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } } /* Tooltip Enhancement */ [data-tooltip] { position: relative; } [data-tooltip]::after { content: attr(data-tooltip); position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%) translateY(-8px); background: rgba(5, 8, 16, 0.95); color: var(--neon-cyan); padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.875rem; white-space: nowrap; opacity: 0; visibility: hidden; transition: all 0.3s ease; border: 1px solid rgba(14, 165, 233, 0.2); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); } [data-tooltip]:hover::after { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(-12px); } /* Badge Styles */ .badge { display: inline-flex; align-items: center; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; } .badge-primary { background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(2, 132, 199, 0.2) 100%); color: var(--neon-cyan); border: 1px solid rgba(14, 165, 233, 0.3); } .badge-success { background: rgba(0, 255, 136, 0.15); color: var(--neon-green); border: 1px solid rgba(0, 255, 136, 0.3); } /* News Card Enhancement */ .news-card { padding: 0 !important; overflow: hidden; } .news-card .news-image { height: 200px; overflow: hidden; position: relative; } .news-card .news-image::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to top, rgba(5, 8, 16, 0.9), transparent); } .news-card .news-content { padding: 1.5rem; } .news-card .news-meta { color: var(--neon-cyan); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; } .news-card .news-title { color: rgba(255, 255, 255, 0.95); font-weight: 600; margin-bottom: 0.75rem; line-height: 1.4; } .news-card .news-excerpt { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; line-height: 1.6; } /* Logo Enhancement */ .logo-text { font-size: 2rem !important; font-weight: 800; color: var(--neon-cyan) !important; text-shadow: 0 0 30px rgba(14, 165, 233, 0.5); letter-spacing: 0.05em; } .logo-tagline { color: rgba(255, 255, 255, 0.6) !important; font-size: 0.7rem !important; letter-spacing: 0.15em; } /* Hero Title Enhancement */ .hero-title { color: rgba(255, 255, 255, 0.98) !important; text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); word-break: normal !important; overflow-wrap: normal !important; hyphens: none !important; white-space: normal; } .hero-description { color: rgba(255, 255, 255, 0.75) !important; word-break: normal; overflow-wrap: normal; } .hero-label { background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(2, 132, 199, 0.1) 100%) !important; border: 1px solid rgba(14, 165, 233, 0.2); color: var(--neon-cyan) !important; white-space: nowrap; } /* Philosophy Card Enhancement */ .philosophy-card { background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important; border: 1px solid rgba(255, 255, 255, 0.05) !important; border-radius: 20px !important; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .philosophy-card:hover { background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(2, 132, 199, 0.05) 100%) !important; border-color: rgba(14, 165, 233, 0.2) !important; transform: translateY(-8px); } .philosophy-card i { color: var(--neon-cyan) !important; text-shadow: 0 0 30px rgba(14, 165, 233, 0.5); } .philosophy-card h4 { color: rgba(255, 255, 255, 0.95) !important; } .philosophy-card p { color: rgba(255, 255, 255, 0.7) !important; } /* Commitment Card Enhancement */ .commitment-card { background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(2, 132, 199, 0.05) 100%) !important; border: 1px solid rgba(14, 165, 233, 0.15) !important; } /* Hero Control Buttons */ .hero-control { background: rgba(255, 255, 255, 0.05) !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; color: rgba(255, 255, 255, 0.8) !important; backdrop-filter: blur(10px); transition: all 0.3s ease; } .hero-control:hover { background: rgba(14, 165, 233, 0.15) !important; border-color: var(--neon-cyan) !important; color: var(--neon-cyan) !important; transform: scale(1.1); } /* Hero Dots */ .hero-dots .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.3); transition: all 0.3s ease; cursor: pointer; } .hero-dots .dot.active { background: var(--neon-cyan); border-color: var(--neon-cyan); box-shadow: 0 0 15px var(--neon-cyan); } /* ==================== GLOBAL DARK THEME FIX ==================== */ /* Force all sections to have dark backgrounds */ main, .main-content, .page-content { background: #050810 !important; } /* Stats Section - Slightly distinct from hero */ .stats { background: linear-gradient(180deg, #070d1a 0%, #0a1225 100%) !important; } .stats-grid { background: transparent !important; } /* Services Section */ .services { background: linear-gradient(180deg, #050810 0%, #070d1a 100%) !important; } .services-grid { background: transparent !important; } /* All service cards dark theme */ .service-card { background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; } .service-card .service-title, .service-card h3 { color: rgba(255, 255, 255, 0.95) !important; } .service-card .service-description, .service-card p { color: rgba(255, 255, 255, 0.7) !important; } .service-card .service-features li { color: rgba(255, 255, 255, 0.8) !important; } /* About Section Dark Fix */ .about { background: #050810 !important; } /* Portfolio Section Dark Fix */ .portfolio { background: linear-gradient(180deg, #050810 0%, #0a0d15 100%) !important; } /* News Section Dark Fix */ .news { background: #050810 !important; } /* Testimonials Section Dark Fix */ .testimonials { background: linear-gradient(180deg, #0a0d15 0%, #050810 100%) !important; } /* Contact Section Dark Fix */ .contact { background: #050810 !important; } /* CTA Section - Vibrant Marketing Gradient */ .cta { background: linear-gradient(135deg, #0c7cd5 0%, #0d9488 100%) !important; position: relative; } .cta .cta-bg { background: linear-gradient(135deg, #0c7cd5 0%, #0d9488 100%) !important; } .cta .cta-title { color: #ffffff !important; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); } .cta .cta-description { color: rgba(255, 255, 255, 0.95) !important; } .cta .btn-primary { background: #ffffff !important; color: #0c7cd5 !important; border-color: #ffffff !important; font-weight: 700; } .cta .btn-primary:hover { background: #f0f9ff !important; color: #0369a1 !important; transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important; } .cta .btn-outline { color: #ffffff !important; border-color: rgba(255, 255, 255, 0.6) !important; background: rgba(255, 255, 255, 0.1) !important; } .cta .btn-outline:hover { background: #ffffff !important; color: #0c7cd5 !important; border-color: #ffffff !important; } /* Partners/Clients Section Dark Fix */ .partners, .clients { background: #050810 !important; } /* Features Section Dark Fix */ .features { background: linear-gradient(180deg, #0a0d15 0%, #050810 100%) !important; } /* Process Section Dark Fix */ .process { background: #050810 !important; } /* Why Us Section - Lighter alternate */ .why-us { background: linear-gradient(180deg, #0a1225 0%, #0d1630 100%) !important; } /* Philosophy Section - Visual break with lighter tone */ .philosophy { background: linear-gradient(180deg, #0d1b35 0%, #0a1628 100%) !important; border-top: 1px solid rgba(14, 165, 233, 0.08); border-bottom: 1px solid rgba(14, 165, 233, 0.08); } /* Ensure container backgrounds are transparent */ .container { background: transparent !important; } /* Fix any white text areas */ .section-header { background: transparent !important; } .section-header .section-title { color: #ffffff !important; } .section-header .section-description { color: rgba(255, 255, 255, 0.82) !important; } /* Override any inline styles that might set white backgrounds */ [style*="background: white"], [style*="background-color: white"], [style*="background:#fff"], [style*="background-color:#fff"] { background: #050810 !important; background-color: #050810 !important; } .hero-dots .dot:hover { background: rgba(14, 165, 233, 0.3); border-color: var(--neon-cyan); } .hero-dots .dot.active { background: var(--neon-cyan); border-color: var(--neon-cyan); box-shadow: 0 0 15px var(--neon-cyan); transform: scale(1.2); } /* Ensure all text is visible and doesn't break incorrectly */ h1, h2, h3, h4, h5, h6 { color: #ffffff; word-break: normal; overflow-wrap: normal; hyphens: none; } p { color: rgba(255, 255, 255, 0.82); word-break: normal; overflow-wrap: break-word; } /* Floating cards text fix */ .floating-card { white-space: nowrap; } .floating-card span { white-space: nowrap; } /* Smooth transitions for interactive elements */ .btn, .nav-link { transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1); } /* ==================== REDUCED MOTION ==================== */ @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.1s !important; } .particles-bg, .scroll-progress, body::before, body::after { display: none !important; } body { cursor: auto; } } /* Contact Page Visibility Fixes */ .sidebar-info h3, .sidebar-cta h3, .contact-card h3, .contact-card p, .form-header h2, .form-header p, .info-list li { color: rgba(255, 255, 255, 0.9) !important; } .contact-card-icon i { text-shadow: 0 0 10px var(--neon-cyan); } .map-container { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); } /* ==================== MARKETING ENHANCEMENTS ==================== */ /* --- Promo Announcement Bar --- */ .promo-bar { background: linear-gradient(90deg, #0ea5e9 0%, #0d9488 100%); color: #ffffff; text-align: center; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em; position: relative; z-index: 1001; display: flex; align-items: center; justify-content: center; gap: 0.75rem; } .promo-bar a { color: #ffffff; text-decoration: underline; text-underline-offset: 2px; font-weight: 700; } .promo-bar a:hover { color: #f0f9ff; } .promo-bar .promo-icon { font-size: 1rem; } .promo-bar .promo-close { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(255, 255, 255, 0.8); font-size: 1rem; cursor: pointer; padding: 0.25rem; line-height: 1; } .promo-bar .promo-close:hover { color: #ffffff; } /* Adjust header position when promo bar is visible */ body.has-promo .header { top: 36px; } body.has-promo .hero, body.has-promo .page-hero { padding-top: 36px; } /* --- Trust Strip (below hero) --- */ .trust-strip { background: rgba(5, 8, 16, 0.95); border-top: 1px solid rgba(14, 165, 233, 0.1); border-bottom: 1px solid rgba(14, 165, 233, 0.1); padding: 1.25rem 0; text-align: center; } .trust-strip .container { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; } .trust-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255, 255, 255, 0.6); font-size: 0.8125rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; } .trust-item i { color: var(--neon-cyan); font-size: 1rem; } .trust-item strong { color: rgba(255, 255, 255, 0.9); font-weight: 700; } /* --- Featured Service Card Badge --- */ .service-card.featured { border-color: rgba(14, 165, 233, 0.35) !important; background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(2, 132, 199, 0.06) 100%) !important; position: relative; } .service-card.featured::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #0ea5e9, #0d9488); border-radius: 20px 20px 0 0; } .service-badge { position: absolute; top: 1rem; right: 1rem; background: linear-gradient(135deg, #0ea5e9, #0d9488) !important; color: #ffffff !important; font-size: 0.7rem; font-weight: 700; padding: 0.35rem 0.75rem; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.06em; box-shadow: 0 4px 12px rgba(14, 165, 233, 0.35); z-index: 5; } /* --- Footer Newsletter Signup --- */ .footer-newsletter { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.08); } .footer-newsletter p { color: rgba(255, 255, 255, 0.65) !important; font-size: 0.85rem; margin-bottom: 0.9rem; line-height: 1.4; } .newsletter-form { display: flex; gap: 0.5rem; } .newsletter-form input[type="email"] { flex: 1; padding: 0.7rem 1.1rem !important; font-size: 0.9rem; border-radius: 8px !important; background: rgba(255, 255, 255, 0.08) !important; border: 1px solid rgba(255, 255, 255, 0.18) !important; color: #ffffff !important; min-width: 0; transition: all 0.3s ease; } .newsletter-form input[type="email"]:focus { background: rgba(255, 255, 255, 0.12) !important; border-color: rgba(0, 245, 255, 0.4) !important; box-shadow: 0 0 12px rgba(0, 245, 255, 0.15); } .newsletter-form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.5); } .newsletter-form .btn-newsletter { background: linear-gradient(135deg, #0ea5e9, #2563eb) !important; color: #ffffff !important; border: none !important; padding: 0.7rem 1.5rem; border-radius: 8px; font-size: 0.85rem; font-weight: 700; cursor: pointer; white-space: nowrap; transition: all 0.3s ease; flex-shrink: 0; } .newsletter-form .btn-newsletter:hover { background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important; transform: translateY(-1px); } /* --- Mobile Sticky CTA Bar --- */ .mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(5, 8, 16, 0.97); backdrop-filter: blur(12px); border-top: 1px solid rgba(14, 165, 233, 0.2); padding: 0.75rem 1rem; z-index: 999; text-align: center; } .mobile-sticky-cta .btn { width: 100%; max-width: 400px; font-size: 0.9375rem; padding: 0.875rem 1.5rem; } @media (max-width: 768px) { .mobile-sticky-cta { display: block; } /* Make room for sticky bar */ .whatsapp-float { bottom: 80px !important; } .back-to-top { bottom: 80px !important; } /* 10. Show compact CTA in mobile nav */ .nav-actions .btn.btn-primary { display: inline-flex !important; font-size: 0.8125rem; padding: 0.5rem 1rem; min-width: auto; } /* Trust strip responsive */ .trust-strip .container { gap: 1.25rem; } .trust-item { font-size: 0.7rem; } /* Promo bar responsive */ .promo-bar { font-size: 0.75rem; padding: 0.4rem 2.5rem 0.4rem 0.75rem; } } @media (max-width: 480px) { .newsletter-form { flex-direction: column; } .newsletter-form .btn-newsletter { width: 100%; } .trust-strip .container { gap: 1rem; } .trust-item span { display: none; } }