 body {
            font-family: 'Inter', sans-serif;
        }

        .font-Lobster {
            font-family: 'Lobster', cursive;
        }

        /* Custom Scrollbar for Drawers */
        .custom-scrollbar::-webkit-scrollbar {
            width: 5px;
        }

        .custom-scrollbar::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 4px;
        }

        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: #0ea5e9;
        }

        /* Custom Swiper Pagination for Hero */
        .heroSwiper .swiper-pagination-bullet {
            width: 24px;
            height: 4px;
            border-radius: 0;
            background-color: rgba(255, 255, 255, 0.4);
            transition: all 0.4s ease;
            opacity: 1;
            margin: 0 4px !important;
        }

        .heroSwiper .swiper-pagination-bullet-active {
            width: 48px;
            background-color: #f97316;
        }

        /* Custom Dash Pagination for Packages & Deals */
        .custom-dash-pagination .swiper-pagination-bullet {
            width: 35px !important;
            height: 4px !important;
            border-radius: 0 !important;
            background-color: #d1d5db !important;
            opacity: 1 !important;
            margin: 0 6px !important;
            transition: none !important;
        }

        .custom-dash-pagination .swiper-pagination-bullet-active {
            background-color: #dc2626 !important;
            width: 35px !important;
        }

        /* Hero Text Animation */
        @keyframes slideUpFade {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .anim-text {
            animation: slideUpFade 0.8s ease-out forwards;
            opacity: 0;
        }

        .delay-100 {
            animation-delay: 0.1s;
        }

        .delay-200 {
            animation-delay: 0.3s;
        }

        .delay-300 {
            animation-delay: 0.5s;
        }

        /* Premium Floating Button with Taxi */
.scroll-top-premium {
    position: fixed;
    right: 25px;
    bottom: 30px;
    height: 60px;
    width: 60px;
    background: #fff;
    border-radius: 50%;
    z-index: 9999;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-top-premium.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Glowing Pulse */
.scroll-top-premium::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(45deg, #2563eb, #fbbf24); /* Blue to Taxi Yellow */
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    animation: premium-pulse 2s infinite;
}

@keyframes premium-pulse {
    0% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(1); opacity: 0.2; }
}

.progress-svg {
    position: absolute;
    top: 0; left: 0;
    transform: rotate(-90deg);
}

.progress-svg circle {
    fill: none;
    stroke: #e2e8f0; /* Track color */
    stroke-width: 3;
}

.progress-line {
    stroke: #2563eb !important; /* Progress color */
    stroke-dasharray: 175.9; /* 2 * PI * 28 */
    stroke-dashoffset: 175.9;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

/* Taxi Animation on Circle */
#moving-taxi-icon {
    position: absolute;
    z-index: 20;
    pointer-events: none;
    transition: all 0.1s linear;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.scroll-icon-center {
    color: #2563eb;
    font-weight: bold;
}