 /* --- 2. HERO SECTION --- */
  :root {
            --brand-primary: #2563eb;
            --brand-dark: #1e293b;
            --brand-accent: #0ea5e9;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            padding-top: 80px;
            /* Space for fixed navbar */
        }

        /* Navbar Styling */
        .navbar-glass {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 15px 0;
        }

        .btn-nav-cta {
            background: var(--brand-primary);
            color: white;
            border-radius: 50px;
            padding: 8px 24px;
            transition: all 0.3s;
        }

        .btn-nav-cta:hover {
            background: var(--brand-dark);
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .hero-title {
            font-weight: 800;
            font-size: 3.5rem;
            line-height: 1.2;
            color: var(--brand-dark);
        }

        .hero-title span {
            color: var(--brand-primary);
        }

        .hero-badge {
            display: inline-block;
            background: white;
            padding: 8px 16px;
            border-radius: 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Stats Strip */
        .stats-strip {
            background: var(--brand-dark);
            color: white;
            padding: 60px 0;
            margin-top: -50px;
            position: relative;
            z-index: 10;
            border-radius: 0;
        }

        @media(min-width: 768px) {
            .stats-strip {
                border-radius: 0 100px 0 0;
            }
        }

        .counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--brand-accent);
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        /* Map Section */
        .map-section {
            background: var(--brand-dark);
            color: white;
            border-radius: 30px;
            padding: 60px 20px;
            margin: 80px 0;
            overflow: hidden;
        }

        #heroMap {
            height: 400px;
            width: 100%;
            border-radius: 20px;
            z-index: 1;
        }

        /* Footer */
        .site-footer {
            padding: 60px 0 20px;
            background: #f8fafc;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links a {
            display: block;
            color: #64748b;
            text-decoration: none;
            margin-bottom: 10px;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: var(--brand-primary);
            padding-left: 5px;
        }

        /* Chatbot Widget Container */
        .chat-widget-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        /* Floating Toggle Button */
        .chat-toggle-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--brand-primary);
            color: white;
            border: none;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .chat-toggle-btn:hover {
            transform: scale(1.1);
            background: var(--brand-dark);
        }

        /* Chat Window */
        .chat-box {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
            display: none;
            /* Hidden by default */
            flex-direction: column;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transform-origin: bottom right;
            animation: chatOpen 0.3s ease-out;
        }

        @keyframes chatOpen {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Chat Header */
        .chat-header {
            background: var(--brand-primary);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .bot-avatar-container {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            overflow: hidden;
            border: 2px solid white;
            flex-shrink: 0;
        }

        /* YOUR IMAGE STYLING HERE - Auto-fits the container */
        .bot-avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Ensures image covers area without distortion */
        }

        .chat-header-info h5 {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
        }

        .chat-header-info span {
            font-size: 12px;
            opacity: 0.9;
        }

        .close-chat {
            margin-left: auto;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.8;
        }

        /* Chat Messages Area */
        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #f8fafc;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Message Bubbles */
        .message {
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 15px;
            font-size: 14px;
            line-height: 1.4;
        }

        .bot-message {
            background: white;
            color: var(--brand-dark);
            border: 1px solid #e2e8f0;
            align-self: flex-start;
            border-bottom-left-radius: 2px;
        }

        .user-message {
            background: var(--brand-primary);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 2px;
            box-shadow: 0 2px 5px rgba(37, 99, 235, 0.2);
        }

        /* Input Area */
        .chat-input-area {
            padding: 15px;
            background: white;
            border-top: 1px solid #e2e8f0;
            display: flex;
            gap: 10px;
        }

        .chat-input {
            flex: 1;
            border: 1px solid #e2e8f0;
            border-radius: 25px;
            padding: 10px 15px;
            outline: none;
            transition: border 0.3s;
        }

        .chat-input:focus {
            border-color: var(--brand-primary);
        }

        .send-btn {
            background: var(--brand-primary);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .send-btn:hover {
            background: var(--brand-dark);
        }

        /* Mobile Responsiveness */
        @media (max-width: 480px) {
            .chat-box {
                width: 90vw;
                /* 90% of screen width */
                right: 0;
                bottom: 80px;
                height: 60vh;
            }

            .chat-widget-container {
                right: 5vw;
                /* Center align slightly */
            }
        }
  :root {
            --brand-primary: #2563eb;
            --brand-dark: #1e293b;
            --brand-accent: #0ea5e9;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            padding-top: 80px;
            /* Space for fixed navbar */
        }

        /* Navbar Styling */
        .navbar-glass {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 15px 0;
        }

        .btn-nav-cta {
            background: var(--brand-primary);
            color: white;
            border-radius: 50px;
            padding: 8px 24px;
            transition: all 0.3s;
        }

        .btn-nav-cta:hover {
            background: var(--brand-dark);
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .hero-title {
            font-weight: 800;
            font-size: 3.5rem;
            line-height: 1.2;
            color: var(--brand-dark);
        }

        .hero-title span {
            color: var(--brand-primary);
        }

        .hero-badge {
            display: inline-block;
            background: white;
            padding: 8px 16px;
            border-radius: 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Stats Strip */
        .stats-strip {
            background: var(--brand-dark);
            color: white;
            padding: 60px 0;
            margin-top: -50px;
            position: relative;
            z-index: 10;
            border-radius: 0;
        }

        @media(min-width: 768px) {
            .stats-strip {
                border-radius: 0 100px 0 0;
            }
        }

        .counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--brand-accent);
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        /* Map Section */
        .map-section {
            background: var(--brand-dark);
            color: white;
            border-radius: 30px;
            padding: 60px 20px;
            margin: 80px 0;
            overflow: hidden;
        }

        #heroMap {
            height: 400px;
            width: 100%;
            border-radius: 20px;
            z-index: 1;
        }

        /* Footer */
        .site-footer {
            padding: 60px 0 20px;
            background: #f8fafc;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links a {
            display: block;
            color: #64748b;
            text-decoration: none;
            margin-bottom: 10px;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: var(--brand-primary);
            padding-left: 5px;
        }

        /* Chatbot Widget Container */
        .chat-widget-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        /* Floating Toggle Button */
        .chat-toggle-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--brand-primary);
            color: white;
            border: none;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .chat-toggle-btn:hover {
            transform: scale(1.1);
            background: var(--brand-dark);
        }

        /* Chat Window */
        .chat-box {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
            display: none;
            /* Hidden by default */
            flex-direction: column;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transform-origin: bottom right;
            animation: chatOpen 0.3s ease-out;
        }

        @keyframes chatOpen {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Chat Header */
        .chat-header {
            background: var(--brand-primary);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .bot-avatar-container {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            overflow: hidden;
            border: 2px solid white;
            flex-shrink: 0;
        }

        /* YOUR IMAGE STYLING HERE - Auto-fits the container */
        .bot-avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Ensures image covers area without distortion */
        }

        .chat-header-info h5 {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
        }

        .chat-header-info span {
            font-size: 12px;
            opacity: 0.9;
        }

        .close-chat {
            margin-left: auto;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.8;
        }

        /* Chat Messages Area */
        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #f8fafc;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Message Bubbles */
        .message {
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 15px;
            font-size: 14px;
            line-height: 1.4;
        }

        .bot-message {
            background: white;
            color: var(--brand-dark);
            border: 1px solid #e2e8f0;
            align-self: flex-start;
            border-bottom-left-radius: 2px;
        }

        .user-message {
            background: var(--brand-primary);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 2px;
            box-shadow: 0 2px 5px rgba(37, 99, 235, 0.2);
        }

        /* Input Area */
        .chat-input-area {
            padding: 15px;
            background: white;
            border-top: 1px solid #e2e8f0;
            display: flex;
            gap: 10px;
        }

        .chat-input {
            flex: 1;
            border: 1px solid #e2e8f0;
            border-radius: 25px;
            padding: 10px 15px;
            outline: none;
            transition: border 0.3s;
        }

        .chat-input:focus {
            border-color: var(--brand-primary);
        }

        .send-btn {
            background: var(--brand-primary);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .send-btn:hover {
            background: var(--brand-dark);
        }

        /* Mobile Responsiveness */
        @media (max-width: 480px) {
            .chat-box {
                width: 90vw;
                /* 90% of screen width */
                right: 0;
                bottom: 80px;
                height: 60vh;
            }

            .chat-widget-container {
                right: 5vw;
                /* Center align slightly */
            }
        }
  :root {
            --brand-primary: #2563eb;
            --brand-dark: #1e293b;
            --brand-accent: #0ea5e9;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            padding-top: 80px;
            /* Space for fixed navbar */
        }

        /* Navbar Styling */
        .navbar-glass {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 15px 0;
        }

        .btn-nav-cta {
            background: var(--brand-primary);
            color: white;
            border-radius: 50px;
            padding: 8px 24px;
            transition: all 0.3s;
        }

        .btn-nav-cta:hover {
            background: var(--brand-dark);
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .hero-title {
            font-weight: 800;
            font-size: 3.5rem;
            line-height: 1.2;
            color: var(--brand-dark);
        }

        .hero-title span {
            color: var(--brand-primary);
        }

        .hero-badge {
            display: inline-block;
            background: white;
            padding: 8px 16px;
            border-radius: 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Stats Strip */
        .stats-strip {
            background: var(--brand-dark);
            color: white;
            padding: 60px 0;
            margin-top: -50px;
            position: relative;
            z-index: 10;
            border-radius: 0;
        }

        @media(min-width: 768px) {
            .stats-strip {
                border-radius: 0 100px 0 0;
            }
        }

        .counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--brand-accent);
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        /* Map Section */
        .map-section {
            background: var(--brand-dark);
            color: white;
            border-radius: 30px;
            padding: 60px 20px;
            margin: 80px 0;
            overflow: hidden;
        }

        #heroMap {
            height: 400px;
            width: 100%;
            border-radius: 20px;
            z-index: 1;
        }

        /* Footer */
        .site-footer {
            padding: 60px 0 20px;
            background: #f8fafc;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links a {
            display: block;
            color: #64748b;
            text-decoration: none;
            margin-bottom: 10px;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: var(--brand-primary);
            padding-left: 5px;
        }

        /* Chatbot Widget Container */
        .chat-widget-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        /* Floating Toggle Button */
        .chat-toggle-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--brand-primary);
            color: white;
            border: none;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .chat-toggle-btn:hover {
            transform: scale(1.1);
            background: var(--brand-dark);
        }

        /* Chat Window */
        .chat-box {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
            display: none;
            /* Hidden by default */
            flex-direction: column;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transform-origin: bottom right;
            animation: chatOpen 0.3s ease-out;
        }

        @keyframes chatOpen {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Chat Header */
        .chat-header {
            background: var(--brand-primary);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .bot-avatar-container {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            overflow: hidden;
            border: 2px solid white;
            flex-shrink: 0;
        }

        /* YOUR IMAGE STYLING HERE - Auto-fits the container */
        .bot-avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Ensures image covers area without distortion */
        }

        .chat-header-info h5 {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
        }

        .chat-header-info span {
            font-size: 12px;
            opacity: 0.9;
        }

        .close-chat {
            margin-left: auto;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.8;
        }

        /* Chat Messages Area */
        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #f8fafc;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Message Bubbles */
        .message {
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 15px;
            font-size: 14px;
            line-height: 1.4;
        }

        .bot-message {
            background: white;
            color: var(--brand-dark);
            border: 1px solid #e2e8f0;
            align-self: flex-start;
            border-bottom-left-radius: 2px;
        }

        .user-message {
            background: var(--brand-primary);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 2px;
            box-shadow: 0 2px 5px rgba(37, 99, 235, 0.2);
        }

        /* Input Area */
        .chat-input-area {
            padding: 15px;
            background: white;
            border-top: 1px solid #e2e8f0;
            display: flex;
            gap: 10px;
        }

        .chat-input {
            flex: 1;
            border: 1px solid #e2e8f0;
            border-radius: 25px;
            padding: 10px 15px;
            outline: none;
            transition: border 0.3s;
        }

        .chat-input:focus {
            border-color: var(--brand-primary);
        }

        .send-btn {
            background: var(--brand-primary);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .send-btn:hover {
            background: var(--brand-dark);
        }

        /* Mobile Responsiveness */
        @media (max-width: 480px) {
            .chat-box {
                width: 90vw;
                /* 90% of screen width */
                right: 0;
                bottom: 80px;
                height: 60vh;
            }

            .chat-widget-container {
                right: 5vw;
                /* Center align slightly */
            }
        }
  :root {
            --brand-primary: #2563eb;
            --brand-dark: #1e293b;
            --brand-accent: #0ea5e9;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            padding-top: 80px;
            /* Space for fixed navbar */
        }

        /* Navbar Styling */
        .navbar-glass {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 15px 0;
        }

        .btn-nav-cta {
            background: var(--brand-primary);
            color: white;
            border-radius: 50px;
            padding: 8px 24px;
            transition: all 0.3s;
        }

        .btn-nav-cta:hover {
            background: var(--brand-dark);
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .hero-title {
            font-weight: 800;
            font-size: 3.5rem;
            line-height: 1.2;
            color: var(--brand-dark);
        }

        .hero-title span {
            color: var(--brand-primary);
        }

        .hero-badge {
            display: inline-block;
            background: white;
            padding: 8px 16px;
            border-radius: 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Stats Strip */
        .stats-strip {
            background: var(--brand-dark);
            color: white;
            padding: 60px 0;
            margin-top: -50px;
            position: relative;
            z-index: 10;
            border-radius: 0;
        }

        @media(min-width: 768px) {
            .stats-strip {
                border-radius: 0 100px 0 0;
            }
        }

        .counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--brand-accent);
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        /* Map Section */
        .map-section {
            background: var(--brand-dark);
            color: white;
            border-radius: 30px;
            padding: 60px 20px;
            margin: 80px 0;
            overflow: hidden;
        }

        #heroMap {
            height: 400px;
            width: 100%;
            border-radius: 20px;
            z-index: 1;
        }

        /* Footer */
        .site-footer {
            padding: 60px 0 20px;
            background: #f8fafc;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links a {
            display: block;
            color: #64748b;
            text-decoration: none;
            margin-bottom: 10px;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: var(--brand-primary);
            padding-left: 5px;
        }

        /* Chatbot Widget Container */
        .chat-widget-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        /* Floating Toggle Button */
        .chat-toggle-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--brand-primary);
            color: white;
            border: none;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .chat-toggle-btn:hover {
            transform: scale(1.1);
            background: var(--brand-dark);
        }

        /* Chat Window */
        .chat-box {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
            display: none;
            /* Hidden by default */
            flex-direction: column;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transform-origin: bottom right;
            animation: chatOpen 0.3s ease-out;
        }

        @keyframes chatOpen {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Chat Header */
        .chat-header {
            background: var(--brand-primary);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .bot-avatar-container {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            overflow: hidden;
            border: 2px solid white;
            flex-shrink: 0;
        }

        /* YOUR IMAGE STYLING HERE - Auto-fits the container */
        .bot-avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Ensures image covers area without distortion */
        }

        .chat-header-info h5 {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
        }

        .chat-header-info span {
            font-size: 12px;
            opacity: 0.9;
        }

        .close-chat {
            margin-left: auto;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.8;
        }

        /* Chat Messages Area */
        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #f8fafc;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Message Bubbles */
        .message {
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 15px;
            font-size: 14px;
            line-height: 1.4;
        }

        .bot-message {
            background: white;
            color: var(--brand-dark);
            border: 1px solid #e2e8f0;
            align-self: flex-start;
            border-bottom-left-radius: 2px;
        }

        .user-message {
            background: var(--brand-primary);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 2px;
            box-shadow: 0 2px 5px rgba(37, 99, 235, 0.2);
        }

        /* Input Area */
        .chat-input-area {
            padding: 15px;
            background: white;
            border-top: 1px solid #e2e8f0;
            display: flex;
            gap: 10px;
        }

        .chat-input {
            flex: 1;
            border: 1px solid #e2e8f0;
            border-radius: 25px;
            padding: 10px 15px;
            outline: none;
            transition: border 0.3s;
        }

        .chat-input:focus {
            border-color: var(--brand-primary);
        }

        .send-btn {
            background: var(--brand-primary);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .send-btn:hover {
            background: var(--brand-dark);
        }

        /* Mobile Responsiveness */
        @media (max-width: 480px) {
            .chat-box {
                width: 90vw;
                /* 90% of screen width */
                right: 0;
                bottom: 80px;
                height: 60vh;
            }

            .chat-widget-container {
                right: 5vw;
                /* Center align slightly */
            }
        }
  :root {
            --brand-primary: #2563eb;
            --brand-dark: #1e293b;
            --brand-accent: #0ea5e9;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            padding-top: 80px;
            /* Space for fixed navbar */
        }

        /* Navbar Styling */
        .navbar-glass {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 15px 0;
        }

        .btn-nav-cta {
            background: var(--brand-primary);
            color: white;
            border-radius: 50px;
            padding: 8px 24px;
            transition: all 0.3s;
        }

        .btn-nav-cta:hover {
            background: var(--brand-dark);
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .hero-title {
            font-weight: 800;
            font-size: 3.5rem;
            line-height: 1.2;
            color: var(--brand-dark);
        }

        .hero-title span {
            color: var(--brand-primary);
        }

        .hero-badge {
            display: inline-block;
            background: white;
            padding: 8px 16px;
            border-radius: 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Stats Strip */
        .stats-strip {
            background: var(--brand-dark);
            color: white;
            padding: 60px 0;
            margin-top: -50px;
            position: relative;
            z-index: 10;
            border-radius: 0;
        }

        @media(min-width: 768px) {
            .stats-strip {
                border-radius: 0 100px 0 0;
            }
        }

        .counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--brand-accent);
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        /* Map Section */
        .map-section {
            background: var(--brand-dark);
            color: white;
            border-radius: 30px;
            padding: 60px 20px;
            margin: 80px 0;
            overflow: hidden;
        }

        #heroMap {
            height: 400px;
            width: 100%;
            border-radius: 20px;
            z-index: 1;
        }

        /* Footer */
        .site-footer {
            padding: 60px 0 20px;
            background: #f8fafc;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links a {
            display: block;
            color: #64748b;
            text-decoration: none;
            margin-bottom: 10px;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: var(--brand-primary);
            padding-left: 5px;
        }

        /* Chatbot Widget Container */
        .chat-widget-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        /* Floating Toggle Button */
        .chat-toggle-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--brand-primary);
            color: white;
            border: none;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .chat-toggle-btn:hover {
            transform: scale(1.1);
            background: var(--brand-dark);
        }

        /* Chat Window */
        .chat-box {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
            display: none;
            /* Hidden by default */
            flex-direction: column;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transform-origin: bottom right;
            animation: chatOpen 0.3s ease-out;
        }

        @keyframes chatOpen {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Chat Header */
        .chat-header {
            background: var(--brand-primary);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .bot-avatar-container {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            overflow: hidden;
            border: 2px solid white;
            flex-shrink: 0;
        }

        /* YOUR IMAGE STYLING HERE - Auto-fits the container */
        .bot-avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Ensures image covers area without distortion */
        }

        .chat-header-info h5 {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
        }

        .chat-header-info span {
            font-size: 12px;
            opacity: 0.9;
        }

        .close-chat {
            margin-left: auto;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.8;
        }

        /* Chat Messages Area */
        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #f8fafc;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Message Bubbles */
        .message {
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 15px;
            font-size: 14px;
            line-height: 1.4;
        }

        .bot-message {
            background: white;
            color: var(--brand-dark);
            border: 1px solid #e2e8f0;
            align-self: flex-start;
            border-bottom-left-radius: 2px;
        }

        .user-message {
            background: var(--brand-primary);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 2px;
            box-shadow: 0 2px 5px rgba(37, 99, 235, 0.2);
        }

        /* Input Area */
        .chat-input-area {
            padding: 15px;
            background: white;
            border-top: 1px solid #e2e8f0;
            display: flex;
            gap: 10px;
        }

        .chat-input {
            flex: 1;
            border: 1px solid #e2e8f0;
            border-radius: 25px;
            padding: 10px 15px;
            outline: none;
            transition: border 0.3s;
        }

        .chat-input:focus {
            border-color: var(--brand-primary);
        }

        .send-btn {
            background: var(--brand-primary);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .send-btn:hover {
            background: var(--brand-dark);
        }

        /* Mobile Responsiveness */
        @media (max-width: 480px) {
            .chat-box {
                width: 90vw;
                /* 90% of screen width */
                right: 0;
                bottom: 80px;
                height: 60vh;
            }

            .chat-widget-container {
                right: 5vw;
                /* Center align slightly */
            }
        }
  :root {
            --brand-primary: #2563eb;
            --brand-dark: #1e293b;
            --brand-accent: #0ea5e9;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            padding-top: 80px;
            /* Space for fixed navbar */
        }

        /* Navbar Styling */
        .navbar-glass {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 15px 0;
        }

        .btn-nav-cta {
            background: var(--brand-primary);
            color: white;
            border-radius: 50px;
            padding: 8px 24px;
            transition: all 0.3s;
        }

        .btn-nav-cta:hover {
            background: var(--brand-dark);
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .hero-title {
            font-weight: 800;
            font-size: 3.5rem;
            line-height: 1.2;
            color: var(--brand-dark);
        }

        .hero-title span {
            color: var(--brand-primary);
        }

        .hero-badge {
            display: inline-block;
            background: white;
            padding: 8px 16px;
            border-radius: 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Stats Strip */
        .stats-strip {
            background: var(--brand-dark);
            color: white;
            padding: 60px 0;
            margin-top: -50px;
            position: relative;
            z-index: 10;
            border-radius: 0;
        }

        @media(min-width: 768px) {
            .stats-strip {
                border-radius: 0 100px 0 0;
            }
        }

        .counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--brand-accent);
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        /* Map Section */
        .map-section {
            background: var(--brand-dark);
            color: white;
            border-radius: 30px;
            padding: 60px 20px;
            margin: 80px 0;
            overflow: hidden;
        }

        #heroMap {
            height: 400px;
            width: 100%;
            border-radius: 20px;
            z-index: 1;
        }

        /* Footer */
        .site-footer {
            padding: 60px 0 20px;
            background: #f8fafc;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links a {
            display: block;
            color: #64748b;
            text-decoration: none;
            margin-bottom: 10px;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: var(--brand-primary);
            padding-left: 5px;
        }

        /* Chatbot Widget Container */
        .chat-widget-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        /* Floating Toggle Button */
        .chat-toggle-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--brand-primary);
            color: white;
            border: none;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .chat-toggle-btn:hover {
            transform: scale(1.1);
            background: var(--brand-dark);
        }

        /* Chat Window */
        .chat-box {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
            display: none;
            /* Hidden by default */
            flex-direction: column;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transform-origin: bottom right;
            animation: chatOpen 0.3s ease-out;
        }

        @keyframes chatOpen {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Chat Header */
        .chat-header {
            background: var(--brand-primary);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .bot-avatar-container {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            overflow: hidden;
            border: 2px solid white;
            flex-shrink: 0;
        }

        /* YOUR IMAGE STYLING HERE - Auto-fits the container */
        .bot-avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Ensures image covers area without distortion */
        }

        .chat-header-info h5 {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
        }

        .chat-header-info span {
            font-size: 12px;
            opacity: 0.9;
        }

        .close-chat {
            margin-left: auto;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.8;
        }

        /* Chat Messages Area */
        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #f8fafc;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Message Bubbles */
        .message {
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 15px;
            font-size: 14px;
            line-height: 1.4;
        }

        .bot-message {
            background: white;
            color: var(--brand-dark);
            border: 1px solid #e2e8f0;
            align-self: flex-start;
            border-bottom-left-radius: 2px;
        }

        .user-message {
            background: var(--brand-primary);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 2px;
            box-shadow: 0 2px 5px rgba(37, 99, 235, 0.2);
        }

        /* Input Area */
        .chat-input-area {
            padding: 15px;
            background: white;
            border-top: 1px solid #e2e8f0;
            display: flex;
            gap: 10px;
        }

        .chat-input {
            flex: 1;
            border: 1px solid #e2e8f0;
            border-radius: 25px;
            padding: 10px 15px;
            outline: none;
            transition: border 0.3s;
        }

        .chat-input:focus {
            border-color: var(--brand-primary);
        }

        .send-btn {
            background: var(--brand-primary);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .send-btn:hover {
            background: var(--brand-dark);
        }

        /* Mobile Responsiveness */
        @media (max-width: 480px) {
            .chat-box {
                width: 90vw;
                /* 90% of screen width */
                right: 0;
                bottom: 80px;
                height: 60vh;
            }

            .chat-widget-container {
                right: 5vw;
                /* Center align slightly */
            }
        }
  :root {
            --brand-primary: #2563eb;
            --brand-dark: #1e293b;
            --brand-accent: #0ea5e9;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            padding-top: 80px;
            /* Space for fixed navbar */
        }

        /* Navbar Styling */
        .navbar-glass {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 15px 0;
        }

        .btn-nav-cta {
            background: var(--brand-primary);
            color: white;
            border-radius: 50px;
            padding: 8px 24px;
            transition: all 0.3s;
        }

        .btn-nav-cta:hover {
            background: var(--brand-dark);
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .hero-title {
            font-weight: 800;
            font-size: 3.5rem;
            line-height: 1.2;
            color: var(--brand-dark);
        }

        .hero-title span {
            color: var(--brand-primary);
        }

        .hero-badge {
            display: inline-block;
            background: white;
            padding: 8px 16px;
            border-radius: 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Stats Strip */
        .stats-strip {
            background: var(--brand-dark);
            color: white;
            padding: 60px 0;
            margin-top: -50px;
            position: relative;
            z-index: 10;
            border-radius: 0;
        }

        @media(min-width: 768px) {
            .stats-strip {
                border-radius: 0 100px 0 0;
            }
        }

        .counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--brand-accent);
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        /* Map Section */
        .map-section {
            background: var(--brand-dark);
            color: white;
            border-radius: 30px;
            padding: 60px 20px;
            margin: 80px 0;
            overflow: hidden;
        }

        #heroMap {
            height: 400px;
            width: 100%;
            border-radius: 20px;
            z-index: 1;
        }

        /* Footer */
        .site-footer {
            padding: 60px 0 20px;
            background: #f8fafc;
        }

        .footer-heading {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links a {
            display: block;
            color: #64748b;
            text-decoration: none;
            margin-bottom: 10px;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: var(--brand-primary);
            padding-left: 5px;
        }

        /* Chatbot Widget Container */
        .chat-widget-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        /* Floating Toggle Button */
        .chat-toggle-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--brand-primary);
            color: white;
            border: none;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .chat-toggle-btn:hover {
            transform: scale(1.1);
            background: var(--brand-dark);
        }

        /* Chat Window */
        .chat-box {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
            display: none;
            /* Hidden by default */
            flex-direction: column;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transform-origin: bottom right;
            animation: chatOpen 0.3s ease-out;
        }

        @keyframes chatOpen {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Chat Header */
        .chat-header {
            background: var(--brand-primary);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .bot-avatar-container {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            overflow: hidden;
            border: 2px solid white;
            flex-shrink: 0;
        }

        /* YOUR IMAGE STYLING HERE - Auto-fits the container */
        .bot-avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Ensures image covers area without distortion */
        }

        .chat-header-info h5 {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
        }

        .chat-header-info span {
            font-size: 12px;
            opacity: 0.9;
        }

        .close-chat {
            margin-left: auto;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.8;
        }

        /* Chat Messages Area */
        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #f8fafc;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Message Bubbles */
        .message {
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 15px;
            font-size: 14px;
            line-height: 1.4;
        }

        .bot-message {
            background: white;
            color: var(--brand-dark);
            border: 1px solid #e2e8f0;
            align-self: flex-start;
            border-bottom-left-radius: 2px;
        }

        .user-message {
            background: var(--brand-primary);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 2px;
            box-shadow: 0 2px 5px rgba(37, 99, 235, 0.2);
        }

        /* Input Area */
        .chat-input-area {
            padding: 15px;
            background: white;
            border-top: 1px solid #e2e8f0;
            display: flex;
            gap: 10px;
        }

        .chat-input {
            flex: 1;
            border: 1px solid #e2e8f0;
            border-radius: 25px;
            padding: 10px 15px;
            outline: none;
            transition: border 0.3s;
        }

        .chat-input:focus {
            border-color: var(--brand-primary);
        }

        .send-btn {
            background: var(--brand-primary);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .send-btn:hover {
            background: var(--brand-dark);
        }

        /* Mobile Responsiveness */
        @media (max-width: 480px) {
            .chat-box {
                width: 90vw;
                /* 90% of screen width */
                right: 0;
                bottom: 80px;
                height: 60vh;
            }

            .chat-widget-container {
                right: 5vw;
                /* Center align slightly */
            }
        }
       

 .hero-section {
            padding: 160px 0 100px;
            background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 40%),
                        radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.08), transparent 40%);
            position: relative;
        }

        .hero-title {
            font-size: clamp(2.8rem, 5vw, 4.2rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -1px;
            color: var(--brand-dark);
        }

        .hero-title span {
            color: var(--brand-primary);
            position: relative;
            display: inline-block;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 50px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            margin-bottom: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #64748b;
        }

        .dashboard-preview {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
            border: 8px solid white;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        /* --- 3. STATS STRIP --- */
        .stats-strip {
            background: white;
            padding: 50px 0;
            border-top: 1px solid #f1f5f9;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .stat-card h3 { font-size: 2.5rem; font-weight: 800; color: var(--brand-primary); margin-bottom: 0; }
        .stat-card p { font-size: 0.9rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }

        /* --- 4. FEATURE CARDS --- */
        .feature-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.04);
            height: 100%;
            transition: 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
            border-color: #e2e8f0;
        }

        .icon-box {
            width: 60px; height: 60px;
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 25px;
        }

        /* --- 5. MAP PREVIEW --- */
        .map-section {
            background: var(--brand-dark);
            color: white;
            padding: 80px 0;
            border-radius: 40px;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        #heroMap {
            height: 450px;
            border-radius: 20px;
            border: 4px solid rgba(255,255,255,0.1);
        }
/* --- Chatbot Widget Styling --- */
.chat-toggler {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 60px;
    width: 60px;
    background: var(--brand-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 9999;
}
.chat-toggler:hover {
    transform: scale(1.1);
}
.chat-toggler span {
    color: white;
    font-size: 1.5rem;
    position: absolute;
}

.chatbot-window {
    position: fixed;
    right: 35px;
    bottom: 100px;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
    transform-origin: bottom right;
    transition: all 0.3s ease;
    z-index: 9998;
}

.show-chatbot .chatbot-window {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.chat-header {
    background: var(--brand-primary);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}
.chat-header h5 { margin: 0; font-size: 1rem; font-weight: 600; }
.chat-header small { opacity: 0.8; font-size: 0.75rem; display: block; }

.chat-box {
    height: 300px;
    overflow-y: auto;
    padding: 15px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-input {
    padding: 10px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    background: white;
}
.chat-input textarea {
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    height: 40px;
    font-size: 0.9rem;
    padding: 10px 0;
}
.send-btn {
    color: var(--brand-primary);
    font-size: 1.2rem;
    cursor: pointer;
    background: none;
    border: none;
    align-self: flex-end;
    margin-bottom: 8px;
}

/* Messages */
.chat-msg {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    line-height: 1.4;
}
.chat-msg.bot {
    background: #e2e8f0;
    color: var(--brand-dark);
    border-bottom-left-radius: 2px;
    align-self: flex-start;
}
.chat-msg.user {
    background: var(--brand-primary);
    color: white;
    border-bottom-right-radius: 2px;
    align-self: flex-end;
}