/* SmartSolTech - Base Styles for Elements */ /* Ensure proper styling without Tailwind conflicts */ .navbar { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; z-index: 1000 !important; background: rgba(255, 255, 255, 0.95) !important; backdrop-filter: blur(10px) !important; border-bottom: 1px solid #e5e7eb !important; padding: 1rem 0 !important; } .navbar-brand { font-size: 1.5rem !important; font-weight: 700 !important; color: #3B82F6 !important; text-decoration: none !important; } .navbar-nav { display: flex !important; align-items: center !important; gap: 2rem !important; list-style: none !important; margin: 0 !important; padding: 0 !important; } .nav-link { color: #6b7280 !important; text-decoration: none !important; font-weight: 500 !important; padding: 0.5rem 1rem !important; border-radius: 0.5rem !important; transition: all 0.3s ease !important; } .nav-link:hover, .nav-link.active { color: #3B82F6 !important; background-color: #eff6ff !important; } /* Hero Section */ .hero-section { min-height: 100vh !important; display: flex !important; align-items: center !important; justify-content: center !important; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important; color: white !important; text-align: center !important; padding: 2rem !important; } .hero-title { font-size: 3.5rem !important; font-weight: 700 !important; margin-bottom: 1rem !important; line-height: 1.2 !important; } .hero-subtitle { font-size: 1.25rem !important; margin-bottom: 2rem !important; color: rgba(255, 255, 255, 0.9) !important; } /* Buttons */ .btn { display: inline-block !important; padding: 0.75rem 1.5rem !important; border-radius: 0.5rem !important; text-decoration: none !important; font-weight: 600 !important; text-align: center !important; border: none !important; cursor: pointer !important; transition: all 0.3s ease !important; font-size: 1rem !important; } .btn-primary { background: linear-gradient(135deg, #3B82F6, #1D4ED8) !important; color: white !important; } .btn-primary:hover { transform: translateY(-2px) !important; box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3) !important; } .btn-secondary { background: transparent !important; color: white !important; border: 2px solid white !important; } .btn-secondary:hover { background: white !important; color: #3B82F6 !important; } /* Cards */ .card { background: white !important; border-radius: 1rem !important; padding: 2rem !important; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important; transition: all 0.3s ease !important; } .card:hover { transform: translateY(-4px) !important; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important; } /* Sections */ .section { padding: 4rem 2rem !important; } .section-title { font-size: 2.5rem !important; font-weight: 700 !important; text-align: center !important; margin-bottom: 1rem !important; color: #1f2937 !important; } .section-description { font-size: 1.125rem !important; text-align: center !important; color: #6b7280 !important; max-width: 600px !important; margin: 0 auto 3rem !important; } /* Container */ .container { max-width: 1200px !important; margin: 0 auto !important; padding: 0 1rem !important; } /* Grid Layouts */ .grid-2 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important; gap: 2rem !important; } .grid-3 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important; gap: 2rem !important; } .grid-4 { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important; gap: 1.5rem !important; } /* Language Selector */ .language-selector { display: flex !important; align-items: center !important; gap: 0.5rem !important; } .language-selector a { color: #6b7280 !important; text-decoration: none !important; padding: 0.25rem 0.5rem !important; border-radius: 0.25rem !important; font-size: 0.875rem !important; } .language-selector a:hover { color: #3B82F6 !important; background-color: #f3f4f6 !important; } /* Mobile Menu */ .mobile-menu-button { display: none !important; background: none !important; border: none !important; font-size: 1.5rem !important; color: #6b7280 !important; cursor: pointer !important; } /* Mobile Styles */ @media (max-width: 768px) { .hero-title { font-size: 2.5rem !important; } .mobile-menu-button { display: block !important; } .navbar-nav { display: none !important; position: absolute !important; top: 100% !important; left: 0 !important; right: 0 !important; background: white !important; flex-direction: column !important; padding: 1rem !important; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important; } .navbar-nav.show { display: flex !important; } .section { padding: 2rem 1rem !important; } .section-title { font-size: 2rem !important; } } /* Footer */ .footer { background: #1f2937 !important; color: white !important; padding: 3rem 2rem 1rem !important; text-align: center !important; } .footer p { color: #d1d5db !important; } /* Service Icons */ .service-icon { width: 80px !important; height: 80px !important; background: linear-gradient(135deg, #3B82F6, #8B5CF6) !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 2rem !important; color: white !important; margin: 0 auto 1rem !important; } /* Portfolio Items */ .portfolio-item { background: white !important; border-radius: 1rem !important; overflow: hidden !important; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important; transition: all 0.3s ease !important; } .portfolio-item:hover { transform: translateY(-4px) !important; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important; } .portfolio-image { width: 100% !important; height: 200px !important; object-fit: cover !important; display: block !important; } .portfolio-content { padding: 1.5rem !important; } .portfolio-title { font-size: 1.25rem !important; font-weight: 600 !important; margin-bottom: 0.5rem !important; color: #1f2937 !important; } .portfolio-description { color: #6b7280 !important; margin-bottom: 1rem !important; } /* Form Styles */ .form-group { margin-bottom: 1.5rem !important; } .form-label { display: block !important; font-weight: 500 !important; margin-bottom: 0.5rem !important; color: #374151 !important; } .form-input, .form-textarea, .form-select { width: 100% !important; padding: 0.75rem !important; border: 2px solid #e5e7eb !important; border-radius: 0.5rem !important; font-size: 1rem !important; transition: all 0.3s ease !important; } .form-input:focus, .form-textarea:focus, .form-select:focus { outline: none !important; border-color: #3B82F6 !important; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important; }