background: linear-gradient(135deg, #4A90B8 0%, #2E7D4A 100%); min-height: 100vh; display: flex; flex-direction: column; } .header { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); padding: 20px; margin: 20px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid rgba(74, 144, 184, 0.2); } .header-content { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; } .allwater-brand { display: flex; align-items: center; gap: 15px; } .water-droplet { width: 35px; height: 35px; background: linear-gradient(135deg, #4A90B8, #2E7D4A); border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; position: relative; } .water-droplet::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; background: white; border-radius: 50%; } .brand-text { display: flex; flex-direction: column; } .allwater-text { font-size: 1.8em; font-weight: 300; color: #4A90B8; letter-spacing: 1.5px; } .brand-tagline { font-size: 0.75em; color: #2E7D4A; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; } .water-wizard-title { display: flex; align-items: center; gap: 10px; font-size: 2em; background: linear-gradient(45deg, #2E7D4A, #4A90B8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; } .wizard-icon { font-size: 1.2em; } .main-container { flex: 1; margin: 0 20px 20px; display: flex; flex-direction: column; } .ai-interface { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); border-radius: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 1px solid rgba(74, 144, 184, 0.2); flex: 1; display: flex; flex-direction: column; min-height: 600px; } .gpt-header { background: linear-gradient(45deg, #4A90B8, #2E7D4A); color: white; padding: 20px; border-radius: 15px 15px 0 0; display: flex; justify-content: space-between; align-items: center; } .gpt-status { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 1.1em; } .status-indicator { width: 12px; height: 12px; background: #4CAF50; border-radius: 50%; animation: pulse 2s infinite; } @keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.1); } 100% { opacity: 1; transform: scale(1); } } .gpt-controls { display: flex; gap: 10px; } .control-btn { background: rgba(255, 255, 255, 0.2); border: none; color: white; padding: 12px 20px; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; font-size: 16px; font-weight: 500; text-decoration: none; display: inline-block; } .control-btn:hover { background: rgba(255, 255, 255, 0.3); transform: scale(1.05); } .ai-access-content { padding: 50px 40px; background: linear-gradient(135deg, #f8f9fa, #e9ecef); border-radius: 0 0 15px 15px; text-align: center; } .access-hero { margin-bottom: 40px; } .hero-icon { font-size: 4em; margin-bottom: 20px; } .access-hero h3 { color: #2E7D4A; font-size: 2.2em; margin-bottom: 15px; font-weight: 600; } .access-hero p { color: #666; font-size: 1.2em; line-height: 1.6; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; } .primary-access-btn { background: linear-gradient(45deg, #4A90B8, #2E7D4A); color: white; padding: 20px 45px; text-decoration: none; border-radius: 35px; font-weight: bold; transition: all 0.3s ease; font-size: 1.3em; display: inline-block; box-shadow: 0 8px 25px rgba(74, 144, 184, 0.3); } .primary-access-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(74, 144, 184, 0.4); } .capabilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; margin-top: 40px; } .capability-card { background: white; border-radius: 15px; padding: 25px 20px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: all 0.3s ease; border-top: 4px solid #4A90B8; } .capability-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); } .capability-icon { font-size: 2.5em; margin-bottom: 15px; } .capability-card h4 { color: #2E7D4A; margin-bottom: 10px; font-size: 1.1em; font-weight: 600; } .capability-card p { color: #666; font-size: 0.95em; line-height: 1.4; } .quick-actions { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); border-radius: 15px; padding: 25px; margin-top: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid rgba(74, 144, 184, 0.2); } .quick-actions h4 { color: #2E7D4A; margin-bottom: 20px; font-size: 1.2em; text-align: center; } .quick-buttons { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; } .quick-btn { background: rgba(74, 144, 184, 0.1); border: 2px solid #4A90B8; color: #2E7D4A; padding: 15px 20px; border-radius: 25px; cursor: pointer; transition: all 0.3s ease; font-weight: 500; font-size: 0.95em; text-align: left; } .quick-btn:hover { background: linear-gradient(45deg, #4A90B8, #2E7D4A); color: white; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } .fullscreen { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 9999; background: white; margin: 0; border-radius: 0; } .fullscreen .gpt-iframe-container { height: calc(100vh - 70px); border-radius: 0; } .fullscreen #waterWizardGPT { height: 100%; } .fullscreen .gpt-header { border-radius: 0; } @media (max-width: 768px) { .header-content { flex-direction: column; gap: 15px; text-align: center; } .water-wizard-title { font-size: 1.6em; } .allwater-text { font-size: 1.5em; } .quick-buttons { grid-template-columns: 1fr; } .main-container { margin: 0 10px 10px; } .header { margin: 10px; } .gpt-controls { flex-wrap: wrap; } .control-btn { padding: 8px 12px; font-size: 14px; } }
ALLWATER
Aquatic Resource Management
🧙‍♂️Water Wizard AI
Water Wizard AI Assistant
🧙‍♂️💧

Water Wizard AI

Your expert AI assistant for aquatic vegetation management, powered by AllWater's decades of professional experience.

💬 Start Conversation with Water Wizard
🌿

Plant Identification

Expert species recognition and classification

💊

Treatment Planning

Professional herbicide recommendations

📊

Dosage Calculations

Precise application rate computations

🛡️

Safety Protocols

Regulatory compliance guidance

🎯 Quick Start - Expert Solutions