 @import url('https://fonts.googleapis.com/css2?family=Pliant:ital,wght@0,100..900;1,100..900&display=swap'); /* 1. DEFAULT LIGHT THEME RULES (First Priority Load) */ :root {--md-bg: #F4EFF4; --md-surface: rgba(255, 255, 255, 0.9); --md-text: #1C1B1F; --md-muted: #534D5B; --md-primary: #6750A4; --md-primary-container: #EADDFF; --md-on-primary-container: #21005D; --md-accent: #D32F2F; --md-border: rgba(103, 80, 164, 0.16); --md-input-bg: rgba(103, 80, 164, 0.05); --glow-1: rgba(103, 80, 164, 0.12); --glow-2: rgba(211, 47, 47, 0.06); --card-shadow: 0 20px 40px rgba(103, 80, 164, 0.08); --form-text-color: #1C1B1F; } /* 2. DARK THEME OVERRIDES (Triggered via [data-theme="dark"]) */ [data-theme="dark"] {--md-bg: #121115; --md-surface: rgba(26, 25, 30, 0.9); --md-text: #F4EFF4; --md-muted: #95909A; --md-primary: #8362D8; --md-primary-container: #2A233D; --md-on-primary-container: #EADDFF; --md-accent: #FFB74D; --md-border: rgba(255, 255, 255, 0.12); --md-input-bg: rgba(255, 255, 255, 0.06); --glow-1: rgba(131, 98, 216, 0.25); --glow-2: rgba(255, 183, 77, 0.1); --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.6); --form-text-color: #F4EFF4; } * {box-sizing: border-box; margin: 0; padding: 0; transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; } body {font-family: "Pliant", sans-serif; font-optical-sizing: auto; background-color: var(--md-bg); color: var(--md-text); min-height: 100vh; overflow-x: hidden; position: relative; padding: 30px 0; } /* Ambient background glow elements */ .bg-glow-1, .bg-glow-2 {position: fixed; width: 50vw; height: 50vw; border-radius: 50%; z-index: 1; pointer-events: none; } .bg-glow-1 {top: -10%; left: -10%; background: radial-gradient(circle, var(--glow-1) 0%, rgba(0,0,0,0) 75%); animation: floatGlow1 12s infinite alternate ease-in-out; } .bg-glow-2 {bottom: -10%; right: -10%; background: radial-gradient(circle, var(--glow-2) 0%, rgba(0,0,0,0) 75%); animation: floatGlow2 15s infinite alternate ease-in-out; } @keyframes floatGlow1 { 0% { transform: translate(0,0); } 100% { transform: translate(40px, 30px); } } @keyframes floatGlow2 { 0% { transform: translate(0,0); } 100% { transform: translate(-30px, -40px); } } /* Master Container Architecture */ .main-container {position: relative; z-index: 10; max-width: 1200px; width: 95%; margin: 0 auto; background: var(--md-surface); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--md-border); border-radius: 24px; box-shadow: var(--card-shadow); padding: 0; /* Changed overflow to allow Sticky positioning context */ overflow: visible; } /* Navigation Menu Styles - Enhanced Sticky Capabilities */ .custom-navbar {position: sticky; top: 0; padding: 1rem 1.5rem; border-bottom: 1px solid var(--md-border); background: var(--md-bg) !important; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top-left-radius: 24px; border-top-right-radius: 24px; z-index: 1050; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); } /* Dynamic shadow and radius adjustments when user scrolls */ .custom-navbar.sticky-active {box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); border-radius: 0 0 24px 24px; border-top: none; } .brand-logo {font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--md-text) !important; text-decoration: none; display: flex; align-items: center; gap: 8px; } .brand-logo i { color: var(--md-primary); } .nav-link-custom {color: var(--md-text) !important; font-weight: 500; font-size: 0.9rem; text-decoration: none; padding: 8px 14px; border-radius: 100px; transition: all 0.2s ease; display: inline-block; } .nav-link-custom:hover, .nav-link-custom.active {background: var(--md-primary-container); color: var(--md-on-primary-container) !important; } .theme-toggle-btn {background: var(--md-input-bg); border: 1px solid var(--md-border); color: var(--md-text); width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; } /* SPA Presentation Sections */ .app-section {padding: 60px 25px; border-bottom: 1px solid var(--md-border); transform: translateY(20px); } .app-section.active-section {display: block; animation: slideUpFade 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; } @keyframes slideUpFade {to { opacity: 1; transform: translateY(0); } } /* Standard Typography Enforcements */ .section-badge {display: inline-block; background: var(--md-primary-container); color: var(--md-on-primary-container); padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; } .section-title {font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; color: var(--md-text); } .section-title span { color: var(--md-primary); } .section-desc {color: var(--md-muted); font-size: 1rem; max-width: 750px; margin-bottom: 2.5rem; } /* Feature Cards Styling Map */ .feature-card-m3 {background: var(--md-input-bg); border: 1px solid var(--md-border); border-radius: 16px; padding: 2rem 1.5rem; height: 100%; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); } .feature-card-m3 h5, .feature-card-m3 h6, .feature-card-m3 p {color: var(--md-text); } .feature-card-m3 .text-muted, .text-muted {color: var(--md-muted) !important; } .feature-card-m3:hover {transform: translateY(-5px); border-color: var(--md-primary); box-shadow: 0 10px 20px rgba(0,0,0,0.15); } .icon-box-m3 {width: 50px; height: 50px; border-radius: 12px; background: var(--md-primary-container); color: var(--md-on-primary-container); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; } /* Forms Elements Fixes */ .form-label {color: var(--md-text) !important; font-weight: 500; font-size: 0.85rem; } .form-control-m3 {background: var(--md-input-bg) !important; border: 1px solid var(--md-border) !important; border-radius: 10px; padding: 12px 16px; color: var(--form-text-color) !important; font-family: 'Poppins', sans-serif; } .form-control-m3::placeholder {color: var(--md-muted); opacity: 0.7; } .form-control-m3:focus {border-color: var(--md-primary) !important; box-shadow: 0 0 0 3px rgba(131, 98, 216, 0.25) !important; } /* UI Interaction Color Contrast Safety Override */ .btn-m3-primary {background-color: var(--md-primary) !important; color: #FFFFFF !important; border: 1px solid var(--md-primary) !important; padding: 12px 28px; border-radius: 100px; font-weight: 600; transition: all 0.25s ease; text-decoration: none; display: inline-block; } .btn-m3-primary:hover {opacity: 0.95; color: #FFFFFF !important; transform: translateY(-2px); box-shadow: 0 4px 12px var(--glow-1); } .btn-m3-outline {background-color: transparent !important; border: 1px solid var(--md-border) !important; color: var(--md-text) !important; padding: 12px 28px; border-radius: 100px; font-weight: 600; transition: all 0.25s ease; text-decoration: none; display: inline-block; } .btn-m3-outline:hover {background-color: var(--md-input-bg) !important; border-color: var(--md-primary) !important; color: var(--md-primary) !important; transform: translateY(-2px); } /* Pricing Elements Structure Styles */ .price-card-m3 {background: var(--md-input-bg); border: 1px solid var(--md-border); border-radius: 20px; padding: 2.5rem 1.5rem; text-align: center; position: relative; height: 100%; color: var(--md-text); } .price-card-m3.popular {border-color: var(--md-primary); box-shadow: 0 0 20px rgba(131, 98, 216, 0.15); } .popular-badge {position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--md-primary); color: #FFF; padding: 3px 12px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; } /* Footer Architecture Components */ .custom-footer {padding: 40px 25px; background: rgba(0, 0, 0, 0.08); border-top: 1px solid var(--md-border); color: var(--md-text); } .footer-logo {font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--md-text); display: flex; align-items: center; gap: 6px; margin-bottom: 0.8rem; } .footer-link {color: var(--md-muted) !important; text-decoration: none; font-size: 0.85rem; } .footer-link:hover { color: var(--md-primary) !important; } @media (max-width: 768px) {body { padding: 10px 0; } .main-container { width: 96%; border-radius: 16px; } .app-section { padding: 40px 15px; } .section-title { font-size: 1.75rem; } .navbar-toggler { border: none !important; color: var(--md-text); font-size: 1.4rem; padding: 0;} .navbar-toggler:focus { box-shadow: none; } } /* 100% Robust Sliding Drawer Architecture (No clipping / No layout collisions) */ @media (max-width: 991.98px) {.navbar-collapse {position: fixed !important; top: 0; left: 0; width: 290px; height: 100vh; /* Changed to 1.0 opacity solid background to fix hardware rendering font blur on mobile */ background: var(--md-surface) !important; box-shadow: 20px 0 50px rgba(0, 0, 0, 0.3) !important; z-index: 2000; padding: 1.5rem; display: block !important; visibility: hidden; opacity: 0; transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s, visibility 0.3s; border-right: 1px solid var(--md-border); margin: 0 !important; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .navbar-collapse.show {visibility: visible !important; opacity: 1 !important; transform: translateX(0) !important; } .navbar-nav {flex-direction: column; align-items: flex-start !important; gap: 15px !important; width: 100%; } .navbar-nav .nav-item {width: 100%; } .navbar-nav .nav-link-custom {width: 100%; display: block; border-radius: 8px; } } /* Ambient blur backdrop overlay for drawer active state */ .nav-backdrop {position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.55); backdrop-filter: none; z-index: 1999; display: none; opacity: 0; transition: opacity 0.3s ease; } .nav-backdrop.show {display: block; opacity: 1; } @media (max-width: 991.98px){.navbar-collapse{backdrop-filter:none !important; -webkit-backdrop-filter:none !important; isolation:isolate; } .nav-backdrop{backdrop-filter:none !important; -webkit-backdrop-filter:none !important; } } .search-section-wrapper {background: #ffffff; padding: 30px; border-radius: 16px; box-shadow: 0 15px 35px rgba(13, 110, 253, 0.08), 0 0 15px rgba(13, 110, 253, 0.1); margin-top: 25px; } .hero-search-title {font-size: 24px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; font-family: 'Roboto', sans-serif; } .hero-search-subtitle {font-size: 14px; color: #666; margin-bottom: 24px; } .md-search-group {border: 1px solid #e0e0e0; border-radius: 12px !important; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.02); transition: all 0.3s ease; } .md-search-group:focus-within {border-color: #0d6efd; box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15); } .md-search-group .form-control:focus {box-shadow: none; } .md-search-group .form-control, .md-search-group .input-group-text {border: none; padding-top: 14px; padding-bottom: 14px; } .results-card {background: #ffffff; border: 1px solid #f0f0f0; border-radius: 12px; padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); } .result-item {display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: #f8f9fa; border-radius: 8px; margin-bottom: 10px; transition: transform 0.2s, background-color 0.2s; } .result-item:hover {transform: translateY(-2px); background-color: #f1f3f5; } .biz-info h6 {margin: 0; font-weight: 600; color: #212529; } .biz-info small {color: #0d6efd; word-break: break-all; } .no-business-box {text-align: center; padding: 30px 20px; border: 2px dashed #dee2e6; border-radius: 12px; background: #fffdfa; } .no-business-icon {font-size: 40px; color: #ffc107; margin-bottom: 10px; }[data-theme="dark"] .search-section-wrapper, [data-bs-theme="dark"] .search-section-wrapper {background: #1e2329; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(13, 110, 253, 0.05); border: 1px solid rgba(255, 255, 255, 0.08); } [data-theme="dark"] .hero-search-title, [data-bs-theme="dark"] .hero-search-title {color: #f8f9fa; } [data-theme="dark"] .hero-search-subtitle, [data-bs-theme="dark"] .hero-search-subtitle {color: #a0aec0; } /* Input group in dark mode */ [data-theme="dark"] .md-search-group, [data-bs-theme="dark"] .md-search-group {border-color: #2d3748; } [data-theme="dark"] .md-search-group .input-group-text, [data-bs-theme="dark"] .md-search-group .input-group-text {background-color: #2b3036 !important; color: #a0aec0 !important; } [data-theme="dark"] .md-search-group .form-control, [data-bs-theme="dark"] .md-search-group .form-control {background-color: #2b3036 !important; color: #ffffff !important; } [data-theme="dark"] .md-search-group .form-control::placeholder, [data-bs-theme="dark"] .md-search-group .form-control::placeholder {color: #6c757d; } [data-theme="dark"] .results-card, [data-bs-theme="dark"] .results-card {background: #252a30; border-color: rgba(255, 255, 255, 0.08); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); } [data-theme="dark"] .result-item, [data-bs-theme="dark"] .result-item {background: #1e2329; border: 1px solid rgba(255, 255, 255, 0.05); } [data-theme="dark"] .result-item:hover, [data-bs-theme="dark"] .result-item:hover {background-color: #2b3036; } [data-theme="dark"] .biz-info h6, [data-bs-theme="dark"] .biz-info h6 {color: #e9ecef; } [data-theme="dark"] .biz-info small, [data-bs-theme="dark"] .biz-info small {color: #6ea8fe; } [data-theme="dark"] .no-business-box, [data-bs-theme="dark"] .no-business-box {background: #1e2329; border-color: #2d3748; color: #e9ecef; } .top-bar {font-size: 0.875rem; font-weight: 500; transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; border-bottom: 1px solid #6750a430; border-radius: 0 0 16px 16px; } .top-bar a {text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; } .top-bar a:hover {opacity: 0.85; } .theme-toggle-btn {cursor: pointer; } @media (max-width: 576px) {.top-bar {font-size: 0.8rem; } } @media (min-width: 992px) {.section-title{text-align: center; padding-left: 90px; padding-right: 90px; } .section-desc {color: var(--md-muted); text-align: center; padding-left: 110px; padding-right: 110px; max-width: inherit!important; } .section-badge {display: table; margin: 0 auto 1rem auto; } } [data-theme="dark"] .top-bar, [data-bs-theme="dark"] .top-bar {background-color: #1e2329 !important; border-bottom-color: rgba(255, 255, 255, 0.1) !important; color: #adb5bd !important; } [data-theme="dark"] .top-bar a:hover, [data-bs-theme="dark"] .top-bar a:hover {color: #ffffff !important; opacity: 1; } [data-theme="dark"] .top-bar .bi-envelope-fill, [data-bs-theme="dark"] .top-bar .bi-envelope-fill {color: #6ea8fe !important; } [data-theme="dark"] .top-bar .bi-telephone-fill, [data-theme="dark"] .top-bar .bi-whatsapp, [data-bs-theme="dark"] .top-bar .bi-telephone-fill, [data-bs-theme="dark"] .top-bar .bi-whatsapp {color: #75b798 !important; }