<style>
        /* FONT IMPORTS */
        @font-face {
            font-family: 'Gudea';
            src: url('https://assets.envi.mt/fonts/Gudea-Regular.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'Gudea';
            src: url('https://assets.envi.mt/fonts/Gudea-Bold.ttf') format('truetype');
            font-weight: bold;
            font-style: normal;
        }
        @font-face {
            font-family: 'Gudea';
            src: url('https://assets.envi.mt/fonts/Gudea-Italic.ttf') format('truetype');
            font-weight: normal;
            font-style: italic;
        }
        @font-face {
            font-family: 'GroovyFont';
            src: url('https://assets.envi.mt/fonts/gnyrwn971.ttf') format('truetype');
        }

        /* CUSTOM STYLES & TAILWIND CONFIG */
        body {
            font-family: 'Gudea', sans-serif;
            background-color: #d1d3d4; /* Off-white as requested */
        }
        .font-groovy {
            font-family: 'GroovyFont', cursive;
        }
        .text-primary { color: #008abf; }
        .bg-primary { background-color: #008abf; }
        .hover\:bg-primary-dark:hover { background-color: #007aa8; }

        .text-secondary { color: #015a7c; }
        .bg-secondary { background-color: #015a7c; }
        .hover\:bg-secondary-dark:hover { background-color: #014c69; }

        .header {
            transition: top 0.3s ease-in-out;
        }

        /* Dropdown Menu Styles */
        .solutions-dropdown-item {
            display: flex;
            align-items: center;
            gap: 0.75rem; /* 12px */
            transition: background-color 0.2s, color 0.2s;
        }
        .solutions-dropdown-item:hover {
            background-color: #008abf; /* bg-primary color */
            color: #ffffff;
        }
        .solutions-dropdown-item i.fa-fw {
            width: 1.25em; /* Font Awesome fixed-width class */
            text-align: center;
        }
        #solutions-menu {
            border: 1px solid #e2e8f0; /* gray-200 */
        }

        /* SHAPE DIVIDERS */
        .custom-shape-divider {
            position: absolute;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        .custom-shape-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
        }
        
        .custom-shape-divider-bottom-tilt {
            bottom: -1px;
            transform: rotate(180deg);
        }
        .custom-shape-divider-bottom-tilt svg {
            height: 50px;
        }
        .custom-shape-divider-bottom-tilt .shape-fill {
            fill: #FFFFFF;
        }
        
        .custom-shape-divider-bottom-asym {
            bottom: -1px;
        }
        .custom-shape-divider-bottom-asym svg {
            height: 60px;
        }
        .custom-shape-divider-bottom-asym .shape-fill {
            fill: #d1d3d4; /* Match main background */
        }
        
        /* CODE TYPING EFFECT */
        .blinking-cursor {
            animation: blink 1s step-end infinite;
        }
        @keyframes blink {
            from, to { color: transparent; }
            50% { color: #39FF14; } /* Terminal green */
        }
        
        /* FLIP CARD & MAP EFFECT */
        .flip-card {
            background-color: transparent;
            width: 100%;
            height: 100%;
            min-height: 350px;
            perspective: 1000px;
        }
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }
        .flip-card.is-flipped .flip-card-inner {
            transform: rotateY(180deg);
        }
        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden; /* Safari */
            backface-visibility: hidden;
            border-radius: 0.5rem;
            overflow: hidden;
        }
        .flip-card-back {
            transform: rotateY(180deg);
        }
        
        /* Custom Tooltip for Leaflet */
        .leaflet-tooltip.custom-label {
            background-color: rgba(0,0,0,0.7);
            border: 1px solid #555;
            color: white;
            font-family: 'Gudea', sans-serif;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 4px;
            white-space: nowrap;
        }

        /* P5 Parallax effect */
        #p5-overlay-image {
            transform: translate(-50%, -50%) scale(0.9);
            opacity: 0;
            transition: transform 0.5s ease-out, opacity 0.8s ease-out;
        }
        #p5-parallax-section.is-visible #p5-overlay-image {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }
        #p5-overlay-image:hover {
            transform: translate(-50%, -50%) scale(1.05) !important; /* Use important to override JS during hover */
        }
        
        /* --- NEW ANIMATED LOGO STYLES --- */
        .header-logo-container {
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
        }
        .header-logo-graphic {
            width: 70px;
            height: 70px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: transform 0.4s ease;
        }
        .header-logo-graphic .chevron {
            width: 40px;
            height: 40px;
            position: absolute;
            box-sizing: border-box;
            border-top: 10px solid #015a7c;
            border-right: 10px solid #015a7c;
            transform: rotate(-45deg);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .header-logo-graphic .chevron:nth-child(1) { bottom: 5px; opacity: 0.5; }
        .header-logo-graphic .chevron:nth-child(2) { bottom: 15px; opacity: 0.75; }
        .header-logo-graphic .chevron:nth-child(3) { bottom: 25px; }

        .header-logo-container:hover .header-logo-graphic {
            transform: translateY(-5px);
        }
        .header-logo-container:hover .chevron:nth-child(1) {
            transform: rotate(-45deg) translateY(-8px);
            opacity: 1;
            border-color: #008abf;
        }
        .header-logo-container:hover .chevron:nth-child(2) {
            transform: rotate(-45deg) translateY(-16px);
            opacity: 1;
            transition-delay: 0.05s;
            border-color: #008abf;
        }
        .header-logo-container:hover .chevron:nth-child(3) {
            transform: rotate(-45deg) translateY(-24px);
            opacity: 1;
            transition-delay: 0.1s;
            border-color: #008abf;
        }
        .header-logo-text {
            font-family: 'Gudea', sans-serif;
            font-size: 28px;
            font-weight: bold;
            color: #333;
            letter-spacing: 0.2px;
            line-height: 1;
            text-align: left;
        }
        .header-logo-text span {
            font-family: 'GroovyFont', cursive;
            display: block;
            font-size: 18px;
            font-weight: normal;
            color: #666;
            letter-spacing: 0;
            margin-top: 4px;
        }

        /* Footer Arrow Styles */
        .footer-arrow-container {
             cursor: pointer;
             width: 96px;
             height: 96px;
             transition: transform 0.3s ease;
             position: absolute;
             top: -48px;
             left: 50%;
             transform: translateX(-50%);
        }
        .footer-arrow-container:hover {
            transform: translateX(-50%) scale(1.1);
        }
        .footer-arrow-graphic {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: transform 0.4s ease;
        }
        .footer-arrow-graphic .chevron {
            width: 55px;
            height: 55px;
            position: absolute;
            box-sizing: border-box;
            border-top: 14px solid #015a7c;
            border-right: 14px solid #015a7c;
            transform: rotate(-45deg);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .footer-arrow-graphic .chevron:nth-child(1) { bottom: 7px; opacity: 0.5; }
        .footer-arrow-graphic .chevron:nth-child(2) { bottom: 21px; opacity: 0.75; }
        .footer-arrow-graphic .chevron:nth-child(3) { bottom: 35px; }

        .footer-arrow-container:hover .chevron {
             border-color: #008abf;
             opacity: 1;
        }
        /* Adjusted animation to move straight up */
        .footer-arrow-container:hover .chevron:nth-child(1) {
            transform: rotate(-45deg) translateY(-10px);
        }
        .footer-arrow-container:hover .chevron:nth-child(2) {
            transform: rotate(-45deg) translateY(-20px);
            transition-delay: 0.05s;
        }
        .footer-arrow-container:hover .chevron:nth-child(3) {
            transform: rotate(-45deg) translateY(-30px);
            transition-delay: 0.1s;
        }
                /* WHATSAPP ANIMATION STYLES */
        .smartphone {
            width: 320px;
            max-width: 100%;
            height: 580px;
            border: 16px solid #111;
            border-top-width: 60px;
            border-bottom-width: 60px;
            border-radius: 36px;
            position: relative;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 5px 15px rgba(0,0,0,0.2);
            background-color: #ece5dd;
            overflow: hidden;
            margin: 0 auto;
        }
        .smartphone:before {
            content: '';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 8px;
            background-color: #333;
            border-radius: 10px;
        }
        .smartphone:after {
            content: '';
            position: absolute;
            top: -28px;
            left: 50%;
            transform: translateX(50px);
            width: 12px;
            height: 12px;
            background-color: #333;
            border-radius: 50%;
        }
        .chat-bubble {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.3s ease-out;
        }
        .chat-bubble.visible {
            opacity: 1;
            transform: scale(1);
        }
        .typing-indicator span {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #888;
            animation: typing 1.2s infinite ease-in-out;
        }
        .typing-indicator span:nth-child(2) {
            animation-delay: 0.2s;
        }
        .typing-indicator span:nth-child(3) {
            animation-delay: 0.4s;
        }
        @keyframes typing {
            0%, 60%, 100% {
                transform: translateY(0);
            }
            30% {
                transform: translateY(-6px);
            }
        }
</style>