        :root {
            --color-sky: #38bdf8; /* sky-400 */
            --color-sunset: #f59e0b; /* amber-500 */
            --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f7f9fc;
        }

        /* Custom Floating Animation */
        .float-subtle {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0); }
        }

        /* Featured Card Hover Effects */
        .featured-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .featured-card:hover .details-slide {
            transform: translateY(0);
        }

        /* Parallax Hero Background */
        .parallax-hero {
            background-image: url('https://i.pinimg.com/736x/4b/bf/2b/4bbf2bb746fd8930721b6dc2d9a5caa5.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* This creates the parallax effect */
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Soft Gradient Overlay for Hero */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(56, 189, 248, 0.8), rgba(245, 158, 11, 0.7)); /* Sky-400 to Amber-500 */
        }

        /* Wave Divider CSS (Footer/Section separator) */
        .wave-divider {
            position: relative;
            height: 100px;
            width: 100%;
            background: linear-gradient(to bottom, #f7f9fc 0%, #ffffff 100%);
        }
        .wave-divider:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100px;
            bottom: 0;
            left: 0;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L48,224C96,224,192,224,288,208C384,192,480,160,576,176C672,192,768,256,864,261.3C960,267,1056,213,1152,192C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            animation: wave-float 30s linear infinite;
        }
        @keyframes wave-float {
            0% { background-position-x: 0; }
            100% { background-position-x: 1440px; }
        }

        /* Custom scrollbar for aesthetic */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--color-sky);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--color-sunset);
        }

    