/* CSS Reset and Base Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: 'Roboto Slab', 'Lato', sans-serif; line-height: 1.6; color: #444444; background-color: #ffffff; } /* Utility Classes */ .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .btn { display: inline-block; padding: 14px 28px; border: none; border-radius: 8px; text-decoration: none; font-weight: 500; font-size: 16px; text-align: center; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); } .btn-primary { background: #179e83; color: white; } .btn-primary:hover { transform: translateY(-2px); background: #11725e; box-shadow: 0 4px 16px rgba(23, 158, 131, 0.3); } .btn-secondary { background: white; color: #144784; border: 2px solid #144784; } .btn-secondary:hover { background: #144784; color: white; transform: translateY(-2px); } .btn-full { width: 100%; } .highlight { background: linear-gradient(135deg, #179e83, #1bbc9b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .section-header { text-align: center; margin-bottom: 60px; } .section-header h2 { font-size: 2.5rem; font-weight: 600; margin-bottom: 16px; color: #1a1a1a; } .section-header p { font-size: 1.2rem; color: #666; max-width: 600px; margin: 0 auto; } /* Navigation */ .navbar { position: fixed; top: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0, 0, 0, 0.1); z-index: 1000; transition: all 0.3s ease; } .navbar.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); } .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 70px; } .nav-logo img { height: 40px; width: auto; } .nav-menu { display: flex; align-items: center; gap: 30px; } .nav-link { text-decoration: none; color: #1a1a1a; font-weight: 500; transition: color 0.3s ease; } .nav-link:hover { color: #144784; } .nav-link.cta-button { background: #179e83; color: white; padding: 10px 20px; border-radius: 6px; transition: all 0.3s ease; } .nav-link.cta-button:hover { transform: translateY(-2px); background: #11725e; box-shadow: 0 4px 16px rgba(23, 158, 131, 0.3); } .nav-toggle { display: none; flex-direction: column; cursor: pointer; } .bar { width: 25px; height: 3px; background: #1a1a1a; margin: 3px 0; transition: 0.3s; } /* Hero Section */ .hero { padding: 120px 0 80px; background: linear-gradient(135deg, #252d3b 0%, #144784 100%); min-height: 100vh; display: flex; align-items: center; color: white; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: url('data:image/svg+xml,') no-repeat center; background-size: contain; animation: float 6s ease-in-out infinite; } @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } } .hero-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } .hero-content { animation: fadeInUp 1s ease; } .hero-title { font-size: 3.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 24px; color: #ffffff; } .hero-subtitle { font-size: 1.3rem; color: #ffffff; margin-bottom: 40px; line-height: 1.6; opacity: 0.9; } .hero-buttons { display: flex; gap: 20px; margin-bottom: 60px; } .hero-stats { display: flex; gap: 40px; } .stat { text-align: center; } .stat-number { display: block; font-size: 2rem; font-weight: 700; color: #179e83; } .stat-label { display: block; font-size: 0.9rem; color: #ffffff; font-weight: 500; opacity: 0.8; } .hero-image { animation: fadeInRight 1s ease; position: relative; z-index: 2; } .hero-graphic { width: 100%; height: auto; max-width: 500px; animation: float 6s ease-in-out infinite; } .hero-graphic svg { width: 100%; height: auto; filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1)); } /* Hero Graphic Animations */ .hero-graphic .bg-circle-1 { animation: rotate 20s linear infinite; transform-origin: center; } .hero-graphic .bg-circle-2 { animation: rotate 15s linear infinite reverse; transform-origin: center; } .hero-graphic .browser-main { animation: pulse 4s ease-in-out infinite; } .hero-graphic .database { animation: pulse 6s ease-in-out infinite; } .hero-graphic .dashboard { animation: pulse 5s ease-in-out infinite; } .hero-graphic .chart-bar-1 { animation: grow-bar 3s ease-in-out infinite; } .hero-graphic .chart-bar-2 { animation: grow-bar 3s ease-in-out infinite 0.5s; } .hero-graphic .chart-bar-3 { animation: grow-bar 3s ease-in-out infinite 1s; } .hero-graphic .chart-bar-4 { animation: grow-bar 3s ease-in-out infinite 1.5s; } .hero-graphic .chart-bar-5 { animation: grow-bar 3s ease-in-out infinite 2s; } .hero-graphic .extraction-path { stroke-dasharray: 200; stroke-dashoffset: 200; animation: draw-line 4s ease-in-out infinite; } @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @keyframes grow-bar { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(1.3); } } @keyframes draw-line { 0% { stroke-dashoffset: 200; } 50% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -200; } } @keyframes data-pulse { 0%, 100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } } .hero-img { width: 100%; height: auto; max-width: 500px; } /* Services Section */ .services { padding: 100px 0; background: white; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; } .service-card { background: white; padding: 40px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; border: 1px solid #f0f0f0; } .service-card:hover { transform: translateY(-8px); box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12); } .service-icon { width: 60px; height: 60px; margin-bottom: 24px; } .service-icon img { width: 100%; height: 100%; } .service-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 16px; color: #1a1a1a; } .service-card p { color: #666; margin-bottom: 20px; line-height: 1.6; } .service-card ul { list-style: none; } .service-card li { padding: 8px 0; color: #555; position: relative; padding-left: 20px; } .service-card li:before { content: '✓'; position: absolute; left: 0; color: #179e83; font-weight: bold; } /* Process Section */ .process { padding: 100px 0; background: #f8f9fa; } .process-steps { max-width: 800px; margin: 0 auto; } .step { display: flex; align-items: flex-start; margin-bottom: 50px; animation: fadeInUp 0.6s ease; } .step:last-child { margin-bottom: 0; } .step-number { background: #179e83; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; margin-right: 30px; flex-shrink: 0; } .step-content h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 12px; color: #1a1a1a; } .step-content p { color: #666; line-height: 1.6; } /* Why Us Section */ .why-us { padding: 100px 0; background: white; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .feature { text-align: center; padding: 30px; animation: fadeInUp 0.6s ease; } .feature-icon { width: 80px; height: 80px; margin: 0 auto 24px; } .feature-icon img { width: 100%; height: 100%; } .feature h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 16px; color: #1a1a1a; } .feature p { color: #666; line-height: 1.6; } /* Contact Section */ .contact { padding: 100px 0; background: #f8f9fa; } .contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; } .contact-info h2 { font-size: 2.5rem; font-weight: 600; margin-bottom: 20px; color: #1a1a1a; } .contact-info p { font-size: 1.2rem; color: #666; margin-bottom: 40px; line-height: 1.6; } .contact-details { display: flex; flex-direction: column; gap: 30px; } .contact-item { display: flex; align-items: center; gap: 20px; } .contact-item img { width: 40px; height: 40px; } .contact-item strong { display: block; font-weight: 600; color: #1a1a1a; margin-bottom: 4px; } .contact-item p { margin: 0; color: #666; } .contact-item a { color: #179e83; text-decoration: none; } .contact-item a:hover { text-decoration: underline; } /* Form Styles */ .contact-form { background: white; padding: 40px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); } .form-group { margin-bottom: 24px; } .form-group label { display: block; font-weight: 500; margin-bottom: 8px; color: #1a1a1a; } .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid #e1e5e9; border-radius: 8px; font-size: 16px; transition: border-color 0.3s ease; background: white; } .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #179e83; box-shadow: 0 0 0 3px rgba(23, 158, 131, 0.1); } .form-group textarea { resize: vertical; min-height: 120px; } /* Footer */ .footer { background: #151f25; color: white; padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; } .footer-section h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; color: white; } .footer-section ul { list-style: none; } .footer-section li { margin-bottom: 12px; } .footer-section a { color: #ccc; text-decoration: none; transition: color 0.3s ease; } .footer-section a:hover { color: #179e83; } .footer-logo img { height: 40px; margin-bottom: 20px; } .footer-section p { color: #ccc; line-height: 1.6; } .footer-bottom { border-top: 1px solid #333; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; } .social-links { display: flex; gap: 20px; } .social-links a { display: block; width: 40px; height: 40px; } .social-links img { width: 100%; height: 100%; filter: invert(1); transition: filter 0.3s ease; } .social-links a:hover img { filter: invert(0.7) sepia(1) saturate(2) hue-rotate(240deg); } /* Animations */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } } @keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } } @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } } @keyframes slideInFromBottom { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } } /* Animation Classes */ .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; } .animate-on-scroll.animated { opacity: 1; transform: translateY(0); } .service-card { animation: slideInFromBottom 0.6s ease-out forwards; animation-delay: var(--animation-delay, 0s); } .feature { animation: fadeInUp 0.6s ease-out forwards; animation-delay: var(--animation-delay, 0s); } .step { animation: fadeInLeft 0.6s ease-out forwards; animation-delay: var(--animation-delay, 0s); } /* Responsive Design */ @media (max-width: 768px) { .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: white; width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05); padding: 40px 0; gap: 20px; } .nav-menu.active { left: 0; } .nav-toggle { display: flex; } .nav-toggle.active .bar:nth-child(2) { opacity: 0; } .nav-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); } .nav-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; } .hero-title { font-size: 2.5rem; } .hero-buttons { flex-direction: column; align-items: center; } .hero-stats { justify-content: center; gap: 30px; } .section-header h2 { font-size: 2rem; } .services-grid { grid-template-columns: 1fr; } .features-grid { grid-template-columns: 1fr; } .contact-content { grid-template-columns: 1fr; gap: 40px; } .footer-content { grid-template-columns: 1fr; gap: 30px; text-align: center; } .footer-bottom { flex-direction: column; gap: 20px; text-align: center; } } @media (max-width: 480px) { .container { padding: 0 15px; } .hero { padding: 100px 0 60px; } .hero-title { font-size: 2rem; } .hero-subtitle { font-size: 1.1rem; } .btn { padding: 12px 24px; font-size: 14px; } .service-card, .contact-form { padding: 30px 20px; } .step { flex-direction: column; text-align: center; } .step-number { margin: 0 0 20px 0; } } /* Performance Optimizations */ img { max-width: 100%; height: auto; loading: lazy; } /* Logo specific styles */ .logo { height: auto; max-height: 50px; width: auto; } .footer-logo img { height: 40px; width: auto; } /* Favicon links don't need display properties */ /* Loading states */ .loading { opacity: 0.6; pointer-events: none; } .loading::after { content: ''; position: absolute; top: 50%; left: 50%; width: 20px; height: 20px; margin: -10px 0 0 -10px; border: 2px solid #f3f3f3; border-top: 2px solid #179e83; border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* Notification styles */ .notification { position: fixed; top: 20px; right: 20px; z-index: 10000; max-width: 400px; padding: 16px 20px; border-radius: 8px; color: white; font-family: 'Roboto Slab', sans-serif; font-size: 14px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); transition: all 0.3s ease; } .notification-success { background: #10b981; } .notification-error { background: #ef4444; } .notification-info { background: #3b82f6; } .notification-content { display: flex; justify-content: space-between; align-items: center; gap: 12px; } .notification-close { background: none; border: none; color: white; font-size: 18px; cursor: pointer; padding: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; } /* Scroll to top button */ .scroll-top-btn { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; border: none; border-radius: 50%; background: linear-gradient(135deg, #179e83 0%, #144784 100%); color: white; font-size: 20px; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 1000; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); } .scroll-top-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); } /* Tooltip styles */ .tooltip { position: absolute; background: #1a1a1a; color: white; padding: 8px 12px; border-radius: 6px; font-size: 14px; white-space: nowrap; z-index: 10000; pointer-events: none; transition: opacity 0.3s ease; } /* Form validation states */ .form-group.error input, .form-group.error select, .form-group.error textarea { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1); } .form-group.success input, .form-group.success select, .form-group.success textarea { border-color: #10b981; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1); } .form-error-message { color: #ef4444; font-size: 12px; margin-top: 4px; display: block; } /* Image loading states */ img.loading { background: #f0f0f0; opacity: 0.7; } img.loaded { transition: opacity 0.3s ease; opacity: 1; } /* Enhanced button hover effects */ .btn { position: relative; overflow: hidden; } .btn::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; } .btn:hover::before { left: 100%; } /* Print styles */ @media print { .navbar, .footer, .scroll-top-btn, .notification { display: none !important; } .hero { background: white !important; color: black !important; } .page-hero, .service-hero { background: white !important; color: black !important; } body { font-size: 12pt; line-height: 1.4; } h1, h2, h3, h4, h5, h6 { color: black !important; page-break-after: avoid; } .container { max-width: none; margin: 0; padding: 0; } } /* Accessibility */ .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } /* Focus styles for accessibility */ button:focus, input:focus, select:focus, textarea:focus, a:focus { outline: 2px solid #179e83; outline-offset: 2px; } /* High contrast mode support */ @media (prefers-contrast: high) { .btn-primary { background: #000; border: 2px solid #000; } .highlight { background: #000; -webkit-background-clip: text; -webkit-text-fill-color: transparent; } } /* Reduced motion support */ @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } } /* Dark mode support */ @media (prefers-color-scheme: dark) { :root { --bg-primary: #1a1a1a; --bg-secondary: #2d2d2d; --text-primary: #ffffff; --text-secondary: #cccccc; } } /* Focus visible improvements */ .btn:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible { outline: 2px solid #179e83; outline-offset: 2px; box-shadow: 0 0 0 4px rgba(23, 158, 131, 0.1); } /* Skip to content link for accessibility */ .skip-to-content { position: absolute; top: -40px; left: 6px; background: #179e83; color: white; padding: 8px; border-radius: 4px; text-decoration: none; z-index: 100000; transition: top 0.3s; } .skip-to-content:focus { top: 6px; } /* Screen reader only content */ .visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; } /* Error page specific improvements */ .error-container { position: relative; } /* Improved form styling */ .form-group { position: relative; } .form-group label { transition: all 0.3s ease; } .form-group input:focus + label, .form-group select:focus + label, .form-group textarea:focus + label { color: #179e83; } /* Status indicators */ .status-indicator { display: inline-block; width: 12px; height: 12px; border-radius: 50%; margin-right: 8px; } .status-online { background: #10b981; box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3); animation: pulse-green 2s infinite; } .status-offline { background: #ef4444; } .status-pending { background: #f59e0b; animation: pulse-yellow 2s infinite; } @keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } } @keyframes pulse-yellow { 0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); } 70% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); } 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); } } /* NEW COMPONENT STYLES - Missing CSS for enhanced pages */ /* Breadcrumb Navigation */ .breadcrumb { background: #f8f9fa; padding: 20px 0; border-bottom: 1px solid #e1e5e9; } .breadcrumb nav { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .breadcrumb ol { display: flex; list-style: none; margin: 0; padding: 0; align-items: center; gap: 8px; } .breadcrumb li { display: flex; align-items: center; } .breadcrumb li:not(:last-child)::after { content: '>'; margin-left: 8px; color: #666; font-weight: 500; } .breadcrumb a { color: #179e83; text-decoration: none; font-weight: 500; transition: color 0.3s ease; } .breadcrumb a:hover { color: #144784; text-decoration: underline; } .breadcrumb li[aria-current="page"] span { color: #666; font-weight: 500; } /* Page Hero Section */ .page-hero { background: linear-gradient(135deg, #144784 0%, #179e83 100%); color: white; padding: 120px 0 80px; text-align: center; position: relative; overflow: hidden; } .page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,') no-repeat bottom; background-size: cover; } .page-hero .hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; } .page-hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: 20px; color: white; line-height: 1.2; } .page-hero .hero-subtitle { font-size: 1.25rem; margin-bottom: 30px; opacity: 0.95; line-height: 1.6; } .page-hero .hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 40px; } .page-hero .hero-search { max-width: 500px; margin: 30px auto 0; position: relative; } .page-hero .hero-search input { width: 100%; padding: 15px 50px 15px 20px; border: none; border-radius: 50px; font-size: 16px; background: rgba(255, 255, 255, 0.95); color: #333; } .page-hero .hero-search button { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 18px; cursor: pointer; color: #666; } /* Service Hero Section */ .service-hero { background: linear-gradient(135deg, #144784 0%, #179e83 100%); color: white; padding: 120px 0 80px; text-align: center; position: relative; } .service-hero .hero-content { max-width: 900px; margin: 0 auto; } .service-hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: 20px; line-height: 1.2; } .service-hero .hero-subtitle { font-size: 1.25rem; margin-bottom: 40px; opacity: 0.95; line-height: 1.6; } .service-hero .hero-stats { display: flex; justify-content: center; gap: 40px; margin: 40px 0; } .service-hero .hero-cta { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; } /* Service Features Section */ .service-features { padding: 80px 0; background: #f8f9fa; } .service-features h2 { text-align: center; font-size: 2.5rem; font-weight: 600; margin-bottom: 60px; color: #1a1a1a; } .service-features .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; } .feature-card { background: white; padding: 40px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; border: 1px solid #f0f0f0; } .feature-card:hover { transform: translateY(-8px); box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12); } .feature-card .feature-icon { font-size: 3rem; margin-bottom: 20px; display: block; } .feature-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 16px; color: #1a1a1a; } .feature-card p { color: #666; margin-bottom: 20px; line-height: 1.6; } .feature-card ul { list-style: none; padding: 0; } .feature-card li { padding: 8px 0; color: #555; position: relative; padding-left: 20px; } .feature-card li:before { content: '✓'; position: absolute; left: 0; color: #179e83; font-weight: bold; } /* Industries Section */ .industries { padding: 80px 0; background: white; } .industries h2 { text-align: center; font-size: 2.5rem; font-weight: 600; margin-bottom: 60px; color: #1a1a1a; } .industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; } .industry-card { background: #f8f9fa; padding: 30px; border-radius: 12px; transition: all 0.3s ease; border: 1px solid #e1e5e9; } .industry-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); background: white; } .industry-card h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; color: #144784; } .industry-card p { color: #666; line-height: 1.6; } /* Pricing Section */ .pricing { padding: 80px 0; background: #f8f9fa; } .pricing h2 { text-align: center; font-size: 2.5rem; font-weight: 600; margin-bottom: 60px; color: #1a1a1a; } .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1000px; margin: 0 auto; } .pricing-card { background: white; padding: 40px 30px; border-radius: 16px; text-align: center; position: relative; border: 2px solid #e1e5e9; transition: all 0.3s ease; } .pricing-card.featured { border-color: #179e83; transform: scale(1.05); box-shadow: 0 8px 40px rgba(23, 158, 131, 0.15); } .pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #179e83; color: white; padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 600; } .pricing-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 20px; color: #1a1a1a; } .pricing-card .price { font-size: 3rem; font-weight: 700; color: #179e83; margin-bottom: 30px; line-height: 1; } .pricing-card .price span { font-size: 1rem; color: #666; font-weight: 400; } .pricing-card ul { list-style: none; padding: 0; margin-bottom: 30px; } .pricing-card li { padding: 10px 0; color: #666; border-bottom: 1px solid #f0f0f0; } .pricing-card li:last-child { border-bottom: none; } .pricing-card .pricing-note { font-size: 14px; color: #999; margin-top: 20px; font-style: italic; } .pricing-cta { text-align: center; margin-top: 50px; } /* FAQ Sections */ .faq { padding: 80px 0; background: white; } .faq h2 { text-align: center; font-size: 2.5rem; font-weight: 600; margin-bottom: 60px; color: #1a1a1a; } .faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; } .faq-item { background: #f8f9fa; border-radius: 12px; overflow: hidden; border: 1px solid #e1e5e9; } .faq-item h3 { background: #144784; color: white; padding: 20px; margin: 0; font-size: 1.2rem; font-weight: 600; } .faq-item p { padding: 20px; margin: 0; color: #666; line-height: 1.6; } /* Enhanced FAQ Components */ .faq-categories { padding: 60px 0; background: white; } .categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; } .category-card { background: #f8f9fa; padding: 30px; border-radius: 12px; text-align: center; text-decoration: none; color: inherit; transition: all 0.3s ease; border: 1px solid #e1e5e9; } .category-card:hover { transform: translateY(-5px); background: white; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); color: inherit; text-decoration: none; } .category-icon { font-size: 3rem; margin-bottom: 20px; display: block; } .category-card h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; color: #144784; } .category-card p { color: #666; line-height: 1.4; margin: 0; } .faq-content { padding: 60px 0; background: #f8f9fa; } .faq-section { max-width: 1000px; margin: 0 auto 60px; } .faq-section h2 { font-size: 2rem; font-weight: 600; margin-bottom: 40px; color: #1a1a1a; border-bottom: 3px solid #179e83; padding-bottom: 10px; } .faq-question { width: 100%; background: white; border: none; padding: 20px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; font-weight: 600; color: #1a1a1a; border-radius: 8px; margin-bottom: 2px; transition: all 0.3s ease; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); } .faq-question:hover { background: #f8f9fa; transform: translateX(5px); } .faq-question[aria-expanded="true"] { background: #179e83; color: white; } .faq-icon { font-size: 1.5rem; font-weight: bold; transition: transform 0.3s ease; } .faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); } .faq-answer { display: none; background: white; padding: 20px; border-radius: 0 0 8px 8px; border-top: 1px solid #e1e5e9; margin-bottom: 20px; } .faq-answer p { margin-bottom: 15px; color: #666; line-height: 1.6; } .faq-answer ul { margin-left: 20px; margin-bottom: 15px; } .faq-answer li { margin-bottom: 8px; color: #666; line-height: 1.5; } .faq-cta { padding: 80px 0; background: linear-gradient(135deg, #144784 0%, #179e83 100%); color: white; text-align: center; } .faq-cta h2 { font-size: 2.5rem; font-weight: 600; margin-bottom: 20px; color: white; } .faq-cta p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.95; } .faq-cta .cta-buttons { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; flex-wrap: wrap; } .contact-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 800px; margin: 0 auto; } .contact-option { display: flex; align-items: center; justify-content: center; gap: 15px; text-align: left; } .contact-icon { font-size: 2rem; } .contact-option strong { display: block; margin-bottom: 5px; color: white; } .contact-option p { margin: 0; opacity: 0.9; } .contact-option a { color: white; text-decoration: none; } .contact-option a:hover { text-decoration: underline; } /* CTA Section */ .cta { padding: 80px 0; background: linear-gradient(135deg, #144784 0%, #179e83 100%); color: white; text-align: center; } .cta-content h2 { font-size: 2.5rem; font-weight: 600; margin-bottom: 20px; color: white; } .cta-content p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.95; max-width: 600px; margin-left: auto; margin-right: auto; } .cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; } /* Case Studies Specific */ .case-study { background: white; border-radius: 16px; padding: 40px; margin-bottom: 40px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); border: 1px solid #f0f0f0; } .case-study.featured { border: 2px solid #179e83; box-shadow: 0 8px 40px rgba(23, 158, 131, 0.15); } .case-study-content { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; } .case-study-meta { display: flex; gap: 15px; margin-bottom: 20px; } .case-study-meta span { background: #f0f0f0; color: #666; padding: 5px 12px; border-radius: 15px; font-size: 14px; font-weight: 500; } .case-study h3 { font-size: 1.8rem; font-weight: 600; margin-bottom: 15px; color: #1a1a1a; line-height: 1.3; } .case-study-intro { font-size: 1.1rem; color: #666; margin-bottom: 30px; line-height: 1.6; } .challenge, .solution, .results { margin-bottom: 30px; } .challenge h4, .solution h4, .results h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 15px; color: #144784; } .results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 20px; margin: 20px 0; } .result-item { text-align: center; padding: 20px; background: #f8f9fa; border-radius: 12px; } .result-number { font-size: 2rem; font-weight: 700; color: #179e83; display: block; margin-bottom: 5px; } .result-label { font-size: 14px; color: #666; font-weight: 500; } .testimonial { background: #f8f9fa; padding: 30px; border-radius: 12px; margin-top: 30px; border-left: 4px solid #179e83; } .testimonial p { font-style: italic; font-size: 1.1rem; color: #444; margin-bottom: 20px; line-height: 1.6; } .testimonial cite { display: block; font-style: normal; } .testimonial cite strong { color: #1a1a1a; font-weight: 600; display: block; margin-bottom: 5px; } .testimonial cite span { color: #666; font-size: 14px; } .case-study-visual { background: #f8f9fa; padding: 30px; border-radius: 12px; text-align: center; } .chart-container h5 { font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; color: #1a1a1a; } /* Industries Overview */ .industries-overview { padding: 80px 0; background: white; } .industries-overview h2 { text-align: center; font-size: 2.5rem; font-weight: 600; margin-bottom: 60px; color: #1a1a1a; } .industry-stat { text-align: center; padding: 30px; background: #f8f9fa; border-radius: 12px; transition: all 0.3s ease; } .industry-stat:hover { transform: translateY(-5px); background: white; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); } .industry-icon { font-size: 3rem; margin-bottom: 20px; display: block; } .industry-stat h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 15px; color: #144784; } .industry-stat .stat-number { font-size: 2.5rem; font-weight: 700; color: #179e83; display: block; margin-bottom: 5px; } .industry-stat .stat-label { font-size: 14px; color: #666; font-weight: 500; } /* Testimonials Grid */ .testimonials { padding: 80px 0; background: #f8f9fa; } .testimonials h2 { text-align: center; font-size: 2.5rem; font-weight: 600; margin-bottom: 60px; color: #1a1a1a; } .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; } .testimonial-card { background: white; padding: 40px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); border: 1px solid #f0f0f0; position: relative; } .testimonial-card::before { content: '"'; position: absolute; top: -10px; left: 30px; font-size: 4rem; color: #179e83; font-family: serif; line-height: 1; } .testimonial-content p { font-style: italic; font-size: 1.1rem; color: #444; margin-bottom: 30px; line-height: 1.6; } .testimonial-author { display: flex; justify-content: space-between; align-items: center; } .author-info strong { color: #1a1a1a; font-weight: 600; display: block; margin-bottom: 5px; } .author-info span { color: #666; font-size: 14px; } .company-logo { width: 60px; height: 40px; display: flex; align-items: center; justify-content: center; } .company-logo img { max-width: 100%; max-height: 100%; filter: grayscale(100%); opacity: 0.7; } /* Social Proof Section */ .social-proof { padding: 80px 0; background: white; } .social-proof h2 { text-align: center; font-size: 2.5rem; font-weight: 600; margin-bottom: 60px; color: #1a1a1a; } .client-logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; margin: 40px 0 60px; padding: 40px 0; border-top: 1px solid #e1e5e9; border-bottom: 1px solid #e1e5e9; } .logo-item { display: flex; align-items: center; justify-content: center; padding: 20px; background: #f8f9fa; border-radius: 8px; min-height: 80px; color: #999; font-weight: 500; text-align: center; transition: all 0.3s ease; } .logo-item:hover { background: white; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); transform: translateY(-2px); } /* Responsive Updates for New Components */ @media (max-width: 768px) { .case-study-content { grid-template-columns: 1fr; gap: 30px; } .results-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } .pricing-grid { grid-template-columns: 1fr; } .pricing-card.featured { transform: none; margin: 20px 0; } .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .contact-options { grid-template-columns: 1fr; gap: 20px; } .contact-option { justify-content: flex-start; } .faq-grid { grid-template-columns: 1fr; } .page-hero h1, .service-hero h1 { font-size: 2.2rem; } .breadcrumb ol { flex-wrap: wrap; } .client-logos { grid-template-columns: repeat(2, 1fr); gap: 20px; } } @media (max-width: 480px) { .categories-grid { grid-template-columns: 1fr; } .results-grid { grid-template-columns: 1fr; } .case-study { padding: 30px 20px; } .service-hero .hero-stats, .page-hero .hero-stats { flex-direction: column; gap: 20px; } .hero-cta { flex-direction: column; align-items: center; } .cta-buttons { flex-direction: column; align-items: center; } }