:root { --bg-color: #0b0c10; --surface-color: #1f2833; --primary: #66fcf1; --secondary: #45a29e; --text-main: #c5c6c7; --text-light: #ffffff; --gradient: linear-gradient(135deg, #66fcf1, #ff00cc); --glass-bg: rgba(31, 40, 51, 0.4); --glass-border: rgba(102, 252, 241, 0.1); } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; overflow-x: hidden; } h1, h2, h3, h4, h5 { font-family: 'Outfit', sans-serif; color: var(--text-light); } a { text-decoration: none; color: inherit; } /* Glassmorphism utility */ .glassmorphism { background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 16px; } .gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } /* Navbar */ .navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; position: fixed; top: 10px; left: 5%; right: 5%; z-index: 1000; border-radius: 50px; } .logo h1 { font-size: 1.8rem; font-weight: 800; } .logo span { color: var(--primary); } .nav-links { display: flex; list-style: none; gap: 2rem; } .nav-links a { font-weight: 600; transition: color 0.3s; } .nav-links a:hover { color: var(--primary); } .btn { padding: 0.6rem 1.5rem; border-radius: 30px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: inline-block; } .btn-primary { background: var(--primary); color: var(--bg-color); } .btn-primary:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(102, 252, 241, 0.4); } .btn-gradient { background: var(--gradient); color: #fff; border: none; } .btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(255, 0, 204, 0.4); } .btn-outline { border: 2px solid var(--primary); color: var(--primary); } .btn-outline:hover { background: var(--primary); color: var(--bg-color); } .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; transition: all 0.3s ease-in-out; z-index: 1100; } .hamburger span { width: 25px; height: 3px; background: var(--text-light); border-radius: 2px; transition: all 0.3s ease-in-out; } /* Hamburger active transformation (X shape) */ .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); } .hamburger.active span:nth-child(2) { opacity: 0; } .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } /* Hero Section */ .hero { min-height: 100vh; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; position: relative; padding-top: 100px; } .hero::before { content: ''; position: absolute; top: -20%; left: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(102, 252, 241, 0.15) 0%, transparent 70%); z-index: -1; } .hero-content { max-width: 50%; } .hero h2 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 1.5rem; } .hero p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; } .cta-group { display: flex; gap: 1rem; } /* Chat Mockup Animation */ .hero-visual { width: 45%; perspective: 1000px; } .chat-mockup { background: var(--glass-bg); padding: 1.5rem; border-radius: 20px; transform: rotateY(-15deg) rotateX(5deg); box-shadow: -20px 20px 30px rgba(0,0,0,0.5); transition: transform 0.5s ease; } .chat-mockup:hover { transform: rotateY(0) rotateX(0); } .chat-header { border-bottom: 1px solid var(--glass-border); padding-bottom: 1rem; margin-bottom: 1rem; font-weight: bold; color: var(--text-light); } .chat-messages { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; height: 160px; overflow-y: hidden; scroll-behavior: smooth; } .msg { padding: 0.8rem 1rem; border-radius: 15px; max-width: 80%; font-size: 0.9rem; } .msg.received, .msg.sent { background: rgba(255,255,255,0.1); align-self: flex-start; border-bottom-left-radius: 0; } .chat-input { background: rgba(0,0,0,0.3); padding: 0.8rem; border-radius: 20px; color: var(--text-main); font-size: 0.9rem; } /* Sections General */ .section-padding { padding: 5rem 5%; } .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; } .container { max-width: 1200px; margin: 0 auto; } /* Stats Section */ .stats-section { position: relative; z-index: 10; margin-top: 4rem; padding: 2rem 5%; } .stats-grid { display: flex; justify-content: space-around; align-items: center; padding: 2.5rem; border-radius: 20px; text-align: center; flex-wrap: wrap; gap: 2rem; } .stat-item h3 { font-size: 3.5rem; margin-bottom: 0.5rem; } .stat-item p { font-size: 1rem; font-weight: 600; color: var(--text-main); text-transform: uppercase; letter-spacing: 1px; } /* Features */ .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; } .feature-card { padding: 2rem; text-align: center; transition: transform 0.3s; } .feature-card:hover { transform: translateY(-10px); } .feature-card .icon { font-size: 3rem; margin-bottom: 1rem; } .feature-card h4 { margin-bottom: 1rem; font-size: 1.2rem; } .step-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); background: rgba(102, 252, 241, 0.1); width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 1.5rem; border: 1px solid var(--primary); box-shadow: 0 0 15px rgba(102, 252, 241, 0.3); } /* About / Content */ .content-wrapper { padding: 3rem; text-align: center; } .content-wrapper h3 { font-size: 2.2rem; margin-bottom: 2rem; } .content-wrapper h4 { font-size: 1.6rem; margin-top: 2rem; margin-bottom: 1rem; text-align: left; max-width: 900px; margin-left: auto; margin-right: auto; } .content-wrapper p { margin-bottom: 1.5rem; font-size: 1.25rem; max-width: 900px; margin-left: auto; margin-right: auto; text-align: left; line-height: 1.8; } /* FAQ Accordion Styling */ .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; } .faq-item { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; margin-bottom: 0; overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; } .faq-item:hover { border-color: rgba(102, 252, 241, 0.4); box-shadow: 0 0 20px rgba(102, 252, 241, 0.1); } .faq-item.active { border-color: rgba(102, 252, 241, 0.6); box-shadow: 0 0 30px rgba(102, 252, 241, 0.15); background: rgba(31, 40, 51, 0.6); } .faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 1.8rem; cursor: pointer; user-select: none; transition: background-color 0.3s ease; } .faq-question h4 { margin-bottom: 0; font-size: 1.15rem; color: var(--text-light); font-weight: 600; transition: color 0.3s ease; padding-right: 1.5rem; } .faq-item.active .faq-question h4 { color: var(--primary); } .faq-toggle { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); color: var(--text-main); border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); flex-shrink: 0; } .faq-item.active .faq-toggle { background: var(--primary); color: var(--bg-color); border-color: var(--primary); box-shadow: 0 0 12px rgba(102, 252, 241, 0.4); } .faq-icon { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .faq-item.active .faq-icon { transform: rotate(180deg); } .faq-answer { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease; } .faq-item.active .faq-answer { opacity: 1; } .faq-answer-content { padding: 0 1.8rem 1.8rem; font-size: 1rem; color: var(--text-main); line-height: 1.7; } .faq-answer-content p strong { color: var(--text-light); } /* Footer */ .site-footer { background: #060709; padding: 5rem 5% 2rem; position: relative; border-top: 1px solid var(--glass-border); } .glassmorphism-footer { background: linear-gradient(180deg, rgba(11, 12, 16, 1) 0%, rgba(31, 40, 51, 0.6) 100%); } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; } .footer-brand h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; } .footer-brand p { color: var(--text-main); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.6; } .social-links { display: flex; gap: 1rem; } .social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); color: var(--primary); font-weight: 600; transition: all 0.3s ease; border: 1px solid rgba(102, 252, 241, 0.2); } .social-links a:hover { background: var(--primary); color: var(--bg-color); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(102, 252, 241, 0.3); } .footer-links-col h4, .footer-newsletter h4 { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--text-light); position: relative; padding-bottom: 0.5rem; } .footer-links-col h4::after, .footer-newsletter h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--primary); } .footer-links-col ul { list-style: none; } .footer-links-col ul li { margin-bottom: 0.8rem; } .footer-links-col ul li a { color: var(--text-main); transition: color 0.3s; font-size: 0.95rem; } .footer-links-col ul li a:hover { color: var(--primary); padding-left: 5px; } .footer-newsletter p { font-size: 0.95rem; margin-bottom: 1rem; } .newsletter-form { display: flex; flex-direction: column; gap: 0.8rem; } .newsletter-form input { padding: 0.8rem 1rem; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(0, 0, 0, 0.3); color: var(--text-light); outline: none; } .newsletter-form input:focus { border-color: var(--primary); } .newsletter-form .btn { border-radius: 8px; padding: 0.8rem; border: none; } .seo-tags { margin: 1.5rem 0; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.03); opacity: 0.4; transition: opacity 0.3s ease; } .seo-tags:hover { opacity: 0.8; } .seo-tags h5 { color: var(--text-main); margin-bottom: 0.75rem; font-size: 0.8rem; letter-spacing: 0.5px; } .seo-tags p { font-size: 0.62rem; color: #444; line-height: 1.8; } .seo-tags span { display: inline-block; padding: 0.1rem 0.35rem; background: rgba(255,255,255,0.02); border-radius: 3px; margin: 0.1rem; } .footer-bottom { display: flex; justify-content: center; align-items: center; margin-top: 1rem; padding-top: 1rem; } .copyright { color: #444; font-size: 0.85rem; } /* Floating Back to Top Button */ .back-to-top { position: fixed; bottom: -60px; right: 30px; width: 46px; height: 46px; border-radius: 50%; background: rgba(11, 12, 16, 0.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid var(--primary); color: var(--primary); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 999; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 15px rgba(102, 252, 241, 0.2); text-decoration: none; opacity: 0; visibility: hidden; } .back-to-top.visible { bottom: 30px; opacity: 1; visibility: visible; } .back-to-top:hover { background: var(--primary); color: var(--bg-color); box-shadow: 0 0 20px rgba(102, 252, 241, 0.5); transform: translateY(-5px); } .back-to-top svg { width: 20px; height: 20px; stroke: currentColor; transition: transform 0.3s ease; } .back-to-top:hover svg { transform: translateY(-2px); } .blur-text { filter: blur(4px); user-select: none; opacity: 0.8; } /* Typing Indicator */ .typing-indicator { display: flex; gap: 4px; padding: 0.8rem 1rem; background: rgba(255,255,255,0.1); border-radius: 15px; border-bottom-left-radius: 0; align-self: flex-start; width: fit-content; align-items: center; margin-bottom: 0.5rem; } .typing-indicator .dot { width: 6px; height: 6px; background-color: var(--text-main); border-radius: 50%; animation: typing 1.4s infinite ease-in-out both; } .typing-indicator .dot:nth-child(1) { animation-delay: -0.32s; } .typing-indicator .dot:nth-child(2) { animation-delay: -0.16s; } @keyframes typing { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } } /* Animations */ .animate-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s forwards; } .delay-1 { animation-delay: 0.2s; } .delay-2 { animation-delay: 0.4s; } @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } } /* Reviews Marquee */ .overflow-hidden { overflow: hidden; } .reviews-marquee { position: relative; width: 100vw; margin-left: -50vw; left: 50%; overflow: hidden; padding: 1rem 0 2rem 0; } .marquee-track { display: flex; width: max-content; animation: scroll 40s linear infinite; gap: 2rem; } .marquee-track:hover { animation-play-state: paused; } .marquee-card { width: 350px; padding: 1.5rem; flex-shrink: 0; text-align: left; transition: transform 0.3s; } .marquee-card:hover { transform: translateY(-5px); } .marquee-card .card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; } .marquee-card .user-name { font-weight: 600; color: var(--primary); font-size: 1.1rem; } .marquee-card .stars { font-size: 1rem; } .marquee-card p { font-size: 1rem; line-height: 1.6; margin-top: 0; } @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } /* Responsive */ @media (max-width: 768px) { .hero { flex-direction: column; text-align: center; padding-top: 120px; } .hero-content, .hero-visual { max-width: 100%; width: 100%; } .hero-visual { margin-top: 3rem; } .nav-links, .nav-cta { display: none; } .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 70px; right: 5%; left: 5%; background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 2rem; border-radius: 16px; border: 1px solid var(--glass-border); text-align: center; gap: 1.5rem; } .hamburger { display: flex; } .cta-group { justify-content: center; } .stats-section { margin-top: 2rem; } .stat-item { width: 100%; margin-bottom: 1.5rem; } .stat-item:last-child { margin-bottom: 0; } .grid-2 { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; } .footer-links-col h4::after, .footer-newsletter h4::after { left: 50%; transform: translateX(-50%); } .social-links { justify-content: center; } .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; } } /* Chat Launcher Section Styling */ .launcher-section { position: relative; z-index: 10; } .launcher-card { max-width: 700px; margin: 0 auto; padding: 3rem; position: relative; overflow: hidden; } .launcher-tabs { display: flex; border-bottom: 1px solid var(--glass-border); margin-bottom: 2rem; gap: 1rem; } .launcher-tab { flex: 1; background: none; border: none; padding: 1rem; color: var(--text-main); font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; border-bottom: 3px solid transparent; text-align: center; } .launcher-tab:hover { color: var(--primary); } .launcher-tab.active { color: var(--primary); border-bottom: 3px solid var(--primary); } .launcher-form { display: none; flex-direction: column; gap: 1.5rem; } .launcher-form.active { display: flex; } .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; } @media (max-width: 576px) { .form-grid { grid-template-columns: 1fr; } } .form-group { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; } .form-group label { font-size: 0.95rem; font-weight: 600; color: var(--text-main); } .form-group input, .form-group select { padding: 0.8rem 1rem; border-radius: 8px; border: 1px solid var(--glass-border); background: rgba(0, 0, 0, 0.3); color: var(--text-light); outline: none; font-size: 1rem; transition: all 0.3s ease; } .form-group input:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 10px rgba(102, 252, 241, 0.2); } .gender-toggle { display: flex; gap: 1rem; } .gender-btn { flex: 1; padding: 0.8rem; border-radius: 8px; border: 1px solid var(--glass-border); background: rgba(0, 0, 0, 0.2); color: var(--text-main); font-weight: 600; cursor: pointer; transition: all 0.3s ease; } .gender-btn:hover { border-color: var(--primary); color: var(--primary); } .gender-btn.active { background: var(--primary); color: var(--bg-color); border-color: var(--primary); box-shadow: 0 0 15px rgba(102, 252, 241, 0.3); } .form-checkbox { display: flex; align-items: center; gap: 0.5rem; text-align: left; font-size: 0.9rem; } .form-checkbox input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--primary); } .form-checkbox a { color: var(--primary); text-decoration: underline; } .btn-submit { padding: 1rem; font-size: 1.1rem; border: none; margin-top: 1rem; } /* Simulation overlay and success states */ .launcher-status, .launcher-success { display: none; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(11, 12, 16, 0.95); backdrop-filter: blur(8px); z-index: 100; flex-direction: column; justify-content: center; align-items: center; padding: 2rem; text-align: center; gap: 1.5rem; } .launcher-status.active, .launcher-success.active { display: flex; } .spinner { width: 50px; height: 50px; border: 4px solid rgba(102, 252, 241, 0.1); border-left-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .progress-bar-container { width: 80%; height: 6px; background: rgba(255, 255, 255, 0.1); border-radius: 3px; overflow: hidden; margin-top: 1rem; } .progress-bar-fill { height: 100%; width: 0%; background: var(--gradient); border-radius: 3px; transition: width 0.4s ease-out; } .success-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(102, 252, 241, 0.1); color: var(--primary); border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: bold; box-shadow: 0 0 20px rgba(102, 252, 241, 0.3); } .launcher-success h4 { font-size: 1.5rem; } .launcher-success p { font-size: 1.05rem; max-width: 500px; line-height: 1.6; } /* Video Chat Landing Page & Console Styles */ .video-hero { padding-top: 140px; padding-bottom: 80px; background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 90%); } .video-grid-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; position: relative; } @media (max-width: 768px) { .video-grid-preview { grid-template-columns: 1fr; } } .video-card { position: relative; aspect-ratio: 16/10; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.03); box-shadow: var(--shadow-glass); } .video-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.5s ease; } .video-card:hover img { transform: scale(1.03); } .video-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); display: flex; justify-content: space-between; align-items: center; } .user-tag { background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(10px); padding: 0.4rem 0.8rem; border-radius: 30px; font-size: 0.9rem; color: #fff; display: flex; align-items: center; gap: 0.5rem; border: 1px solid rgba(255, 255, 255, 0.1); } .pulse-indicator { width: 8px; height: 8px; background-color: #10b981; border-radius: 50%; display: inline-block; box-shadow: 0 0 8px #10b981; animation: pulse-live 1.8s infinite; } @keyframes pulse-live { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } } .video-controls { position: absolute; top: 1.25rem; left: unset; right: 1.25rem; display: flex; gap: 0.5rem; } .control-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.3s ease; } .control-btn:hover { background: var(--primary); } .live-tag { position: absolute; top: 1.25rem; left: 1.25rem; background: #ef4444; color: white; font-weight: bold; font-size: 0.8rem; padding: 0.3rem 0.7rem; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; } .chat-container { padding-top: 100px; padding-bottom: 50px; min-height: calc(100vh - 120px); display: flex; align-items: center; justify-content: center; } .chat-window { width: 100%; max-width: 1100px; height: 620px; display: grid; grid-template-columns: 1.3fr 1fr; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(13, 13, 33, 0.4); backdrop-filter: blur(20px); box-shadow: var(--shadow-glass); } @media (max-width: 900px) { .chat-window { grid-template-columns: 1fr; grid-template-rows: 1fr 1.2fr; height: 850px; } } .video-section { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; padding: 15px; background: rgba(0, 0, 0, 0.2); position: relative; } .video-box { position: relative; background: #090915; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; } .video-box video, .video-box img { width: 100%; height: 100%; object-fit: cover; } .video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #090915; color: var(--text-muted); gap: 15px; text-align: center; padding: 20px; z-index: 2; } .video-placeholder svg { width: 50px; height: 50px; color: rgba(255, 255, 255, 0.2); } .chat-info-overlay { position: absolute; bottom: 12px; left: 12px; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); padding: 5px 12px; border-radius: 30px; font-size: 0.85rem; color: white; display: flex; align-items: center; gap: 8px; z-index: 3; } .text-section { display: flex; flex-direction: column; border-left: 1px solid rgba(255, 255, 255, 0.08); background: rgba(13, 13, 33, 0.25); height: 100%; overflow: hidden; } @media (max-width: 900px) { .text-section { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.08); } } .messages-container { flex-grow: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; } .message { max-width: 85%; padding: 10px 14px; border-radius: 16px; font-size: 0.95rem; line-height: 1.4; } .message.system { max-width: 100%; background: rgba(99, 102, 241, 0.08); color: #c7d2fe; border: 1px solid rgba(99, 102, 241, 0.15); text-align: center; font-size: 0.85rem; align-self: center; border-radius: 8px; } .message.stranger { background: rgba(255, 255, 255, 0.06); color: white; align-self: flex-start; border-bottom-left-radius: 4px; } .message.you { background: var(--gradient-primary); color: white; align-self: flex-end; border-bottom-right-radius: 4px; } .chat-input-bar { padding: 15px; border-top: 1px solid rgba(255, 255, 255, 0.08); background: rgba(0, 0, 0, 0.15); display: flex; gap: 10px; } .chat-input-bar input { flex-grow: 1; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 30px; padding: 12px 20px; color: white; font-size: 0.95rem; outline: none; transition: border-color 0.3s ease; } .chat-input-bar input:focus { border-color: var(--primary); } .chat-controls-bottom { padding: 10px 15px; display: flex; justify-content: space-between; gap: 10px; background: rgba(0, 0, 0, 0.25); border-top: 1px solid rgba(255, 255, 255, 0.05); } .chat-btn { padding: 10px 20px; border-radius: 30px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; border: none; display: flex; align-items: center; gap: 8px; } .chat-btn-next { background: var(--gradient-primary); color: white; box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3); } .chat-btn-next:hover { opacity: 0.9; transform: translateY(-1px); } .chat-btn-stop { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.2); } .chat-btn-stop:hover { background: #ef4444; color: white; } .camera-overlay-btn { background: var(--primary); color: white; padding: 10px 20px; border-radius: 30px; cursor: pointer; border: none; font-weight: 600; margin-top: 10px; transition: opacity 0.3s; } .camera-overlay-btn:hover { opacity: 0.9; } /* Contact Page Styles */ .contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; text-align: left; margin-top: 2rem; } .contact-info { display: flex; flex-direction: column; gap: 2rem; } .info-card { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border); padding: 1.5rem; border-radius: 12px; display: flex; align-items: flex-start; gap: 1rem; transition: transform 0.3s ease; } .info-card:hover { transform: translateY(-3px); border-color: var(--primary); } .info-icon { font-size: 2rem; line-height: 1; } .info-details h5 { font-size: 1.1rem; color: var(--text-light); margin-bottom: 0.3rem; } .info-details p { font-size: 0.95rem; color: var(--text-main); margin: 0; } .info-details a { color: var(--primary); text-decoration: underline; } .contact-form-container { position: relative; } .contact-form { display: flex; flex-direction: column; gap: 1.2rem; } .form-group-full { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; } .form-group-full label { font-size: 0.95rem; font-weight: 600; color: var(--text-main); } .form-group-full input, .form-group-full select, .form-group-full textarea { padding: 0.8rem 1rem; border-radius: 8px; border: 1px solid var(--glass-border); background: rgba(0, 0, 0, 0.3); color: var(--text-light); outline: none; font-size: 1rem; transition: all 0.3s ease; font-family: inherit; } .form-group-full textarea { resize: vertical; min-height: 150px; } .form-group-full input:focus, .form-group-full select:focus, .form-group-full textarea:focus { border-color: var(--primary); box-shadow: 0 0 10px rgba(102, 252, 241, 0.2); } .form-group-full select option { background-color: #0b0c10; color: var(--text-light); } .contact-status, .contact-success { display: none; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(11, 12, 16, 0.95); backdrop-filter: blur(8px); z-index: 100; flex-direction: column; justify-content: center; align-items: center; padding: 2rem; text-align: center; gap: 1.5rem; border-radius: 16px; } .contact-status.active, .contact-success.active { display: flex; } @media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } } /* About Us Page Styles */ .about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center; text-align: left; margin-top: 2rem; margin-bottom: 3rem; } .about-visual { position: relative; display: flex; justify-content: center; align-items: center; } .about-illustration { width: 100%; max-width: 380px; height: 280px; background: linear-gradient(135deg, rgba(102, 252, 241, 0.1), rgba(255, 0, 204, 0.1)); border: 1px solid var(--glass-border); border-radius: 24px; position: relative; display: flex; justify-content: center; align-items: center; backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); overflow: hidden; } .about-illustration::before { content: ''; position: absolute; width: 130px; height: 130px; background: var(--primary); filter: blur(70px); opacity: 0.35; border-radius: 50%; } .floating-badge { position: absolute; background: rgba(31, 40, 51, 0.85); border: 1px solid var(--primary); padding: 0.8rem 1.2rem; border-radius: 12px; font-weight: 600; color: var(--text-light); font-size: 0.9rem; backdrop-filter: blur(8px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35); animation: float 4s ease-in-out infinite; } .badge-1 { top: 25px; left: 15px; animation-delay: 0s; } .badge-2 { bottom: 45px; right: 15px; animation-delay: 2s; } .badge-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); border-color: #ff00cc; font-size: 1.1rem; } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } .section-highlight { background: linear-gradient(135deg, rgba(102, 252, 241, 0.04), rgba(255, 0, 204, 0.04)); border: 1px solid var(--glass-border); padding: 2.5rem 3rem; border-radius: 20px; margin: 3rem 0; text-align: center; } .section-highlight h4 { font-size: 1.8rem; margin-bottom: 1rem; } .section-highlight p { font-size: 1.15rem; line-height: 1.8; max-width: 850px; margin: 0 auto; color: var(--text-main); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; margin-bottom: 3rem; } .features-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; margin-bottom: 3rem; } @media (max-width: 992px) { .features-grid-3 { grid-template-columns: repeat(2, 1fr); } .about-grid { grid-template-columns: 1fr; gap: 2rem; } .about-visual { order: -1; } } @media (max-width: 768px) { .features-grid-3 { grid-template-columns: 1fr; } } .feature-item-card { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--glass-border); padding: 1.8rem; border-radius: 12px; text-align: left; transition: all 0.3s ease; display: flex; align-items: flex-start; gap: 1rem; } .feature-item-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 5px 15px rgba(102, 252, 241, 0.1); } .feature-item-card .bullet-icon { font-size: 1.5rem; color: var(--primary); line-height: 1; } .feature-item-card h5 { font-size: 1.1rem; color: var(--text-light); margin-bottom: 0.4rem; } .feature-item-card p { font-size: 0.95rem; color: var(--text-main); margin: 0; line-height: 1.5; } .about-subheading { font-size: 1.8rem; color: var(--text-light); margin-top: 3rem; margin-bottom: 1.2rem; text-align: left; } .about-paragraph { font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; text-align: left; color: var(--text-main); } /* ══ AGGRESSIVE CTA BANNER ══════════════════════════════════════════════ */ .cta-banner-section { position: relative; overflow: hidden; padding: 5rem 5%; background: linear-gradient(135deg, #0b0c10 0%, #12001a 40%, #001a1a 100%); border-top: 1px solid rgba(102, 252, 241, 0.15); border-bottom: 1px solid rgba(255, 0, 204, 0.15); } .cta-banner-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 15% 50%, rgba(102, 252, 241, 0.12) 0%, transparent 55%), radial-gradient(ellipse at 85% 50%, rgba(255, 0, 204, 0.12) 0%, transparent 55%); pointer-events: none; } /* Floating particles */ .cta-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; } .particle { position: absolute; border-radius: 50%; opacity: 0.25; animation: particleDrift linear infinite; } .particle:nth-child(1) { width: 8px; height: 8px; background: #66fcf1; left: 10%; animation-duration: 12s; animation-delay: 0s; } .particle:nth-child(2) { width: 5px; height: 5px; background: #ff00cc; left: 25%; animation-duration: 9s; animation-delay: 2s; } .particle:nth-child(3) { width: 10px; height: 10px; background: #66fcf1; left: 50%; animation-duration: 14s; animation-delay: 1s; } .particle:nth-child(4) { width: 6px; height: 6px; background: #ff00cc; left: 70%; animation-duration: 11s; animation-delay: 3s; } .particle:nth-child(5) { width: 7px; height: 7px; background: #66fcf1; left: 85%; animation-duration: 10s; animation-delay: 0.5s; } .particle:nth-child(6) { width: 4px; height: 4px; background: #ff00cc; left: 40%; animation-duration: 13s; animation-delay: 4s; } @keyframes particleDrift { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 0.25; } 90% { opacity: 0.25; } 100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; } } .cta-banner-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; } /* Live badge */ .cta-live-badge { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(102, 252, 241, 0.08); border: 1px solid rgba(102, 252, 241, 0.3); padding: 0.45rem 1rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; color: var(--primary); margin-bottom: 1.5rem; width: fit-content; } .live-dot { width: 9px; height: 9px; border-radius: 50%; background: #10b981; box-shadow: 0 0 8px #10b981; animation: livePulse 1.5s ease infinite; flex-shrink: 0; } @keyframes livePulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 8px #10b981; } 50% { transform: scale(1.3); box-shadow: 0 0 18px #10b981; } } /* Heading */ .cta-banner-heading { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; color: #fff; margin-bottom: 1.25rem; font-weight: 800; } .cta-gradient-word { background: linear-gradient(90deg, #66fcf1, #ff00cc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } /* Subtext */ .cta-banner-sub { font-size: 1.1rem; color: var(--text-main); line-height: 1.8; margin-bottom: 2rem; max-width: 520px; } /* Trust chips */ .cta-banner-trust { display: flex; flex-wrap: wrap; gap: 0.75rem; } .cta-banner-trust span { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 0.4rem 0.9rem; border-radius: 30px; font-size: 0.88rem; font-weight: 600; color: var(--text-light); transition: border-color 0.3s, background 0.3s; } .cta-banner-trust span:hover { border-color: var(--primary); background: rgba(102, 252, 241, 0.08); } /* Right CTA column */ .cta-banner-action { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; } /* Pulsing rings */ .cta-ring-wrap { position: relative; display: flex; align-items: center; justify-content: center; width: 280px; height: 280px; } .cta-ring { position: absolute; border-radius: 50%; border: 2px solid rgba(102, 252, 241, 0.2); animation: ringPulse 2.5s ease-out infinite; } .cta-ring { width: 220px; height: 220px; animation-delay: 0s; } .cta-ring-2 { width: 270px; height: 270px; border-color: rgba(255, 0, 204, 0.15); animation-delay: 1.2s; } @keyframes ringPulse { 0% { transform: scale(0.9); opacity: 0.6; } 50% { transform: scale(1.05); opacity: 0.2; } 100% { transform: scale(0.9); opacity: 0.6; } } /* The CTA button */ .cta-banner-btn { position: relative; z-index: 2; font-size: 1.2rem; font-weight: 800; padding: 1.1rem 2.4rem; border-radius: 50px; letter-spacing: 0.02em; white-space: nowrap; box-shadow: 0 0 40px rgba(255, 0, 204, 0.4), 0 0 20px rgba(102, 252, 241, 0.3); animation: ctaGlow 2.5s ease-in-out infinite alternate; text-align: center; } @keyframes ctaGlow { from { box-shadow: 0 0 25px rgba(255, 0, 204, 0.35), 0 0 10px rgba(102, 252, 241, 0.25); } to { box-shadow: 0 0 55px rgba(255, 0, 204, 0.65), 0 0 30px rgba(102, 252, 241, 0.45); } } .cta-banner-btn:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 0 70px rgba(255, 0, 204, 0.8), 0 0 40px rgba(102, 252, 241, 0.6) !important; } .cta-banner-note { font-size: 0.88rem; color: var(--text-main); text-align: center; } .cta-banner-note strong { color: var(--primary); } /* Responsive */ @media (max-width: 900px) { .cta-banner-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; } .cta-banner-sub { max-width: 100%; } .cta-live-badge { margin: 0 auto 1.5rem; } .cta-banner-trust { justify-content: center; } .cta-banner-action { width: 100%; } .cta-ring-wrap { width: 220px; height: 220px; margin: 0 auto; } .cta-ring { width: 170px; height: 170px; } .cta-ring-2 { width: 215px; height: 215px; } .cta-banner-btn { font-size: 1.05rem; padding: 1rem 2rem; } } @media (max-width: 480px) { .cta-banner-section { padding: 3.5rem 5%; } .cta-banner-heading { font-size: 1.8rem; } .cta-banner-btn { font-size: 0.95rem; padding: 0.9rem 1.6rem; } .cta-ring-wrap { width: 180px; height: 180px; } .cta-ring { width: 130px; height: 130px; } .cta-ring-2 { width: 175px; height: 175px; } } 