        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        input[type="date"]::-webkit-calendar-picker-indicator {
            cursor: pointer;
            opacity: 0.6;
            filter: invert(0.2);
        }

        @keyframes barEntrance {
            from {
                transform: translateY(100%);
                filter: blur(10px);
            }

            to {
                transform: translateY(0);
                filter: blur(0);
            }
        }

        .animate-bar {
            animation: barEntrance 1s cubic-bezier(0.19, 1, 0.22, 1);
        }

        @keyframes btnPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.35);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(79, 70, 229, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
            }
        }

        .call-btn-pulse {
            animation: btnPulse 2s infinite;
        }

        @keyframes shine {
            from {
                left: -100%;
            }

            to {
                left: 150%;
            }
        }

        .group-hover\:animate-shine {
            animation: shine 0.8s ease-in-out;
        }


        @keyframes loading-bar {
            0% {
                width: 0%;
                left: 0;
            }

            50% {
                width: 100%;
                left: 0;
            }

            100% {
                width: 0%;
                left: 100%;
            }
        }

        @keyframes shine {
            100% {
                transform: translateX(250%) skewX(-12deg);
            }
        }

        @keyframes bounce-short {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .animate-loading-bar {
            animation: loading-bar 2s infinite ease-in-out;
        }

        .animate-shine {
            animation: shine 0.8s ease-in-out;
        }

        .animate-bounce-short {
            animation: bounce-short 2s infinite ease-in-out;
        }

        #fromDropdown,
        #toDropdown,
        #travelerDropdown {
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
        }

        #fromDropdown::-webkit-scrollbar,
        #toDropdown::-webkit-scrollbar,
        #travelerDropdown::-webkit-scrollbar {
            width: 8px;
        }

        #fromDropdown::-webkit-scrollbar-track,
        #toDropdown::-webkit-scrollbar-track,
        #travelerDropdown::-webkit-scrollbar-track {
            background: #eef2ff;
            border-radius: 999px;
        }

        #fromDropdown::-webkit-scrollbar-thumb,
        #toDropdown::-webkit-scrollbar-thumb,
        #travelerDropdown::-webkit-scrollbar-thumb {
            background: #94a3b8;
            border-radius: 999px;
        }

        #fromDropdown::-webkit-scrollbar-thumb:hover,
        #toDropdown::-webkit-scrollbar-thumb:hover,
        #travelerDropdown::-webkit-scrollbar-thumb:hover {
            background: #64748b;
        }

        /* For the popup overlay - ensure it centers properly */
        #popupOverlay {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
            box-sizing: border-box;
        }

        /* If using fixed positioning */
        .popup-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            z-index: 9999;
        }

        