
        /* Custom Animations */
        @keyframes breathe {
            0%, 100% { box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3), 0 4px 6px -2px rgba(59, 130, 246, 0.1); transform: scale(1); }
            50% { box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.5), 0 10px 10px -5px rgba(59, 130, 246, 0.2); transform: scale(1.02); }
        }
        .hero-img-fx {
            animation: breathe 4s infinite ease-in-out;
        }
        .geo-link {
            text-decoration: underline;
            text-decoration-color: #3b82f6;
            text-decoration-thickness: 2px;
            color: #1e40af;
            font-weight: 600;
        }
        .geo-link:hover {
            color: #2563eb;
        }
    