/* Custom styles to enhance Tailwind */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        /* Custom animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #4A90E2; /* Changed from indigo-600 to a beautiful blue */
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #357ABD; /* Darker shade for hover */
        }

        /* Destination card hover effect */
        .destination-card {
            transition: all 0.3s ease;
        }

        .destination-card:hover .destination-overlay {
            opacity: 0.9;
        }

        /* Logo animation */
        .logo {
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: rotate(15deg);
        }

        /* Pulse animation for CTA buttons */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /* Loading spinner */
        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }
        /* Smaller spinner for buttons */
        .spinner.w-5 {
            width: 20px;
            height: 20px;
            border-width: 2px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Itinerary day styling */
        .itinerary-day {
            border-left: 3px solid #4A90E2; /* Changed from indigo-600 to a beautiful blue */
            transition: all 0.3s ease;
        }

        .itinerary-day:hover {
            border-left-width: 6px;
            background-color: rgba(74, 144, 226, 0.05); /* Lighter shade for hover */
        }

        /* Mobile menu animation */
        .mobile-menu-enter {
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.3s ease-out, max-height 0.3s ease-out;
        }
        .mobile-menu-enter-active {
            opacity: 1;
            max-height: 300px; /* Adjust as needed */
        }
        .mobile-menu-leave {
            opacity: 1;
            max-height: 300px;
            overflow: hidden;
            transition: opacity 0.3s ease-in, max-height 0.3s ease-in;
        }
        .mobile-menu-leave-active {
            opacity: 0;
            max-height: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-text {
                text-align: center;
            }
            
            .hero-image {
                margin-top: 2rem;
            }
        }

        /* Toast message styling */
        .toast-message {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #4CAF50; /* Green background */
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .toast-message.show {
            opacity: 1;
        }

        /* Carousel specific styles */
        .carousel-container {
            height: 400px; /* Fixed height for consistency */
            position: relative;
            overflow: hidden;
        }
        .carousel-track {
            display: flex;
            height: 100%;
            transition: transform 1s ease-in-out;
        }
        .carousel-track img {
            min-width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .carousel-dots {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }
        .carousel-dot {
            width: 0.75rem;
            height: 0.75rem;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 9999px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .carousel-dot.active {
            background-color: rgba(255, 255, 255, 1);
        }

        /* accordian */
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
        }
        .accordion-content.active {
            max-height: 300px;
            transition: max-height 0.4s ease-in, padding 0.4s ease-in;
        }
        .icon-rotate {
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .icon-rotate.active {
            transform: rotate(45deg);
        }
        .accordion-inner {
            padding: 0 24px;
            transition: padding 0.4s ease;
        }
        .accordion-content.active .accordion-inner {
            padding: 0 24px 24px 24px;
        }