       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #FF6B35;
            --warm-yellow: #FFD23F;
            --deep-red: #D32F2F;
            --cream: #FFF8E1;
            --dark-gray: #2D3748;
            --black: #212020;
            --light-gray: #F7FAFC;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0);
            backdrop-filter: blur(0px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-orange);
            text-decoration: none;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(90deg, var(--primary-orange), var(--warm-yellow));
            transition: width 0.3s ease;
        }

        .logo:hover::after {
            width: 100%;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--black);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-orange);
            transform: translateY(-2px);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary-orange), var(--deep-red));
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(211, 207, 207, 0.177), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 0%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(125, 35, 2, 0.678);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23FF6B35" width="1200" height="800"/><circle cx="200" cy="200" r="150" fill="%23FFD23F" opacity="0.3"/><circle cx="800" cy="300" r="200" fill="%23D32F2F" opacity="0.2"/><circle cx="1000" cy="600" r="180" fill="%23FFF8E1" opacity="0.4"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            animation: heroFadeIn 1.5s ease-out;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #FF6B35, #FFD23F, #FF6B35);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease-in-out infinite;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-button {
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .hero-button.primary {
            background: linear-gradient(135deg, var(--primary-orange), var(--deep-red));
            color: white;
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
        }

        .hero-button.secondary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .hero-button:hover {
            transform: translateY(-5px);
        }

        /* Animations */
        @keyframes heroFadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        /* About Section */
        .about {
            padding: 6rem 0;
            background: var(--cream);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--warm-yellow));
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .about-image:hover {
            transform: scale(1.05);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

                /* Trending Recipes Section */
        .trending-recipes {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--cream) 0%, #FFFBF0 100%);
        }

        .recipes-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .recipes-header h2 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--dark-gray);
            margin-bottom: 1rem;
        }

        .recipes-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .recipes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .recipe-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .recipe-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .recipe-image {
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        /* Recipe Image Backgrounds */

        .recipe-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .recipe-badge.trending {
            background: linear-gradient(135deg, #FF1744, #FF5722);
            color: white;
            animation: pulse 2s infinite;
        }

        .recipe-badge.new {
            background: linear-gradient(135deg, #00E676, #4CAF50);
            color: white;
        }

        .recipe-badge.popular {
            background: linear-gradient(135deg, #FFD23F, #FF9800);
            color: var(--dark-gray);
        }

        .recipe-badge.chef-special {
            background: linear-gradient(135deg, #9C27B0, #673AB7);
            color: white;
        }

        .recipe-badge.healthy {
            background: linear-gradient(135deg, #66BB6A, #2E7D32);
            color: white;
        }

        .recipe-badge.comfort {
            background: linear-gradient(135deg, #FF8A65, #FF5722);
            color: white;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .recipe-time {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .recipe-content {
            padding: 1.5rem;
        }

        .recipe-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .recipe-author {
            color: var(--primary-orange);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .recipe-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .rating {
            color: var(--dark-gray);
            font-weight: 600;
        }

        .saves {
            color: #666;
        }

        .recipe-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .tag {
            background: var(--light-gray);
            color: var(--dark-gray);
            padding: 0.3rem 0.8rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .recipes-cta {
            text-align: center;
        }

        .view-all-recipes {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-orange), var(--deep-red));
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
            position: relative;
            overflow: hidden;
        }

        .view-all-recipes::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .view-all-recipes:hover::before {
            left: 100%;
        }

        .view-all-recipes:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
        }


        /* Features Section */
        .features {
            padding: 6rem 0;
            background: white;
        }

        .features h2 {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--dark-gray);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--warm-yellow));
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-orange), var(--deep-red));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-gray);
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
        }

/* ------------------------------------------------------------------------------------------------------------------------ */
        /* Homemade items display */

        .homemade{
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--cream) 0%, #FFFBF0 100%);
        }

        .homemade h2{
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--dark-gray);
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            /* max-width: 1200px;
            margin: auto; */
        }

        /* Card styling */
        .card {
            position: relative;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .card:hover img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 15px;
            text-align: center;
        }
        .card-content h3 {
            margin: 10px 0;
            font-size: 18px;
        }
        .card-content p {
            font-size: 16px;
            color: #666;
            margin-bottom: 10px;
        }

        .buy-btn {
            background: #4CAF50;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.3s ease;
        }
        .buy-btn:hover {
            background: linear-gradient(150deg, #0f2510, #31d637);
        }

        /* Featured ribbon */
        .ribbon {
            position: absolute;
            top: 10px;
            left: -5px;
            background: gold;
            color: black;
            padding: 5px 15px;
            font-size: 12px;
            font-weight: bold;
            transform: rotate(-10deg);
            border-radius: 5px;
        }

        /* Animation when item added */
        .added {
            animation: pop 0.4s ease;
        }
        @keyframes pop {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

/* ---------------------------------------------------------------------------------------------------------------- */
        /* Showcase Section
        .showcase {
            padding: 6rem 0;
            background: var(--light-gray);
        }

        .showcase h2 {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--dark-gray);
        }

        .showcase-slider {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            padding: 1rem 0;
            scroll-behavior: smooth;
        }

        .showcase-card {
            min-width: 300px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .showcase-card:hover {
            transform: scale(1.05);
        }

        .showcase-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .showcase-card-content {
            padding: 1.5rem;
        }

        .showcase-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .showcase-card p {
            color: #666;
            font-size: 0.9rem;
        } */

/* ----------------------------------------------------------------------------------------------------------------------- */
        /* The testimonial section */

        .testimonial-section {
        padding: 60px 20px;
        text-align: center;
        background: #fff;
        }

        .testimonial-section h2 {
          text-align: center;
          font-size: 3rem;
          font-weight: 700;
          margin-bottom: 3rem;
          color: var(--dark-gray);
        }

        .carousel {
        display: flex;
        overflow: hidden;
        max-width: 1200px;
        height:auto;
        margin: 0 auto;
        position: relative;
        padding: 20px 0;   /* ⬅ adds space above & below cards */
        }

        .carousel-track {
        display: flex;
        transition: transform 0.6s ease-in-out;
        }

        .testimonial {
        flex: 0 0 300px;
        margin: 0 15px;
        padding: 30px 20px;   /* ⬅ increased padding inside */
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(118, 113, 113, 0.15);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between; /* keeps text and name spaced */
        min-height: 300px; /* ensures enough height */
        }

        .testimonial img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-bottom: 15px;
        }

        .testimonial p {
        font-style: italic;
        color: #555;
        margin-bottom: 15px;
        }

        .testimonial h4 {
        margin: 0;
        font-size: 1.1rem;
        color: #333;
        }

/* ------------------------------------------------------------------------------------------------------------------------- */
        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--primary-orange), var(--deep-red));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .cta-section h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .cta-main-button {
            background: white;
            color: var(--primary-orange);
            padding: 1.2rem 3rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-main-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        .footer {
            background: var(--dark-gray);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--warm-yellow);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--primary-orange);
        }

        .newsletter {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .newsletter input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .newsletter input::placeholder {
            color: #ccc;
        }

        .newsletter button {
            padding: 0.75rem 1rem;
            background: var(--primary-orange);
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .newsletter button:hover {
            background: var(--deep-red);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #ccc;
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-menu {
                flex-direction: column;
                gap: 1rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .showcase-slider {
                padding: 0 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            /* Add this inside the @media (max-width: 768px) section */
            /* Recipes Section Mobile */
            .recipes-header h2 {
                font-size: 2rem;
            }

            .recipes-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .recipe-card {
                max-width: 400px;
                margin: 0 auto;
            }

            .recipe-content h3 {
                font-size: 1.1rem;
            }

            .recipe-tags {
                gap: 0.3rem;
            }

            .tag {
                font-size: 0.7rem;
                padding: 0.2rem 0.6rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                flex-direction: column;
                gap: 1rem;
                background: white;
                box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);

                /* Hidden by default */
                transform: translateY(-100%);
                opacity: 0;
                pointer-events: none;
                transition: all 0.3s ease;
            }

            /* Show when mobile-open is added */
            .nav-menu.mobile-open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }

            /* Hamburger button */
            .hamburger {
                display: block;
                font-size: 2rem;
                cursor: pointer;
                color: var(--primary-orange);
                background: none;
                border: none;
            }
       }


        /* Additional styles for mobile menu */
            .nav-menu.mobile-open {
            transform: translateY(0) !important;
                opacity: 1 !important;
            }

            /* Keyboard navigation styles */
            .keyboard-navigation *:focus {
                outline: 2px solid var(--primary-orange);
                outline-offset: 2px;
            }

            /* Additional floating animation */
            @keyframes floatElements {
                0%, 100% { 
                    transform: translateY(0px) rotate(0deg); 
                    opacity: 0.3;
                }
                50% { 
                    transform: translateY(-20px) rotate(180deg); 
                    opacity: 0.7;
                }
            }

            .floating-element {
                animation: floatElements 15s ease-in-out infinite;
            }

            /* Hover effects for all buttons */
            button, .cta-button, .hero-button, .cta-main-button {
                position: relative;
                overflow: hidden;
            }

            button::after, .cta-button::after, .hero-button::after, .cta-main-button::after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 0;
                height: 0;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                transform: translate(-50%, -50%);
                transition: width 0.6s, height 0.6s;
            }

            button:active::after, .cta-button:active::after, .hero-button:active::after, .cta-main-button:active::after {
                width: 300px;
                height: 300px;
            }

            /* Scroll indicator
            .scroll-indicator {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                background: rgba(255, 107, 53, 0.2);
                z-index: 9999;
            }

            .scroll-progress {
                height: 100%;
                background: linear-gradient(90deg, var(--primary-orange), var(--warm-yellow));
                width: 0%;
                transition: width 0.1s ease;
            } */
