/* Ensure smooth scrolling for anchor links */
        html {
            scroll-behavior: smooth;
        }

        .slide-container {
            transition: transform 0.3s ease-in-out;
            will-change: transform;
        }
        .Logo img{
            border-radius: 25px;
        }
        /* Custom focused style for Growth Teal (Primary CTA Style) */
        .btn-primary {
            background-color: theme('colors.growth-teal');
            box-shadow: 0 4px 6px -1px rgba(42, 157, 143, 0.4), 0 2px 4px -2px rgba(42, 157, 143, 0.4);
            transition: background-color 0.15s, box-shadow 0.15s;
        }
        .btn-primary:hover {
            background-color: #268C7E; /* Slightly darker teal on hover */
            box-shadow: 0 10px 15px -3px rgba(42, 157, 143, 0.5), 0 4px 6px -4px rgba(42, 157, 143, 0.5);
        }
        /* Active state for better tactile feedback */
        .btn-primary:active {
            transform: scale(0.98);
            box-shadow: none;
        }
        /* Styles for the simple success message modal */
        #success-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1000;
        }
        
        /* Base styles for all resource card buttons */
        .btn-resource-card {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 9999px; /* rounded-full */
            color: white;
            font-weight: 600;
            font-size: 0.875rem; /* text-sm */
            line-height: 1.25rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            transition: all 0.15s ease-in-out;
            cursor: pointer;
        }
        .btn-resource-card:active {
            transform: scale(0.98);
        }

        /* Mobile Cart Button (Phoenix Orange) */
        .btn-secondary-card {
            background-color: theme('colors.phoenix-orange');
        }
        .btn-secondary-card:hover {
            background-color: #D65A40;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
        }
        
        /* Kiosk Button (Growth Teal) */
        .btn-kiosk-card {
            background-color: theme('colors.growth-teal');
        }
        .btn-kiosk-card:hover {
            background-color: #268C7E;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
        }

        /* Truck Button (Desert Gold) */
        .btn-truck-card {
            background-color: theme('colors.desert-gold');
        }
        .btn-truck-card:hover {
            background-color: #C08D0F;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
        }

        /* Base Styles for All Resource Modals */
        .resource-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1000;
            overflow-y: auto;
            background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
        }
        .modal-content-box {
            background-color: white;
            margin: 4rem auto;
            padding: 2rem;
            border-radius: 1rem;
            max-width: 90%;
            width: 700px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            animation: fadeInScale 0.3s ease-out;
        }
        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Ensure overlay is positioned correctly to hide the background */
        #modal-overlay {
            z-index: 999;
        }

        /* Responsive adjustments for modal */
        @media (max-width: 768px) {
            .modal-content-box {
                margin: 2rem 1rem;
                padding: 1.5rem;
            }
        }
