   /* Custom Font Fallbacks */
        .font-heading {
            font-family: 'Poppins', 'Montserrat', sans-serif;
        }
        .font-body {
            font-family: 'Inter', 'Lato', sans-serif;
        }
        /* Custom scrollbar for aesthetic */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #F9FAF6; }
        ::-webkit-scrollbar-thumb { background: #7AC7F4; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #A8E6CF; }
        
        /* Utility for scroll-triggered animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .animate-show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hero Carousel Styling */
        .carousel-item {
            display: none;
        }
        .carousel-item.active {
            display: block;
        }

    